.feedback_widget button {
    border: none;
    width: 100%;
}

._feedback_input {
    display: flex;
    padding: 20px;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    border: none;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.20);
    color: #777;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

form#feedback-form {
    margin-bottom: 0;
}

._feedback_input::placeholder{
    color: #777;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

._feedback_input_text {
    color: #777;
    display: flex;
    padding: 15px 20px;
    align-items: flex-start;
    gap: 10px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.20);
    border: none;
    font-size: 1.6rem;
    font-weight: 300;
}

._feedback_input_wrapper {
    display: flex;
    padding: 20px;
    gap: 10px;
    flex: 1 0 0;
    justify-content: flex-end;
    align-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: column;
}

.has-error ._input_user_icon {
    background-image: url("/images/pc/error.svg");
}

.has-error ._input_mail_icon {
    background-image: url("/images/pc/error.svg");
}

._input_user_icon {
    background-image: url("/images/pc/user_icon.svg");
    background-repeat: no-repeat;
    background-position: 3% 50%;
    padding-left: 8%;
}

._input_mail_icon {
    background-image: url("/images/pc/mail_icon.svg");
    background-repeat: no-repeat;
    background-position: 3% 50%;
    padding-left: 8%;
}

._file_input_wrapper label {
    color: #777;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 30px;
}

._file_input_wrapper .feedback-input {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

.feedback_widget.bright-mode {
    padding: 30px;
    border-radius: 12px;
}


._button {
    display: flex;
    height: 66px;
    padding: 14px 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 34px;
}

._button:hover {
    cursor: pointer;
    filter: brightness(120%);
}

._button-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    align-content: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.custom-modal-content {
    padding: 60px;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    border-radius: 20px;
    background: #222529;
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.50);
    border-radius: 20px;
    background: #222529;
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.50);
    position: relative;
    pointer-events: auto;
    ;
}

.custom-modal-content .modal-title {
    color: #FFF;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    font-size: 30px;
    margin-bottom: 40px;
}

.custom-modal-content ._question_type_input {
    color: #FFF;
}

#callback-form {
    width: 100%;
    justify-content: space-between;
}

#callback-form button{
    width: 100%;
    padding: 16px 64px;
}

._question_text {
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    color: #FFFF;
}

._question_title {
    color: #FFF;
    font-family: Roboto;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

    /* Custom radio button */

/* Hide the default radio button */
input[type=radio] {
    display: none;
}

#feedback-form .help-block, ._phone .form-group .help-block {
    display: none;
}

#feedback-form .has-error input, ._phone .has-error input {
    border: 1px solid var(--Custom-Pink, #FF7272);
}

#feedback-form .has-error input::placeholder, ._phone .has-error input::placeholder  {
    color: var(--Custom-Pink, #FF7272);
}

._phone .has-error input {
    background-image: url(/images/pc/error.svg);
    background-repeat: no-repeat;
    background-position: 8% 50%;
    padding-left: 20%;
}

#feedbackform-message {
    min-height: 126px;
}

    /* Style the custom radio button */
.radio-container {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 300;
    color: #FFF;
}

.confidentiality-policy {
    padding-left: 0!important;
    margin-bottom: 0!important;
    padding-bottom: 0!important;
}

.confidentiality-policy .checkmark{
    height: 20px;
    width: 20px;
    border-radius: 5px;
}

.confidentiality-policy a {
    text-decoration: underline;
}

.confidentiality-policy .radio-container .checkmark:after{
    height: 8px;
    width: 8px;
    border-radius: 2px;
    left: 5px;
    top: 5px;
}

.radio-wrapper {
    padding: 20px 25px;
    margin-bottom: 20px;
}

.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 27px;
    height: 27px;
    border-radius: 8px;
    border: 1px solid #FFF;
    background: rgba(0, 0, 0, 0.10);
}

.radio-container:hover input~.checkmark {
    background-color: #FF7272;
}

.radio-container input:checked~.checkmark {
    background-color: transparent;
}

.checkmark:after {
    content: '';
    position: absolute;
    display: none;
}

.radio-container input:checked~.checkmark:after {
    display: block;
}

.radio-container .checkmark:after {
    left: 7px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-width: 2px;
    border-style: transparent;
    border-radius: 3px;
    background-image: linear-gradient(to right, rgba(255, 114, 114, 1), rgba(225, 47, 47, 1));
}

/* End of custom radio button */

@media (max-width: 1000px) {

    ._input_mail_icon,
    ._input_user_icon {
        padding-left: 12%;
        background-position: 4% 50%;
    }

    .custom-modal-content ._button {
        height: 55px;
    }
}

@media (max-width: 480px) {
    ._feedback_input_wrapper {
        padding: 0 !important;
        margin-bottom: 10px;
        width: 100%;
    }
    ._file_input_wrapper label {
        margin-left: 0 !important;
    }
    .feedback_widget {

    }
    #callback-form {
        width: unset;
    }
    ._question_title {
        font-size: 28px;
        margin-bottom: 10px;
    }
    ._question {
        margin-bottom: 30px;
    }
    #callback-form button {
        margin-top: 30px;
        padding: 7px 30px;
        font-size: 14px;
        width: 100%;
        height: 48px;
    }
    ._button-wrapper {
        width: 100%;
    }
    ._phone {
        width: 100%;
    }
    ._question_text {
        font-family: Roboto;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%; /* 20.8px */
        color: #FFF;
    }
}