@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');


* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    margin: 0;
    padding: 0;
}

a,
button {
    cursor: pointer;
}

:root {
    --white: #FFF;
    --black: #000;
    --blake_400: #333;
}

body {
    font-family: "Barlow";
    font-style: normal;
    background-color: var(--white);
}

.cm_container {
    max-width: 886px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    min-height: 100vh;
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img {
    width: 100% !important;
    height: auto !important;
}

.mainSwiper>.swiper-wrapper>.swiper-slide {
    height: fit-content !important;
}

.message {
    letter-spacing: -0.84px;
}

.compnent-btn {
    border-radius: 4px;
    padding: 10px;
    font-family: "Barlow Condensed";
    border: 1px solid #1689FE;
}

.question_container,
.mySwiper {
    border-radius: 12px;
    border: 1px solid #E4E4E4;
    background: #FFF;
    padding: 40px !important;
}

.mySwiper .swiper-wrapper {
    transition: height 0.5s ease-in-out;
}

.mySwiper .swiper-slide {
    height: fit-content !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.q-label {
    display: inline-block;
    width: fit-content;
}

.q-title {
    letter-spacing: -0.6px;
}

.q-listing {
    list-style: none;
    position: relative;
}

.q-li {
    display: grid;
    grid-template-columns: 14px 1fr;
}

.q-input {
    display: none;
}

.q-input-span {
    display: block;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    outline: 1px solid #C4C4C4;
    outline-offset: 2px;
}

.q-input:checked+.q-input-span {
    background-color: #C4C4C4;
    outline: 1px solid #C4C4C4;
    outline-offset: 2px;
}

.question-counter {
    font-family: "Outfit";
    position: absolute;
    top: 12px;
    right: 14px;
}

.resultater {
    letter-spacing: -1.08px;
}

.he__25 {
    height: 25px;
}

.result-progress-bar {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 14px;
    flex: 1;
}

.result-progress-bar::-webkit-progress-bar {
    border-radius: 30px;
    /* background: #EFEFEF; */
    background: linear-gradient(90deg, #1BFF00 0%, #9EFE00 20.74%, #FFDD00 47.39%, #FE7200 73.91%, #FE0C00 100%) !important;

}

.high .result-progress-bar::-webkit-progress-value {
    /* background: #FA5A5A; */
    /* background: linear-gradient(90deg, #1BFF00 0%, #9EFE00 20.74%, #FFDD00 47.39%, #FE7200 73.91%, #FE0C00 100%); */

    border-radius: 30px;
}

.average .result-progress-bar::-webkit-progress-value {
    /* background: #FFCA28; */
    border-radius: 30px;
}

.low .result-progress-bar::-webkit-progress-value {
    /* background: #11D100; */
    border-radius: 30px;
}

.happy-icon,
.normal-icon,
.sad-icon {
    display: none;
}

.low .happy-icon,
.average .normal-icon,
.high .sad-icon {
    display: block;
}

.result-progress-bar::-moz-progress-bar {
    background-color: #4caf50;
    /* Color of the progress indicator in Firefox */
    border-radius: 5px;
    /* Rounded corners in Firefox */
}

.facts-heading {
    font-family: "Barlow Semi Condensed";
}

.facts-p,
.login-p,
.sign-up-label {
    font-family: "Outfit";
}

.hidden {
    visibility: hidden;
    opacity: 0;
}

.fade-in {
    animation: fadeIn 2s forwards;
}

.fade-out {
    animation: fadeOut 2s forwards;
}

@keyframes fadeIn {
    from {
        visibility: visible;
        opacity: 0;
    }

    to {
        visibility: visible;
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        visibility: visible;
        opacity: 1;
    }

    to {
        visibility: hidden;
        opacity: 0;
    }
}

.video-container {
    height: 100vh;
    width: 100%;
}

.my-video {
    height: 100%;
    width: 100%;
    object-fit: fill;
}

.exercise-section {
    min-height: 100vh;
    background-image: url('../images/exercise-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 20px;
}

.exercise-box {
    padding: 40px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(6px);
    max-width: 846px;
    gap: 24px;
}

.exercise-title {
    font-family: "Inter";
}

.exercise-p {
    font-family: "Outfit";
}

.action-form {
    gap: 24px;
}

.exercise-field,
.sign-up-input {
    border-radius: 4px;
    border: 1px solid #B0B0B0;
    background: rgba(255, 255, 255, 0.10);
    font-family: "Barlow Condensed";
    padding: 10px;
    outline: none;
}

.exercise-field::placeholder {
    color: #9B9B9B;
}

.sign-up-input::placeholder {
    color: #B0B0B0;
}



.error.exercise-field {
    border: 1px solid red;
}

label.error {
    left: 0;
    color: red;
    font-size: 14px;
    margin-top: 5px;
    position: absolute;
    top: calc(100% - 5px);
}

.qr-code-img {
    border-radius: 20px;
}

.question-header {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 10px;
}

.back-btn {
    width: 24px;
    height: 24px;
}

.skip-btn {
    font-family: "Barlow Condensed";
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px solid #A7A7A7;
    background: #E6E6E6;
    gap: 8px;
    margin-left: auto;
    margin-right: 40px;
}






.slider-container {
    position: relative;
    width: 100%;
}

.result-progress-bar {
    width: 100%;
    height: 20px;
    border-radius: 10px;
    /* background: linear-gradient(to right, green, yellow, orange, red); */
    background: linear-gradient(90deg, #1BFF00 0%, #9EFE00 20.74%, #FFDD00 47.39%, #FE7200 73.91%, #FE0C00 100%) !important;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.result-progress-bar::-webkit-progress-value {
    background-color: transparent;
}

.result-progress-bar::-moz-progress-bar {
    background-color: transparent;
}

.slider-thumb {
    /* background-image: url(../images/pro_line_marker.png);
    background-repeat: no-repeat;
    background-size: 100% 100%; */
    position: absolute;
    top: 17%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 5px;
    /* height: 21px; */
    /* border-radius: 50%; */
    /* background: black; */
    cursor: not-allowed;
    user-select: none !important;
}

.he__25 img {
    height: 30px;
    object-fit: scale-down;
}

.slider-value {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    font-weight: bold;
}

#ratingForm {
    max-width: 367px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}








/* .rating-box{
    position: relative;
}

.rating-box {
    display: inline-block;
    .rating-container {
      direction: rtl !important;
      label {
        display: inline-block;
        margin: 15px 0;
        color: #d4d4d4;
        cursor: pointer;
        font-size: 50px;
        transition: color 0.2s;
      }
      input {
        display: none;
      }
      label:hover,
      label:hover ~ label,
      input:checked ~ label {
        color: #F9BB00;
      }
    }
  } */
.rating-box {
    position: relative;
}

.rating-box {
    display: inline-block;
}

.rating-box .rating-container {
    direction: rtl !important;
}

.rating-box .rating-container label {
    display: inline-block;
    margin: 15px 0;
    color: #d4d4d4;
    cursor: pointer;
    font-size: 50px;
    transition: color 0.2s;
}

.rating-box .rating-container input {
    display: none;
}

.rating-box .rating-container label:hover,
.rating-box .rating-container label:hover~label,
.rating-box .rating-container input:checked~label {
    color: #F9BB00;
}