@font-face {
    font-family: 'PFBeauSansPro Black';
    src: url('/assets/website/fonts/PFBeauSansPro/PFBeauSansPro-Black.ttf');
    font-style: normal;
}

@font-face {
    font-family: 'PFBeauSansPro Bold';
    src: url('/assets/website/fonts/PFBeauSansPro/PFBeauSansPro-Bold.ttf');
    font-style: normal;
}

@font-face {
    font-family: 'PFBeauSansPro';
    src: url('/assets/website/fonts/PFBeauSansPro/PFBeauSansPro-Reg.ttf');
    font-style: normal;
}

@font-face {
    font-family: 'Borsok Regular';
    src: url('/assets/website/fonts/Borsok/borsok.ttf');
    font-style: normal;
}

@font-face {
    font-family: 'HeliosC Bold';
    src: url('/assets/website/fonts/Borsok/HeliosC.ttf');
    font-style: normal;
}

html, body {
    margin: 0;
    height: 100%;
    position: relative;
}

* {
    border: 0;
    margin: 0;
}

:root {
    --white: #FFFFFF;
    --mult-collection-bg: #FFCA4A;
    --mult-collection-text: #FFFFFF;
    --mult-collection-header: #8468DF;
    --mult-collection-footer: #6F3997;
}

body.lock {
    overflow: hidden;
}

body.table {
    display: flex;
    flex-direction: column;
}

a:focus,
button:focus {
    -webkit-user-select: none !important;
    -khtml-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    outline: none !important;
    box-shadow: none !important;
}

img {
    user-select: none;
}

.lazy,
.lazy-bg {
    opacity: 0;
}

.lazy.loaded,
.lazy-bg.loaded {
    animation: fadeIn 0.3s ease forwards;
}

.blockall {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0.6;
    filter: alpha(opacity=60);
    -moz-opacity: 0.6;
    background: #000;
    z-index: 999990;
}

/* лоадер */

.lds-spinner {
    display: block;
    position: relative;
    width: 80px;
    height: 80px;
    margin: 25px auto;
}

.lds-spinner div {
    transform-origin: 40px 40px;
    animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 37px;
    width: 6px;
    height: 18px;
    border-radius: 20%;
    background: #000;
}

.lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}

@keyframes lds-spinner {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* базовые стили кнопок */

.btn {
    font-family: 'PFBeauSansPro Bold', sans-serif;
    background-image: url('/assets/mult-collection/img/button_2.png');
    width: 261px;
    height: 67px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white) !important;
    font-size: 22px;
    outline: 0;
    border: none;
    transform: scale(0.9);
    transition: 0.2s all ease-out;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    text-transform: uppercase;
}

.btn:hover {
    transform: scale(1);
}

/* анимации */

/* анимация лоадера на странице оформления заказа */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* анимация ленивой загрузки изображений */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* плеер */

.plyr {
    min-width: unset !important;
    background: unset !important;
    aspect-ratio: 9 / 16 !important;
    background-color: transparent !important;
    width: 100%;
    border-radius: 25px;
    height: 100% !important;
}

.plyr .plyr__video-wrapper {
    background-color: transparent !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.plyr__poster {
    background-color: transparent !important;
}

.plyr video {
    object-fit: contain !important;
    position: relative !important;
    height: 100% !important;
    width: auto !important;
    max-width: none !important;
}

.plyr--fullscreen,
.plyr--fullscreen .plyr__video-wrapper {
    background-color: transparent !important;
}

.plyr--fullscreen .plyr__video-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.plyr--fullscreen video {
    object-fit: contain !important;
    height: 100% !important;
    width: auto !important;
    max-height: 100vh !important;
    margin: 0 auto !important;
}

.plyr button,
.plyr button:hover {
    background: transparent;
	background-color: unset !important;
    background-image: url('/assets/mult-collection/img/Play_button.png') !important;
    background-size: contain !important;
    background-repeat: no-repeat;
	width: 65px;
	height: 65px;
    opacity: 0.7;
}

.plyr .plyr__control svg {
    display: none;
}

.plyr .plyr--paused.plyr__poster-enabled .plyr__video-wrapper,
.plyr .plyr--paused.plyr__poster-enabled .plyr__video-wrapper {
    background: unset !important;
    background-color: transparent !important;
    filter: brightness(70%);
}

/* шапка */

header * {
    font-family: 'PFBeauSansPro Bold', sans-serif;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 50;
    -webkit-box-shadow: 0 2px 8px 2px rgba(34, 60, 80, 0.5);
    -moz-box-shadow: 0 2px 8px 2px rgba(34, 60, 80, 0.5);
    box-shadow: 0 2px 8px 2px rgba(34, 60, 80, 0.5);
}

header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 2;
}

header .block {
    max-width: 980px;
    margin: 0 auto;
}

header .body {
    position: relative;
    display: flex;
    justify-content: space-between;
    height: 60px;
    align-items: center;
    padding: 0 10px;
}

header .logo {
    display: block;
    width: 140px;
    background-image: url('/assets/mult-collection/img/logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 2;
    height: 32px;
}

header .burger {
    display: none;
}

header .navbar {
    width: 100%;
    z-index: 50;
}

header .list {
    display: flex;
    margin: 0;
    height: 60px;
    width: 100%;
    position: relative;
    padding: 0;
}

header .list li {
    list-style: none;
    margin-left: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .list li:first-of-type {
    margin-left: auto;
}

header .list li a {
    text-transform: uppercase;
    color: var(--mult-collection-header);
    font-size: 24px;
    cursor: pointer;
    outline: 0;
}

header .list li a:hover,
header .list li a:focus {
    color: var(--mult-collection-header) !important;
}

header .socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: auto;
}

header .socials .vk,
header .socials .ok,
header .socials .max,
header .socials .likee {
    width: 32px;
    height: 32px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-left: 15px;
}

header .socials .vk {
    background-image: url('/assets/mult-collection/img/vk.png');
}

header .socials .ok {
    background-image: url('/assets/mult-collection/img/ok.png');
}

header .socials .max {
    background-image: url('/assets/mult-collection/img/max.png');
}

header .socials .likee {
    background-image: url('/assets/mult-collection/img/likee.png');
}

/* бургер меню */

@media screen and (min-width: 320px) and (max-width: 767px) {
    header .block {
        width: 100%;
        margin: 0 auto;
        padding: 0;
        max-width: 767px;
        position: relative;
    }

    header .body {
        height: 60px;
        width: 100%;
        margin: 0 auto;
        padding: 0;
        flex-direction: row-reverse;
    }

    header .burger {
        display: block;
        position: absolute;
        width: 30px;
        height: 22px;
        z-index: 3;
        cursor: pointer;
        left: 0;
    }

    header .burger:before,
    header .burger:after {
        content: '';
        position: absolute;
        background-color: var(--mult-collection-header);
        width: 100%;
        height: 5px;
        left: 0;
        z-index: 3;
        cursor: pointer;
        transition: all .3s ease 0s;
        border-radius: 10px;
        margin-left: 10px;
    }

    header .burger:before {
        top: 0;
    }

    header .burger:after {
        bottom: 0;
    }

    header .burger span {
        position: absolute;
        background-color: var(--mult-collection-header);
        left: 0;
        width: 100%;
        height: 5px;
        top: 8px;
        z-index: 3;
        transition: all .3s ease 0s;
        border-radius: 10px;
        margin-left: 10px;
    }

    header .logo {
        z-index: 4;
        margin: 0 auto;
    }

    header .navbar {
        position: fixed;
        top: -100%;
        left: auto;
        width: 100%;
        height: 100%;
        background-color: var(--white);
        z-index: 1;
        padding-top: 70px;
        transition: all .3s ease 0s;
        overflow: auto;
        max-width: 767px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        box-shadow: 0 8px 8px 0 rgba(0,0,0,.16);
    }

    header .list {
        display: flex;
        max-width: 320px;
        flex-direction: column;
        height: unset;
    }

    header .list li {
        padding: 10px;
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }

    header .socials {
        padding: 20px 10px;
        margin-right: auto;
    }

    header .socials .vk {
        margin-left: 0;
    }

    header.active {
        z-index: 52;
    }

    header.active .navbar {
        top: 0;
        z-index: 1;
        background-color: var(--white);
    }

    header.active .burger {
        z-index: 4;
    }

    header.active .burger:before,
    header.active .burger:after {
        background-color: var(--mult-collection-header);
    }

    header.active .burger:before {
        transform: rotate(45deg);
        top: 8px;
    }

    header.active .burger span {
        transform: scale(0);
    }

    header.active .burger:after {
        transform: rotate(-45deg);
        bottom: 9px
    }
}

/* модалка */

.modal {
    width: 100%;
    background: #fff;
    padding: 20px;
    line-height: 23px;
    border-radius: 25px;
    border: none;
    z-index: 999991;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    min-height: 200px;
    height: auto;
    max-height: 90%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 730px;
    scrollbar-width: none;
    overflow: auto;
}

.modal .close {
    position: absolute;
    top: 15px;
    right: 10px;
    background: transparent;
    outline: 0;
    border: 0;
    font-size: 54px;
    color: #39BBF5;
}

.modal .title {
    text-align: center;
    font-size: 28px;
    font-family: 'Montserrat Bold', sans-serif;
    line-height: 32px;
    margin: 40px auto 20px;
}

.modal.unknown-hero-modal .title {
    color: #DB6A4A;
    font-family: 'Borsok Regular', sans-serif;
    font-weight: lighter;
}

.modal .buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.modal .agree {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto 10px;
    position: relative;
    align-items: flex-start;
    max-width: 450px;
}

.modal .agree-label {
    position: relative;
    padding-left: 50px;
    cursor: pointer;
    user-select: none;
    display: block;
    color: #333;
    margin: 0;
    font-size: 14px !important;
    text-align: left;
    line-height: 18px;
    margin-bottom: 25px;
}

.modal .agree-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.modal .agree-label a {
    color: #333;
    text-decoration: underline !important;
}

.modal .agree-label a:hover {
    color: #333;
    text-decoration: underline !important;
}

.modal .agree-label .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 36px;
    width: 36px;
    background-color: #fff;
    border-radius: 12px;
    border: 2px solid #39BBF5;
}

.modal .agree-label .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.modal .agree-label input:checked ~ .checkmark:after {
    display: block;
}

.modal .agree-label .checkmark:after {
    background-image: url('/assets/mult-magic/img/galochka_forma.png');
    width: 24px;
    height: 20px;
    left: 5px;
    top: 7px;
}

.modal .field-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 450px;
    position: relative;
    margin: 0 auto 10px;
    width: 100%;
}

.modal .field-container input {
    display: block;
    border-radius: 25px;
    border: 2px solid #39BBF5;
    font-size: 16px;
    line-height: 20px;
    position: relative;
    width: 100%;
    padding: 15px;
    cursor: pointer;
    outline: 0;
    background-color: #fff;
    text-align: left;
    margin-bottom: 25px;
}

.modal .field-container input::placeholder {
    opacity: 1;
    text-align: left;
}

.modal .field-container #promocode.disabled {
    background-color: #e3e3e3;
}

.modal label.error {
    font-family: 'Montserrat Regular', sans-serif;
    position: absolute;
    color: #f00 !important;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    width: 100%;
    font-weight: normal;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
}

.modal .recaptcha-container {
    margin: 0 auto 10px;
}

.modal .recaptcha-container .g-recaptcha {
    width: 304px;
    margin: auto auto 25px;
}

.modal .code-container .code-inputs {
    position: relative;
    margin: 10px 0 25px;
}

.modal .code-container .code-inputs input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    border: none;
    outline: none;
    caret-color: transparent;
}

.modal .code-container .digits {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.modal .code-container .digit {
    width: 50px;
    height: 60px;
    border: 2px solid #EDB52E;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    transition: all 0.3s;
}

.modal .code-container .digit.active {
    border-color: #4285f4;
    box-shadow: 0 0 5px rgba(66, 133, 244, 0.5);
}

.modal .text {
    font-size: 20px;
    line-height: 26px;
    margin: 0 auto 25px;
}

.modal .small-text {
    font-size: 14px;
    line-height: 18px;
    margin: 0 auto 30px;
    color: #8BADDD;
    max-width: 450px;
}

.modal .btn {
    width: 305px;
    height: 60px;
    margin: 0 auto;
    color: #fff;
    text-transform: uppercase;
}

.modal .btn:disabled {
    background-color: #e3e3e3;
    background-image: unset !important;
}

.modal .has-errors {
    color: #f00 !important;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    width: 100%;
    font-weight: normal;
    left: 0;
    right: 0;
    margin: 0 auto 25px;
}

.modal .block-loader {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    background: #000;
    margin: -20px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    margin: -20px;
    border-radius: unset;
    animation: none;
}

.modal .block-loader .lds-spinner div:after {
    background: #fff;
}

.modal.disabled {
    overflow: hidden !important;
}

.modal.auth-modal .recaptcha-container {
    margin: 0 auto 50px;
}

/* фон */

.wrapper {
    position: absolute;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    top: 60px;
    left: 0;
    min-height: 100%;
}

.qr-page .wrapper {
    top: 0;
}

.fixed-bg {
    background-repeat: no-repeat;
    background-position: top center;
    height: 100vh;
    width: 100vw;
    position: fixed;
    z-index: -1;
    background-image: url('/assets/mult-collection/img/background.jpg');
    background-color: var(--mult-collection-bg);
}

.fixed-content {
    position: absolute;
    width: 100%;
}

.index {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    background-image: url('/assets/mult-collection/img/index.jpg');
    height: 3083px;
    background-size: contain;
    background-repeat: no-repeat;
}

.profile {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    background-image: url('/assets/mult-collection/img/profile.jpg');
    height: 2864px;
    background-size: contain;
    background-repeat: no-repeat;
}

.qr {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    background-image: url('/assets/mult-collection/img/qr.png');
    height: 787px;
    background-size: contain;
    background-repeat: no-repeat;
}

/* баннер */

section.promo {
    height: 730px;
}

section.promo .block {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

section.promo .block .img {
    width: 384px;
    height: 216px;
    margin-top: 50px;
}

section.promo .block .btn {
    width: 537px;
    height: 180px;
    background-image: url('/assets/mult-collection/img/button_1.png');
    font-family: 'Borsok Regular', sans-serif;
    font-size: 52px;
    padding-bottom: 10px;
    margin-top: auto;
}

section.promo .block .text {
    font-family: 'HeliosC Bold', sans-serif;
    color: #f53a72;
    margin-top: -45px;
    z-index: 1;
    font-size: 20px;
    line-height: 32px;
}

/* условия */

section.steps {
    height: 2080px;
}

section.steps .block {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

section.steps .block .step1 {
    height: 550px;
    width: 100%;
}

section.steps .block .small-text {
    display: flex;
    align-items: center;
    color: #fff;
    font-family: 'HeliosC Bold', sans-serif;
    font-size: 14px;
    line-height: 18px;
    justify-content: end;
    width: fit-content;
    font-style: italic;
}

section.steps .block .step1 .text {
    height: 100%;
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin-left: 50px;
    color: #fff;
    font-family: 'Borsok Regular', sans-serif;
    font-size: 52px;
    line-height: 56px;
    flex-direction: column;
    justify-content: center;
}

section.steps .block .step2 {
    height: 500px;
    width: 100%;
}

section.steps .block .step2 .text {
    height: 100%;
    display: flex;
    align-items: flex-start;
    margin-right: 50px;
    color: #fff;
    font-family: 'Borsok Regular', sans-serif;
    font-size: 52px;
    line-height: 56px;
    margin-left: auto;
    width: fit-content;
    flex-direction: column;
    justify-content: center;
}

section.steps .block .step3 {
    height: 530px;
    width: 100%;
}

section.steps .block .step3 .text {
    height: 100%;
    display: flex;
    align-items: center;
    width: 100%;
    margin-left: 50px;
    color: #fff;
    font-family: 'Borsok Regular', sans-serif;
    font-size: 52px;
    line-height: 56px;
}

section.steps .block .step4 {
    height: 550px;
    width: 100%;
}

section.steps .block .step4 .text {
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 50px;
    color: #2B672B;
    font-family: 'Borsok Regular', sans-serif;
    font-size: 52px;
    line-height: 56px;
    margin-left: auto;
    width: fit-content;
}

/* перейти в коллекцию */

section.info {
    height: 273px;
}

section.info .block {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

section.info .block .btn {
    width: 766px;
    height: 85px;
    font-family: 'Borsok Regular', sans-serif;
    font-size: 52px;
    padding-bottom: 10px;
    margin-top: 30px;
    color: #fa3c70 !important;
}

section.info .block .text {
    font-family: 'HeliosC Bold', sans-serif;
    color: #fff;
    font-size: 26px;
}

/* ЛИЧНЫЙ КАБИНЕТ */

/* баннер */

section.banner {
    height: 300px;
}

section.banner .block {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

section.banner .block .img {
    width: 329px;
    height: 184px;
    margin-top: 40px;
}

section.banner .block .text {
    font-family: 'HeliosC Bold', sans-serif;
    color: #f53a72;
    font-size: 20px;
    text-align: center;
    line-height: 32px;
    max-width: 290px;
}

/* коллекция */

section.collection {
    height: 2364px;
}

section.collection .block {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

section.collection .block .title {
    color: #fff;
    font-family: 'Borsok Regular', sans-serif;
    font-size: 52px;
    line-height: 60px;
    text-align: center;
    margin-top: 70px;
}

section.collection .block .items {
    height: 100%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

section.collection .block .item {
    list-style: none;
    flex-basis: 33.3333%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

section.collection .block .card {
    width: 263px;
    height: 468px;
    background-image: url('/assets/mult-collection/img/Cart.png');
    background-size: contain;
    display: flex;
    justify-content: center;
    border-radius: 25px;
}

section.collection .block .card p {
    font-family: 'Borsok Regular', sans-serif;
    font-size: 24px;
    margin-top: 60px;
    color: #FF7644;
}

section.collection .block .video {
    width: 100%;
    height: 100%;
    max-width: 263px;
    max-height: 468px;
}

/* правила */

section.rules {
    height: 200px;
}

section.rules .block {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

section.rules .block .btn {
    width: 577px;
    height: 85px;
    font-family: 'Borsok Regular', sans-serif;
    font-size: 52px;
    padding-bottom: 10px;
    color: #fa3c70 !important;
    background-image: url('/assets/mult-collection/img/button_3.png');
}

/* QR КОД */

.qr-page .logo {
    display: block;
    width: 222px;
    background-image: url('/assets/mult-collection/img/logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 50px;
    margin: 20px auto;
}

section.character {
    height: 100%;
    padding: 10px;
    margin-bottom: 20px;
}

section.character .block {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

section.character .block .title {
    color: #f53a72;
    font-family: 'Borsok Regular', sans-serif;
    font-size: 56px;
    line-height: 60px;
    text-align: center;
}

section.character .block .text {
    font-family: 'HeliosC Bold', sans-serif;
    color: #000;
    font-size: 30px;
    text-align: center;
    margin: 5px 0 10px;
    font-weight: bold;
}

section.character .block .video {
    width: 100%;
    height: 100%;
    max-width: 234px;
    max-height: 416px;
}

section.character .block .btn {
    width: 376px;
    height: 55px;
    font-family: 'Borsok Regular', sans-serif;
    font-size: 28px;
    padding-bottom: 10px;
    color: #fff !important;
    background-image: url('/assets/mult-collection/img/button_4.png');
    margin: 15px 0;
}

section.character .block .info {
    text-align: center;
    font-size: 22px;
    line-height: 30px;
    margin: 0px auto;
    color: #DB6A4A;
    font-family: 'Borsok Regular', sans-serif;
    font-weight: lighter;
    background-image: url('/assets/mult-collection/img/poglozhka_text.png');
    background-size: contain;
    width: 100%;
    height: 100%;
    max-width: 397px;
    max-height: 134px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    flex-wrap: wrap;
}

/* подвал */

footer {
    background-color: var(--mult-collection-footer);
}

body.table footer {
    bottom: 0;
    position: relative;
    margin-top: auto;
}

footer .block {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 10px;
    max-width: 980px;
    margin: 0 auto;
}

footer .links {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px 0 5px 0;
    margin-bottom: 20px;
}

footer .links .vk,
footer .links .ok,
footer .links .max,
footer .links .likee {
    width: 40px;
    height: 40px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 25px;
    background-size: contain;
    border-radius: 50%;
}

footer .links .vk {
    background-image: url('/assets/mult-collection/img/vk_white.png');
}

footer .links .ok {
    background-image: url('/assets/mult-collection/img/ok_white.png');
}

footer .links .max {
    background-image: url('/assets/mult-collection/img/max_white.png');
}

footer .links .likee {
    background-image: url('/assets/mult-collection/img/likee_white.png');
}

footer .links .ct {
    background-image: url('/assets/mult-collection/img/ct.png');
    display: block;
    margin-left: auto;
    background-repeat: no-repeat;
    background-size: contain;
    width: 120px;
    height: 60px;
}

footer .rights {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: space-between;
}

footer .rights .copyright {
    font-size: 11px;
    font-weight: 300;
    color: #fff;
    max-width: 85%;
    line-height: normal;
    font-family: 'Roboto', sans-serif;
}

footer .rights .copyright a {
    color: #fff;
    text-decoration: underline !important;
}

/* Флэш-сообщение */

.flash-message {
    display: none;
    width: 100%;
    background: #fff;
    padding: 20px;
    line-height: 23px;
    border-radius: 25px;
    border: none;
    z-index: 999991;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    min-height: 200px;
    height: auto;
    max-height: 90%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 730px;
    scrollbar-width: none;
    overflow: auto;
}

.flash-message.has-message {
    display: flex;
}

.flash-message .alert {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.flash-message .title {
    text-align: center;
    font-size: 28px;
    line-height: 32px;
    margin: 40px auto 20px;
    color: #DB6A4A;
    font-family: 'Borsok Regular', sans-serif;
    font-weight: lighter;
}

.flash-message .title.danger {
    color: #ff0000;
}

.flash-message .text {
    font-size: 20px;
    line-height: 26px;
    margin: 0 auto 25px;
}

.flash-message .btn {
    width: 305px;
    height: 60px;
    margin: 0 auto 10px;
    color: #fff;
    text-transform: uppercase;
    background-image: url("/assets/mult-tales/img/button_1.png");
}

@media screen and (min-width: 320px) and (max-width: 979px) {
    .index,
    .profile,
    .qr {
        height: auto;
    }

    /* баннер */

    section.promo {
        height: unset;
    }

    section.promo .block .img {
        width: 35vw;
        height: auto;
        margin-top: 6vw;
    }

    section.promo .block .btn {
        width: 75vw;
        height: 26vw;
        font-size: 7vw;
        line-height: 7vw;
        padding-bottom: 0vw;
        margin-top: 23vw;
    }

    section.promo .block .text {
        margin-top: -8vw;
        font-size: 3vw;
        line-height: 8vw;
    }

    /* условия */

    section.steps {
        height: auto;
    }

    section.steps .block .small-text {
        font-size: 1.5vw;
        line-height: 3vw;
    }

    section.steps .block .step1 {
        height: auto;
    }

    section.steps .block .step1 .text {
        margin-left: 8vw;
        font-size: 5vw;
        line-height: 5.5vw;
        margin-top: 10vw;
        margin-bottom: 5vw;
        width: auto;
    }

    section.steps .block .step2 {
        height: auto;
    }

    section.steps .block .step2 .text {
        margin-right: 8vw;
        font-size: 5vw;
        line-height: 5.5vw;
        margin-top: 4vw;
        margin-bottom: 6vw;
    }

    section.steps .block .step3 {
        height: auto;
    }

    section.steps .block .step3 .text {
        margin-left: 8vw;
        font-size: 5vw;
        line-height: 5.5vw;
        margin-top: 4vw;
        margin-bottom: 8vw;
        width: auto;
    }

    section.steps .block .step4 {
        height: auto;
    }

    section.steps .block .step4 .text {
        margin-right: 8vw;
        font-size: 5vw;
        line-height: 5.5vw;
        margin-top: 21vw;
        margin-bottom: 23vw;
    }

    /* перейти в коллекцию */

    section.info {
        height: auto;
    }

    section.info .block .btn {
        width: 75vw;
        height: 11vw;
        font-size: 6vw;
        padding-bottom: 0vw;
        margin-top: 4.5vw;
    }

    section.info .block .text {
        font-size: 3.5vw;
        margin-bottom: 5vw;
    }

    /* QR КОД */

    .qr {
        width: auto;
        background-position: top center;
    }
}

@media screen and (min-width: 640px) and (max-width: 979px) {
    /* базовые стили кнопок */

    .btn {
        width: 220px;
        height: 56px;
        font-size: 18px;
    }

    /* плеер */

    .plyr button,
    .plyr button:hover {
        width: 11vw;
        height: 11vw;
    }

    /* ЛИЧНЫЙ КАБИНЕТ */

    /* баннер */

    section.banner {
        height: unset;
    }

    section.banner .block .img {
        width: 33vw;
        height: auto;
        margin-top: 3.5vw;
    }

    section.banner .block .text {
        font-size: 2vw;
        line-height: 4vw;
        max-width: 28vw;
        margin-top: 1vw;
    }

    /* коллекция */

    section.collection {
        height: auto;
    }

    section.collection .block .title {
        font-size: 6vw;
        line-height: 6.5vw;
        margin-top: 7vw;
    }

    section.collection .block .items {
        padding: 1vw 0 2vw;
    }

    section.collection .block .item {
        padding: 4vw 0;
    }

    section.collection .block .video {
        width: 27vw;
        height: 48vw;
    }

    section.collection .block .card {
        width: 27vw;
        height: 48vw;
    }

    section.collection .block .card p {
        font-size: 3vw;
        margin-top: 3vw;
    }

    /* правила */

    section.rules {
        height: auto;
    }

    section.rules .block .btn {
        width: 70vw;
        height: 11vw;
        font-size: 6vw;
        padding-bottom: 0vw;
        margin-top: 6vw;
        margin-bottom: 3.7vw;
    }

    /* QR КОД */

    .qr-page .logo {
        width: 30vw;
        height: 7vw;
        margin: 3vw auto;
    }

    section.character {
        padding: 2vw 7vw;
    }

    section.character .block .title {
        font-size: 4.5vw;
        line-height: 5vw;
    }

    section.character .block .text {
        font-size: 2.5vw;
        margin: 1vw 0 2vw;
    }

    section.character .block .video {
        width: 26vw;
        height: 41vw;
    }

    section.character .block .btn {
        width: 48vw;
        height: 7vw;
        font-size: 3.5vw;
        padding-bottom: 0vw;
        margin: 2vw 0 0;
    }

    section.character .block .info {
        font-size: 2vw;
        line-height: 4vw;
        margin: 1vw 0 0;
        max-width: 41.5vw;
        max-height: 15vw;
        padding: 1vw;
    }
}

@media screen and (min-width: 320px) and (max-width: 639px)  {
    .profile {
        background-image: url('/assets/mult-collection/img/profile_m.jpg');
    }

    /* базовые стили кнопок */

    .btn {
        width: 150px;
        height: 39px;
        font-size: 13px;
    }

    /* плеер */

    .plyr button,
    .plyr button:hover {
        width: 17vw;
        height: 17vw;
    }

    /* модалка */

    .modal:not(.unknown-hero-modal) {
        width: 100%;
        height: 100%;
        max-height: unset;
        border-radius: 0;
    }

	.modal.unknown-hero-modal {
		width: 95%;
	}

    .modal .title {
        font-size: 26px;
        line-height: 30px;
        margin: 20px auto;
    }

    .modal .buttons {
        flex-direction: column-reverse;
    }

    .modal .btn {
        width: 280px;
        height: 55px;
        font-size: 18px;
    }

    /* ЛИЧНЫЙ КАБИНЕТ */

    /* баннер */

    section.banner {
        height: unset;
    }

    section.banner .block .img {
        width: 33vw;
        height: auto;
        margin-top: 5vw;
    }

    section.banner .block .text {
        font-size: 2vw;
        line-height: 4vw;
        margin-top: 1vw;
        max-width: 30vw;
    }

    /* коллекция */

    section.collection {
        height: auto;
    }

    section.collection .block .title {
        font-size: 8vw;
        line-height: 7vw;
        margin-top: 37vw;
    }

    section.collection .block .item {
        flex-basis: 50%;
        padding: 7vw 0;
    }

    section.collection .block .video {
        width: 38vw;
        height: 67.5vw;
    }

    section.collection .block .card {
        width: 38vw;
        height: 67.5vw;
    }

    section.collection .block .card p {
        font-size: 4.5vw;
        margin-top: 6vw;
    }

    /* правила */

    section.rules {
        height: auto;
    }

    section.rules .block .btn {
        width: 70vw;
        height: 11vw;
        font-size: 6vw;
        padding-bottom: 0vw;
        margin-top: 7vw;
        margin-bottom: 4.5vw;
        background-image: url('/assets/mult-collection/img/button_4.png');
        color: #FED94C !important;
    }

    /* QR КОД */

    .qr-page .fixed-bg {
        background-image: url('/assets/mult-collection/img/qr_m.jpg');
        background-size: cover;
    }

    .qr-page .logo {
        width: 40vw;
        height: 9vw;
        margin: 4vw auto;
    }

    .qr {
        background-image: unset;
    }

    section.character {
        padding: 0;
    }

    section.character .block .title {
        font-size: 9vw;
        line-height: 8.5vw;
    }

    section.character .block .text {
        font-size: 5vw;
        margin: 2vw 0 5vw;
    }

    section.character .block .video {
        width: 54vw;
        height: 95vw;
        max-width: unset;
        max-height: unset;
    }

    section.character .block .btn {
        width: 75vw;
        height: 11.3vw;
        font-size: 5vw;
        padding-bottom: 0px;
        margin: 5vw 0 0;
    }

    section.character .block .info {
        font-size: 3.5vw;
        line-height: 5vw;
        margin: 4vw 0 0;
        max-width: 68vw;
        max-height: 23vw;
        padding: 2vw;
    }

    /* подвал */

    footer .links .vk,
    footer .links .ok,
    footer .links .max,
    footer .links .likee {
        margin-right: 15px;
        width: 35px;
        height: 35px;
    }

    footer .links .ct {
        width: 80px;
        height: 40px;
    }

    /* Флэш-сообщение */

    .flash-message {
        width: 95%;
    }

    .flash-message .title {
        font-size: 26px;
        line-height: 30px;
        margin: 20px auto;
    }

    .flash-message .buttons {
        flex-direction: column-reverse;
    }

    .flash-message .btn {
        width: 280px;
        height: 55px;
        font-size: 18px;
    }
}
