.js_reg_auth {
    display: none !important;
}

* {
    margin: 0 auto;
    padding: 0 auto;
}

body {
    background-color: #fff;
    color: #000;
}

a {
    text-decoration: none;
    color: #000;
}

ol {
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    ol {
        padding-left: 25px;
    }

}

label {
    margin-left: 0;
}

img {
    border-radius: 8px;
}

button {
    border-radius: 10px;
}

.hidden {
    display: none;
}

/*.quiz__var-input{*/
/*    margin-top: 6px;*/
/*    margin-right: 5px;*/
/*}*/
@media (min-width: 1700px) {
    .container {
        max-width: 1600px;
    }
}

.quiz__question {
    flex-direction: column;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

@media (min-width: 992px) {
    .quiz__question {
        margin-bottom: 0;
    }
}

@media (min-width: 1700px) {
    .quiz__question {
        flex-direction: row;
    }
}

.pic-container {
    position: relative;
}

.pic-container-hint {
    position: absolute;
    display: none;
    top: 10%;
    right: 0;
    width: fit-content;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-weight: bolder;
}


.target:hover + .pic-container-hint {
    display: block;
}

.quiz__question-pic {
    display: block;
    width: 100%;
    max-height: 500px;
}

/*@media(min-width: 1200px){*/
/*    .quiz__question-pic{*/
/*        width: 80%;*/
/*    }*/
/*}*/

@media (min-width: 1700px) {
    .quiz__question-pic {
        /*margin-right: 2rem;*/
        width: 900px;
        margin-top: 2.5rem;
    }
}

.target {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    animation: pulse 1.5s infinite;
}

@media (max-width: 767px) {
    .target {
        width: 30px;
        height: 30px;
    }
}

.target-1 {
    top: 56%;
    left: 31%;
}

@media (min-width: 1200px) {
    .target-1 {
        top: 57%;
        left: 32%;
    }
}

@media (min-width: 1700px) {
    .target-1 {
        top: 50%;
        left: 32%;
    }
}

.target-2 {
    top: 56%;
    left: 38%;
}

@media (min-width: 1200px) {
    .target-2 {
        left: 41%;
    }
}

@media (min-width: 1700px) {
    .target-2 {
        top: 41%;
        left: 39%;
    }
}

.target-3 {
    top: 76%;
    left: 48%;
}

@media (min-width: 1700px) {
    .target-3 {
        left: 48%;
        top: 77%;
    }
}

.target-4 {
    top: 60%;
    left: 40%;
}


@media (min-width: 1700px) {
    .target-4 {
        top: 22%;
    }
}

.target-5 {
    top: 71%;
    left: 65%;
}

@media (min-width: 1700px) {
    .target-5 {
        top: 73%;
        left: 65%;
    }
}

.target-6 {
    top: 90%;
    left: 52%;
}

@media (min-width: 1700px) {
    .target-6 {
        top: 55%;
    }
}

.target-7 {
    top: 70%;
    left: 30%;
}


@media (min-width: 1700px) {
    .target-7 {
        left: 30%;
    }
}

.target-8 {
    top: 84%;
    left: 50%;
}

@media (min-width: 1700px) {
    .target-8 {
        top: 85%;
        left: 48%;
    }
}

.target-9 {
    top: 88%;
    left: 20%;
}

@media (min-width: 1700px) {
    .target-9 {
        top: 36.5%;
        left: 20%;
    }
}

.target-10 {
    top: 77%;
    left: 43%;
}

@media (min-width: 1700px) {
    .target-10 {
        top: 76%;
        left: 42%;
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.quiz__question-data {
    width: 100%
}

.quiz__question-data-title {
    text-align: left;
    margin-top: 2rem;
    background-color: #72E6FA;
    color: #fff;
    padding: 10px 20px;
    width: fit-content;
    border-radius: 10px;
    margin-left: 0;
    font-weight: bolder;
}

@media (min-width: 1700px) {
    .quiz__question-data {
        margin-left: 2rem;
    }
}

@media (min-width: 1700px) {
    .quiz__question-data-title {
        margin-top: 2.5rem;
    }
}

.quiz {
    position: relative;
}

.quiz__answer-content {
    width: 100%;
    /*position: absolute;*/
    /*    top: 0;*/
    /*    left: 0;*/
    border: 1px solid #000;
    border-radius: 20px;
    background-color: rgba(252, 251, 251);
    box-shadow: 10px 5px 5px rgba(252, 251, 251);
}

@media (min-width: 1700px) {
    .quiz__answer-content {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
}

.quiz__answer-content div {
    flex-direction: column;
    color: #000;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
}

@media (min-width: 992px) {
    .quiz__answer-content div {
        flex-direction: row;
        /*padding-right: 0;*/
        padding-right: 10px;
    }
}

.quiz__answer-content div p {
    padding-top: 10px;
}

@media (min-width: 1200px) {
    .quiz__answer-content div p {
        padding-right: 2rem;
        padding-top: 10px;
    }
}

.quiz__answer-content div img {
    width: 100%;
    max-width: 422px;
}

@media (min-width: 992px) {
    .quiz__answer-content div img {
        margin-right: 1rem;
        min-width: 180px;
    }
}

/*@media(min-width: 1200px){*/
/*    .quiz__answer-content div img{*/
/*        max-width: 335px;*/
/*    }*/
/*}*/

.quiz__button-wrapper {
    text-align: center;
    padding-top: 2rem;
}

@media (min-width: 992px) {
    .quiz__button-wrapper {
        text-align: left;
        margin-top: auto;
        padding-top: 0;
    }

}

.quiz__answer-button {
    cursor: pointer;
    display: inline-block;
    padding: 10px 30px 10px 30px;
    width: fit-content;
    border: 1px solid #fff;
    color: #fff;
    font-weight: bolder;
    font-size: larger;
    text-transform: uppercase;
}

@media (min-width: 992px) {
    .quiz__answer-button {
        margin-top: 2rem;
    }
}

.quiz__answer-button:hover {
    border: 1px solid #000;
}

.green-btn {
    background-color: limegreen;
}

.blue-btn {
    background-color: steelblue;
}

.pair-images {
    display: flex;
    flex-direction: column;
}

@media (min-width: 1200px) {
    .pair-images {
        flex-direction: row;
    }
}

.pair-images img {
    width: 90%;
}

@media (max-width: 1199px) {
    .pair-images img {
        margin-bottom: 2rem;
        max-width: 333px;
    }
}

.final-btn-wrapper {
    margin-top: 2rem;
}

@media (min-width: 1700px) {
    .final-btn-wrapper {
        margin-top: 4.8rem;
    }
}

.final-title {
    margin-top: 2rem;
    text-align: center;
}

@media (min-width: 1700px) {
    .final-title {
        margin-top: 2rem;
        text-align: left;
    }
}

.quiz__question-answer {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.quiz__var-input {
    flex-shrink: 0; /* Prevent the radio button from shrinking */
    width: 25px; /* Adjust the width to make the radio button bigger */
    height: 25px; /* Adjust the height to make the radio button bigger */
    -webkit-appearance: none; /* Remove default styling for WebKit browsers */
    -moz-appearance: none; /* Remove default styling for Mozilla browsers */
    appearance: none; /* Remove default styling */
    border: 2px solid #ccc; /* Add a border */
    border-radius: 50%; /* Make the border circular */
    outline: none; /* Remove outline */
    cursor: pointer; /* Change cursor to pointer */
    position: relative; /* Position the custom radio button */
}

.quiz__var-input:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%; /* Adjust the size of the inner circle */
    height: 50%; /* Adjust the size of the inner circle */
    background-color: #007bff; /* Color for the checked state */
    border-radius: 50%; /* Make the inner circle round */
    transform: translate(-50%, -50%); /* Center the inner circle */
}

.quiz__question-answer label {
    margin-left: 10px;
    cursor: pointer;
    flex-grow: 1;
}

.double-pic-q2 {
    margin-bottom: 1rem;
    max-width: 369px !important;
}

@media (min-width: 992px) {
    .double-pic-q2 {
        margin-bottom: auto;
        margin-right: 1rem;
    }
}

.double-pic-q4 {
    margin-bottom: 1rem;
}

.pic__content {
    padding: 3rem 0;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

.pic__img {
    width: 100%;
}

.pic__content-target {
    position: absolute;
    animation: pulse 1.5s infinite;
    top: 50%;
}

.t1 {
    left: 18%;
}

.t2 {
    left: 34%;
}

.t3 {
    left: 76%;
}

.t4 {
    left: 89.5%;
}

.rotate {
    display: flex;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: #000;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.rotate__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.rotate p {
    font-size: 3rem;
    margin: 0;
    font-weight: 400;
    color: white;
    font-family: 'bdregular';
}

.rotate img {
    width: 5rem;
    height: 5rem;
}


@media screen and (min-width: 576px) {
    .rotate {
        display: none;
    }
}

.bold {
    font-weight: bolder;
}

.congrats .container {
    border: 1px solid rgba(104, 171, 206, 1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.congrats__btn {
    cursor: pointer;
    width: fit-content;
    color: #fff;
    background-color: rgba(104, 171, 206, 1);
    padding: 10px 30px;
    border-radius: 50px;
    border: 1px solid #fff;
    font-weight: bolder;
}

.congrats__btn:hover {
    border: 1px solid #000;
}

.congrats__list li {
    list-style-image: url("assets/main/dot.png");
    padding-bottom: 5px;
    font-size: larger;
}

.outer-link {
    color: dodgerblue;
}

.linked-pic {
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
}

@media (max-width: 1700px) {
    .new-text {
        width: 100%;
    }
}


.img-block {
    display: flex;
    justify-content: space-around;
}

@media (max-width: 1700px) {
    .img-block {
        flex-direction: column !important;
        margin-right: 0px !important;
        gap: 15px !important;
        justify-content: center;
        align-items: center;
    }

    .img-new {
        /*margin-right: 0px !important;*/
    }
}

.img-new {
margin: 0;
}

.new-block {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin: 0;
}

@media (max-width: 994px) {
    .new-block {

        margin: auto;
    }
}