/* 
Base
======================================================== */
:root {
    --header-bg-color: #ED0001;
    --cta-bg-color: #ED0001;
    --circle-bg-color: #E00007;
    --blink-speed: 0.2s;
}

body{
    font-family: 'GTEestiProDisplay', sans-serif;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

.hasMotionSensor{
    padding-top: 97px;
}

/* 
Typography
======================================================== */

h1, h2, h3, h4, h5, h6{
line-height: normal;
font-weight: 400;
}

p{
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 16px;
}

p:last-child{
    margin-bottom: 0;
}

/* 
Header
======================================================== */
.header{
    display:none;
    position: fixed;
    background-color: var(--header-bg-color);
    color: #FFF;
    width: 100%;
    height: 97px;
    top: 0;
    left: 0;
    align-content: center;
    z-index: 8;
}

.header.blink-active {
    animation: redWhitePulse var(--blink-speed) ease-in-out infinite;
}

@keyframes redWhitePulse {
    0%, 100% { background: #ED0001; }
    50% { background: #FFFFFF; }
}

.header__wrapper{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.header__logo{
    align-self: center;
    width: 100px;
}

@media (max-width: 352px) {
.header__logo{
width: 80px;
}
}

.header__logo--img{
    width: 100%;
    height: auto;
}

.header__chin-up-girl-logo{
    width: 128px;
    height: auto;
}

@media (max-width: 352px) {
.header__chin-up-girl-logo{
    width: 108px;;
}
}

.header__action{
    display: flex;
    justify-content: flex-end;
    gap: 7px;
}

.header__action--rotate{
    position: relative;
    display: inline-block;
    align-self: center;
    text-align: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-color: var(--circle-bg-color);
}

.header__action--chevron{
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    top: 0;
    left: 0;
}

.header__action--chevron::before{
    position: absolute;
    content: '';
    background-color: transparent;
    background-image: url('../images/svg/chevron.svg');
    background-size: 11px 11px;
    background-position: center center;
    background-repeat: no-repeat;
    width: 11px;
    height: 11px;
    left: calc(50% - 4.5px);
}

.angle-container {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header__action--rotate-number{
    font-size: 24px !important;
    line-height: normal;
    font-weight: 700;
    flex-wrap: nowrap;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    text-size-adjust: none;
}


.header__action--vibration{
    position: relative;
    display: inline-block;
    align-self: center;
    background: none;
    border: none;
    width: 25px;
    height: 38px;
    /*margin: 0 8px 0 0;*/
    /*margin-left: 8px;*/
    padding: 0;
}

.header__action--vibration-img{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.header__action--vibration-img.off{
    display: block;
}

.header__action--vibration-img.on{
    display: none;
}


/* 
Main
======================================================== */
.isDesktop{
    display: block;
    position: relative;
}

.isDesktop__main{
    background-image: url('../images/Lux_Desktop_bg.jpg');
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
}

.isDesktop__main--logo{
    position: absolute;
    width: auto;
    height: 100px;
    top: 60px;
    right: 80px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .isDesktop__main--logo{
        height: 100px;
        top: 40px;
        right: 40px;
    }
}

@media (max-width: 991px) {
    .isDesktop__main--logo{
        height: 60px;
        top: 24px;
        right: 24px;
    }
}

.isDesktop__main--img{
    position: absolute;
    width: 380px;
    height: auto;
    left: 40px;
    bottom: 120px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .isDesktop__main--img{
        width: 380px;
        left: 40px;
        bottom: 80px;
    }
}

@media (max-width: 991px) {
    .isDesktop__main--img{
        width: 240px;
        left: 24px;
        bottom: 24px;
    }
}

/* OT Logo CSS */
@media screen and (max-width:767px)
{
    #onetrust-consent-sdk #onetrust-policy
    {
        margin:1.25em 0 .625em!important;
        background-size: 60px!important;
    }
}

/*Main Content  Flicker issue fix*/
.mainContent {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}