
.lds-ellipsis-small {
    display: inline-block;
    position: relative;
    width: 50px;
    height: 50px;
}

.lds-ellipsis-small div {
    position: absolute;
    top: 24px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #888888;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis-small div:nth-child(1) {
    left: 4px;
    animation: lds-ellipsis-small1 0.6s infinite;
}

.lds-ellipsis-small div:nth-child(2) {
    left: 4px;
    animation: lds-ellipsis-small2 0.6s infinite;
}

.lds-ellipsis-small div:nth-child(3) {
    left: 18px;
    animation: lds-ellipsis-small2 0.6s infinite;
}

.lds-ellipsis-small div:nth-child(4) {
    left: 34px;
    animation: lds-ellipsis-small3 0.6s infinite;
}

@keyframes lds-ellipsis-small1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis-small3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis-small2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(14px, 0);
    }
}


.lds-ellipsis-white {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ellipsis-white div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: white;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis-white div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis-white1 0.6s infinite;
}

.lds-ellipsis-white div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis-white2 0.6s infinite;
}

.lds-ellipsis-white div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis-white2 0.6s infinite;
}

.lds-ellipsis-white div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis-white3 0.6s infinite;
}

@keyframes lds-ellipsis-white1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis-white3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis-white2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}


/* Page loader */
#loader-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

#loader-wrapper .loader {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    position: relative;
    border: 4px solid #fff;
    animation: loader 2s infinite ease;
}

#loader-wrapper .loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: #fff;
    animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(180deg);
    }
    50% {
        transform: rotate(180deg);
    }
    75% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes loader-inner {
    0% {
        height: 0;
    }
    25% {
        height: 0;
    }
    50% {
        height: 100%;
    }
    75% {
        height: 100%;
    }
    100% {
        height: 0;
    }
}

/* End Page loader


/* Clock Loader */
#clock-loader {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999999999999999;
    background-color: black;
    opacity: 0.3;
}

#clock-loader .loading-clock-spinner {
    top: 50%;
    left: 50%;
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #888888;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}

/* loading clock spinner */
.loading-clock-spinner {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
}

.loading-clock-spinner div {
    transform-origin: 40px 25px;
    animation: clock-spinner 1.2s linear infinite;
}

.loading-clock-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 37px;
    width: 4px;
    height: 12px;
    border-radius: 20%;
    background: #adadad;
}

.loading-clock-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}

.loading-clock-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}

.loading-clock-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}

.loading-clock-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}

.loading-clock-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}

.loading-clock-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}

.loading-clock-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}

.loading-clock-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}

.loading-clock-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}

.loading-clock-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}

.loading-clock-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}

.loading-clock-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}

@keyframes clock-spinner {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* End loading clock spinner */

/* End Clock Loader */


.goog-te-spinner {
    margin: 2px 0 0 2px;
    animation: goog-te-spinner-rotator 1.4s linear infinite;
    transform: translateY(-50%);
}

.goog-te-spinner-path {
    stroke-dasharray: 187;
    stroke-dashoffset: 0;
    transform-origin: center;
    animation: goog-te-spinner-dash 1.4s ease-in-out infinite;
}

@keyframes goog-te-spinner-rotator {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(270deg);
    }
}

@keyframes goog-te-spinner-dash {
    0% {
        stroke-dashoffset: 187;
    }
    50% {
        stroke-dashoffset: 46.75;
        transform: rotate(135deg);
    }
    100% {
        stroke-dashoffset: 187;
        transform: rotate(450deg);
    }
}

/* ---------  Loading Component v2   ------------ */


.preloader-circle {
    border-radius: 50%;
    animation: bounce 1.5s infinite ease;
}

.circle--4 {
    animation-delay: .4s;
}

.circle--3 {
    animation-delay: .3s;
}

.circle--2 {
    animation-delay: .2s;
}

@keyframes bounce {
    0%, 100% {
        opacity: 1;
    }

    60% {
        transform: translateY(15px);
        opacity: .0;
    }
}

/* ------------------- skeleton ----------------------------- */
.skeleton {
    --bg: #e1e1e1;
    --glare-bg: linear-gradient(90deg, transparent, hsla(0, 0%, 100%, 0.4), transparent);
    position: relative;
    background-color: var(--bg);
    overflow: hidden;
}

.skeleton::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--glare-bg);
    transform: translateX(-100%);
    animation: skeleton-glare 1.75s infinite ease-out;
    z-index: 1;
}

@keyframes skeleton-glare {
    to {
        transform: translateX(100%)
    }
}

/* ------------------- end of skeleton ----------------------------- */


.blue-spinner {
    margin: auto;
    text-align: center;
}

.blue-spinner > div {
    animation-duration: 1.2s;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
    animation-name: sk-stretchdelay;
    animation-timeline: auto;
    animation-range-start: normal;
    animation: sk-stretchdelay 1.2s ease-in-out infinite;
    background-color: #0d47a1;
    display: inline-block;
    height: 100%;
}

.blue-spinner .rect2 {
    animation-delay: -1.1s;
    background-color: #1565c0;
}

.blue-spinner .rect3 {
    animation-delay: -1s;
    background-color: #1976d2;
}

.blue-spinner .rect4 {
    animation-delay: -.9s;
    background-color: #1e88e5;
}

.blue-spinner .rect5 {
    animation-delay: -.8s;
    background-color: #2196f3;
}

.blue-spinner .rect6 {
    animation-delay: -.7s;
    background-color: #42a5f5;
}

.blue-spinner .rect7 {
    animation-delay: -.6s;
    background-color: #64b5f6;
}

.blue-spinner .rect8 {
    animation-delay: -.5s;
    background-color: #90caf9;
}

@keyframes sk-stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.4);
    }
    20% {
        transform: scaleY(1.0);
    }
}