body{
    background: #fff!important;
    overflow-x: hidden;
    overflow-y: hidden;
}

.loader-80y{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: black;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 209;
    user-select: none;
}

.skip-button{
    position: absolute;
    top: 185px;
    right: 65px;
    color: white;
    text-decoration: underline;
    font-weight: 600;
    font-size: 1.4em;
    z-index: 211;
}
.skip-button:hover{
    transform: scale(1.05);
    cursor: pointer;
}

.mainOfferWrapper{
    display: flex;
    justify-content: center;
    align-items: center;
}

.offerWrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4em;
    transition: transform 0.2s ease-out;
}


.offerWrapper:hover{
    transform: scale(1.05);
    cursor: pointer;
}

.offerWrapperLink{
    display: flex;
    justify-content: Center;
    align-items: center;
}

.requestInfo{
    position: fixed;
    bottom: 1.5em;
    right: 1.5em;
    width: 120px;
    height: 50px;
    background: #66cef0;
    color: white;
    border: 1px solid #66cef0;
    border-radius: 40px;
    z-index: 208;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    transition: all 0.2s ease-out;
}

.requestInfo:hover{
    cursor: pointer;
    color: #66cef0;
    background: white;
}