@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800;900&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: "Nunito", sans-serif;
    box-sizing: border-box;
}

body{
    background-color: #E4E9F7;
}

#loading {
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgb(0 0 0 / 80%);
    top: 0;
    left: 0;
    z-index: 9999;
    text-align: center;
    display: none;
}

#loading button {
    width: 150px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    color: #fff;
    background-color: #00bcd4;
    border-color: #00bcd4;
    pointer-events: none;
}

@media screen and (max-width: 320px){
    .custom-size{
        width: 300px;
    }
    .custom-tab-size{
        width: 300px;
    }
}

@media screen and (min-width: 320px) and (max-width: 375px){
    .custom-size{
        width: 320px;
    }
    .custom-tab-size{
        width: 320px;
    }
}

@media screen and (min-width: 375px) and (max-width: 425px){
    .custom-size{
        width: 375px;
    }
    .custom-tab-size{
        width: 350px;
    }
}

@media screen and (min-width: 425px){
    .custom-size{
        width: 400px;
    }
}

@media screen and (min-width: 768px){
    .custom-tab-size{
        width: 750px;
    }
}

#otp-token-section,
#create-account-section,
#device-section,
#segmentation-section,
#product-section,
#city-section,
#finalButton{
    opacity: 0;
    transition: opacity 0.5s ease;
}

#otp-token-section.custom-transition-section,
#create-account-section.custom-transition-section,
#device-section.custom-transition-section,
#segmentation-section.custom-transition-section,
#product-section.custom-transition-section,
#city-section.custom-transition-section,
#finalButton.custom-transition-section{
    opacity: 1;
}

.custom-transition-label{
    transition: all 0.3s ease;
}

.custom-active-label{
    transform: translateY(-20px) scale(0.8);
    background: white;
    transition: all 0.3s ease;
}

.fs-7{
    font-size: 12px;
}

.custom-size-form{
    width: 302px;
}

.nav-pills .nav-link.active{
    background: black;
    font-weight: bold;
    border: 1px solid white;
}
.nav-pills .nav-link{
    color: grey;
}

.w-70{
    width: 70%;
}

.bg-survey{
    background-color: #f6f4f0;
}
