#appQuiz a {
    color: unset;
    border: unset;
    outline: unset;
}

#appQuiz .guizCard {
    width: 280px;
    height: 432px;
    padding: 10px 11px 15px;
}
#appQuiz .guizCard .guizTrigger {
    padding: 10px 20px 20px;
    background: #F2F3F5;
    border-radius: 5px;
    height: 100%;
}
#appQuiz .guizCard .guizTrigger__title{
    color: #455A64;
    font-weight: 700;
    text-align: center;
   
}

#appQuiz .guizCard .guizTrigger__title__h1{
    font-size: 22px;
    line-height: 135%;
}

#appQuiz .guizCard .guizTrigger__img {
    padding-top: 5px;
    width: 100%;
}
#appQuiz .guizCard .guizTrigger__btn {
    cursor: pointer;
    margin-top: 17px;
    width: 100%;
    height: 45px;
    border-radius: 5px;
    background: #F7BC58;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
}

@media (max-width:768px){
    #appQuiz .guizCard {
        width: 100%;
        height: auto;  
        padding: 0;
    }
    #appQuiz .guizCard .guizTrigger {
        padding: 10px 5px;
    }
    #appQuiz .guizCard .guizTrigger__title__h1 {
        font-size: 20px;
    }
}

#appQuiz .quizСontent {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 40px;
    width: 1000px;
    height: 600px;
    background: #fff;
    border-radius: 10px;
    transform: translate(-50%, -50%);
    z-index: 1000;
}
#appQuiz .quizСontent .quizСontent__exit {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    opacity: .2;
    background-image: url(../../img/cross_icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
    transition: all .15s;
}

@media (min-width: 768px ) {
    #appQuiz .quizСontent .quizСontent__exit:hover {
        opacity: 1;
    }
}
#appQuiz .quizСontent .quizList {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#appQuiz .quizСontent .quizList__title {
    color: rgba(42, 42, 42, 0.20);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.16px;
}
#appQuiz .quizСontent .quizList__header {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
#appQuiz .quizСontent .quizList__header__text {
    color: var(--text-color);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.24px;
}
#appQuiz .quizСontent .quizList__header__progress {
    color: var(--blue-color);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.14px;
}

#appQuiz .messageToTheQuestion {
    margin-top: 5px;
    color: var( --text-color-50 );
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.14px;
}

#appQuiz .containerOptions_scroll {
    margin: 0 -4px;
    padding: 0 4px 40px;
    overflow-x: auto;
    overflow-y: hidden;
}

#appQuiz .containerOptions {
    margin-top: 30px;
    display: flex;
    justify-content: left;
    height: 100%;
}

#appQuiz .containerOptions.small {
    gap: 40px;
}

#appQuiz .containerOptions.large {
    gap: 16px;
}
#appQuiz .containerOptions .optionsQuiz {
    display: block;
    cursor: pointer;
}
#appQuiz .containerOptions .optionsQuiz__name {
    margin-top: 5px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 135%;
}

#appQuiz .containerOptions.small .optionsQuiz {
    width: 200px;
    height: 224px;
}

#appQuiz .containerOptions.large .optionsQuiz {
    width: 140px;
    height: 164px;
    min-width: 140px;
}

#appQuiz .containerOptions .optionsQuiz__img {
    border-radius: 5px;
    transition: box-shadow .15s;
    object-fit: cover;
}

#appQuiz .containerOptions.small .optionsQuiz__img {
    width: 200px;
    height: 200px;
}

#appQuiz .containerOptions.large .optionsQuiz__img {
    width: 140px;
    height: 140px;
}
#appQuiz .containerOptions input:checked ~ .optionsQuiz__img {
    box-shadow: 0px 0px 0px 4px #FFA12E;
}

@media( min-width: 768px ){
    #appQuiz .containerOptions .optionsQuiz__img:hover {
        box-shadow: 0px 0px 0px 4px #FFA12E;
    }
}

#appQuiz .quizList .quizList__footer {
    display: flex;
    margin-top: auto;
}
#appQuiz .quizList .quizList__footer .quizList__footer__prev,
#appQuiz .quizList .quizList__footer .quizList__footer__next {
    width: 200px;
    height: 50px;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid;
    font-size: 18px;
    letter-spacing: 0.18px;
    font-weight: 600;
    transition: all .15s;
}
#appQuiz .quizList .quizList__footer .quizList__footer__prev {
    color: var(--fill-gray);
    background: #fff;
}
#appQuiz .quizList .quizList__footer .quizList__footer__next {
    color: #fff;
    background: var(--yellow-color);
    margin-left: auto;
}

@media(min-width: 768px){
    #appQuiz .quizList .quizList__footer .quizList__footer__next:hover,
    #appQuiz .quizList .quizList__footer .quizList__footer__prev:hover {
        background: var( --yellow-active );
        color: #fff;
    }
    #appQuiz .quizList .quizList__footer .quizList__footer__next:disabled:hover {
        background: var(--yellow-color);
    }
}
#appQuiz .quizList .quizList__footer .quizList__footer__next:disabled {
    opacity: .5;
    cursor: default;
}
#appQuiz .loaderWrapper {
    justify-content: center;
    height: 100%;
}

#appQuiz .setItems .containerOptions_scroll{
    margin-top: 30px;
    max-height: 350px;
    overflow-y: auto;
}

#appQuiz .setItems__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 10px;
    column-gap: 20px;
}

#appQuiz .optionsSet {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 50px;
    padding-left: 20px;
    border-radius: 5px;
    background: #F2F3F5;
    cursor: pointer;
}

@media (min-width: 768px) {
    #appQuiz .optionsSet:hover {
        background: #E5E6E9;
    }

}

#appQuiz .optionsSet input[ type="checkbox"] ~ .optionsSet__flag {
    width: 18px;
    height: 18px;
    border: 2px solid var(--text-color-50);
    border-radius: 3px;
}

#appQuiz .optionsSet input[ type="radio"] ~ .optionsSet__flag {
    width: 20px;
    height: 20px;
    border: 1px solid var(--text-color-50);
    border-radius: 50%;
}

#appQuiz .optionsSet input[ type="checkbox"]:checked ~ .optionsSet__flag {
    background-color: var( --yellow-color );
    background-image: url(../../img/check_mark.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px;
    border: none;
}

#appQuiz .optionsSet input[ type="radio"]:checked ~ .optionsSet__flag {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var( --yellow-color );
}

#appQuiz .optionsSet input[ type="radio"]:checked ~ .optionsSet__flag > div {
    background:var( --yellow-color );
    border-radius: 50%;
    height: 10px;
    width: 10px;
}

#appQuiz .optionsSet .optionsSet__title {
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
}

#appQuiz .resultQuiz {
    display: flex;
    flex-direction: column;
}
#appQuiz .resultQuiz__title {
    color: var(--yellow-color);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 25px;
}
#appQuiz .resultQuiz__info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
#appQuiz .resultQuiz__info__title {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.22px;
}
#appQuiz .resultQuiz__info__link {
    color: var(--blue-color);
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 0.18px;
    cursor: pointer;
}

#appQuiz .resultQuiz__mobil {
    display: none;
}

@media( min-width:769px ){
    #appQuiz .resultQuiz__info__link:hover {
        border-bottom: 2px solid ;
    }

}

#appQuiz .resultWrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
#appQuiz .resultWrapper__item {
    display: flex;
    flex-direction: column;
    width: 210px;
    height: 247px;
    border-radius: 5px;
    overflow: hidden;
    gap: 10px;
    padding: 15px;
    transition: box-shadow .15s;
}

@media( min-width:769px ){
    #appQuiz .resultWrapper__item:hover {
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    }

}

#appQuiz .resultWrapper__item__img {
    width: 100%;
    min-height: 135px;
    height: 135px;
}

#appQuiz .resultWrapper__item__price__new {
    font-size: 16px;
    font-weight: 600;
    line-height: 135%;
    margin-right: 15px;
}

#appQuiz .resultWrapper__item__price__old {
    color: rgba(42, 42, 42, 0.20);
    font-size: 14px;
    font-weight: 500;
    line-height: 135%;
    text-decoration: line-through;
}

#appQuiz .resultWrapper__item__name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    max-height: 40px;
    font-size: 14px;
    font-weight: 400;
    line-height: 135%;
}
#appQuiz .formWraper {
    display: flex;
    justify-content: space-between;
    padding: 30px 15px 20px;
    border-radius: 5px;
    background: #F2F3F5;
}
#appQuiz .formWraper__text {
    display: flex;
    flex-direction: column;
    width: 320px;
    height: 88px;
}
#appQuiz .formWraper__text__h1 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin-bottom: 10px;
}
#appQuiz .formWraper__text__h2 {
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
}

#appQuiz .sendBlock {
    position: relative;
}

#appQuiz .sendBlock__form {
    display: flex;
    gap: 15px;
}

#appQuiz .sendBlock__form__input {
    width: 320px;
    height: 50px;
    border: none;
}

#appQuiz .sendBlock__form__btn {
    height: 50px;
    width: 204px;
    background: var(--yellow-color);
    cursor: pointer;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

#appQuiz .sendBlock__form__btn:focus-visible {
    outline: none;
}

#appQuiz .privacyBlock {
    display: flex;
    align-items: center;
}
#appQuiz .privacyBlock__flag {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-color: var(--yellow-color);
    border-radius: 3px;
    opacity: .5;
    background-image: url(../../img/check_mark.svg);
    background-position: center;
}
#appQuiz .privacyPolicy {
    margin: 0;
    text-align: left;
}
#appQuiz .privacyPolicy a {
    color: var(--text-color);
}

#appQuiz .sending_message {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    width: 100%;
    height: 100%;
    border: 1px solid #00AE76;
    border-radius: 5px;
    padding: 5px;
    z-index: 2;
}

#appQuiz .sending_message_container{
    display: flex;
    flex-direction: column;
    gap:10px;
}

#appQuiz .sending_message-heading{
    color: var(--text-black, var(--black, #2A2A2A));
    text-align: center;
    font-size: 14px;
    font-weight: 600;

}

#appQuiz .sending_message-text{
    color: var(--text-black, var(--black, #2A2A2A));
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    height: 30px;

}

@media(max-width: 1000px ){
    #appQuiz .quizСontent .quizСontent__exit {
        top: 8px;
        right: 15px;
    }
    #appQuiz .quizСontent .quizList__title {
        font-size: 14px;
    }
    #appQuiz .quizСontent .quizList__header {
        margin-top: 20px;
        flex-direction: column;
        gap: 8px;
    }
    #appQuiz .quizСontent .quizList__header__text {
        font-size: 18px;
    }
    #appQuiz .quizСontent .quizList__header__progress {
        order: -1;
        font-size: 12px;
    }
    #appQuiz .quizСontent {
        width: 100%;
        height: 100%;
        overflow: auto;
        border-radius: 0;
        padding: 20px 20px 95px 20px;
    }
    #appQuiz .quizList .quizList__footer {
        margin-top: 30px;
    }
    #appQuiz .quizList .quizList__footer .quizList__footer__prev,
    #appQuiz .quizList .quizList__footer .quizList__footer__next {
        width: 155px;
        font-size: 16px;
    }

    #appQuiz .containerOptions {
        display: grid;
        justify-items: center;
    }

    #appQuiz .containerOptions.small  {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        min-height: 180px;
    }

    #appQuiz .containerOptions.small .optionsQuiz {
        /* min-width: 0; */
        width: 155px;
        height: auto;
    }

    #appQuiz .containerOptions.small .optionsQuiz__img {
        width: 155px;
        height: 155px;
    }

    #appQuiz .containerOptions.large  {
        grid-template-columns: repeat(6, 1fr);
        gap: 0;
        min-height: 120px;
    }

    #appQuiz .containerOptions.large .optionsQuiz {
        /* min-width: 0; */
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #appQuiz .containerOptions.large .optionsQuiz__img {
        width: 100px;
        height: 100px;
    }

    #appQuiz .resultQuiz__title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    #appQuiz .resultQuiz__info__title {
        font-size: 18px;
    }
    #appQuiz .resultQuiz__info__link {
        display: none;
    }
    #appQuiz .resultWrapper {
        display: grid;
        justify-items: center;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        margin-bottom: 35px;
    }

    #appQuiz .resultWrapper__item {
        width: 155px;
        padding: 0;
        height: auto;
    }

    #appQuiz .resultQuiz__mobil {
        display: block;
        text-align: center;
    }
    #appQuiz .resultQuiz__mobil__link {
        display: inline-block;
        color: var(--blue-color);
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 0.16px;
        padding-bottom: 2px;
        border-bottom: 1px solid;
        margin-bottom: 30px;
    }
    #appQuiz .formWraper{
        flex-direction: column;
        align-items: center;
        padding: 25px 20px;
        margin: 0 -20px;
    }
    #appQuiz .formWraper__text {
        width: auto;
        height: auto;
        text-align: center;
        margin-bottom: 30px;
    }
    #appQuiz .formWraper__text__h1{
        font-size: 18px;
    }
    #appQuiz .sendBlock__form {
        flex-direction: column;
        gap: 0;
        width: 320px;
        margin-bottom: 20px;
    }
    #appQuiz .sendBlock__form__btn {
        width: 100%;
    }
}

@media (max-width: 690px) {
    #appQuiz .resultQuiz {
        margin-top: 25px;
    }
    #appQuiz .setItems__container {
        grid-template-columns: 1fr; 
    }
    #appQuiz .containerOptions.small  {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 15px;
    }
    #appQuiz .containerOptions.large  {
        row-gap: 20px;
        grid-template-columns: repeat(2, 1fr);
    }
    #appQuiz .resultWrapper {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 20px;
    }
  }