.qweez-form-popup {
    z-index: 1000000;
    position: fixed;
    width: 600px;
    height: 600px;
    top: calc(50% - 300px);
    left: calc(50% - 300px);
    border-radius: 20px;
    background: #FFF;
    padding: 46px;
    overflow: hidden;
}

.qweez-background {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 900000;
}

.qweez-close {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}

.qweez_button_container {
    position: absolute;
    right: 30px;
    bottom: 30px;
    display: flex;
    gap: 11px;
}

.next_step_button {
    cursor: pointer;
    display: flex;
    width: 38px;
    height: 38px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 19px;
    background: #ECF5F8;
    border: none;
    transition: background-color 0.3s ease;
}

.next_step_button > img {
    pointer-events: none;
}

.next_step_button:hover {
    background: #e9f3f6;
}

.next_step_button.active {
    background: #006E9B;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.next_step_button.active > img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(454%) hue-rotate(264deg) brightness(121%) contrast(100%);
}

.qweez-form-popup h3 {
    color: #006E9B;
    text-align: center;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 30px;
    margin-top: 0;
}

.qweez-form-popup p {
    color: #505050;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 155%; /* 27.9px */
    margin-bottom: 30px;
}

.qweez-form-popup p.option_text {
    margin-bottom: 5px;
    margin-top: 10px;
}

.qweez_step_one_form {
    display: flex;
    align-items: center;
}

.qweez_step_one_form button {
    border-radius: 10px;
    border: 1px solid #ECF5F8;
    background: #FFF;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.05);
    height: 100px;
    padding: 20px 33px;
    width: 100%;
    color: #505050;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
    margin-bottom: 10px;
    text-align: left;
    transition: background-color 0.3s ease;
}

.qweez_step_one_form.chosen button {
    border-radius: 10px;
    border: 1px solid #ECF5F8;
    background: #006E9B;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.05);
    color: #FFF;
    transition: background-color 0.3s ease;
}

.answers_group {
    display: flex;
    width: fit-content;
    border-radius: 10px;
    border: 1px solid #ECF5F8;
    background: #FFF;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.05);
    height: 50px;
    align-items: center;
    overflow: hidden;
    flex-shrink: 0;
}

input[type="radio"] {
    display: none;
}

.radio-label {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-left: 1px solid #ECF5F8;
    transition: background-color 0.3s ease;
    height: 100%;
    color: #505050;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 169px;
}

.radio-label:first-child {
    border-left: none;
}

input[type="radio"]:checked + .radio-label {
    background: #006E9B;
    color: #FFF;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.callback_container > p {
    display: none;
}

.callback_field_container, .callback_btn_container {
    flex-direction: column !important;
}

.qweez_feedback_form {
    padding: 10px 85px 0;
}

.qweez_feedback_form .input_group input, .qweez_feedback_form .input_group textarea, .qweez_feedback_form .input_group {
    width: 100% !important;
}

.qweez_feedback_form .callback__checkbutton, .qweez_feedback_form .callback__comments, .qweez_feedback_form .callback_button {
    width: 100% !important;
}

.qweez-bottom-line {
    width: 0;
    height: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #006E9B;
    transition: width 0.3s ease;
}

@media (max-width: 630px) {
    .qweez-form-popup {
        width: 90vw;
        top: calc(50% - 300px);
        left: calc(50% - 45vw);
        padding: 15px;
    }

    .qweez_step_two_form {
        overflow-y: scroll;
    }

    .answers_group {
        width: 100%;
        height: 40px;
    }

    .radio-label {
        width: 33%;
    }

    .qweez-form-popup p.option_text {
        margin-bottom: 5px;
        margin-top: 5px;
        font-size: 16px;
    }

    .qweez-close {
        right: 10px;
        top: 10px;
    }

    .qweez_button_container {
        right: 15px;
        bottom: 15px;
    }

    .qweez-form-popup h3 {
        padding: 0 10px;
        font-size: 20px;
    }

    .qweez_feedback_form {
        padding: 0;
        margin-left: auto;
        margin-right: auto;
    }

    .qweez_step_one_form button {
        height: fit-content;
    }
}
