@font-face {
	font-family: "Rubik";
	font-weight: 400;
	font-style: normal;
	src: local('Rubik'), local('Rubik-Regular'), url(//dopamineo.co.il/wp-content/uploads/sgf-css/iJWKBXyIfDnIV7nBrXyw023e.woff2) format('woff2'), url(//dopamineo.co.il/wp-content/uploads/sgf-css/iJWKBXyIfDnIV7nBrXo.woff) format('woff');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*,
*::after,
*::before {
    box-sizing: border-box;
}

body {
    /* background: rgba(0, 0, 0, 0.2); */
    /* background-image: linear-gradient(200deg, #FFFFFF 0%, #DEDEDE 100%); */
}

:root {
    --dimension: 100px;
    --thickness: 6px;
    --red_color: #FF2700;
    --color: #060080;
}

h2,
h3,
h5 {
    margin: 0;
}

.arrow-down {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 55%;
    left: 5px;
    animation: bounce 3s infinite;
    display: none;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -moz-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.arc {
    position: relative;
    width: var(--dimension);
    height: var(--dimension);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.arc:before,
.arc:after {
    border-bottom: var(--thickness) solid var(--color);
    border-left: var(--thickness) solid transparent;
    border-radius: 50%;
    border-right: var(--thickness) solid var(--color);
    border-top: var(--thickness) solid var(--color);
    bottom: 0;
    box-sizing: border-box;
    content: '';
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    transform-origin: center center;
}

.arc:before {
    animation: rotate 1s ease-in-out infinite;
    height: 100%;
    width: 100%;
}

.arc:after {
    animation: rotate 1s ease-in-out infinite reverse;
    height: 50%;
    width: 50%;
}

#chooseDopaApp {
    /* position: absolute; */
    /* width: 900px; */
    /* left: 50%; */
    /* top: 10%; */
    /* transform: translate(-50%); */
    padding: 16px;
    font-family: "Rubik", Geneva, Verdana, sans-serif;
    background: #FFF;
    /* box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.5); */
    /* min-height: 500px; */
    height: 100%;
    width: 100%;
}

.quiz-question {
    /* margin-top: 45px; */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.buttons {
    display: flex;
    flex-direction: row-reverse;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.logo-img {
    width: 220px;
}

.question-results {
    /* background: pink; */
    /* width: 250px; */
    /* height: 120px; */
    /* position: absolute; */
    /* left: 0; */
    /* top: 0; */
    list-style: none;
    /* border: 1px dashed black; */
    margin: 0;
    text-align: right;
    padding: 4px;
    border-left-width: 0;
    border-top-width: 0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.question-results>li {
    display: flex;
    gap: 10px;
}

.question-result-question {
    font-weight: bold
}

.responses {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0;
    min-height: 230px;
}

.responses li {
    height: 200px;
    width: 100%;
    overflow: hidden;
    cursor: pointer;

    display: flex;
    align-items: center;
}

.responses .answer-label {
    background-size: cover;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    transition: all 2500ms ease-out;
    cursor: pointer;
    margin: 0 auto;
}

.responses .answer-label:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.5); */
    /* background: #060080; */
    /* background: #065863; */
    background: #055b75;
    opacity: 0.46;
    top: 0;
    left: 0;
    transition: all 400ms ease-out;
    pointer-events: none;
}

.responses .answer-label:hover:after {
    /* background: rgba(0, 0, 0, 0.1); */
    transition: all 400ms ease-out;
    opacity: 0.1;
}

.responses li:hover .answer-label {
    transform: scale(1.15);
}

.responses .answer-label label {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.responses .answer-label input {
    appearance: none;
    display: none;
}

.responses .answer-label span {
    color: #FFF;
    font-size: 16px;
    text-align: center;
    padding: 8px;
    position: relative;
    z-index: 10;
    cursor: pointer;
    font-weight: 800;
}

.titles {
    text-align: center;
}

.titles.questionNumberText {
    font-weight: bold;
    color: #444;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.titles.subText {
    color: #8e8e8e;
    font-size: 0.9rem;
}

.titles.text {
    color: #000;
    /* position: relative; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.titles.questionNumberText::after,
.titles.questionNumberText::before {
    width: 50px;
    left: 0;
    height: 2px;
    content: '';
    background: #FF2700;
    z-index: 1;
    margin: 0 4px;
}

.titles.questionNumberText::after {
    right: 0;
}

.titles.main-title {
    text-align: center;
}

hr {
    width: 80%;
    margin: 0 auto;
    border: 0.1px solid #ccc;
}

.buttons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.go-to-product-button,
.restart-quiz-button {
    border: 0 !important;
    cursor: pointer !important;
    background-color: var(--red_color) !important;
    color: #FFF !important;
    display: block !important;
    font-size: 16px !important;
    text-align: center !important;
    font-family: inherit !important;
    position: relative !important;
    z-index: 10 !important;

    min-width: unset !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    cursor: pointer !important;
    position: relative !important;
    text-decoration: none !important;
    overflow: visible !important;
    padding: .618em 1em !important;
}

.restart-quiz-button {
    background-color: var(--color) !important;
}

.quiz-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.result-dopa-2-cols {
    display: grid;
    grid-template-columns: 300px 1fr;
}

.result-dopa-2-cols .result-dopa-image {
    /* height: 600px; */
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.result-dopa-2-cols .result-dopa-text {
    position: relative;
    transition: all 4000ms ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* gap: 30px; */
    text-align: center;
}

.chosen-dopa-name {
    font-size: 20px;
    font-weight: bold;
}

.result-dopa {
    height: 600px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    transition: all 4000ms ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.result-dopa:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    pointer-events: none;
}

.result-dopa p {
    color: #FFF;
    font-size: 36px;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 10;
}

.result-dopa p:nth-child(2) {
    color: #FFF;
    font-size: 56px;
    text-decoration: underline;
    transform: rotate(2deg);
}

.result-dopa p.dopa-description {
    font-size: 18px;
}

.close-modal {
    font-size: 25px;
    font-weight: bold;
    cursor: pointer;
    vertical-align: baseline;
    display: flex;
    justify-content: flex-end;
}

.go-forward,
.go-back {
    cursor: pointer;
}

.go-forward {
    text-align: end;
}

label#finish {
    background: #060080;
}

label#finish>span {
    font-size: 24px;
}


@media (max-width: 767px) {
    #chooseDopaApp {
        width: 90%;
        position: relative;
        left: unset;
        top: unset;
        transform: unset;
        margin: 0 auto;
        height: 90%;
    }

    .arrow-down {
        display: block;
    }

    .responses {
        list-style: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: unset;
        gap: 10px;
        padding: 0;
    }

    .responses li {
        width: unset;
        height: 150px;
        align-items: unset;
    }

    .restart-quiz-button {
        background-color: #060080;
        color: #FFF;
    }

    .result-dopa-2-cols {
        grid-template-columns: 1fr;
    }

    .result-dopa-2-cols .result-dopa-image {
        height: 300px;
    }
}