@import "https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap";
@import "https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap";
@import "https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap";

@font-face {
    font-family: Albus;
    src: url(./Albus.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

.faq {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    top: var(--header-height);
    background: #fff;
    transform: translate(-100%);
    transition: all .3s ease;
    overflow: overlay;
    z-index: 400
}

.faq.active {
    transform: translate(0)
}

.faq .wrapper {
    position: relative;
    padding: 1rem;
    width: min(100%, 40rem);
    margin: 0 auto
}

.faq .wrapper .title {
    padding: .5rem 0;
    text-align: center;
    background: #000;
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase
}

.faq .wrapper .accordion-wrapper {
    margin-bottom: .5rem;
    padding: .75rem 0;
    display: flex;
    flex-direction: column;
    gap: 0 .5rem;
    text-align: left;
    transition: all .3s ease-in-out
}

.faq .wrapper .accordion-wrapper:has(input:checked) {
    gap: .5rem
}

.faq .wrapper .accordion-wrapper:has(input:checked) .accordion-label .accordion-icon {
    transform: rotate(45deg)
}

.faq .wrapper .accordion-wrapper:has(input:checked) .grid {
    grid-template-rows:1fr
}

.faq .wrapper .accordion-wrapper .accordion-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all .3s ease-in-out;
    cursor: pointer
}

.faq .wrapper .accordion-wrapper .accordion-label .accordion-title {
    flex: 1 0 50%;
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 20px;
    color: #000
}

.faq .wrapper .accordion-wrapper .accordion-label .accordion-icon {
    position: relative;
    width: .7rem;
    aspect-ratio: 1;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(-45deg);
    transition: all .3s ease
}

.faq .wrapper .accordion-wrapper .grid {
    flex: 1 0 100%;
    display: grid;
    grid-template-rows:0;
    transition: all .3s ease-in-out
}

.faq .wrapper .accordion-wrapper .grid .accordion-body {
    padding: 0 .5rem;
    font-weight: 500;
    font-size: 1rem;
    overflow: hidden;
    color: #000
}

.header {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: #fff
}

.header .logo {
    cursor: pointer
}

.header .logo img {
    width: 15rem
}

.header .icons {
    display: flex;
    align-items: stretch;
    gap: 1.8rem
}

.header .icons .icon {
    cursor: pointer
}

.header .icons .icon:nth-child(3) {
    display: block;
    align-self: flex-end
}

.header .icons .icon.icon-hidden {
    display: none
}

.header .icons .icon img {
    width: 2rem
}

.header .mobile-menu {
    --height: 85px;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--height);
    height: calc(100dvh - var(--height));
    background: #fff;
    z-index: 50;
    transform: translate(-100%);
    transition: transform .3s ease-in-out
}

.header .mobile-menu.active {
    transform: translate(0)
}

.header .mobile-menu a {
    all: unset;
    display: block;
    position: relative;
    margin-bottom: 2.25rem;
    padding: 0 .8rem;
    color: #000;
    font-weight: 500;
    font-size: 1.25rem;
    cursor: pointer
}

.header .mobile-menu a:first-child {
    margin-top: 2rem
}

@media (max-width: 790px) {
    .header {
        padding: .3rem .6rem;
        gap: .5rem
    }

    .header .logo img {
        width: 9rem
    }

    .header .icons .icon img {
        width: 1.5rem
    }

    .header .mobile-menu {
        --height: 41px
    }
}

.section-profile {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    background: #143272a8;
    -webkit-backdrop-filter: blur(5.5px);
    backdrop-filter: blur(5.5px);
    z-index: 60
}

.section-profile .wrapper {
    position: relative;
    padding: .75rem .75rem 2rem;
    width: min(90%, 40rem);
    margin: 1rem auto 0;
    background: #fff;
    border-radius: .5rem
}

.section-profile .wrapper .profile-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    color: #0032a0
}

.section-profile .wrapper .profile-form .logo {
    text-align: center
}

.section-profile .wrapper .profile-form .logo img {
    width: min(30%, 10rem)
}

.section-profile .wrapper .profile-form .title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: .5rem
}

.section-profile .wrapper .profile-form input {
    width: 100%;
    padding: .5rem 1rem;
    background: #0003;
    border-radius: .25rem;
    border: none;
    line-height: 30px
}

.section-profile .wrapper .profile-form input::-moz-placeholder {
    color: #4d4e4e
}

.section-profile .wrapper .profile-form input::placeholder {
    color: #4d4e4e
}

.section-profile .wrapper .profile-form .login {
    margin-top: .5rem;
    width: min(90%, 20rem);
    padding: .5rem;
    font-weight: 700;
    font-size: 1.56rem;
    color: var(--btn-color);
    background: var(--btn-bg);
    border: none;
    border-radius: 3rem;
    cursor: pointer
}

.section-about {
    display: none
}

.section-about .go-home {
    position: relative;
    width: 100%;
    padding: .5rem 2rem;
    text-align: left;
    color: #0032a0;
    font-weight: 400;
    font-size: .8rem;
    background: #ebf1fd;
    border: none;
    cursor: pointer
}

.section-about .go-home:before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 35%;
    width: .7rem;
    aspect-ratio: 1;
    border-right: 1px solid #0032A0;
    border-bottom: 1px solid #0032A0;
    transform: rotate(135deg)
}

.section-about .timeline {
    width: min(100%, 40rem);
    margin: 0 auto
}

.section-about .timeline img {
    width: 100%
}

.section-about .wrapper {
    position: relative;
    padding: 1rem;
    width: min(100%, 40rem);
    margin: 0 auto;
    transform: translateY(-1.5rem)
}

.section-about .wrapper .title {
    padding: .5rem;
    font-weight: 700;
    text-align: center;
    font-size: 1.2rem;
    line-height: 30px;
    color: #fff;
    text-transform: uppercase;
    background: #0032a0
}

.section-about .wrapper .description {
    margin-top: 1rem;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 22px;
    color: #0032a0
}

.main {
    background: #d6eaff;
    flex-grow: 1;
    display: flex;
    flex-direction: column
}

.main .start-content {
    min-height: calc(100dvh - var(--header-height))
}

.main .start-content .wrapper {
    position: relative;
    padding: 6rem 1rem 1rem;
    width: min(100%, 40rem);
    margin: 0 auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #0032a0
}

.main .start-content .wrapper:after {
    content: "";
    background: url(./bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center calc(100% - 3.5rem);
    position: absolute;
    width: 140%;
    height: 100%;
    z-index: 1;
    top: 10%;
    left: -15%
}

@media (max-width: 768px) {
    .main .start-content .wrapper:after {
        background-position: center calc(100% - 3.5rem);
        width: 100%;
        height: 100%;
        z-index: 1;
        top: 0;
        left: 0
    }
}

@media (max-width: 768px) {
    .main .start-content .wrapper {
        padding-top: 3rem
    }
}

.main .start-content .wrapper .cloud1, .main .start-content .wrapper .cloud2 {
    position: absolute
}

.main .start-content .wrapper .cloud1 img, .main .start-content .wrapper .cloud2 img {
    -o-object-fit: contain;
    object-fit: contain
}

.main .start-content .wrapper .cloud1 {
    top: 1rem;
    left: 0
}

.main .start-content .wrapper .cloud2 {
    bottom: 3rem;
    right: 0
}

.main .start-content .wrapper .content {
    padding: 1rem;
    background-color: #fff;
    border-radius: 8px;
    margin: auto;
    z-index: 1
}

.main .start-content .wrapper .content .splide {
    margin-top: -8rem;
    margin-bottom: 3rem
}

@media (max-width: 768px) {
    .main .start-content .wrapper .content .splide {
        margin-top: -7rem;
        margin-bottom: -1rem;
        width: 120%;
        transform: translate(-9%)
    }
}

.main .start-content .wrapper .content .splide .splide__slide {
    z-index: 1
}

.main .start-content .wrapper .content .splide .splide__slide img {
    transition: transform .3s ease
}

.main .start-content .wrapper .content .splide .splide__slide.is-active {
    z-index: 3
}

.main .start-content .wrapper .content .splide .splide__slide.is-active img {
    transform: scale(1.5)
}

.main .start-content .wrapper .content .splide .slider-item {
    border-radius: 1rem
}

.main .start-content .wrapper .content .splide .slider-item .photo {
    text-align: center;
    width: min(100%, 20rem);
    position: relative;
    height: 17rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto
}

@media (max-width: 380px) {
    .main .start-content .wrapper .content .splide .slider-item .photo {
        height: 15rem
    }
}

.main .start-content .wrapper .content .splide .slider-item .photo img {
    width: min(100%, 20rem);
    z-index: 2;
    filter: drop-shadow(-5px 0 white) drop-shadow(5px 0 white) drop-shadow(0 -5px white) drop-shadow(0 5px white)
}

.main .start-content .wrapper .content .splide .slider-pagination {
    bottom: -1rem;
    display: flex;
    gap: .5rem
}

@media (max-width: 768px) {
    .main .start-content .wrapper .content .splide .slider-pagination {
        bottom: 2rem
    }
}

.main .start-content .wrapper .content .splide .slider-pagination .slider-page {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #b7cde3
}

.main .start-content .wrapper .content .splide .slider-pagination .slider-page.is-active {
    background: #999;
    border: .73px solid #1e1c59;
    transform: none
}

.main .start-content .wrapper .title {
    font-size: 2.5rem;
    color: #ffbe31;
    -webkit-text-stroke: 1px #1e1c59;
    font-family: var(--secondary-family);
    line-height: 110%
}

.main .start-content .wrapper .subtitle {
    font-weight: 700;
    color: #1e1c59;
    font-size: .9rem;
    margin-bottom: .5rem
}

.main .start-content .wrapper .text {
    font-size: .75rem;
    color: #1e1c59
}

.main .start-content .wrapper .text b {
    color: #ffbe31
}

.main .start-content .wrapper .start_button {
    background: #ffbe31;
    margin-top: 1rem;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    border: 1px solid #1e1c59;
    z-index: 2;
    border-radius: 8px
}

.section-questions {
    display: none;
    padding: 1rem 0;
    min-height: calc(100dvh - var(--header-height));
    overflow: hidden
}

.section-questions .title {
    text-align: center;
    font-size: .9rem;
    font-weight: 500;
    color: #1e1c59
}

.section-questions .wrapper {
    position: relative;
    padding: 1rem;
    width: min(100%, 40rem);
    margin: 0 auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #1e1c59
}

.section-questions .wrapper .number {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: baseline;
    line-height: -1;
    font-size: 2rem;
    font-family: var(--secondary-family);
    color: #d5e5f6
}

.section-questions .wrapper .number:before {
    content: "";
    position: absolute;
    background: url(./question-dots.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 3rem;
    height: 3rem;
    left: -1rem;
    top: 2.5rem
}

.section-questions .wrapper .number:after {
    content: "";
    position: absolute;
    background: url(./question-stars.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 3rem;
    height: 3rem;
    right: 0;
    top: 2.5rem
}

.section-questions .wrapper .number .current {
    -webkit-text-stroke: 1px #1e1c59;
    color: #ffbe31;
    font-size: 4rem
}

.section-questions .wrapper .questions {
    flex-grow: 1;
    background: url(./question-bg.png) no-repeat top/75%
}

@media (max-width: 768px) {
    .section-questions .wrapper .questions {
        background: url(./question-bg.png) no-repeat top/contain
    }
}

.section-questions .wrapper .questions .question {
    display: none
}

.section-questions .wrapper .questions .question:before {
    content: "";
    background: url(./question-cloud1.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: -2.33rem;
    bottom: -5rem;
    width: 10rem;
    height: 10rem
}

.section-questions .wrapper .questions .question:after {
    content: "";
    position: absolute;
    background: url(./question-cloud2.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 10rem;
    height: 10rem;
    left: 0;
    bottom: -3rem
}

.section-questions .wrapper .questions .question#question-1 {
    display: block
}

.section-questions .wrapper .questions .question#question-1 .answers .answer-wrapper {
    display: flex;
    flex-direction: column;
    cursor: pointer
}

.section-questions .wrapper .questions .question#question-1 .answers .answer-wrapper:hover .answers-button {
    background: #fff;
    color: var(--btn-bg)
}

.section-questions .wrapper .questions .question#question-1 .answers .answer-wrapper .photo {
    text-align: center
}

.section-questions .wrapper .questions .question#question-1 .answers .answer-wrapper .photo img {
    width: min(100%, 15rem);
    border-radius: .8rem
}

.section-questions .wrapper .questions .question#question-1 .answers .answer-wrapper .answers-button {
    width: min(90%, 10rem);
    padding: 0;
    align-self: center;
    background: var(--btn-bg);
    color: #fff;
    font-size: 1.1rem;
    line-height: 30px;
    transform: translateY(-1rem)
}

.section-questions .wrapper .questions .question#question-1 .answers .answer-wrapper .answers-button:hover {
    background: #fff;
    color: var(--btn-bg)
}

.section-questions .wrapper .questions .question .question-description {
    margin: 0 4rem 1.5rem;
    text-wrap: pretty;
    text-align: center
}

@media (max-width: 768px) {
    .section-questions .wrapper .questions .question .question-description {
        margin: 0 1rem 1.5rem
    }
}

.section-questions .wrapper .questions .question .question-description span {
    font-weight: 700;
    font-size: 1.25rem
}

.section-questions .wrapper .questions .question .question-description p {
    margin: 0;
    font-weight: 400;
    font-size: .8rem;
    font-style: italic;
    color: #000
}

.section-questions .wrapper .questions .question .answers {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem
}

.section-questions .wrapper .questions .question .answers .answers-button {
    width: min(100%, 25rem);
    padding: .4rem;
    z-index: 1;
    background: #bcd0e6;
    color: #1e1c59;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border: 1px solid #1e1c59;
    border-radius: .5rem;
    transition: all .3s ease-in-out;
    cursor: pointer
}

.section-questions .wrapper .questions .question .answers .answers-button .text {
    position: relative
}

.section-questions .wrapper .questions .question .answers .answers-button .text:before {
    content: "";
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    background-image: url(./answer-star.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none
}

.processing-answers {
    padding: 20px;
    display: none
}

.processing-answers h2 {
    font-size: 32px;
    text-align: center
}

.processing-answers .result {
    margin: 0;
    padding: 5px 0 5px 25px;
    display: none;
    font-size: 14px
}

.processing-answers .spinner-border {
    width: 32px;
    height: 32px;
    border-width: 4px
}

.modal-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    background: #0006;
    z-index: 999
}

.modal-wrapper#modal-1 .modal-body .modal-content .text {
    color: #0032a0;
    text-align: left
}

.modal-wrapper#modal-1 .modal-body .modal-content .text p {
    margin: 0;
    font-weight: 500;
    font-size: .8rem
}

.modal-wrapper#modal-1 .modal-body .modal-content .modal-button {
    border-radius: 3rem;
    border: 2px solid var(--btn-bg);
    background: var(--btn-color);
    color: var(--btn-bg);
    font-weight: 800;
    transition: all .3s ease-in
}

.modal-wrapper#modal-1 .modal-body .modal-content .modal-button:hover {
    background: var(--btn-bg);
    color: var(--btn-color)
}

.modal-wrapper .modal-body {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

.modal-wrapper .modal-body .modal-content {
    width: min(90%, 35rem);
    padding: 1rem;
    display: flex;
    flex-direction: column
}

.modal-wrapper .modal-body .modal-content .content {
    background: #fff;
    border-radius: .5rem;
    padding: 2rem
}

.modal-wrapper .modal-body .modal-content .content p {
    margin: 0;
    font-size: 14px;
    color: #0032a0;
    font-weight: 400;
    text-align: left
}

.modal-wrapper .modal-body .modal-content .content .subtitle {
    text-align: left;
    margin-top: -.5rem;
    margin-bottom: 1rem
}

.modal-wrapper .modal-body .modal-content .content h2 {
    text-align: left;
    margin: 0;
    font-size: 3rem;
    line-height: 1;
    -webkit-text-stroke: 1px #1e1c59;
    color: #ffbe31;
    font-family: var(--secondary-family)
}

.modal-wrapper .modal-body .modal-content .content .gift {
    text-align: center
}

.modal-wrapper .modal-body .modal-content .content .gift img {
    width: min(75%, 15rem)
}

.modal-wrapper .modal-body .modal-content .content .gift.temblor img {
    animation: temblor_inf 2s infinite
}

.modal-wrapper .modal-body .modal-content .modal-button {
    padding: 10px 32px;
    background: var(--btn-bg);
    font-size: 17px;
    font-weight: 600;
    color: var(--btn-color);
    border: none;
    cursor: pointer;
    margin-top: 1rem
}

.modal-wrapper .modal-body .big-gift {
    max-width: 95vw;
    width: 30rem;
    animation: rotate 1.5s linear forwards
}

@keyframes rotate {
    0% {
        rotate: -90deg
    }
    to {
        rotate: 0deg
    }
}

.circle-loader {
    border: 1px solid rgba(0, 0, 0, .2);
    border-left-color: #000;
    animation: loader-spin 1.2s infinite linear;
    position: relative;
    display: inline-block;
    vertical-align: top;
    border-radius: 50%;
    width: 7em;
    height: 7em
}

.load-complete {
    animation: none;
    border-color: #000;
    transition: border .5s ease-out
}

@keyframes loader-spin {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(360deg)
    }
}

.checkmark {
    display: none;
    position: relative
}

.checkmark:after {
    opacity: 1;
    height: 3.5em;
    width: 1.75em;
    transform-origin: left top;
    border-right: 3px solid #000000;
    border-top: 3px solid #000000;
    content: "";
    left: 1.75em;
    top: 3.5em;
    position: absolute
}

.checkmark.draw:after {
    animation-duration: .8s;
    animation-timing-function: ease;
    animation-name: checkmark;
    transform: scaleX(-1) rotate(135deg)
}

@keyframes checkmark {
    0% {
        height: 0;
        width: 0;
        opacity: 1
    }
    20% {
        height: 0;
        width: 1.75em;
        opacity: 1
    }
    40% {
        height: 3.5em;
        width: 1.75em;
        opacity: 1
    }
    to {
        height: 3.5em;
        width: 1.75em;
        opacity: 1
    }
}

@keyframes temblor_inf {
    0% {
        transform: translate(1px, 1px) rotate(0)
    }
    10% {
        transform: translate(-1px, -2px) rotate(-1deg)
    }
    20% {
        transform: translate(-3px) rotate(1deg)
    }
    30% {
        transform: translate(3px, 2px) rotate(0)
    }
    40% {
        transform: translate(1px, -1px) rotate(1deg)
    }
    50% {
        transform: translate(-1px, 2px) rotate(-1deg)
    }
    60% {
        transform: translate(-3px, 1px) rotate(0)
    }
    70% {
        transform: translate(3px, 1px) rotate(-1deg)
    }
    80% {
        transform: translate(-1px, -1px) rotate(1deg)
    }
    90% {
        transform: translate(1px, 2px) rotate(0)
    }
    to {
        transform: translate(1px, -2px) rotate(-1deg)
    }
}

.section-finish-quiz {
    flex: 1 0 80dvh;
    display: none;
    place-items: center;
    padding: 2rem;
    position: relative
}

.section-finish-quiz:before {
    content: "";
    background: url(./finish-cloud1.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 20%;
    bottom: 45%;
    width: 15rem;
    height: 15rem
}

@media (max-width: 768px) {
    .section-finish-quiz:before {
        right: -20%
    }
}

.section-finish-quiz:after {
    content: "";
    position: absolute;
    background: url(./finish-cloud2.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 15rem;
    height: 15rem;
    left: 25%;
    bottom: 30%
}

@media (max-width: 768px) {
    .section-finish-quiz:after {
        left: -25%
    }
}

.section-finish-quiz .wrapper {
    width: min(100%, 30rem);
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1
}

.section-finish-quiz .wrapper:before {
    content: "";
    background: url(./finish-bg.png) no-repeat top/contain;
    width: 140%;
    height: 130%;
    left: -20%;
    bottom: 0;
    position: absolute
}

@media (max-width: 768px) {
    .section-finish-quiz .wrapper:before {
        width: 120%;
        left: -10%;
        bottom: -10%
    }
}

.section-finish-quiz .wrapper .content {
    position: relative;
    background: #fff;
    border-radius: 8px;
    padding: 2rem
}

.section-finish-quiz .wrapper .content:before {
    content: "";
    position: absolute;
    background: url(./finish-quiz-quest.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 4rem;
    height: 7rem;
    left: -2rem;
    top: -3rem
}

.section-finish-quiz .wrapper .content:after {
    content: "";
    position: absolute;
    background: url(./finish-quiz-star.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 4rem;
    height: 4rem;
    right: -2rem;
    bottom: -2rem
}

.section-finish-quiz .wrapper .title {
    margin: 0;
    -webkit-text-stroke: 1px #1e1c59;
    font-family: var(--secondary-family);
    line-height: 1;
    font-weight: 400;
    font-size: 3rem;
    line-height: 120%;
    color: #9c85d1
}

.section-finish-quiz .wrapper .subtitle {
    margin-top: -.5rem;
    color: #1e1c59;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem
}

.section-finish-quiz .wrapper .description {
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 120%;
    margin-bottom: 1rem;
    color: #0032a0
}

.section-finish-quiz .wrapper .to-boxes {
    width: min(100%, 30rem);
    display: block;
    margin: 0 auto;
    padding: .5rem;
    margin-top: 2rem;
    font-weight: 700;
    font-size: 2rem;
    line-height: 120%;
    color: var(--btn-color);
    background: #9c85d1;
    border: 1px solid #1e1c59;
    border-radius: .5rem;
    z-index: 1;
    cursor: pointer
}

.boxes-game {
    margin: 0 auto;
    width: min(95%, 50rem);
    display: none;
    text-align: center
}

.boxes-game .title {
    font-size: 3rem;
    color: #ffbe31;
    -webkit-text-stroke: 1px #1e1c59;
    font-family: var(--secondary-family)
}

.boxes-game .subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: #1e1c59
}

.boxes-game .subtitle colo span {
    font-size: 1.5rem
}

.boxes-game .boxes {
    padding-top: 5rem;
    display: grid;
    grid-template-columns:1fr 1fr 1fr 1fr;
    grid-auto-rows: 10rem;
    gap: 2rem 0
}

.boxes-game .boxes .box {
    cursor: pointer;
    position: relative
}

.boxes-game .boxes .box:before {
    content: "";
    background: url(./box-cloud.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 120%;
    height: 120%;
    bottom: 0;
    left: 0;
    position: absolute
}

.boxes-game .boxes .box:hover {
    animation: temblor .82s cubic-bezier(.36, .07, .19, .97) both;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px
}

.boxes-game .boxes .box.open {
    pointer-events: none
}

.boxes-game .boxes .box.open .box-2 {
    transform: translate(-50%, -90%)
}

.boxes-game .boxes .box img {
    width: 95%;
    position: absolute;
    top: 50%;
    right: 50%;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 1s linear
}

.boxes-game .boxes .box .box-2 {
    z-index: 5;
    top: 12%;
    width: 70%
}

.boxes-game .boxes .box .box-3 {
    z-index: 1;
    width: 67%;
    top: 18%
}

.boxes-game .boxes .box .box-4 {
    z-index: 4;
    width: 70%
}

.boxes-game .boxes .box .prise {
    z-index: 3;
    width: 50%;
    animation: showPrise 2s linear .5s forwards
}

@media (max-width: 768px) {
    .boxes-game .boxes {
        padding-top: 3rem;
        grid-template-columns:1fr 1fr 1fr;
        grid-auto-rows: 23vw;
        gap: 3rem 0
    }

    .boxes-game .boxes .box {
        flex: 0 0 32%
    }

    .boxes-game .boxes .box:before {
        width: 140%;
        height: 140%
    }

    .boxes-game .boxes .box img {
        width: 120%
    }

    .boxes-game .boxes .box:nth-child(10), .boxes-game .boxes .box:nth-child(11), .boxes-game .boxes .box:nth-child(12) {
        display: none
    }

    .boxes-game .boxes .box.open .box-2 {
        transform: translate(-50%, -105%)
    }

    .boxes-game .boxes .box .box-3 {
        top: 13%
    }
}

@keyframes temblor {
    10%, 90% {
        transform: translate3d(-1px, 0, 0)
    }
    20%, 80% {
        transform: translate3d(2px, 0, 0)
    }
    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0)
    }
    40%, 60% {
        transform: translate3d(4px, 0, 0)
    }
}

@keyframes showPrise {
    75% {
        transform: translate(-50%, -120%)
    }
    to {
        transform: translate(-50%, -110%)
    }
}

.section-additional-prize {
    display: none;
    place-items: center;
    padding: 2rem;
    position: relative
}

.section-additional-prize:before {
    content: "";
    background: url(./additional-cloud1.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 10%;
    bottom: 15%;
    width: 15rem;
    height: 15rem
}

@media (max-width: 768px) {
    .section-additional-prize:before {
        right: -10%
    }
}

.section-additional-prize:after {
    content: "";
    position: absolute;
    background: url(./additional-cloud1.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 15rem;
    height: 15rem;
    left: 15%;
    bottom: 50%
}

@media (max-width: 768px) {
    .section-additional-prize:after {
        left: 0
    }
}

.section-additional-prize .wrapper {
    position: relative;
    width: min(100%, 40rem);
    margin: 0 auto;
    flex-grow: 1;
    z-index: 1
}

.section-additional-prize .wrapper .content {
    background: #fff;
    padding: 2rem 2rem 1rem;
    margin-top: 6rem;
    border-radius: 8px
}

@media (max-width: 768px) {
    .section-additional-prize .wrapper .content {
        margin-top: 3rem
    }
}

.section-additional-prize .wrapper .content .photo {
    width: 120%;
    margin-top: -6rem;
    margin-bottom: 2rem
}

@media (max-width: 768px) {
    .section-additional-prize .wrapper .content .photo {
        transform: scale(1.2);
        margin-top: -4rem
    }
}

.section-additional-prize .wrapper .content .photo img {
    width: 40%
}

.section-additional-prize .wrapper .content .photo img:first-of-type {
    filter: drop-shadow(-5px 0 white) drop-shadow(5px 0 white) drop-shadow(0 -5px white) drop-shadow(0 5px white)
}

.section-additional-prize .wrapper .content .photo span {
    -webkit-text-stroke: 1px #1e1c59;
    font-family: var(--secondary-family);
    line-height: 1;
    font-weight: 400;
    font-size: 2em;
    line-height: 120%;
    color: #9c85d1
}

.section-additional-prize .wrapper .content .title {
    margin: 0;
    -webkit-text-stroke: 1px #1e1c59;
    font-family: var(--secondary-family);
    line-height: 1;
    font-weight: 400;
    font-size: 2em;
    line-height: 120%;
    color: #9c85d1
}

.section-additional-prize .wrapper .content .subtitle {
    margin-top: -.5rem;
    color: #1e1c59;
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 1rem
}

.section-additional-prize .wrapper .content .description {
    font-weight: 500;
    font-size: .75rem;
    line-height: 120%;
    color: #1e1c59
}

.section-additional-prize .wrapper .to-cart {
    width: min(100%, 30rem);
    display: block;
    margin: 0 auto;
    padding: .5rem;
    font-weight: 700;
    font-size: 2rem;
    line-height: 120%;
    color: var(--btn-color);
    background: #9c85d1;
    border: 1px solid #1e1c59;
    border-radius: .5rem;
    z-index: 1;
    cursor: pointer
}

.section-additional-prize .wrapper .joy {
    text-align: center;
    margin: 1rem;
    font-weight: 500;
    font-size: .75rem;
    color: #1e1c59;
    position: relative
}

.section-additional-prize .wrapper .joy:before {
    content: "";
    position: absolute;
    background: url(./question-stars.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 3rem;
    height: 3rem;
    left: -3rem;
    top: 0
}

.section-additional-prize .wrapper .joy:after {
    content: "";
    position: absolute;
    background: url(./additional-dots2.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 4rem;
    height: 4rem;
    right: -4rem;
    top: -1rem
}

.cart {
    background: #cce3c8;
    position: relative;
    padding: 3rem;
    display: none;
    min-height: calc(100dvh - var(--header-height))
}

.cart .container {
    max-width: 30rem !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
    max-width: 50rem;
    z-index: 1;
    flex-grow: 1
}

.cart:before {
    content: "";
    background: url(./cart-cloud2.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 10%;
    bottom: 15%;
    width: 15rem;
    height: 15rem
}

.cart:after {
    content: "";
    position: absolute;
    background: url(./cart-cloud1.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 15rem;
    height: 15rem;
    left: 25%;
    top: 10%
}

@media (max-width: 768px) {
    .cart {
        padding: 0rem
    }

    .cart:after {
        left: 0
    }

    .cart:before {
        right: -35%
    }
}

.cart .title {
    margin: 0;
    -webkit-text-stroke: 1px #1e1c59;
    font-family: var(--secondary-family);
    line-height: 1;
    font-weight: 400;
    font-size: 2em;
    line-height: 120%;
    color: #ffbe31;
    text-align: center
}

.cart .cart-progress {
    position: relative;
    width: 11.5rem;
    margin: 2rem auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.cart .cart-progress .progress-line {
    position: absolute;
    left: .2rem;
    right: 0
}

.cart .cart-progress .dot {
    position: relative;
    width: .5rem;
    aspect-ratio: 1;
    background: #ffbe31;
    border-radius: 50%;
    z-index: 5
}

.cart .cart-progress .dot.active {
    border: 1px solid #1E1C59
}

.cart .cart-progress .dot.active .text {
    opacity: 1
}

.cart .cart-progress .dot .text {
    position: absolute;
    top: -.7rem;
    transform: translate(-50%);
    left: 50%;
    font-weight: 500;
    font-size: .5rem;
    line-height: 100%;
    text-align: center;
    color: #1e1c59;
    text-wrap: nowrap;
    opacity: 0
}

.cart .form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #0032a0
}

.cart .form .stage-name {
    text-align: center;
    font-weight: 700;
    font-size: .9rem;
    line-height: 23.16px;
    color: #1e1c59;
    text-wrap: balance
}

.cart .form .stage {
    padding: 0 1rem 1rem
}

.cart .form .stage .stage-wrapper {
    display: flex;
    flex-direction: column
}

.cart .form .stage .stage-wrapper .input-row {
    display: flex;
    flex-direction: row;
    gap: 1rem
}

.cart .form .stage .stage-wrapper .input-row .input {
    flex: 1
}

.cart .form .stage .stage-wrapper .input {
    position: relative;
    margin-bottom: 1.25rem
}

.cart .form .stage .stage-wrapper .input.checkbox {
    display: flex;
    align-items: center;
    gap: .6rem;
    cursor: pointer
}

.cart .form .stage .stage-wrapper .input.checkbox .checkbox-wrapper {
    flex: 0 0 1.25rem;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    display: grid;
    place-content: center;
    border: 1px solid #0032a0
}

.cart .form .stage .stage-wrapper .input.checkbox .checkbox-wrapper:has(input:checked) .checked {
    opacity: 1;
    scale: 1
}

.cart .form .stage .stage-wrapper .input.checkbox .checkbox-wrapper input {
    position: absolute;
    width: -moz-fit-content;
    width: fit-content;
    opacity: 0
}

.cart .form .stage .stage-wrapper .input.checkbox .checkbox-wrapper .checked {
    opacity: 0;
    scale: 0;
    transition: all .2s ease-in-out
}

.cart .form .stage .stage-wrapper .input.checkbox label {
    flex-grow: 1;
    font-weight: 400;
    font-size: .8rem
}

.cart .form .stage .stage-wrapper .input input {
    position: relative;
    width: 100%;
    padding: .7rem;
    color: #0032a0;
    border: none;
    border: 1px solid #0032a0;
    border-radius: 5px;
    font-size: .75rem;
    font-weight: 500;
    z-index: 5
}

.cart .form .stage .stage-wrapper .input input::-moz-placeholder {
    color: #0032a099
}

.cart .form .stage .stage-wrapper .input input::placeholder {
    color: #0032a099
}

.cart .form .stage .stage-wrapper .input input:focus {
    outline: none
}

.cart .form .stage .stage-wrapper .stage_button {
    background: #ffbe31;
    margin-top: 1rem;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    border: 1px solid #1e1c59;
    z-index: 2;
    border-radius: 8px
}

.cart .form .stage .stage-wrapper .line {
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.cart .form .stage .stage-wrapper .line .name {
    font-weight: 400;
    font-size: .88rem
}

.cart .form .stage .stage-wrapper .line .price {
    font-weight: 600;
    font-size: .88rem
}

.cart .delivery {
    padding: .8rem;
    width: 100%;
    display: none;
    text-align: center
}

.cart .delivery .stage-name {
    text-align: center;
    font-weight: 700;
    font-size: .9rem;
    line-height: 23.16px;
    color: #1e1c59
}

.cart .delivery .posts {
    margin: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #1e1c59;
    z-index: 5
}

.cart .delivery .posts .radio {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid #1e1c59;
    z-index: 5;
    background: #fff;
    border-radius: 8px
}

.cart .delivery .posts .radio .radio-wrapper {
    flex: 0 0 1.25rem;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    display: grid;
    place-content: center;
    background: url(./radio.png) no-repeat center/cover
}

.cart .delivery .posts .radio .radio-wrapper:has(input:checked) {
    background: none
}

.cart .delivery .posts .radio .radio-wrapper:has(input:checked) .checked {
    opacity: 1;
    scale: 1
}

.cart .delivery .posts .radio .radio-wrapper input {
    position: absolute;
    width: -moz-fit-content;
    width: fit-content;
    opacity: 0
}

.cart .delivery .posts .radio .radio-wrapper .checked {
    width: 100%;
    opacity: 0;
    scale: 0;
    transition: all .2s ease-in-out
}

.cart .delivery .posts .radio label {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .3rem
}

.cart .delivery .posts .radio label img {
    width: 1.5rem
}

.cart .delivery .posts .radio label .text {
    font-size: 1rem;
    font-weight: 700;
    line-height: 26.34px
}

.cart .delivery .posts .radio label .time {
    margin-left: auto;
    font-size: .66rem;
    font-weight: 300
}

.cart .delivery .posts .radio label .description {
    flex: 1 0 100%;
    text-align: left;
    font-size: .75rem;
    font-weight: 500
}

.cart .delivery .posts .radio label .description p {
    margin: 0;
    font-size: 15px;
    line-height: 14px
}

.cart .delivery .stage_button {
    background: #ffbe31;
    margin-top: 1rem;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    border: 1px solid #1e1c59;
    z-index: 2;
    border-radius: 8px;
    width: min(100%, 25rem)
}

.cart .summary {
    width: 100%;
    padding: 1rem;
    display: none;
    flex-direction: column
}

.cart .summary .stage-name {
    text-align: center;
    font-weight: 700;
    font-size: .9rem;
    line-height: 23.16px;
    color: #1e1c59
}

.cart .summary .order-info {
    position: relative;
    padding: 1rem;
    flex-grow: 1;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    background: #fff;
    border-radius: .5rem;
    overflow: hidden
}

.cart .summary .order-info .cart-item {
    display: flex;
    align-items: center;
    padding: .5rem;
    border-bottom: 1px solid #1e1c59
}

.cart .summary .order-info .cart-item .photo {
    width: 30%
}

.cart .summary .order-info .cart-item .photo img {
    width: 100%
}

.cart .summary .order-info .cart-item .item-name {
    width: 50%;
    display: flex;
    flex-direction: column
}

.cart .summary .order-info .cart-item .item-name p {
    font-size: .75rem;
    font-weight: 700;
    margin: 0;
    line-height: 1
}

.cart .summary .order-info .cart-item .item-name span {
    font-size: .66rem;
    line-height: 1
}

.cart .summary .order-info .cart-item .item-name .count {
    font-size: .5rem;
    font-weight: 300
}

.cart .summary .order-info .cart-item .price {
    text-align: right;
    width: 20%
}

.cart .summary .order-info .cart-item .price .time {
    font-size: .5rem;
    font-weight: 300
}

.cart .summary .order-info .cart-item .price .cost {
    color: #a6cb9f;
    -webkit-text-stroke: 1px #1e1c59;
    font-family: var(--secondary-family)
}

.cart .summary .order-info .subtotal {
    padding: .5rem;
    border-bottom: 1px solid #1e1c59
}

.cart .summary .order-info .total {
    padding: .51rem
}

.cart .summary .order-info .total .info-block .price {
    color: #ffbe31;
    font-size: 1.5rem
}

.cart .summary .order-info .info-block {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    color: #1e1c59
}

.cart .summary .order-info .info-block .name {
    line-height: 1.7rem;
    font-weight: 700;
    font-size: .75rem
}

.cart .summary .order-info .info-block .price {
    color: #a6cb9f;
    -webkit-text-stroke: 1px #1e1c59;
    font-family: var(--secondary-family)
}

.cart .summary .order-info .info-block .total-info {
    font-weight: 600;
    font-size: 1.25rem
}

.cart .summary .stage_button {
    background: #ffbe31;
    margin: 0 auto;
    margin-top: 1rem;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    border: 1px solid #1e1c59;
    z-index: 2;
    border-radius: 8px;
    width: min(100%, 25rem)
}

.cart .button {
    width: min(100%, 20rem);
    margin: auto auto 0;
    padding: .75rem;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 28px;
    color: var(--btn-color);
    background: #0032a0;
    border: none;
    border-radius: 3rem;
    cursor: pointer
}

.notifications {
    position: fixed;
    top: 1.5%;
    right: 1%;
    max-width: 340px;
    z-index: 999;
    overflow: hidden
}

.notifications__items {
    list-style-type: none;
    margin: 0;
    padding: 0
}

.notifications__item {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #e2dede;
    padding: 6px 0;
    margin-top: 5px
}

.notifications__item__img {
    max-width: 53px;
    margin: 0 2px 0 6px
}

.notifications__item__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.notifications__item__content {
    padding: 0 5px
}

.notifications__item__content__header {
    font-size: 11px
}

.notifications__item-name {
    font-weight: 700
}

.notifications__item-address {
    text-decoration: underline
}

.notifications__item__content__desc {
    font-size: 16px;
    font-weight: 500;
    color: #134094
}

.notifications__item__content__bottom {
    display: flex;
    align-items: center
}

.notifications__item__time {
    font-size: 13px
}

.notifications__item__icons {
    position: relative;
    display: flex;
    margin-left: 10px;
    width: 15px;
    height: 15px
}

.notifications__item__icons img {
    position: absolute;
    margin-right: 10px;
    width: 15px;
    height: 15px;
    animation: checIn 3s cubic-bezier(1, -1.23, .49, 1.56)
}

.notifications__item__btn {
    margin: 0 10px 0 5px
}

.notifications__item__btn-close {
    vertical-align: inherit
}

.hiddenNoty {
    animation-name: hiddenNoty;
    animation-duration: 1.5s;
    animation-timing-function: linear;
    -webkit-animation-name: hiddenNoty;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-timing-function: linear
}

.showNoty {
    animation-name: showNoty;
    animation-duration: 2s;
    animation-timing-function: linear;
    -webkit-animation-name: showNoty;
    -webkit-animation-duration: 2s;
    -webkit-animation-timing-function: linear
}

@keyframes checIn {
    0% {
        top: 50px
    }
    to {
        top: 0
    }
}

@keyframes hiddenNoty {
    0% {
        opacity: 1
    }
    50% {
        opacity: .5
    }
    to {
        opacity: 0
    }
}

@keyframes showNoty {
    0% {
        opacity: 0
    }
    50% {
        opacity: .5
    }
    to {
        opacity: 1
    }
}

:root {
    --btn-bg: #ffbe31;
    --btn-color: #fff;
    --primary-family: "Montserrat Alternates", sans-serif;
    --secondary-family: "Albus", serif
}

* {
    box-sizing: border-box
}

html, body {
    font-size: 16px;
    font-family: var(--primary-family);
    overflow-x: hidden;
    min-height: 100dvh;
    display: flex;
    flex-direction: column
}

.splide__container {
    box-sizing: border-box;
    position: relative
}

.splide__list {
    backface-visibility: hidden;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important
}

.splide.is-initialized:not(.is-active) .splide__list {
    display: block
}

.splide__pagination {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
    pointer-events: none
}

.splide__pagination li {
    display: inline-block;
    line-height: 1;
    list-style-type: none;
    margin: 0;
    pointer-events: auto
}

.splide:not(.is-overflow) .splide__pagination {
    display: none
}

.splide__progress__bar {
    width: 0
}

.splide {
    position: relative;
    visibility: hidden
}

.splide.is-initialized, .splide.is-rendered {
    visibility: visible
}

.splide__slide {
    backface-visibility: hidden;
    box-sizing: border-box;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    list-style-type: none !important;
    margin: 0;
    position: relative
}

.splide__slide img {
    vertical-align: bottom
}

.splide__spinner {
    animation: splide-loading 1s linear infinite;
    border: 2px solid #999;
    border-left-color: transparent;
    border-radius: 50%;
    bottom: 0;
    contain: strict;
    display: inline-block;
    height: 20px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 20px
}

.splide__sr {
    clip: rect(0 0 0 0);
    border: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
    display: none
}

.splide__toggle.is-active .splide__toggle__pause {
    display: inline
}

.splide__track {
    overflow: hidden;
    position: relative;
    z-index: 0
}

@keyframes splide-loading {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(1turn)
    }
}

.splide__track--draggable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.splide__track--fade > .splide__list > .splide__slide {
    margin: 0 !important;
    opacity: 0;
    z-index: 0
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
    opacity: 1;
    z-index: 1
}

.splide--rtl {
    direction: rtl
}

.splide__track--ttb > .splide__list {
    display: block
}

.splide__arrow {
    -ms-flex-align: center;
    align-items: center;
    background: #ccc;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    height: 2em;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2em;
    z-index: 1
}

.splide__arrow svg {
    fill: #000;
    height: 1.2em;
    width: 1.2em
}

.splide__arrow:hover:not(:disabled) {
    opacity: .9
}

.splide__arrow:disabled {
    opacity: .3
}

.splide__arrow:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: 3px
}

.splide__arrow--prev {
    left: 1em
}

.splide__arrow--prev svg {
    transform: scaleX(-1)
}

.splide__arrow--next {
    right: 1em
}

.splide.is-focus-in .splide__arrow:focus {
    outline: 3px solid #0bf;
    outline-offset: 3px
}

.splide__pagination {
    bottom: .5em;
    left: 0;
    padding: 0 1em;
    position: absolute;
    right: 0;
    z-index: 1
}

.splide__pagination__page {
    background: #ccc;
    border: 0;
    border-radius: 50%;
    display: inline-block;
    height: 8px;
    margin: 3px;
    opacity: .7;
    padding: 0;
    position: relative;
    transition: transform .2s linear;
    width: 8px
}

.splide__pagination__page.is-active {
    background: #fff;
    transform: scale(1.4);
    z-index: 1
}

.splide__pagination__page:hover {
    cursor: pointer;
    opacity: .9
}

.splide__pagination__page:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: 3px
}

.splide.is-focus-in .splide__pagination__page:focus {
    outline: 3px solid #0bf;
    outline-offset: 3px
}

.splide__progress__bar {
    background: #ccc;
    height: 3px
}

.splide__slide {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.splide__slide:focus {
    outline: 0
}

@supports (outline-offset:-3px) {
    .splide__slide:focus-visible {
        outline: 3px solid #0bf;
        outline-offset: -3px
    }
}

@media screen and (-ms-high-contrast: none) {
    .splide__slide:focus-visible {
        border: 3px solid #0bf
    }
}

@supports (outline-offset:-3px) {
    .splide.is-focus-in .splide__slide:focus {
        outline: 3px solid #0bf;
        outline-offset: -3px
    }
}

@media screen and (-ms-high-contrast: none) {
    .splide.is-focus-in .splide__slide:focus {
        border: 3px solid #0bf
    }

    .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
        border-color: #0bf
    }
}

.splide__toggle {
    cursor: pointer
}

.splide__toggle:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: 3px
}

.splide.is-focus-in .splide__toggle:focus {
    outline: 3px solid #0bf;
    outline-offset: 3px
}

.splide__track--nav > .splide__list > .splide__slide {
    border: 3px solid transparent;
    cursor: pointer
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
    border: 3px solid #000
}

.splide__arrows--rtl .splide__arrow--prev {
    left: auto;
    right: 1em
}

.splide__arrows--rtl .splide__arrow--prev svg {
    transform: scaleX(1)
}

.splide__arrows--rtl .splide__arrow--next {
    left: 1em;
    right: auto
}

.splide__arrows--rtl .splide__arrow--next svg {
    transform: scaleX(-1)
}

.splide__arrows--ttb .splide__arrow {
    left: 50%;
    transform: translate(-50%)
}

.splide__arrows--ttb .splide__arrow--prev {
    top: 1em
}

.splide__arrows--ttb .splide__arrow--prev svg {
    transform: rotate(-90deg)
}

.splide__arrows--ttb .splide__arrow--next {
    bottom: 1em;
    top: auto
}

.splide__arrows--ttb .splide__arrow--next svg {
    transform: rotate(90deg)
}

.splide__pagination--ttb {
    bottom: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    left: auto;
    padding: 1em 0;
    right: .5em;
    top: 0
}
