@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.woff2') format('woff2'),
        url('../fonts/Inter-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2'),
        url('../fonts/Inter-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-ExtraBold.woff2') format('woff2'),
        url('../fonts/Inter-ExtraBold.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.woff2') format('woff2'),
        url('../fonts/Inter-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cera Round Pro';
    src: url('../fonts/CeraRoundPro-Bold.woff2') format('woff2'),
        url('../fonts/CeraRoundPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body, html {
    height: 100%;
    min-height: 100%;
    min-width: 320px;
}

body {
    padding: 0px;
    margin: 0px;
    color: var(--main-text-color);
    line-height: 1.5;
    font-size: 16px;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    background: var(--violet-color);
    font-weight: 400;
}

img {
    display: block;
    max-width: 100%;
    border-style: none;
}

*,
*:before,
*:after {
    box-sizing: border-box;
    touch-action: manipulation;
}

*:hover,
*:focus,
*:active {
    outline: none;
}

a:not(.button) {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none outside;
}

b {
    font-weight: 700;
}

p {
    margin: 0 0 0.5em;
}

p:last-child {
    margin-bottom: 0;
}

.center {
    text-align: center;
}

.nowrap {
    white-space: nowrap;
}

.hidden {
    display: none !important;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.button {
    display: inline-flex;
    vertical-align: top;
    font-size: 16px;
    color: var(--white-color);
    text-decoration: none;
    padding: 7px 12px;
    line-height: 20px;
    height: 50px;
    text-align: center;
    border: 0 none;
    margin: 0;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    font-weight: 700;
    border-radius: 25px;
    background: var(--red-color);
    position: relative;
    white-space: nowrap;
    transition: background-color 0.15s ease, color 0.15s ease;
    width: 300px;
    max-width: 100%;
    align-items: center;
    justify-content: center;
}

.button:hover {
    background-color: var(--red-hover-color);
}

.button[disabled],
.button[disabled]:hover {
    background-color: #C0C0C0;
}

.button--neutral {
    background: #fff;
    border: 1px solid #C0C0C0;
    color: var(--main-text-color);
    font-weight: 500;
}

.button--neutral:hover {
    background-color: #fff;
}

.button--240 {
    width: 240px;
}

.red {
    color: var(--red-color);
}

.wrapper {
    overflow: hidden;
    position: relative;
    height: 100%;
    min-height: 680px;
    display: flex;
}

.container {
    margin: 0 auto;
    max-width: 1920px;
    padding: 0 40px;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1.85vh 0;
    z-index: 100;
}

.header .container {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
}

#show-menu,
.close-menu {
    display: none;
    width: 32px;
    height: 32px;
    background: url(../img/menu2.svg) no-repeat center center transparent;
    border: 0 none;
    padding: 0;
    margin: 0;
    font-size: 0px;
    line-height: 0px;
    color: transparent;
}

.close-menu {
    display: block;
    width: 44px;
    height: 44px;
    background-image: url(../img/close-menu.svg);
}

.header__timer {
    display: none;
    position: absolute;
    top: 16px;
    left: calc(50% - 50px);
    width: 115px;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: var(--red-color);
    white-space: nowrap;
    padding: 6px 6px 6px 40px;
    background: url(../img/timer.svg) no-repeat left 15px top 50% #fff;
    background-size: 16px auto;
    border-radius: 20px;
}

.menu {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-end;
}

.menu > li + li {
    margin-left: 60px;
}

.menu li:last-child {
    display: none;
}

.menu .menu__link a {
    display: inline-block;
    vertical-align: top;
    padding-left: 47px;
    position: relative;
    white-space: nowrap;
}

.menu .menu__link a:hover {
    text-decoration: underline;
}

.menu .menu__link a:before {
    content: "";
    width: 32px;
    height: 32px;
    background: url(../img/header-icon1.svg) no-repeat center center transparent;
    position: absolute;
    top: calc(50% - 16px);
    left: 0;
}

.menu > li.menu__link:nth-child(2) > a:before {
    background-image: url(../img/header-icon2.svg);
}

.header-sc {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
}

.header-sc > * + * {
    margin-left: 15px;
}

.header-sc__link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: url(../img/sc-tg.svg) no-repeat 6px 8px #2AABEE;
    overflow: hidden;
    font-size: 0px;
    line-height: 0px;
    color: transparent;
}

.header-sc__link--vk {
    background-color: #6383A8;
    background-image: url(../img/sc-vk.svg);
    background-position: 50% 10px;
}

.header-sc__link--ok {
    background-color: #F4731C;
    background-image: url(../img/sc-ok.svg);
    background-position: 50% 6px;
}

.header-sc__link--vi {
    background-color: #7C529E;
    background-image: url(../img/sc-vi.svg);
    background-position: 50% 6px;
}

.main {
    width: 100%;
    height: 100%;
    max-width: 1920px;
    max-height: 1080px;
    margin: auto;
    position: relative;

    background: url(../img/bg-day1.jpg) no-repeat center center transparent;
    background-size: auto 100%;

    display: flex;
}

.day2 .main { background-image: url(../img/bg-day2.jpg); }
.day3 .main { background-image: url(../img/bg-day3.jpg); }
.day4 .main { background-image: url(../img/bg-day4.jpg); }
.day5 .main { background-image: url(../img/bg-day5.jpg); }
.day6 .main { background-image: url(../img/bg-day6.jpg); }
.day7 .main { background-image: url(../img/bg-day7.jpg); }
.day8 .main { background-image: url(../img/bg-day8.jpg); }
.day9 .main { background-image: url(../img/bg-day9.jpg); }
.day10 .main { background-image: url(../img/bg-day10.jpg); }

.rabbit {
    position: absolute;
    bottom: 5.4%;
    left: calc(50% + 35.6vh);
    height: 52.31%;
    width: 40.73vh;
    background: url(../img/rabbit-day1.png) no-repeat bottom center transparent;
    background-size: contain;
}

.day2 .rabbit { background-image: url(../img/rabbit-day2.png); }
.day3 .rabbit { background-image: url(../img/rabbit-day3.png); }
.day4 .rabbit { background-image: url(../img/rabbit-day4.png); }
.day5 .rabbit { background-image: url(../img/rabbit-day5.png); }
.day6 .rabbit { background-image: url(../img/rabbit-day6.png); }
.day7 .rabbit { background-image: url(../img/rabbit-day7.png); }
.day8 .rabbit { background-image: url(../img/rabbit-day8.png); }
.day9 .rabbit { background-image: url(../img/rabbit-day9.png); }
.day10 .rabbit { background-image: url(../img/rabbit-day10.png); }
.day10 .rabbit--final { background-image: url(../img/rabbit-final.png); }

.rabbit__speech {
    display: flex;
    position: absolute;
    bottom: 100%;
    left: 40%;
    color: var(--white-color);
    background: var(--dark-violet-color);
    min-height: 150px;
    width: 335px;
    padding: 10px;
    text-align: center;
    border-radius: 80px;
    font-size: 16px;
    line-height: 1.4;
}

.rabbit__speech:before {
    content: "";
    width: 47px;
    height: 28px;
    background: url(../img/speech-tail.svg) no-repeat bottom center transparent;
    position: absolute;
    top: 100%;
    margin-top: -1px;
    left: 20%;
}

.rabbit__speech > span {
    margin: auto;
    max-width: 250px;
}

.rabbit--final .rabbit__speech > span {
    max-width: 270px;
}

.white-block {
    margin: auto;
    width: 550px;
    max-width: 92%;
    position: relative;
    padding-top: 27px;
    z-index: 200;
    transform-origin: top center;
}

.white-block--wide {
    width: 790px;
}

.white-block__title {
    position: absolute;
    top: 0;
    max-width: 390px;
    left: 15%;
    right: 15%;
    margin: 0 auto;
    background: #F9F9F9;
    border-radius: 30px;
    text-align: center;
    font-size: 22px;
    line-height: 26px;
    font-weight: 500;
    padding: 14px 0;
}

.quiz__counter {
   margin-left: 15px;
   color: var(--grey-text-color);
}

.white-block__inner {
    background: #fff;
    padding: 60px 50px 30px;
    border-radius: 35px;
    box-shadow: 0px 301px 120px rgba(77, 23, 130, 0.01), 0px 169px 101px rgba(77, 23, 130, 0.05), 0px 75px 75px rgba(77, 23, 130, 0.09), 0px 19px 41px rgba(77, 23, 130, 0.1), 0px 0px 0px rgba(77, 23, 130, 0.1);
    min-height: 700px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
}

.white-block__inner > * {
    width: 100%;
}

.white-block__inner > *:not(.block__bottom) {
    flex: 1 1 auto;
    margin-bottom: 10px;
}

.block-title {
    font-weight: 500;
    font-size: 28px;
    line-height: 1.2;
    margin: 0 auto 1.3em;
    text-align: center;
    max-width: 16em;
}

.block-rules {
    counter-reset: count;
    font-size: 18px;
}

.block-rules li {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
    counter-increment: count;
}

.block-rules li + li {
    margin-top: 34px;
}

.block-rules i {
    width: 80px;
    height: 80px;
    flex: 0 0 80px;
    margin-right: 10px;
    margin-left: 20px;
    position: relative;
}

.block-rules i:before {
    content: "";
    display: block;
    width: 80px;
    height: 80px;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/quiz-step1.svg) no-repeat center center transparent;
}

.block-rules i.icon2:before { background-image: url(../img/quiz-step2.svg); }
.block-rules i.icon3:before { background-image: url(../img/quiz-step3.svg); }
.block-rules i.icon4:before { background-image: url(../img/quiz-step4.svg); }
.block-rules i.icon5:before { background-image: url(../img/quiz-step5.svg); }

.block-rules i:after {
    content: counter(count);
    line-height: 23px;
    font-size: 24px;
    padding: 2px 3px 4px;
    color: var(--white-color);
    font-weight: 700;
    font-family: 'Cera Round Pro', Arial, Helvetica, sans-serif;
    text-align: center;
    width: 29px;
    border-radius: 50%;
    background: var(--red-color);
    position: absolute;
    top: 0px;
    left: -20px;
    font-style: normal;
}

.block-rules li > span {
    flex: 1 1 auto;
}

.game__start .block-rules li:first-child > span {
    max-width: 290px;
}

.block__bottom {
    flex: 0 0 auto;
    text-align: center;
}

.block__bottom .button--100 {
    width: 100%;
}

.block__bottom .button--45 {
    width: 450px;
}

.return {
    margin-top: 30px;
    text-align: center;
    height: 20px;
    color: var(--red-color);
}

.return__link {
    display: inline-block;
    vertical-align: top;
    padding: 0 0 0 30px;
    margin: 0;
    border: 0 none;
    position: relative;
    background: transparent;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    color: var(--red-color);
    font-size: 16px;
    line-height: 20px;
}

.return__link:before {
    content: "";
    width: 24px;
    height: 24px;
    background: url(../img/return-arrow.svg) no-repeat 0 0 transparent;
    position: absolute;
    top: calc(50% - 12px);
    left: 0;
}

.checkbox-outer {
    margin-top: 30px;
}

.checkbox {
    display: inline-flex;
    vertical-align: top;
    font-size: 14px;
    color: #898989;
    flex-flow: row nowrap;
    align-items: flex-start;
    justify-content: flex-start;
}

.checkbox > i {
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #C0C0C0;
    border-radius: 2px;
    flex: 0 0 20px;
    margin-right: 10px;
    background: none no-repeat center center #fff;
}

.checkbox input:checked ~ i {
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='9' viewBox='0 0 13 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1.93579' y='2.91211' width='6.30035' height='2.00239' rx='1.00119' transform='rotate(45 1.93579 2.91211)' fill='%23E60000'/%3E%3Crect x='12.062' y='1.69824' width='9.99793' height='2' rx='1' transform='rotate(135 12.062 1.69824)' fill='%23E60000'/%3E%3C/svg%3E%0A");
}

.checkbox input.error ~ i {
    border-color: var(--red-color);
}

.checkbox > span {
    flex: 1 1 auto;
    align-self: center;
}

.checkbox--min {
    font-size: 12px;
}

.checkbox a {
    text-decoration: underline;
}

.checkbox a:hover {
    text-decoration: none;
}

.quiz__q {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
}

.quiz__q > * {
    width: 100%;
}

.quiz__question {
    font-size: 24px;
    line-height: 1.2;
    height: 4.8em;
    margin: 0 0 0.8em;
}

.quiz__vars {
    counter-reset: count;
    position: relative;
}

.quiz__vars.done:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
}

.quiz__var {
    counter-increment: count;
    display: flex;
    min-height: 60px;
    width: 100%;
    font-size: 16px;
    line-height: 1.4;
    color: var(--main-text-color);
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    text-align: left;
    border: 0 none;
    padding: 8px 16px 8px 62px;
    position: relative;
    background: #F1F1F1;
    border-radius: 30px;
    margin: 0;
    justify-content: flex-start;
    align-items: center;
}

.quiz__var + .quiz__var {
    margin-top: 15px;
}

.quiz__var:before {
    content: counter(count);
    width: 40px;
    height: 40px;
    background: #F9F9F9;
    border: 2px solid var(--red-color);
    border-radius: 50%;
    color: var(--red-color);
    text-align: center;
    font-family: 'Cera Round Pro', Arial, Helvetica, sans-serif;
    font-size: 25px;
    line-height: 28px;
    font-weight: 700;
    padding-bottom: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: calc(50% - 20px);
    left: 11px;
}

.quiz__var.checked {
    background: #FFEAEB;
}

.quiz__var.checked:before {
    background: url("data:image/svg+xml,%3Csvg width='18' height='14' viewBox='0 0 18 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.6909 0.389038C17.3073 0.957367 17.3662 1.94036 16.8225 2.58462L7.63297 13.4735C7.35128 13.8073 6.9463 13.9989 6.52049 14C6.09468 14.0011 5.68884 13.8114 5.40564 13.479L0.457441 7.67163C-0.0891942 7.03007 -0.034774 6.0468 0.578991 5.47541C1.19276 4.90403 2.13345 4.96092 2.68008 5.60247L6.51163 10.0993L14.5905 0.526522C15.1342 -0.117737 16.0746 -0.179291 16.6909 0.389038Z' fill='white'/%3E%3C/svg%3E%0A") no-repeat center center var(--red-color);
    color: transparent;
    font-size: 0px;
}

.quiz__var.right {
    background: #D3F8EB;
}

.quiz__mob-default {
    margin: auto 0;
    display: none;
}

.quiz__result {
    line-height: 1.4;
    padding-top: 10px;
    margin: auto 0;
}

.quiz__result-title {
    font-weight: 700;
    padding-left: 27px;
    margin: 0 0 4px;
    position: relative;
}

.quiz__result-title:before {
    content: "";
    width: 21px;
    height: 21px;
    background: url("data:image/svg+xml,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_414_16719)'%3E%3Ccircle cx='10' cy='10.2207' r='9.35' stroke='%23DA0916' stroke-width='1.3'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.4708 7.55491C13.6927 7.33302 13.6927 6.97327 13.4708 6.75138C13.2489 6.52949 12.8891 6.52949 12.6672 6.75138L10.0007 9.41785L7.33422 6.75138C7.11233 6.52949 6.75258 6.52949 6.53069 6.75138C6.30881 6.97327 6.30881 7.33302 6.5307 7.55491L9.1972 10.2214L6.53068 12.8879C6.30879 13.1098 6.30878 13.4695 6.53067 13.6914C6.75256 13.9133 7.11231 13.9133 7.3342 13.6914L10.0007 11.0249L12.6673 13.6914C12.8892 13.9133 13.2489 13.9133 13.4708 13.6914C13.6927 13.4695 13.6927 13.1098 13.4708 12.8879L10.8043 10.2214L13.4708 7.55491Z' fill='%23DA0916'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_414_16719'%3E%3Crect width='20' height='20' fill='white' transform='translate(0 0.220703)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A") no-repeat center center transparent;
    position: absolute;
    top: 0;
    left: 0;
}

.quiz__result-title.right:before {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10.2207' r='9.35' stroke='%2314AD98' stroke-width='1.3'/%3E%3Cg clip-path='url(%23clip0_414_16664)'%3E%3Cpath d='M9.14813 13.1174L6.59131 10.5605' stroke='%2314AD98' stroke-width='1.13636' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13.4093 8.85645L9.14795 13.1178' stroke='%2314AD98' stroke-width='1.13636' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_414_16664'%3E%3Crect width='20' height='20' fill='white' transform='translate(0 0.220703)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.white-block__inner > .block-finish {
    flex: 0 1 auto;
    margin-top: auto;
    text-align: center;
    margin-bottom: 30px;
}

.stars {
    margin: 0 0 40px;
}

.stars:before {
    content: "";
    display: block;
    width: 274px;
    height: 111px;
    background: url(../img/stars.svg) no-repeat center center transparent;
    background-size: auto 100%;
    margin: 0 auto;
}

.stars__round {
    width: 200px;
    height: 200px;
    background: #FFF4CC;
    border-radius: 50%;
    margin: -20px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    color: #FFCD1B;
    text-align: center;
    font-family: 'Cera Round Pro', Arial, Helvetica, sans-serif;
}

.stars__round b {
    display: block;
    font-size: 94px;
    line-height: 1;
}

/*.day10 .block-finish .stars {
    display: none;
}

.day10 .block-finish {
    margin-top: -15px;
}

.day10 .block-finish:before {
    content: "";
    display: block;
    height: 345px;
    background: url(../img/rabbit-finish.png) no-repeat top center transparent;
    background-size: auto 100%;
}*/

.block-finish .text {
    max-width: 390px;
    margin: 0 auto;
    min-height: 6em;
    line-height: 1.4;
}

/*.day10 .block-finish .text {
    max-width: 100%;
}*/

.popups {
    display: none;
}

.popup {
    background: #FFFFFF;
    border-radius: 35px;
    position: relative;
    max-width: 470px;
    /*text-align: center;*/
    margin: 0 auto;
}

.popup--wide {
    max-width: 550px;
    font-size: 14px;
}

.popup__inner {
    padding: 60px 35px 45px;
}

.popup--wide .popup__inner {
    padding: 40px 30px;
}

.popup__title {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 15px;
}

.popup__text a {
    text-decoration: underline;
    color: var(--red-color);
}

.popup__text a:hover {
    text-decoration: none;
}

.popup__buttons {
    margin: 30px 0 0;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.popup__buttons .button {
    width: 180px;
    height: 40px;
    font-size: 14px;
}

button.mfp-close {
    top: 8px !important;
    right: 8px;
    font-size: 34px;
}

.mfp-close-btn-in .mfp-close {
    color: #797979;
    opacity: 1;
}

.mfp-bg {
    background: #000;
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.2;
}

.auth-form {
    margin-top: 30px;
    text-align: left;
}

.input-outer {
    margin: 0 0 30px;
    position: relative;
}

.text-input {
    display: block;
    box-sizing: border-box;
    width: 100%;
    background: #ffffff;
    padding: 10px 35px;
    font-size: 14px;
    line-height: 20px;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: var(--main-text-color);
    margin: 0;
    border: 1px solid #C0C0C0;
    position: relative;
    height: 50px;
    border-radius: 25px;
}

.text-input.error {
    border-color: var(--red-color);
}

.text-input::-webkit-input-placeholder {
    color: #797979;
}
.text-input:-moz-placeholder,
.text-input::-moz-placeholder {
    color: #797979;
    opacity: 1;
}
.text-input:-ms-input-placeholder {
    color: #797979;
}

.button-outer {
    text-align: center;
    margin: 30px 0 0;
}

* + .popup__img {
    margin-top: 30px;
}

.popup__img img {
    margin: 0 auto;
}


/*partners*/

.white-block.partners {
	width: 792px;
}

.partners .white-block__inner {
	padding-right: 20px;
	padding-left: 20px;
	min-height: 600px;
}

.partners-title {
	font-size: 24px;
	margin: 0 auto 0.5em;
	max-width: 100%;
}

.partners-subtitle {
	font-size: 16px;
	line-height: 1.5;
	margin: 0 auto 2em;
	text-align: center;
	max-width: 18em;
}

.partners__gift-choice .partners-subtitle {
	margin-bottom: 3em;
}

.partners .white-block__title {
	left: 25%;
	right: 25%;
}

.partners__inner {
	margin: 0 auto -15px;
	width: 727px;
}

.partners__wrapper {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;

	margin: 0 -8px 0 -7px;
}

.partners__gift {
	width: 145px;
	height: 160px;
	padding: 0 8px 0 7px;
	margin: 0 0 15px;
	background-color: transparent;
	border: none;
}

.partners__gift.lock,
.partners__gift.unlock {
cursor: auto;
}

.partners__gift-wrapper {
    display: block;
	position: relative;
	width: 130px;
	height: 160px;
	background-color: #F1F1F1;
	border-radius: 10px;
	padding-top: 30px;
}

.partners__gift-img {
	position: relative;
	width: 70px;
	height: 70px;
	margin: 0 auto;
	background-size: cover;
	background-position: center;
}

.partners__gift-img1 {
	background-image: url(../img/gift1.png);
}

.partners__gift-img2 {
	background-image: url(../img/gift2.png);
}

.partners__gift-img3 {
	background-image: url(../img/gift3.png);
}

.partners__gift-img4 {
	background-image: url(../img/gift4.png);
}

.partners__gift-img5 {
	background-image: url(../img/gift5.png);
}

.partners__gift-img i {
	position: absolute;
	top: -10px;
	right: -8px;
	width: 28px;
	height: 28px;
	background-size: cover;
	background-position: center;
}

.partners__gift.lock i {
	background-image: url(../img/lock.png);
}

.partners__gift.unlock i {
	background-image: url(../img/unlock.png);
}

.partners__logo {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 60px;
    padding: 5px;
}

.partners__logo img {
    max-height: 50px;
    max-width: 100%;
}

.partners__start:not(.hidden) ~ .partners__bottom .return,
.partners__letter:not(.hidden) ~ .partners__bottom .return {
    margin-top: 0;
}

.white-block__inner > .partners__bottom {
    margin-bottom: 0;
}

.partners__gift-choice .partners__gift-wrapper,
.partners__gift-take .partners__gift-wrapper {
	margin: 0 auto 2.6em;
	width: 154px;
	height: 190px;
	padding-top: 33px;
}

.partners__gift-choice .partners__gift-img,
.partners__gift-take .partners__gift-img {
	width: 82px;
	height: 82px;
}

.partners__gift-choice .partners__logo,
.partners__gift-take .partners__logo {
	height: 75px;
}

.partners__gift-choice .partners-subtitle {
	max-width: 33em;
}

.partners__letter .partners-subtitle {
	margin-bottom: 0.5em;
	max-width: 38em;
}

.partners__letter .partners-subtitle + .partners-subtitle {
	margin-bottom: 1.9em;
}

.partners__letter-img {
	width: 278px;
	height: 267px;
	margin: 0 auto 1.9em;
	background-image: url(../img/letter.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.partners__gift-take .partners-title {
	margin-bottom: 4.5em;
}

.partners__gift-take .partners__gift-wrapper::before {
	position: absolute;
	content: "";
	top: -57px;
	left: 50%;
	transform: translateX(-50%);
	width: 274px;
	height: 133px;
	background-image: url(../img/gift-stars.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.partners__ready-img {
	width: 277px;
	height: 263px;
	margin: 0 auto 1.9em;
	background-image: url(../img/letter-gift.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.partners__ready .partners-subtitle {
	max-width: 40em;
}
/* partners END */

.game__info-text {
    font-size: 24px;
    line-height: 1.2;
    max-width: 500px;
    margin: 0 auto 5px;
    text-align: center;
    font-weight: 500;
    min-height: 3.6em;
}

.day9 .game__info-text {
    max-width: 100%;
}

.day10 .game__info-text {
    max-width: 600px;
}

.game-timer {
    width: 4em;
    margin: 0 auto 5px;
    padding-left: 40px;
    font-weight: 700;
    font-size: 34px;
    line-height: 1.4;
    white-space: nowrap;
    color: var(--red-color);
    position: relative;
}

.game-timer:before {
    content: "";
    width: 28px;
    height: 28px;
    background: url(../img/timer.svg) no-repeat 0 0 transparent;
    position: absolute;
    left: 0;
    top: calc(50% - 14px);
    transform-origin: left center;
}

.game-picture {
    /*height: 372px;*/
    height: 330px;
    display: flex;
}

.game-picture img {
    margin: auto;
    max-height: 100%;
}

.game-score {
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    padding: 15px 0 5px;
    text-align: center;
    color: var(--red-color);
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 10px;
    max-width: 650px;
    margin: 20px auto 0;
}

.game-cell {
    position: relative;
    perspective: 500px;
}

.game-cell:before {
    content: "";
    display: block;
    padding-top: 100%;
}

.game-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.3s linear;
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
    transform-origin: center center;
    transform: rotateY(0deg);
}

.game-item:before,
.game-item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    border-radius: 10px;
}

.game-item:before {
    background: url(../img/game-default.svg) no-repeat center center #DECAF4;
    background-size: auto 76%;
}

.game-item:after {
    background: url(../img/game1.png) no-repeat 0 0 var(--game-bg1);
    transform: rotateY(180deg);
    background-size: 300% auto;
}

.game-cell.flip .game-item {
    transform: rotateY(180deg);
}

.game-item.game-1:after { background-position: 50% 0; background-color: var(--game-bg2); }
.game-item.game-2:after { background-position: 100% 0; background-color: var(--game-bg3); }
.game-item.game-3:after { background-position: 0 50%; background-color: var(--game-bg1); }
.game-item.game-4:after { background-position: 50% 50%; background-color: var(--game-bg3); }
.game-item.game-5:after { background-position: 100% 50%; background-color: var(--game-bg2); }
.game-item.game-6:after { background-position: 0 100%; background-color: var(--game-bg1); }
.game-item.game-7:after { background-position: 50% 100%; background-color: var(--game-bg3); }
.game-item.game-8:after { background-position: 100% 100%; background-color: var(--game-bg2); }

.day2 .game-item:after { background-image: url(../img/game2.png); }
.day2 .game-item.game-0:after { background-color: var(--game-bg4); }
.day2 .game-item.game-3:after { background-color: var(--game-bg4); }

.day3 .game-item:after { background-image: url(../img/game3.png); }

.day4 .game-item:after { background-image: url(../img/game4.png); }
.day4 .game-item.game-1:after { background-color: var(--game-bg3); }
.day4 .game-item.game-4:after { background-color: var(--game-bg1); }
.day4 .game-item.game-5:after { background-color: var(--game-bg3); }
.day4 .game-item.game-6:after { background-color: var(--game-bg4); }
.day4 .game-item.game-7:after { background-color: var(--game-bg4); }
.day4 .game-item.game-8:after { background-color: var(--game-bg2); }

.day5 .game-item:after { background-image: url(../img/game5.png); }

.day6 .game-item:after { background-image: url(../img/game6.png); }

.day7 .game-item:after { background-image: url(../img/game7.png); }

.day8 .game-item:after { background-image: url(../img/game8.png); }
.day8 .game-item.game-0:after { background-color: var(--game-bg4); }
.day8 .game-item.game-1:after { background-color: var(--game-bg2); }
.day8 .game-item.game-2:after { background-color: var(--game-bg3); }
.day8 .game-item.game-3:after { background-color: var(--game-bg1); }

.day9 .game-item:after { background-image: url(../img/game9.png); }

.day10 .game-item:after { background-image: url(../img/game10.png); }

/* central */

.white-block.central {
    margin-top: calc(3.7vh + 40px + 10vh);
    padding-top: 52px;
    text-align: center;
}

.central .white-block__title {
    color: var(--red-color);
    font-weight: 500;
    font-size: 36px;
    line-height: 1.2;
    left: -50px;
    right: -50px;
    max-width: none;
    padding: 30px;
    border-radius: 60px;
    background: #fff;
    box-shadow: 0px 10px 20px rgba(89, 37, 140, 0.07);
    white-space: nowrap;
}

.central .white-block__title:before {
    content: "";
    width: 657px;
    height: 101px;
    background: url(../img/central-deco.png) no-repeat center bottom transparent;
    position: absolute;
    top: -68px;
    left: calc(50% - 329px);
}

.day5 .central .white-block__title:before,
.day6 .central .white-block__title:before,
.day7 .central .white-block__title:before,
.day8 .central .white-block__title:before,
.day9 .central .white-block__title:before,
.day10 .central .white-block__title:before {
    display: none;
}

.central .white-block__inner {
    display: block;
    min-height: auto;
    padding: 95px 40px 30px;
}

.central .white-block__inner .button-outer {
    margin-bottom: 0;
}

.rules-link {
    margin-top: 25px;
    color: var(--red-color);
}

.rules-link a {
    text-decoration: underline;
}

.rules-link a:hover {
    text-decoration: none;
}

ol.num-list {
    counter-reset: num;
}

ol.num-list:not(:last-child) {
    margin-bottom: 0.5em;
}

ol.num-list li {
    padding-left: 20px;
    position: relative;
    counter-increment: num;
}

ol.num-list li:before {
    content: counter(num)'.';
    position: absolute;
    top: 0;
    left: 2px;
}

ol.num-list li + li {
    margin-top: 0.5em;
}

.central .white-block__inner .main-title {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 500;
    margin: 0 auto 1.6em;
}

.central--final .white-block__inner .main-title {
    margin-bottom: 0.5em;
}

.main-rules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    text-align: center;
    line-height: 1.4;
}

.main-rules li:before {
    content: "";
    display: block;
    height: 80px;
    margin: 0 0 15px;
    background: url(../img/central1.svg) no-repeat center center transparent;
}

.main-rules li:nth-child(2):before { background-image: url(../img/central2.svg); }
.main-rules li:nth-child(3):before { background-image: url(../img/central3.svg); }

/*.tasks .text {
    min-height: 4.5em;
}*/

.tasks .text + .main-title {
    margin-top: 25px;
    margin-bottom: 40px;
    position: relative;
}

.progress {
    display: flex;
    justify-content: center;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 10px;
}

.progress i {
    width: 28px;
    height: 6px;
    background: #D1D1D1;
    border-radius: 10px;
    margin: 0 3px;
}

.progress-1 i:nth-child(1),
.progress-2 i:nth-child(1),
.progress-3 i:nth-child(1) {
    background: var(--red-color);
}

.progress-2 i:nth-child(2),
.progress-3 i:nth-child(2) {
    background: var(--red-color);
}

.progress-3 i:nth-child(3) {
    background: var(--red-color);
}

.tasks-rules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 0 !important;
}

.tasks-rules li {
    margin-top: 20px;
}

.task-item {
    display: block;
}

.task-item > i {
    display: block;
    height: 160px;
    background: url(../img/task1.svg) no-repeat center center #F1F1F1;
    border-radius: 25px;
    position: relative;
}

.tasks-rules li:nth-child(2) .task-item > i { background-image: url(../img/task2.svg); }
.tasks-rules li:nth-child(3) .task-item > i { background-image: url(../img/task3.svg); }

.tasks-rules .coins {
    position: absolute;
    top: -20px;
    left: 50%;
    background: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0px 19px 7px rgba(0, 0, 0, 0.01), 0px 11px 6px rgba(0, 0, 0, 0.05), 0px 5px 5px rgba(0, 0, 0, 0.09), 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0.1);
    padding: 10px 10px 10px 32px;
    font-style: normal;
    transform: translateX(-50%);
}

.tasks-rules .coins > span {
    display: block;
    font-weight: 800;
    font-size: 12px;
    line-height: 14px;
    color: #FFFFFF;
    padding: 2px 10px;
    background: var(--red-color);
    border-radius: 15px;
    position: relative;
}

.tasks-rules .coins > span:before {
    content: "";
    width: 30px;
    height: 30px;
    background: url(../img/coin.svg) no-repeat center center transparent;
    position: absolute;
    top: calc(50% - 15px);
    left: -22px;
}

.tasks-rules .button {
    width: 100%;
    margin-top: 20px;
    line-height: 18px;
}

.tasks-rules li.done .button {
    display: none;
}

.tasks-rules li.done .task-item:after {
    content: "Задание пройдено";
    display: block;
    padding-top: 28px;
    font-weight: 800;
    font-size: 16px;
    line-height: 1.3;
    color: #A3A3A3;
    background: url("data:image/svg+xml,%3Csvg width='13' height='9' viewBox='0 0 13 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1.93579' y='2.91211' width='6.30035' height='2.00239' rx='1.00119' transform='rotate(45 1.93579 2.91211)' fill='%23E60000'/%3E%3Crect x='12.062' y='1.69824' width='9.99793' height='2' rx='1' transform='rotate(135 12.062 1.69824)' fill='%23E60000'/%3E%3C/svg%3E%0A") no-repeat top 10px center transparent;
    background-size: 20px auto;
}

.main-continue {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
}

.central--final .white-block__inner img {
    width: auto;
    margin: 0 auto;
}

.central--final .white-block__inner img + .button-outer {
    margin-top: 20px;
}
