.cde-header {
    min-height: 80px;
}

.cde-navbar .nav-link {
    padding: 10px 10px;
    font-size: 15px;
    color: black;
}

@media (max-width: 578px) {
    .cde-navbar {
        display: none;
    }

    .cde-navbar.show {
        display: inherit !important;
    }
}

.cde-floating-card {
    border-radius: 10px;
    border-color: white;
}

.footer {
    background-color: #F4F4F4;
}


/* Loader */

.loading-overlay.show {
    background: #000000;
    opacity: 0.6;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    filter: alpha(opacity=60);
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9999;
  }

.triple-spinner {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 125px;
    height: 125px;
    margin-left: -65px;
    margin-top: -65px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top: 4px solid #FF5722;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.triple-spinner.show {
    display: block !important;
}

.triple-spinner::before,
.triple-spinner::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 4px solid transparent;
}
.triple-spinner::before {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-top-color: #FF9800;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3.5s linear infinite;
}
.triple-spinner::after {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-top-color: #FFC107;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.75s linear infinite;
}



@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    }


@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* Fin loader */

.float-ws {
    position:fixed;
    width:60px;
    height:60px;
    bottom:40px;
    right:40px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
	text-align:center;
    font-size:30px;
    box-shadow: 2px 2px 3px #1e1c1c;
    z-index:100;
    padding-top: 8px;
    padding-left: 3px;
}

.float-ws:hover {
    color: #FFF !important;
}

.my-float{
	margin-top:16px;
}