@font-face {
    font-family: VARELAROUND-REGULAR;
    src: url(../fonts/VARELAROUND-REGULAR.TTF);
}

body {
    font-family: VARELAROUND-REGULAR !important;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
}

.np {
    padding: 0;
}

.nps-open-question {
    margin: 4px 0 10px 0;
    font-size: 16px;
    resize: none !important;
}

.open-question-wrapper {
    padding: 0 4px;
}

#welcomescreen {
    height: 100vh;
}

#questionscreen {
    height: 100vh;
}

#lastscreen {
    height: 100vh;
}

.logo {
    text-align: center;
    margin-top: 28%;
}

.welcome-text {
    margin-top: 10%;
    font-size: 1.4em;
    font-weight: 600;
    text-align: center;
}

.question {
    position: relative;
}

.form {
    padding-top: 10%;
    text-align: center;
}

.test-q {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    font-size: 17px;
    text-align: center;
    padding: 5px 15px;
}

.test-q {
    display: inline-block;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.test-q.updated {
    transform: scale(1.1); /* Slightly scale the text */
    opacity: 0;
    animation: fadeInOut 1s forwards;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.myrange {
    -webkit-appearance: none;
    width: 100%;
    height: 20px;
    background: #f2f2f2;
    outline: none;
    opacity: 1;
    padding: 6px 0 !important;
    direction: ltr !important;
    border-radius: 5px;
}

.myrange::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 40px;
    background: #00b0f0;
    cursor: pointer;
    border-radius: 5px;
}

.myrange::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #f2f2f2;
    cursor: pointer;
}

.myrange {
    direction: ltr !important;
}

.mark-wrapper {
    text-align: center;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
}

.mark {
    border: 5px solid #00b0f0;
    border-radius: 140px;
    width: 80px;
    height: 80px;
    color: #00b0f0;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.8;
    text-align: center;
    background: #ffffff;
}

.scale {
    margin-top: 10%;
}

.arrow {
    margin-top: 18%;
}

.label-text {
    font-size: 16px;
    margin-top: 5px;
}

.labls {
    margin-top: 15px;
    font-size: 25px;
}

.mybtn {
    background: #ef2e24 !important;
    border-radius: 0 !important;
    font-size: 20px;
    padding: 0;
    font-weight: 600;
}

.npsButtonAnswer,
.npsButtonAnswer:hover,
.npsButtonAnswer:active {
    background: #00b0f0 !important;
    border-radius: 0 !important;
    font-size: 20px;
    font-weight: 600;
    width: 100%;
    color: #ffffff !important;
    padding: 3% 15px;
    border-color: #ffffff;
    margin: 1px 0;
}

.button-wrap {
    margin-top: 5%;
}

.arrow-slide {
    cursor: pointer;
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}

@-webkit-keyframes bounce {
    0%,
    20%,
    53%,
    80%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%,
    43% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes bounce {
    0%,
    20%,
    53%,
    80%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%,
    43% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        visibility: hidden;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        visibility: hidden;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        visibility: visible;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        visibility: visible;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
