@font-face {
    font-family: Montserrat-Regular;
    src: url("../assets/fonts/Montserrat-Regular.ttf");
}

@font-face {
    font-family: Montserrat-SemiBold;
    src: url("../assets/fonts/Montserrat-SemiBold.ttf");
}

@font-face {
    font-family: Montserrat-Medium;
    src: url("../assets/fonts/Montserrat-Medium.ttf");
}

@font-face {
    font-family: Signika-VariableFont;
    src: url("../assets/fonts/Signika-VariableFont.ttf");
}

* {
    margin: 0%;
    overflow-wrap: break-word;
    word-break: break-word;
}

@media only screen and (max-width: 768px) {
    .privacy-policy {
        -webkit-hyphens: auto;
        -moz-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

.row {
    margin-right: -16px;
    margin-left: -16px;
}


/*PREVENT STICKY BUTTONS ON TOUCH DEVICES*/
@media (pointer: coarse) {
    [data-color-link-primary]:hover,
    [data-color-link-secondary]:hover,
    [data-menu]:hover,
    [data-color-social-primary]:hover,
    [data-color-social-secondary]:hover {
      opacity: 1 !important;
    }
    [data-button]:hover:not([disabled])
    {
      opacity: 1 !important;
    }
}

.check-margin {
    margin-bottom: 3px;
}

#gtp .image-double {
    padding: 5px;
}


/* custom default values */

#start-button>span,
#submit-button>span {
    font-family: Signika-VariableFont;
}

.copyright>span {
    font-size: 14px;
    font-family: Montserrat-Regular;
}

.copyright>a {
    font-size: 14px;
    font-family: Montserrat-LightItalic;
}

.col-md-12>.custom-control>label>span {
    font-family: Montserrat-Regular;
    font-size: 14px;
}

.col-md-12>.custom-control>label>a {
    font-family: Montserrat-LightItalic;
    font-size: 14px;
}

h3>span,
h3>span>span {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    color: inherit;
}

div[data-background] {
    z-index: 0;
}

[data-email] {
    position: relative;
    min-height: 100vh;
    background-color: black;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
}

body {
    position: relative;
}

.form-control {
    border-radius: 0 !important;
}

.custom-control-label::before,
.custom-control-label::after {
    border-radius: 0 !important;
}

.custom-control-label::before {
    border: 1px solid #662d91;
    background-color: transparent;
}

.custom-checkbox .custom-control-label::before,
.custom-checkbox .custom-control-label::after {
    top: calc(50% - 0.5rem);
}

.custom-checkbox .custom-control-label * {
    vertical-align: middle;
}

#main-content>div {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    justify-content: space-between;
}

a {
    color: #ffffff;
    text-decoration: none;
}

.logo {
    margin: 1rem auto;
    max-width: 160px;
    max-height: 120px;
    object-fit: contain;
}

.img-container {
    border: 4px solid #662d91;
    padding: 7px;
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
}

.img-container img {
    width: 100%;
    max-height: 24rem;
    object-fit: cover;
}

button {
    font-size: 1rem;
    cursor: pointer;
    padding: 0.7rem;
    margin: 2rem 0;
}

#start-button,
#submit-button {
    width: 50%;
}

#game-view,
#quiz {
    display: flex;
    flex-direction: column;
    width: 85%;
    margin: auto;
    align-items: center;
    border: 9px solid;
}

.content {
    border: 15px solid;
    width: 80%;
    margin: auto;
    padding: 0 1rem;
}

.content-background {
    padding: 1rem 0.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

#game-view {
    border: none;
    width: 100%;
}

#swipe,
#quiz {
    margin-top: 5%;
}

.copyright {
    text-shadow: 1px 1px black;
    text-align: center;
    margin-top: 2rem;
}

h1,
h2,
h3 {
    color: #662d91;
    font-weight: 600;
}

h2 {
    color: #ffffff;
    margin: 0;
    font-weight: 600;
}

.text-1 {
    margin-top: 5%;
}

.photos {
    padding: 4px;
    width: 72vw;
    border: 2px solid #662d91;
    margin-top: 10%;
    margin-bottom: 15%;
}

.btn-border1 {
    border: 2px solid #662d91;
    padding: 2px;
    width: 65%;
    height: auto;
    margin-bottom: 15%;
}

button img {
    width: 6.5vw;
    position: relative;
    left: 7px;
}

.container-checkbox {
    width: 100%;
    margin-bottom: 20%;
    margin-top: 4%;
}

.wrapper-checkbox {
    position: relative;
    display: flex;
    padding: 4px;
}

label {
    text-align: left;
    width: 85%;
}

input[type="checkbox"],
[type="radio"] {
    appearance: none;
    width: 6vw;
    height: 6vw;
    background-color: transparent;
    border: 1px solid #662d91;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    margin: auto;
    outline: none;
}

input[type="radio"] {
    border-radius: 50%;
}

input[type="checkbox"]:after,
input[type="radio"]:after {
    content: "\2610";
    color: #ffffff;
    display: none;
    position: relative;
    background-color: #ffffff;
    font-size: 3vw;
    height: auto;
    width: 4vw;
}

input[type="radio"]:after {
    border-radius: 50%;
}

input[type="checkbox"]:checked:after,
input[type="radio"]:checked:after {
    display: block;
}

.custom-control-label::after {
    border-radius: 0.25rem;
}

ul {
    width: 100%;
    list-style-type: none;
    display: flex;
    justify-content: center;
    padding: 0%;
    margin-bottom: 10%;
}

li {
    display: inline-flex;
    margin-right: 20px;
    justify-content: center;
    margin-left: 20px;
    border-radius: 50%;
}

li img {
    width: 12vw;
}

.time-size {
    font-size: 5.5vw;
}

.time {
    width: 3vw;
}

#quiz img {
    margin-bottom: 8%;
}

#answers {
    width: 88%;
    margin-bottom: 2%;
}

#answers button {
    width: 100%;
    margin-bottom: 3%;
}

#swiper {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    margin-bottom: 10%;
}

#swiper button {
    background: #662d91;
    width: 16vw;
    height: 16vw;
    padding: 0%;
    margin: auto;
}

#swiper button img {
    left: 0%;
    width: 6vw;
}

.true {
    width: 7vw !important;
}

.container-survey {
    width: 100%;
    margin-bottom: 10%;
}

.container-survey label {
    font-size: 5.5vw;
    padding: 10px;
    border: 1px solid #662d91;
    background-color: #662d91;
    width: 78%;
    text-align: center;
    cursor: pointer;
    margin: auto;
}

#survey .btn-border1 {
    width: 47%;
}

textarea {
    width: 65vw;
    margin: auto;
    background-color: #ffffff;
    color: #662d91;
    border: 0.7vw solid #662d91;
    margin-bottom: 10%;
    font-size: 4vw;
    outline: none;
    height: 28vw;
    padding: 1vw 2vw;
}

textarea::placeholder {
    color: #662d91;
}

.memory-card {
    width: 100%;
}

#outcome-title,
.introduction_headline,
.register_headline {
    margin-top: 2rem;
    margin-bottom: 2rem;
    word-break: break-word;
}

ul.social {
    list-style: none;
    margin: 0;
    margin-bottom: 2rem;
    padding: 0;
    display: block;
    text-align: left;
    margin-left: -0.5rem;
    width: 100%;
}

ul.social li {
    margin: 0.5rem;
    display: inline-block;
}

ul.social li a {
    text-decoration: none;
}

ul.social li a i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #000000;
    border-radius: 50%;
    font-size: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

ul.social li a i:hover {
    opacity: 0.5;
}

.privacy-policy {
    margin: 2rem 0;
}

.privacy-policy .heading-style {
    text-align: center;
    margin: 2rem 0;
}

.privacy-policy h4 {
    font-weight: 600;
}

.privacy-policy ul {
    list-style: disc;
    margin: 0;
    justify-content: left;
    width: auto;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.privacy-policy li {
    margin: 0;
    display: list-item;
    border-radius: unset;
}


/* cta buttons */

.cta-buttons {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin: 10px auto;
}

.cta {
    display: none;
    min-width: 150px;
    min-height: 45px;
    padding: 5px 10px;
    margin: 10px;
}

@media only screen and (min-width: 1650px) {
    .content {
        width: 70%;
    }
}

@media only screen and (min-width: 768px) {
    .cta-buttons {
        justify-content: flex-start;
    }
    #game-view,
    #quiz,
    #swipe {
        width: 75%;
        border: 1.8vw solid;
    }
    .content-background {
        display: flex;
        flex-flow: row nowrap;
    }
    .img-item {
        order: 2;
    }
    #survey .img-item {
        order: 1;
    }
    .txt-item {
        order: 1;
    }
    .memory-cont {
        display: flex;
        flex-direction: column-reverse;
    }
    .header-game {
        margin: 30px auto;
    }
    .game-border {
        border: 1.8vw solid;
    }
    #card-container {
        margin: auto;
    }
    #game-view {
        border: none;
        width: 100%;
    }
    .copyright {
        font-size: 1.9vw;
        margin: 1rem auto;
        text-align: center;
        text-shadow: 1px 1px black;
    }
    .text-1 {
        margin-top: 2%;
    }
    .photos {
        width: 31vw;
        margin: 0%;
        position: absolute;
        margin-top: 5vw;
        left: 16%;
        border: 0.2vw solid #662d91;
        padding: 8px;
    }
    .btn-border1 {
        width: 20%;
        margin-bottom: 8%;
        margin-top: 2%;
        position: relative;
        left: 14%;
    }
    .inputs {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 1%;
    }
    .row-input {
        display: flex;
        width: 91%;
        margin-left: auto;
    }
    .container-checkbox {
        width: 100%;
        margin: 0%;
    }
    .checkbox-styling {
        padding-left: 1rem;
        margin-top: 1rem;
    }
    input[type="checkbox"],
    [type="radio"] {
        appearance: none;
        width: 1.5vw;
        height: 1.5vw;
        margin-left: 8%;
        margin-right: 2%;
    }
    button img {
        width: 2vw;
    }
    input[type="checkbox"]:after,
    input[type="radio"]:after {
        height: 70%;
        font-size: 0px;
        width: 70%;
    }
    ul {
        margin-top: 3%;
        margin-bottom: 5%;
        margin-left: 50%;
        width: 50%;
        justify-content: left;
    }
    li {
        margin-right: 0%;
        margin-left: 8%;
    }
    li img {
        width: 3vw;
    }
    .time-size {
        font-size: 2.5vw;
        margin-left: 32vw;
        margin-bottom: 2%;
    }
    .time {
        width: 1.5vw;
    }
    #answers {
        margin-top: 3%;
        margin-left: 50%;
        width: 50%;
        margin-bottom: 5%;
    }
    #answers button {
        width: 55%;
        margin-left: 8%;
        padding: 5px;
    }
    #quiz {
        margin-top: 0%;
    }
    .container-survey {
        margin-left: 50%;
        margin-top: 8%;
        width: 50%;
        margin-bottom: 5%;
    }
    .container-survey label {
        font-size: 2vw;
        width: 65%;
    }
    #survey .btn-border1 {
        width: 20%;
        left: 15%;
    }
    .survey-text {
        margin-left: 33%;
    }
    textarea {
        margin-left: 54%;
        margin-top: 8%;
        width: 35%;
        margin-bottom: 1%;
        font-size: 2vw;
        height: 13vw;
        border: 0.4vw solid;
    }
    .survey-text-2 {
        margin-left: 20%;
    }
    .quiz-margin {
        margin-left: 30vw;
    }
    .swipe-text {
        width: 52%;
        margin-left: 5%;
    }
    #swipe img[src$="jpg"] {
        left: 34%;
    }
    #swiper button {
        width: 6vw;
        height: 6vw;
        margin-top: 20%;
        margin-bottom: 7%;
    }
    #swiper button img {
        left: 0%;
        width: 6vw;
        width: 3vw;
    }
    .true {
        width: 4vw !important;
    }
}

@media only screen and (max-width: 767px) {
    .logo {
        max-width: 200px;
        max-height: 120px;
    }
    .content-background {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #introduction {
        width: 90%;
    }
    #register {
        width: 90%;
    }
    button {
        width: 80%;
        max-width: 14rem;
        margin: 0 auto;
        margin-top: 2.5rem;
    }
    .game-description {
        text-align: center;
    }
    .checkbox-styling {
        padding-left: 0rem;
        margin-top: 1rem;
    }
    ul.social {
        text-align: center;
        margin-bottom: 0;
        margin-left: 0;
    }
    .content {
        width: 90%;
    }
}


/* MEMORY GAME */

#page-container {
    width: 100%;
    text-align: center;
}

#page-container .container {
    display: flex;
    align-items: center;
    margin: 0 auto;
    max-width: 1060px;
}

.game-border {
    border: 15px solid #662d91;
}

#card-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem 0;
}

.game-item {
    display: flex;
    justify-content: center;
    -ms-flex-preferred-size: 22%;
    flex-basis: 22%;
    margin: 10px;
}

.game-item img {
    -webkit-user-drag: none;
}

.memory-card {
    font-size: 0px;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: cover;
    width: 12rem;
    height: 12rem;
    -webkit-box-shadow: 0 8px 5px rgba(0, 0, 0, 0.26);
    box-shadow: 0 8px 5px rgba(0, 0, 0, 0.26);
}

.header-game {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    width: 100%;
}

.header-game .time {
    border-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-weight: 900;
    font-size: 2rem;
    width: fit-content;
}

.header-game .time-element {
    margin-bottom: 0;
}

.header-game .game-icon {
    background-color: #fff;
    mask: url("https://brame-campaign-data-storage.s3.amazonaws.com/campaign-data/cdbb05bf-6a4f-11ed-b30f-11fa13af1445/assets/icons/stopwatch.svg") no-repeat center / contain;
    -webkit-mask: url("https://brame-campaign-data-storage.s3.amazonaws.com/campaign-data/cdbb05bf-6a4f-11ed-b30f-11fa13af1445/assets/icons/stopwatch.svg") no-repeat center / contain;
    height: 24px;
    width: 24px;
}

.header-game .time span {
    display: block;
    margin-left: 0.5rem;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .game-item {
        -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
    }
    .container {
        width: 80%;
    }
    .memory-card {
        width: 7rem;
        height: 7rem;
    }
    body #main-content .game .game-content .game__block a.btn {
        margin-bottom: 1rem;
        padding: 0.75rem 2rem;
    }
    .content {
        width: 90%;
    }
}

@media only screen and (min-width: 361px) and (max-width: 767px) {
    .header-game {
        margin-top: 1rem;
    }
    .header-game .time {
        padding: 0.5rem 1.5rem;
        font-size: 1.25rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        border-radius: 14px;
    }
    .game-item {
        -ms-flex-preferred-size: 36%;
        flex-basis: 36%;
    }
    .memory-card {
        width: 27vw;
        height: 27vw;
    }
    body #main-content .game .game-content .game__block a.btn {
        margin-bottom: 1rem;
        padding: 0.75rem 2rem;
    }
}

@media only screen and (max-width: 360px) {
    .header-game {
        margin-top: 1rem;
    }
    .header-game .time {
        padding: 0rem 1.5rem;
        font-size: 1.25rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        border-radius: 14px;
        width: 300px;
    }
    .game-item {
        -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    }
    .memory-card {
        width: 30vw;
        height: 30vw;
    }
    body #main-content .game .game-content .game__block a.btn {
        margin-bottom: 1rem;
        padding: 0.75rem 2rem;
    }
}

@media only screen and (min-width: 1024px) {
    .content-background {
        padding: 3rem 3rem;
    }
}


/* QUIZ  */

.game {
    max-width: 100%;
    height: auto;
    padding: 7px;
    width: 100%;
    max-height: 24rem;
    object-fit: cover;
}

.image-double {
    border: 4px solid;
}

#game-view .intro-img-container {
    max-width: 100%;
}

body #game-view .answer {
    text-decoration: none;
    padding: 0.7rem;
    text-align: center;
    margin: 0.5rem 0rem;
    border: 2px solid;
    word-wrap: break-word;
}

body #game-view .answerSwipe {
    text-decoration: none;
    padding: 0.7rem;
    text-align: center;
    margin: 0.5rem;
    border: 2px solid;
    word-wrap: break-word;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .content-background {
        flex-direction: column;
    }
    body #game-view .intro-img-container {
        margin-top: 2rem;
    }
    .intro-text-container {
        margin-top: 2rem;
    }
    .game {
        max-width: 80%;
        height: auto;
        margin: auto;
        padding: 7px;
    }
}


/* SWIPE  */

.game-container-swipe h3 span {
    font-weight: 600;
}

.introduction-img {
    position: relative;
    height: 330px;
    width: 330px;
    border: 4px solid;
}

.introduction-img img {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    /* transform: rotate(-45deg); */
    object-fit: cover;
}

.swipe-container {
    margin: -1rem;
    padding: 0 1rem;
}

.game-container-swipe {
    width: 60%;
    margin: 1rem auto;
    padding: 1rem;
    border-radius: 1.5rem;
}

.questionHeading {
    font-weight: 600;
}

.images {
    position: relative;
    margin: auto;
}

.mobileArrow {
    position: absolute;
    top: calc(50% - 30px);
    left: -7rem;
}

body #game-view .answerSwipe {
    white-space: normal;
    word-wrap: break-word;
    margin: 0.5rem auto;
    padding: 0.7rem;
}

.arrowsSmallDeviceContainer {
    display: none;
}

.mobileArrow2 {
    position: absolute;
    top: calc(50% - 30px);
    right: -7rem;
}

.mirror {
    transform: scaleX(-1);
}

.arrowSwipe {
    font-size: 60px;
}

@media only screen and (max-width: 520px) {
    .mobileArrowSmallDevice,
    .mobileArrowSmallDevice2 {
        font-size: 40px;
    }
    .arrowsSmallDeviceContainer {
        display: flex;
    }
    .mobileArrow,
    .mobileArrow2 {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .answersSwipeContainer>div {
        padding-left: 0;
        padding-right: 0;
    }
    .images {
        max-width: 100%;
    }
    .game {
        max-width: 100%;
    }
    .game-container-swipe {
        width: 100%;
        padding: 0.5rem;
    }
    body #game-view .answerSwipe {
        width: 90%;
    }
    .arrowSwipe {
        font-size: 50px;
    }
    .mobileArrow,
    .mobileArrow2 {
        top: calc(50% - 25px);
    }
    .mobileArrow {
        left: -6rem;
    }
    .mobileArrow2 {
        right: -6rem;
    }
    .introduction-img {
        height: 240px;
        width: 240px;
        border: 4px solid;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .game-container-swipe {
        width: 80%;
        padding: 1rem;
    }
    .introduction-img {
        height: 290px;
        width: 290px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .game-container-swipe {
        width: 80%;
        padding: 1rem;
    }
}

#privacy_checbox_1 {
    text-align: left !important;
    display: inline-block;
}

#privacy_checbox_2 {
    text-align: left !important;
    display: inline-block;
}

#privacy_checbox_3 {
    text-align: left !important;
    display: inline-block;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/* gtp animation fix */

#gtp .game {
    padding: 1px;
}

.gtp-tile-wrap {
    display: flex;
    flex-wrap: wrap;
}


/* Spin the wheel
--------------------------------- */

.spin-the-wheel {
    width: 100%;
}

.spin-the-wheel .canvas-section {
    display: flex;
    justify-content: end;
    padding-right: 40px;
}

.spin-the-wheel .legend-section {
    display: flex;
    justify-content: start;
    flex-direction: column;
}

.spin-the-wheel .canvas-container {
    border: 12px solid #ffc840;
    border-radius: 50%;
    width: 414px;
    height: 414px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spin-the-wheel .canvas-wrapper {
    width: 390px;
    height: 390px;
    border: 10px solid transparent;
}

.spin-the-wheel canvas {
    width: 370px;
    height: 370px;
    border-radius: 50%;
    cursor: pointer;
}

.spin-the-wheel .ticker-layer {
    position: absolute;
    width: 40px;
    display: flex;
    z-index: 1;
    top: -10px;
    justify-content: center;
}

.spin-the-wheel .ticker-layer img {
    width: 40px;
    height: 43px;
    object-fit: contain;
}

.spin-the-wheel .center-layer {
    position: absolute;
    margin: auto;
}

.spin-the-wheel .center-layer img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.spin-the-wheel .legend-element {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.spin-the-wheel .legend {
    display: flex;
    flex-direction: column;
}

.spin-the-wheel .legend .sector {
    width: 60px;
    height: 60px;
    text-align: center;
    padding: 10px;
    display: inline-block;
    margin-right: 20px;
}

.spin-the-wheel .legend span {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
}

.spin-the-wheel .legend .sector img {
    width: 40px;
    height: 40px;
}

.spin-the-wheel .button-container button {
    width: 270px;
    height: 48px;
    margin-bottom: 0;
    margin-top: 24px;
}

@media screen and (max-width: 1200px) {
    .spin-the-wheel .canvas-section {
        padding-right: 0;
    }
}

@media screen and (max-width: 991px) {
    .spin-the-wheel .content-background {
        flex-direction: column;
        position: relative;
    }
    .spin-the-wheel .content-background .legend-section {
        order: 1;
        margin-top: 60px;
        margin-bottom: 40px;
    }
    .spin-the-wheel .content-background .canvas-section {
        order: 2;
        margin-bottom: 100px;
    }
    .spin-the-wheel .button-container {
        position: absolute;
        bottom: 40px;
        right: 100px;
    }
}

@media screen and (max-width: 500px) {
    .spin-the-wheel canvas {
        width: 230px;
        height: 230px;
    }
    .spin-the-wheel .canvas-wrapper {
        width: 250px;
        height: 250px;
    }
    .spin-the-wheel .canvas-container {
        width: 275px;
        height: 275px;
    }
    .spin-the-wheel .button-container {
        position: absolute;
        bottom: 40px;
        right: 0;
        left: 0;
        text-align: center;
    }
    .spin-the-wheel .legend .sector {
        margin-right: 4px;
    }
    .spin-the-wheel .legend span {
        font-size: 16px;
    }
    .spin-the-wheel .ticker-layer img {
        width: 40px;
        height: 30px;
    }
    .spin-the-wheel .center-layer img {
        width: 25px;
        height: 25px;
    }
}

@media screen and (max-width: 350px) {
    .spin-the-wheel canvas {
        width: 210px;
        height: 210px;
    }
    .spin-the-wheel .canvas-wrapper {
        width: 230px;
        height: 230px;
    }
    .spin-the-wheel .canvas-container {
        width: 255px;
        height: 255px;
    }
}


/* ---------------------------------------------------------------------------- */


/* ================================= SURVEY =================================== */


/* ---------------------------------------------------------------------------- */

h3>span,
h3>span>span {
    color: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    font-family: inherit;
}

#surveyGame {
    width: 100%;
    height: auto;
    padding: 20px 10px;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#surveyGame .button-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

#surveyGame .button-container button {
    max-width: 240px;
    padding: 10px 20px;
    width: 100%;
    min-width: 100px;
    margin: 10px 5px;
}

.survey__question__wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.survey__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.survey__picture-section,
.survey__text-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.survey__text-section {
    width: 100% !important;
    margin: 0 auto;
}

.survey__picture-section {
    width: 430px;
    height: 300px;
}

.survey__navigation,
.survey__question-text {
    display: flex;
    gap: 0;
    justify-content: center;
}

.survey__navigation {
    width: 100%;
}

.survey__question-text {
    margin: 0 auto 20px;
    text-align: center;
}

.survey__question-text p {
    margin: 0;
}

.survey__navigation>button {
    padding: 10px 20px;
    margin: 10px 5px;
    min-width: 100px;
    max-width: 240px;
    width: 100%;
}

.survey__question-counter {
    display: flex;
    justify-content: center;
    margin: 20px auto;
}

.survey__question-counter h3 {
    margin: 0;
}

.survey__answers {
    margin: 20px auto;
    width: 100%;
}

.text-answer {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border: 2px solid black;
}

.text-answer>textarea {
    all: unset;
    width: 100%;
    min-height: 150px;
    padding: 5px;
    text-align: left;
    background-color: white;
}

.single-answer label::before,
.single-answer label::after {
    border-radius: 50% !important;
}

.multiple-answer label,
.multiple-answer span,
.single-answer label,
.single-answer span {
    width: fit-content;
}

#surveyGame .custom-checkbox .custom-control-label::before,
#surveyGame .custom-checkbox .custom-control-label::after {
    top: calc(50% - 0.5rem);
}

.single-answer,
.multiple-answer {
    flex-flow: row nowrap;
    gap: 20px;
    justify-content: center;
}

@media screen and (min-width: 1024px) {
    #surveyGame {
        gap: 50px;
    }
    .survey__navigation {
        order: 5;
    }
}

.survey__content__container {
    align-items: center;
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
}

.custom-control.custom-checkbox {
    margin: 5px 0;
}

@media screen and (max-width: 1250px) {
    #survey .content-background {
        flex-flow: wrap-reverse;
    }
}

@media screen and (max-width: 1119px) {
    .survey__navigation {
        justify-content: center;
        margin-left: 0;
    }
    .single-answer,
    .multiple-answer {
        margin: auto;
    }
}

@media screen and (max-width: 1024px) {
    #survey .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    #survey .img-item {
        margin: 0 auto;
        width: 600px;
        height: 400px;
    }
    .survey__text-section {
        width: 100%;
    }
    .survey__content__container {
        flex-direction: column-reverse;
        align-items: center;
    }
    .survey__navigation {
        order: 5;
        gap: 10px;
    }
    #surveyGame .custom-checkbox {
        text-align: left;
    }
    .single-answer,
    .multiple-answer {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0px !important;
        align-items: center;
    }
    .survey__answers-container {
        width: 55%;
    }
}

@media screen and (max-width: 768px) {
    .survey__picture-section {
        width: 100%;
        height: auto;
        max-height: 420px;
    }
    #survey .img-item {
        order: initial;
    }
    #survey .img-item {
        width: 400px;
        height: 300px;
    }
}

@media screen and (max-width: 550px) {
    #survey .img-item {
        width: 100%;
        height: auto;
    }
    .survey__picture-section img {
        height: auto;
    }
    .survey__navigation {
        flex-direction: column-reverse;
        align-items: center;
    }
}

@media screen and (max-width: 400px) {
    .survey__answers-container {
        width: 100%;
    }
}

.survey__text-section .custom-control-input:disabled~.custom-control-label {
    color: unset;
}

.single-answer label,
.multiple-answer label {
    text-align: left;
}

#survey .content-background {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 20px;
}

#survey.content {
    padding: 0;
}
/* ----- kill outline on focus ------ */
textarea:focus-visible {
    outline: none;
  }
  .single-answer ::before,
  .multiple-answer ::before{
    outline: none;
    box-shadow: none !important;
  }
  button:focus,
  button:focus-visible {
      outline: none !important;
  }
  /* ======================== SCALE ELEMENT ======================== */
.scale-container {
    width: 100%;
}
.scale {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: fit-content;
    margin: auto;
}
.scale__line {
    height: 88%;
    margin: auto 0;
    background: rgba(255, 206, 118, 1);
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
}
.scale__sector {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    position: relative;
    z-index: 1;
    margin: 10px;
}
.scale__sector__button {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #fff;
    margin: 0;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
}
.scale__sector__text {
    margin: 0;
    line-height: 1.2;
    cursor: pointer;
    margin-left: 10px;
    text-align: start;
}
.scale__sector__button.scale__marker {
    transform: scale(1.4);
}
.scale__marker:after {
    content: "";
    background-color: rgba(255, 163, 64, 1);
    transition: all .1s ease-out;
    padding: 3;
    border-radius: 50%;
    position: absolute;
    width: 25px;
    height: 25px;
    top: 0;
    left: 0;
    transform: scale(0.7);
}
@media screen and (max-width: 1023px) {
    .scale {
        min-height: 210px;
    }
    span[data-scale-line] {
        width: 5px !important;
    }
    .scale-container>.scale>.scale__sector {
        width: 100% !important;
    }
    .scale_last_visible {
        align-items: flex-end;
    }
    .survey__text-section,
    .survey__picture-section {
        width: 100% !important;
    }
}
@media screen and (min-width: 1024px) {
    .scale-container {
        width: 100%;
        margin: 30px auto;
        min-width: 500px;
        max-width: 1000px;
    }
    .scale {
        width: 100%;
        min-height: auto;
        flex-direction: row;
        margin-top: 15px;
    }
    .scale__line {
        top: 3px;
        width: 88%;
        height: 4px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    .scale__sector {
        height: auto;
        flex-direction: column;
        align-items: center;
        margin: 0;
    }
    .scale__sector__button {
        margin: -8px 0 0 0;
    }
    .scale__sector__text {
        width: 100%;
        text-overflow: ellipsis;
        word-wrap: break-word;
        margin: 10px 0;
        padding: 0 5px;
        text-align: center;
        line-height: 1em;
    }
}
/* ============================== SCRATCH CARD ============================== */
#scratch-card * {
    box-sizing: border-box;
}
.po-none {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}
#scratch-card .content-background {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
#scratch-card .text-container {
    width: 90%;
    height: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
@media screen and (min-width: 1024px) {
    #scratch-card .content-background {
        flex-flow: row nowrap;
        align-items: flex-start;
        gap: 100px;
    }
}
/* -------------- LEGEND -------------- */
#scratch-card .legend {
    width: fit-content;
    max-width: 100%;
    height: auto;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 30px;
    justify-items: start;
    position: relative;
}
#scratch-card .legend-element {
    width: fit-content;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    text-align: start;
}
#scratch-card .legend-element>span {
    display: flex;
    align-items: center;
}
#scratch-card .sector {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
#scratch-card .sector>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* -------------- CARD CONTAINER -------------- */
.scratch-card__container {
    width: 90%;
    max-width: 500px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
    margin: auto;
}
.scratch-card__container>.card {
    min-width: 68px;
    min-height: 68px;
    aspect-ratio: 1 / 1;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none; 
    -o-user-select: none;
    user-select: none;
    background: transparent;
    box-shadow: 0 0 8px rgb(0, 0, 0, 0.5);
    border: 4px solid rgba(6, 158, 193, 1);
    border-radius: 10px;
}
.card-canvas {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 10;
    border-radius: inherit;
}
.prize-cover {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 9;
}
.prize {
    position: relative;
    z-index: 8;
}
.scratch-card__container img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: inherit;
}
/* -------------- ANIMATIONS -------------- */
.card-outline {
    box-shadow: 0 0 5px 8px rgba(255, 255, 255, .5);
}
.card-match {
    box-shadow: 0 0 8px 8px rgba(255, 255, 255, .5);
    -webkit-animation: blink 0.5s infinite;
    -moz-animation: blink 0.5s infinite; 
    -o-animation: blink 0.5s infinite;
    animation: blink 0.5s infinite;
}
@keyframes blink {
    0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, .6); }
    100% { box-shadow: 0 0 8px 10px rgba(255, 255, 255, .6); }
}
@-webkit-keyframes blink {
    0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, .6); }
    100% { box-shadow: 0 0 8px 10px rgba(255, 255, 255, .6); }
}
@-moz-keyframes blink {
    0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, .6); }
    100% { box-shadow: 0 0 8px 10px rgba(255, 255, 255, .6); }
}
@-o-keyframes blink {
    0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, .6); }
    100% { box-shadow: 0 0 8px 10px rgba(255, 255, 255, .6); }
}
/* -------------- retry modal -------------- */
.retry-modal {
    width: 90%;
    max-width: 400px;
    height: fit-content;
    min-height: 300px;
    position: absolute;
    top: 200px;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .30);
    border-radius: 10px;
}
.retry-modal__body {
    width: 100%;
    min-height: 300px;
    padding: 70px 10px 40px;
    border-radius: inherit;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}
.retry-modal__body>h1 {
    margin-bottom: 40px;
}
.retry-modal__body>button {
    min-width: 200px;
    padding: 10px 20px;
    margin: 0;
}