:root {
    --bg: #f6f7f8;
    --accent: #ff724f;
    --muted: #c7cbd0;
    --white: #fff;
    --shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
}

body.logged-in .non-login-user-can-view {
    display: none;
}

body:not(.logged-in) .login-user-can-view {
    display: none;
}

#wm_loader {
    position: fixed;
    display: none;
    left: 50%;
    top: 50%;
    z-index: 1100;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: 16px solid #000;
    border-radius: 50%;
    border-top: 16px solid #0073e6;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

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

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.ck-spin[disabled="disabled"],
.ck-spin[disabled] {
    position: relative;
    cursor: not-allowed;
    opacity: 0.8;

}
.ck-spin[disabled="disabled"]::after,
.ck-spin[disabled]::after {
    content: "";
    position: absolute;
    z-index: 9999;
    display: block;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    border: 3px solid #fff;
    border-top-color: #64B5AE;
    border-radius: 50%;
    -webkit-animation: ck-spiner 2s infinite linear;
    animation: ck-spiner 2s infinite linear;
}
@-webkit-keyframes ck-spiner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
@keyframes ck-spiner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}



@media (min-width: 576px) {}
@media (min-width: 768px) {}
@media (min-width: 992px) {}
@media (min-width: 1200px) {}
@media (min-width: 1400px) {}

@media (max-width: 575px) {}
@media (max-width: 767px) {}
@media (max-width: 991px) {}
@media (max-width: 1199px) {}
@media (max-width: 1399px) {}

@media (min-width: 576px) and (max-width: 767px) {}
@media (min-width: 768px) and (max-width: 991px) {}
@media (min-width: 992px) and (max-width: 1199px) {}
@media (min-width: 1200px) and (max-width: 1399px) {}