/*** GENERAL EASING ***/
.okta-easing, .okta-easing .list-item, .okta-easing a {
    transition: all linear 0.2s;
}

/*** GRADIENTS ***/
.auth0-gradient {
    background-color: #20003A;
    background-image:
        radial-gradient(ellipse 150% 60% at 50% 100%, #FF6217 0%, transparent 40%),
        radial-gradient(ellipse 220% 90% at 50% 100%, #9921FE 0%, transparent 50%),
        radial-gradient(ellipse 280% 120% at 50% 100%, #490186 0%, transparent 62%);
}

/*** GLASSMORPHISM ***/
.okta-glass {
    -webkit-backdrop-filter: blur(1.375rem);
    backdrop-filter: blur(1.375rem);
}

/*** SHADOW ***/
.okta-shadow, 
.countdown-days,
.countdown-hours,
.countdown-minutes, 
.countdown-seconds {
    -webkit-box-shadow: 0 24px 40px 0 rgba(0,0,0,.08);
    box-shadow: 0 24px 40px 0 rgba(0,0,0,.08);
}

/*** IFRAME ***/
.cms-block-type-iframe {
    aspect-ratio: 4 / 3;
}

/*** INFINITE, LOOPING, AUTOPLAY CAROUSELS ***/
body:not(.finetune) .looping-container {
    display: flex!important;
    justify-content: flex-start;
}

body:not(.finetune) .looping {
    height: 100%;
    display: flex!important;
    transition: transform ease 1s;
    margin-left: 0!important;
}

body:not(.finetune) .looping-slide {
    flex: 0 0 auto;
    height: 100%;
    display: flex!important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.looping-next, .looping-prev {
    transition: all .3s ease-in-out;
}