/*** GENERAL EASING ***/
.okta-easing, .okta-easing .list-item, .okta-easing a {
    transition: all linear 0.2s;
}

/*** GRADIENTS ***/
.okta-gradient {
    background-color: #00033E; /* base fallback */
    background-image:
        radial-gradient(ellipse at 0% 0%,    #00033E 0%, transparent 60%),  /* upper left  — deep navy   */
        radial-gradient(ellipse at 50% 100%, #001FA5 0%, transparent 60%),  /* bottom center — blue      */
        radial-gradient(ellipse at 80% 55%,  #9921FE 0%, transparent 50%),  /* middle right  — purple    */
        radial-gradient(ellipse at 100% 0%,  #ff6217 0%, transparent 55%);  /* upper right   — orange    */
}

/*** 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;
}