.feedback-title-container {
    display: flex;
    max-width: 1800px;
    padding: 64px;
    align-items: center;
    border-radius: 40px;
    border: 2px solid #D3D5D6;
    background:  #FAFAFA;
    margin: 68px 0px !important;
}

.question.is-invalid .field-error{
  display:block !important;
}
.field-error { 
    display:none;  
    color:#EA0000;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.question.is-invalid  .q-no.q-no-error { 
    border: 1px solid #EA0000;
    background: #EA0000; 
    color:#fff; 
    
}


.feedback-title-container .title-feedback{
    color: #FF4B00;
    font-size: 64px;
    font-weight: 700;
    line-height: 96px; 
    
}

.block-feedback{
    display: flex;
    max-width: 2736px;
    padding: 64px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-radius: 40px;
    border: 2px solid #D3D5D6;
    background: #FAFAFA;
}

#response_feedback{
    display: none;
    max-width: 1800px;
    padding: 64px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
    border-radius: 40px;
    border: 2px solid #D3D5D6;
    background: #FAFAFA;
}

#response_feedback .response-feedback-text{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.block-feedback .inline-feedback.msg-error{
    display: flex;
    padding: 32px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    border-radius: 24px;
    border: 1.4px solid  #EA0000;
    background:  #FFF;
}

.block-feedback .inline-feedback.msg-error  .msg-text{
    color:  #232936;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    text-align: left;
}
.block-feedback .inline-feedback.msg-error{
    position: relative;
    padding-left: 102px; 
}

.block-feedback .inline-feedback.msg-error::before{
  content: '';
  position: absolute;
  left: 32px;           
  width: 48px;
  height: 48px;
  background: url('../../assets/images/alert-triangle.svg') no-repeat center;
  background-size: contain;
} 


#response_feedback .response-feedback-text .msg-title{
    color: #232936;
    font-size: 48px;
    font-weight: 550;
    align-self: stretch;
}

#response_feedback .response-feedback-text .msg-text{

    color: #232936;
    font-size: 32px;
    font-weight: 400;
}

#response_feedback input.global-button {
    margin-left: 0px;
    min-width: 400px;
}

#response_feedback #msg-btn{
    width: 416px;
    padding: 24px 64px;
    gap: 16px;
    font-weight: 550;
}


.block-feedback .feedback-form{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 80px;
    align-self: stretch;
}



.block-feedback .question{
    display: flex;
    flex-direction: row;  
    align-items: flex-start;
    gap: 32px;
    width: 1400px;
    margin-bottom: 0px;
}

.block-feedback .question-wrapp{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    flex: 1 0 0;
}

.block-feedback .answer {
    display: flex;
    align-items: center;
    gap: 48px;
    align-self: stretch;
}

.block-feedback .answer.betweentruefalse {
    justify-content: flex-start;
}
.block-feedback .question-title{
    font-size: 36px;
    line-height: 52px;
    align-self: stretch;
    color: #232936;
 
    font-size: 36px;
    font-weight: 550;
    line-height: 52px;
}
.block-feedback .q-no {
    border-radius: 8px;
    border: 2px solid var(--wp--preset--color--grey);
    background: var(--wp--preset--color--dirty-white);
    color: var(--wp--preset--color--dark-blue);
    text-align: center;
    font-size: 32px;
    width: 64px;
    height: 64px;
    line-height: 64px;
    color: #232936;
    align-items: center;
    align-self: stretch;
    text-align: center;
    flex-shrink: 0;
}

/*Radio*/
.block-feedback .radio-buttons {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 0px;
}

.block-feedback .radio-buttons [type="radio"]:checked,
.block-feedback .radio-buttons [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.block-feedback .radio-buttons [type="radio"]:checked+label,
.block-feedback .radio-buttons [type="radio"]:not(:checked)+label {
    font-size: 32px;
    display: inline-flex;
    position: relative;
    padding: 0px;
    width: 96px;
    height: 96px;
    text-align: center;
    cursor: pointer;
    line-height: 96px;
    align-items: center;
    justify-content: center;
    color: var(--wp--preset--color--dark-blue);
    z-index: 1;
}


.block-feedback .betweentruefalse .radio-buttons [type="radio"]:checked+label,
.block-feedback .betweentruefalse .radio-buttons [type="radio"]:not(:checked)+label {
    padding-top: 0;
}

.block-feedback .radio-buttons [type="radio"]:checked+label:before,
.block-feedback .radio-buttons [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    
    display: flex;
    width: 96px;
    height: 96px;
    border-radius: 16px;
    border: 2px solid #D3D5D6;
    background: #E1E1E1;
    z-index: -2;
    box-sizing: border-box;
}

.block-feedback .radio-buttons [type="radio"]:checked+label:after,
.block-feedback .radio-buttons [type="radio"]:not(:checked)+label:after {
    content: '';
    background: #FF4B00;
    position: absolute;
    transition: all 0.2s ease;
    display: flex;
    width: 96px;
    height: 96px;
    border-radius: 16px;
    border: 2px solid #FF4B00;
    z-index: -1;
    box-sizing: border-box;
}

.block-feedback .betweentruefalse .radio-buttons [type="radio"]:checked+label,
.block-feedback .betweentruefalse .radio-buttons [type="radio"]:not(:checked)+label,
.block-feedback .betweentruefalse .radio-buttons [type="radio"]:checked+label:before,
.block-feedback .betweentruefalse .radio-buttons [type="radio"]:not(:checked)+label:before,
.block-feedback .betweentruefalse .radio-buttons [type="radio"]:checked+label:after,
.block-feedback .betweentruefalse .radio-buttons [type="radio"]:not(:checked)+label:after{
    width: 120px;
    border-radius: 24px;
}

.block-feedback .radio-buttons [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    transform: scale(0);
}

.block-feedback .radio-buttons [type="radio"]:checked+label:after {
    opacity: 1;
    transform: scale(1);
}

.block-feedback .radio-buttons [type="radio"]:checked+label {
    color: #FAFAFA;
}


/*Checkbox*/
.block-feedback .checkbox-buttons {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
    flex: 1 0 0;
    width: 100%;
}

.block-feedback .checkbox-buttons .checkbox-button{
    margin-bottom: 0px;
    margin-right: 0px;
    width: 100%;
}
.block-feedback .checkbox-buttons [type="checkbox"]:checked,
.block-feedback .checkbox-buttons [type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.block-feedback .checkbox-buttons [type="checkbox"]:checked+label,
.block-feedback .checkbox-buttons [type="checkbox"]:not(:checked)+label {
    position: relative;
    cursor: pointer;
    display: inline-flex;
    color: var(--wp--preset--color--dark-blue);
    width: 100%;
    height: 96px;
    padding: 0;
    z-index: 1;

}

.block-feedback .checkbox-buttons [type="checkbox"]:checked+label p{
    color: #FAFAFA;
}



.block-feedback .checkbox-buttons [type="checkbox"]:checked+label:before,
.block-feedback .checkbox-buttons [type="checkbox"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    box-sizing: border-box;
    height: 96px;
    display: flex;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    border-radius: 24px;
    border: 2px solid #D3D5D6;
    background: #E1E1E1;
    width: 100%;
    z-index: -2;
}

.block-feedback .checkbox-buttons [type="checkbox"]:checked+label:after,
.block-feedback .checkbox-buttons [type="checkbox"]:not(:checked)+label:after {
    content: '';
    background-color: var(--wp--preset--color--primary);
    position: absolute;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    display: flex;
    height: 96px;
    width: 100%;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    border-radius: 24px;
    border: 2px solid #FF4B00;
    background: #FF4B00;
    z-index: -1;
    box-sizing: border-box;
}

.block-feedback .checkbox-buttons [type="checkbox"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.block-feedback .checkbox-buttons [type="checkbox"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.block-feedback .checkbox-buttons [type="checkbox"] + label p {
    margin: 0;
    padding-left: 32px;
    display: flex;
    align-items: center;
    color: #232936;
    font-size: 32px;
}


/*select*/
.block-feedback .custom-select-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    position: relative;
}

.block-feedback .custom-select-box select {
    cursor: pointer;
   
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    visibility: hidden;
    position: absolute;
}

.block-feedback .dropdown-select {
    position: relative;
    width: 100%;
    font-size: 32px;
    line-height: 38px;
    color: rgba(35, 41, 54, 0.50);
    border: 2px solid var(--wp--preset--color--light-grey);
    background-color: var(--wp--preset--color--background);
    border-radius: 40px;
    cursor: pointer;
    box-sizing: border-box;
    user-select: none;
}

.block-feedback .dropdown-select.fullwhite-select {
    padding: 24px 32px !important;
    color: var(--wp--preset--color--dark-blue);
    border: 2px solid var(--wp--preset--color--light-grey);
    background-color: var(--wp--preset--color--background);
}

.block-feedback .dropdown-select::before {
    display: none;
}

.block-feedback .dropdown-select::after {
    content: '';
    background-image: url('../../assets/images/arrow-down.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 32px;
    height: 32px;
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.block-feedback .dropdown-select.fullwhite-select::after {
    border-color: var(--wp--preset--color--light-grey);
}


.block-feedback .dropdown-select .current {
    display: block;
}

.block-feedback .dropdown-select .list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    max-height: 500px;
    overflow-y: auto;
    background-color: var(--wp--preset--color--background);
    border: 2px solid var(--wp--preset--color--light-grey);
    border-radius: 16px;
    margin-top: 8px;
    display: none;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.block-feedback .dropdown-select .list ul {
    margin: 0;
    padding: 0;
}

.block-feedback .dropdown-select .list ul li {
    list-style: none;
}

.block-feedback .dropdown-select.open .list {
    display: block;
    opacity: 1;
    box-shadow: 0 5px 5px #d3d5d654;
}


.block-feedback .dropdown-select.has-value .current {
    color: #232936;
}

.block-feedback .dropdown-select .current {
    color: rgba(35, 41, 54, 0.50); 
}


.block-feedback .dropdown-select .option {
    padding: 24px 32px;
    color: var(--wp--preset--color--dark-blue);
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.block-feedback .dropdown-select .option:hover,
.block-feedback .dropdown-select .option:focus {
    background-color: var(--wp--preset--color--light-grey);
}

.block-feedback .dropdown-select .option.selected {
    font-weight: bold;
    color: var(--wp--preset--color--primary);
}


/*text*/
.block-feedback .textarea-box,
.block-feedback .input-box {
    position: relative;
    margin-bottom: 0px;
    width: 100%;
}

.block-feedback .textarea-box label,
.block-feedback .input-box label {
    color: var(--wp--preset--color--dark-blue);
    font-size: 32px;
    display: block;
    font-weight: 500;
    margin-bottom: 16px;
}
.block-feedback .input-box input {
    border-radius: 40px;
    border: 2px solid var(--wp--preset--color--light-grey);
    background: var(--wp--preset--color--background);
    padding: 28px 40px;
    box-sizing: border-box;
    width: 100%;
    color: var(--wp--preset--color--dark-blue);
    font-size: 32px;
}

.block-feedback .textarea-box textarea {
    border-radius: 40px;
    border: 2px solid var(--wp--preset--color--light-grey);
    background: var(--wp--preset--color--background);
    padding: 28px 40px;
    box-sizing: border-box;
    width: 100%;
    color: var(--wp--preset--color--dark-blue);
    font-size: 32px;
    resize: none;
    font-family: "PingLCG", sans-serif;
    font-size: 32px;
    height: 320px;
}

.block-feedback .textarea-box textarea::-webkit-scrollbar {
    width: 8px;
   
}

.block-feedback .textarea-box textarea::-webkit-scrollbar-track {
    background: transparent;
    margin: 5px 0;
}

.block-feedback .textarea-box textarea::-webkit-scrollbar-thumb {
    background: #b5b5b5;
    border-radius: 10px;
    
}

.block-feedback input.global-button {
    background: var(--wp--preset--color--background);
    cursor: pointer;
    margin-left: 90px;
    min-width:400px;
}
.block-feedback input.global-button:hover {
    background: var(--wp--preset--color--primary);
}

.block-feedback .form-send{
    display: flex;
    justify-content: space-between;
}


@keyframes lightningPulse {

    0%, 3.33%, 6.66%, 9.99% {
        opacity: 0;
        stroke-width: 2;
        stroke-dashoffset: 0;
    }

    13.32% {
        opacity: 1;
        stroke-width: 2;
    }

    16.65%, 19.98%, 23.31%, 26.64%, 29.97%, 33.33%, 36.66%, 39.99%, 43.32%, 46.65% {
        stroke-width: 15;
    }

    49.98% {
        stroke-width: 7;
    }
    53.31% {
        stroke-width: 6;
    }
    56.64% {
        stroke-width: 5;
    }
    59.97% {
        stroke-width: 4;
    }
    63.33% {
        stroke-width: 3;
    }
    66.66% {
        stroke-width: 2;
        opacity: 0.8;
    }
    69.99% {
        stroke-width: 1;
        opacity: 0.6;
    }
    73.32% {
        opacity: 0.4;
    }
    76.55% {
        opacity: 0.2;
    }

    79.98%, 83.31%, 86.64%, 89.97%, 93.33%, 96.66%, 100% {
        stroke-width: 1;
        opacity: 0;
        stroke-dashoffset: 102.96427917480469;
    }
}

@keyframes lightningScale {

    0%,
    13.32%,
    23.31%,
    100% {
        transform: scale(1);
    }

    16.65% {
        transform: scale(1.2);
    }
}
.block-feedback .loading-container.hidden{
    display: none;
}
.block-feedback .loading-container {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: 0 auto;
    position: fixed;
    text-align: center;
    background: #00000057;
    z-index: 9999 !important;
}

.block-feedback .loading-container:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    margin-right: -0.25em;
}

.block-feedback .ghosted {
    display: inline-block;
    vertical-align: middle;
}

.block-feedback .lightning-container {
    width: 100px;
    transform-origin: 50% 50%;
    animation: lightningScale 1s ease infinite forwards;
}

.block-feedback .lightning {
    stroke:var(--Button-Font-color-Orange, #FF4B00);
    stroke-miterlimit: 10;
    fill: var(--Button-Font-color-Orange, #FF4B00);
    stroke-dasharray: 102.96427917480469;
    stroke-dashoffset: 0;
    animation: lightningPulse 1s ease-out infinite forwards;
}

.block-feedback .st0 {
    clip-path: url(#SVGID_2_);
    fill: none;
}

@media only screen and (max-width: 3000px) {

    .feedback-title-container {        
        max-width: 900px;
        padding: 32px;        
        border-radius: 20px;
        border: 1px solid #D3D5D6;
        margin: 34px 0px !important;
    }

    .feedback-title-container .title-feedback{
        font-size: 32px;     
        font-weight: 700;
        line-height: 48px; 
    }

    .block-feedback{
        max-width: 1368px;
        padding: 32px;
        border-radius: 20px;
        border: 1px solid #D3D5D6;
    }

    .block-feedback .feedback-form{
        gap: 40px;
    }
    
    .block-feedback .question{
        gap: 16px;
        width: 700px;
        margin-bottom: 0px;
    }

    .block-feedback .question-wrapp{
        gap: 16px;
    }

    .block-feedback .answer {
        gap: 24px;
    }

    .block-feedback .question-title{
        font-size: 18px;
        line-height: 26px;
    }
    .block-feedback .q-no {
        border-radius: 4px;
        border: 1px solid var(--wp--preset--color--grey);
        font-size: 16px;
        width: 32px;
        height: 32px;
        line-height: 32px;
    }
    /*Radio*/
    .block-feedback .radio-buttons {
        gap: 40px;
    }

    .block-feedback .radio-buttons [type="radio"]:checked+label,
    .block-feedback .radio-buttons [type="radio"]:not(:checked)+label {
        font-size: 16px;
        width: 48px;
        height: 48px;
        line-height: 48px;
    }
    .block-feedback .betweentruefalse .radio-buttons [type="radio"]:checked+label,
    .block-feedback .betweentruefalse .radio-buttons [type="radio"]:not(:checked)+label {
        padding-top: 0;
    }

    .block-feedback .radio-buttons [type="radio"]:checked+label:before,
    .block-feedback .radio-buttons [type="radio"]:not(:checked)+label:before {
        width: 48px;
        height: 48px;
        border-radius: 8px;
        border: 1px solid #D3D5D6;
    }

    .block-feedback .radio-buttons [type="radio"]:checked+label:after,
    .block-feedback .radio-buttons [type="radio"]:not(:checked)+label:after {
        width: 48px;
        height: 48px;
        border-radius: 8px;
        border: 1px solid #FF4B00;
    }

    .block-feedback .betweentruefalse .radio-buttons [type="radio"]:checked+label,
    .block-feedback .betweentruefalse .radio-buttons [type="radio"]:not(:checked)+label,
    .block-feedback .betweentruefalse .radio-buttons [type="radio"]:checked+label:before,
    .block-feedback .betweentruefalse .radio-buttons [type="radio"]:not(:checked)+label:before,
    .block-feedback .betweentruefalse .radio-buttons [type="radio"]:checked+label:after,
    .block-feedback .betweentruefalse .radio-buttons [type="radio"]:not(:checked)+label:after{
        width: 60px;
        border-radius: 12px;
    }
    /*Checkbox*/

    .block-feedback .checkbox-buttons {

        gap: 24px;

    }
    .block-feedback .checkbox-buttons .checkbox-button{
        margin-bottom: 0px;
    }

    .block-feedback .checkbox-buttons [type="checkbox"]:checked+label,
    .block-feedback .checkbox-buttons [type="checkbox"]:not(:checked)+label {
        height: 48px;
    }

    .block-feedback .checkbox-buttons [type="checkbox"]:checked+label:before,
    .block-feedback .checkbox-buttons [type="checkbox"]:not(:checked)+label:before {
        height: 48px;
        gap: 8px;
        border: 1px solid #D3D5D6;
        border-radius: 12px;
    }

    .block-feedback .checkbox-buttons [type="checkbox"]:checked+label:after,
    .block-feedback .checkbox-buttons [type="checkbox"]:not(:checked)+label:after {      
        height: 48px;
        width: 100%;
        gap: 8px;
        border-radius: 12px;
        border: 1px solid #FF4B00;
    }

    .block-feedback .checkbox-buttons [type="checkbox"] + label p {
        padding-left: 16px;
        font-size: 16px;
    }

    .block-feedback .custom-select-box{
        gap: 8px;
    }


    .block-feedback .dropdown-select {
        font-size: 16px;
        line-height: 19px;

        border: 1px solid var(--wp--preset--color--light-grey);
        background-color: var(--wp--preset--color--background);
        border-radius: 20px;
    }

    .block-feedback .dropdown-select.fullwhite-select {
        padding: 12px 16px !important;
        border: 1px solid var(--wp--preset--color--light-grey);
    }

    .block-feedback .dropdown-select::after {
        width: 16px;
        height: 16px;
        position: absolute;
        right: 16px;
    }

    .block-feedback .dropdown-select .list {
        
        max-height: 250px;
        border: 1px solid var(--wp--preset--color--light-grey);
        border-radius: 8px;
        margin-top: 4px;
    }


    .block-feedback .dropdown-select .option {
        padding: 12px 16px;
    }

    .block-feedback .textarea-box,
    .block-feedback .input-box {
        margin-bottom: 0px;
    }

    .block-feedback .textarea-box label,
    .block-feedback .input-box label {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .block-feedback .input-box input {
        border-radius: 20px;
        border: 1px solid var(--wp--preset--color--light-grey);
        padding: 14px 20px;
        font-size: 16px;
    }

    .block-feedback .textarea-box textarea {
        border-radius: 20px;
        border: 1px solid var(--wp--preset--color--light-grey);
        padding: 14px 20px;
        font-size: 16px;
        height: 160px;
    }
    .block-feedback input.global-button {
        margin-left: 45px;
        min-width: 200px;
    }

    #response_feedback{
        max-width: 900px;
        padding: 32px;
        gap: 24px;
        border-radius: 20px;
        border: 1px solid #D3D5D6;
    }

    #response_feedback .response-feedback-text{
        gap: 8px;
    }

    .block-feedback .inline-feedback.msg-error{
        padding: 16px;
        gap: 10px;
        border-radius: 12px;
        border: 0.7px solid  #EA0000;
    }

    .block-feedback .inline-feedback.msg-error  .msg-text{
        font-size: 16px;
        font-weight: 400;
    }

    .block-feedback .inline-feedback.msg-error{
        padding-left: 51px; 
    }

    .block-feedback .inline-feedback.msg-error::before{
        left: 16px;           
        width: 24px;
        height: 24px;
    } 


    #response_feedback .response-feedback-text .msg-title{
        font-size: 24px;
        font-weight: 550;
    }

    #response_feedback .response-feedback-text .msg-text{
        font-size: 16px;
        font-weight: 400;
    }

    #response_feedback input.global-button {
        margin-left: 0px;
        min-width: 200px;
    }

    #response_feedback #msg-btn{
        width: 208px;
        padding: 12px 32px;
        gap: 8px;
        font-weight: 550;
    }




}

@media only screen and (max-width: 900px) {

    .feedback-title-container {
        max-width: 734px;
    }

    .block-feedback{
        max-width: 734px;
    }

    .block-feedback .question{
        width: 700px;
    }
    
    .block-feedback .radio-buttons [type="radio"]:checked+label,
    .block-feedback .radio-buttons [type="radio"]:not(:checked)+label {
        font-size: 16px;
        position: relative;
        width: 44px;
        height: 44px;
        line-height: 44px;
    }

    .block-feedback .radio-buttons [type="radio"]:checked+label:before,
    .block-feedback .radio-buttons [type="radio"]:not(:checked)+label:before {
       
        width: 44px;
        height: 44px;
    }

    .block-feedback .radio-buttons [type="radio"]:checked+label:after,
    .block-feedback .radio-buttons [type="radio"]:not(:checked)+label:after {
        width: 44px;
        height: 44px;
    }

    .block-feedback .betweentruefalse .radio-buttons [type="radio"]:checked+label,
    .block-feedback .betweentruefalse .radio-buttons [type="radio"]:not(:checked)+label,
    .block-feedback .betweentruefalse .radio-buttons [type="radio"]:checked+label:before,
    .block-feedback .betweentruefalse .radio-buttons [type="radio"]:not(:checked)+label:before,
    .block-feedback .betweentruefalse .radio-buttons [type="radio"]:checked+label:after,
    .block-feedback .betweentruefalse .radio-buttons [type="radio"]:not(:checked)+label:after{
        width: 56px;
    }

    .block-feedback .checkbox-buttons [type="checkbox"]:checked+label,
    .block-feedback .checkbox-buttons [type="checkbox"]:not(:checked)+label,
    .block-feedback .checkbox-buttons [type="checkbox"]:checked+label:before,
    .block-feedback .checkbox-buttons [type="checkbox"]:not(:checked)+label:before,
    .block-feedback .checkbox-buttons [type="checkbox"]:checked+label:after,
    .block-feedback .checkbox-buttons [type="checkbox"]:not(:checked)+label:after {      
        height: 44px;
    }

    #response_feedback{
        max-width: 734px;
    }

}

@media only screen and (max-width: 800px) {
    
    .block-feedback{
        padding: 20px;
    }
    
    .block-feedback .question{
        flex-direction: column;
        width: 100%;
        margin-bottom: 0px;
    }
    .block-feedback .q-no{
        margin-bottom: 0px;
    }
    .block-feedback .answer{
        gap: 0px;
    }

    .block-feedback .answer.between15{
        width: 100%;
    } 
    .block-feedback .answer.between110{
        flex-wrap: wrap;
        row-gap: inherit;
        width: 100%;

    }

    .block-feedback .answer.betweentruefalse {
        gap: 24px;
    }

    .block-feedback .answer.betweentruefalse .radio-buttons {
        flex: none;
    }

    .block-feedback .radio-buttons{
        flex:0 0 20%
    }
    .block-feedback .checkbox-buttons{
        max-height: inherit;
    }
    .block-feedback .checkbox-buttons .checkbox-button:last-of-type{
        margin-bottom: 0;
    }
    .block-feedback input.global-button {
        margin-left: 0;
    }

    .block-feedback .form-send{
        display: flex;
        flex-direction: column;
        
    }
   
}

@media only screen and (max-width: 500px){
    .block-feedback .form-send {
        width: 100%;
    }
}

@media only screen and (max-width: 400px){
    .block-feedback {
        max-width: 335px;
    }

    #response_feedback{
        padding: 20px;
        gap: 40px;
    }

    #response_feedback #msg-btn {
        align-self: stretch;
        width: 100%;
    }

    #response_feedback.msg-error .response-feedback-text{
        position: relative;
        padding-left: 80px; 
    }

    #response_feedback.msg-error .response-feedback-text::before{         
        width: 32px;
        height: 32px;

    }


}