/*!* margin-left: -1px; *!*/
.loader-container {
    position: fixed;
    width: 100%;
    padding-top: 40vh;
    height: 100vh;
    z-index: 1000000000;
    background: white;
}

.darkMode .loader-logo {
    background-image: url(../images/senuto-logo-wh.svg);
    opacity: 0.8;
}

.darkMode .loader-subtitle,
.darkMode .content {
    color: white !important;
    opacity: 0.6;
}

.loader-logo {
    background-image: url(../images/senuto-logo.svg);
    width: 174px;
    height: 51px;
    margin: 0 auto 34px;
    background-repeat: no-repeat;
    background-size: 100%;
    opacity: 1;
}

.loader-container {
}

.loader ul {
    text-align: center;
    font-size: 0;
    width: 100%;
    margin-left: -44px;
    margin-top: -22px;
    opacity: 1;
}

.loader ul li {
    display: inline-block;
    width: 3px;
    height: 3px;
    margin-right: 1px;
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
    animation: colorbars 333ms alternate infinite cubic-bezier(0.2, 0, 0.5, 1);
}

.loader .one {
    background: #311b92;
    opacity: 0.3;
}

.loader .one_half {
    background: #4527a0;
    opacity: 0.5;
}

.loader .two {
    background: #303f9f;
    opacity: 0.7;
}

.loader .three {
    background: #3f51b5;
    opacity: 0.7;
}

.loader .four {
    background: #1565c0;
    opacity: 0.5;
}

.loader .five {
    background: #2196f3;
    opacity: 0.3;
}

.loader li:nth-of-type(1) {
    animation-delay: 111ms;
}

.loader li:nth-of-type(2) {
    animation-delay: 222ms;
}

.loader li:nth-of-type(3) {
    animation-delay: 333ms;
}

.loader li:nth-of-type(4) {
    animation-delay: 444ms;
}

.loader li:nth-of-type(5) {
    animation-delay: 555ms;
}

@keyframes colorbars {
    to {
        -moz-transform: translateY(12px);
        -ms-transform: translateY(12px);
        -webkit-transform: translateY(12px);
        transform: translateY(12px);
    }
}

.margin-25 {
    display: block;
    margin-top: -25px;
}

.profile-main-loader {
    display: block;
    position: relative;
}
.profile-main-loader .loader {
    position: relative;
    margin: 0px auto;
    width: 30px;
    height: 30px;
}

.profile-main-loader .loader:before {
    content: '';
    display: block;
    padding-top: 100%;
}

.circular-loader {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    height: 100%;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
}

.loader-path {
    stroke-dasharray: 150, 200;
    stroke-dashoffset: -10;
    -webkit-animation: dash 1.5s ease-in-out infinite,
        color 6s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
}

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

@keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
    }
}
@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
    }
}

.loader-subtitle {
    font-family: Poppins;
    font-weight: 600;
    font-size: 14px;
    color: #1a1c62;
    padding-left: 12px;
}

.contains {
    margin: 0 auto;
    display: flex;
    justify-content: center !important;
}
