/*@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("../fonts/3f69592b2fe603c7-s.woff2") format("woff2");
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("../fonts/6325a8417175c41d-s.woff2") format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("../fonts/021bc4481ed92ece-s.woff2") format("woff2");
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0,
        U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("../fonts/99b7f73d5af7c3e2-s.woff2") format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308,
        U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113,
        U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("../fonts/4f05ba3a6752a328-s.p.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
        U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}*/

input,
button,
textarea,
select {
    font-family: "Montserrat", sans-serif;
}

body {
    font-family: "Montserrat", sans-serif;
    color: #fff;
    background: #0f1328;
}

html,
body {
    padding: 0;
    margin: 0;
    height: 100vh;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }
    10% {
        transform: translateX(-5px);
    }
    20% {
        transform: translateX(5px);
    }
    30% {
        transform: translateX(-5px);
    }
    40% {
        transform: translateX(5px);
    }
    50% {
        transform: translateX(-5px);
    }
    60% {
        transform: translateX(5px);
    }
    70% {
        transform: translateX(-5px);
    }
    80% {
        transform: translateX(5px);
    }
    90% {
        transform: translateX(-5px);
    }
    100% {
        transform: translateX(0);
    }
}

.fixed-bonus {
    animation: shake 2s ease-in-out infinite;
    animation-delay: 3.5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-direction: normal;
    animation-fill-mode: both;
    animation-play-state: running;
}

/* Чтобы встряхивание было каждые 2 секунды, включим паузу: */
@keyframes shake-timed {
    0%,
    74.9% {
        transform: translateX(0);
    }
    75% {
        transform: translateX(-5px);
    }
    77% {
        transform: translateX(5px);
    }
    79% {
        transform: translateX(-5px);
    }
    81% {
        transform: translateX(5px);
    }
    83% {
        transform: translateX(-5px);
    }
    85% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(0);
    }
}

.fixed-bonus {
    animation: shake-timed 3s infinite;
}

.page-wrapper {
    overflow: hidden;
    position: relative;
    padding-top: 62px;
    width: 100%;
    margin-left: auto;
}

.container {
    width: 1300px;
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: #1b213c;
    z-index: 20;
}
.header-list {
    height: 62px;
}
.header-logo {
    margin-right: auto;
}
.header-gift {
    border-radius: 5px;
    border: 1px solid #33395c;
    background: #212747;
    width: 44px;
    height: 44px;
    margin-right: 10px;
}
.header-gift:hover {
    border: 1px solid #55adff;
    background: #1c8cf4;
}
.header-border,
.header-btn {
    height: 44px;
    padding: 0 30px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    border-radius: 5px;
}
.header-border {
    border: 1px solid #33395c;
    background: #212747;
}
.header-border:hover {
    border: 1px solid #33395c;
    background: #0059a3;
}
.header-btn {
    margin-left: 5px;
    border: 1px solid #1f99ff;
    background: #0077db;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.25) inset;
    box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.25) inset;
}
.header-btn:hover {
    border: 1px solid #55adff;
    background: #1c8cf4;
}

.btn {
    height: 62px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 49px;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid #1f99ff;
    background: #0077db;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.25) inset;
    box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.25) inset;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    line-height: normal;
}
.btn:hover {
    border: 1px solid #55adff;
    background: #1c8cf4;
}

.page-error {
    margin-left: auto;
    width: calc(100% - 82px);
}
.page-error__img {
    width: 100%;
    min-width: 1900px;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.page-error__btn {
    bottom: 158px;
    left: calc(50% - 82px);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 3;
}

.footer {
    border-top: 1px solid #242945;
    background: #131730;
    padding: 60px 0 30px;
}
.footer-copy {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #242945;
    color: #98a2d2;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.footer-items {
    padding-top: 20px;
}
.footer-items__block {
    margin-top: 20px;
    width: 33.333%;
}
.footer-item {
    padding: 15px 19px;
    border-radius: 5px;
    border: 1px solid #242945;
    background: #1c213c;
    min-height: 100%;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
}
.footer-item img {
    margin-right: 12px;
}
.footer-pay {
    border-top: 1px solid #242945;
    padding-top: 40px;
    margin-top: 40px;
    color: #98a2d2;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.footer-pay img {
    width: 48px;
}
.footer-pay span {
    white-space: nowrap;
}
.footer-soc__item {
    margin-right: 12px;
    width: 36px;
    height: 36px;
    border: 1px solid #3b4057;
    background: #191f3b;
    margin-top: 30px;
    border-radius: 100%;
}
.footer-soc__item:hover {
    background: #1c8cf4;
    border-color: #87c1f2;
}
.footer-left {
    width: 554px;
}
.footer-text {
    margin: 30px 0;
    color: #98a2d2;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.footer-contact__item {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    margin-top: 10px;
}
.footer-contact__item img {
    margin-right: 10px;
}
.footer-contact__item:first-child {
    margin-top: 0;
}
.footer-nav {
    margin-left: 130px;
}
.footer-nav__title {
    margin-bottom: 30px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}
.footer-nav__link {
    color: #e8e5ff;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    margin-top: 12px;
}
.footer-nav__link:first-child {
    margin-top: 0;
}
.footer-nav__link:hover {
    color: #fff;
}

a.footer-nav__link:hover {
    text-decoration: underline;
}

.article {
    padding: 60px 0;
}
.article-content {
    margin-bottom: -30px;
    color: #98a2d2;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}
.article-content h1 {
    margin-bottom: 40px;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
}
.article-content a {
    color: #1c8cf4;
    font-weight: 600;
    text-decoration-line: underline;
    text-decoration-style: solid;
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: 5%;
    text-underline-position: from-font;
}
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    margin-bottom: 30px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
}
.article-content p {
    margin-bottom: 30px;
}
.article-content img {
    max-width: 100%;
    display: block;
    border-radius: 5px;
    margin: 0 auto 30px;
}
.article-content ul {
    margin-bottom: 30px;
    padding-left: 24px;
    list-style-type: disc;
}
.article-content ul li {
    margin-top: 10px;
}
.article-content ul li:first-child {
    margin-top: 0;
}
.article-content ol {
    margin-bottom: 30px;
    padding-left: 24px;
    list-style-type: decimal;
}
.article-content ol li {
    margin-top: 10px;
}
.article-content ol li:first-child {
    margin-top: 0;
}
.article-content table {
    display: block;
    width: 100%;
    margin: 0 0 30px 0;
}
.article-content table thead,
.article-content table tbody {
    display: block;
    width: 100%;
}
.article-content table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.article-content table td {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    width: 50%;
    padding: 20px;
}
.article-content table th {
    width: 50%;
    text-align: left;
    padding: 0 20px 20px;
    color: #98a2d2;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
}
.article-content table tbody tr:nth-child(odd) {
    background: #191f3b;
    border-radius: 5px;
}

.article-content a.btn {
    text-decoration: none;
    color: #fff;
    height: 36px;
    padding: 0 30px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 30px;
}

.faq {
    padding-bottom: 60px;
}
.faq-title {
    margin-bottom: 30px;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
}
.faq-item {
    margin-top: 10px;
    border-radius: 5px;
    border: 1px solid #33395c;
    background: #212747;
}
.faq-item:first-child {
    margin-top: 0;
}
.faq-item__title {
    padding: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
}
.faq-item__title::after {
    content: "";
    display: block;
    width: 29px;
    height: 29px;
    min-width: 29px;
    background-image: url("../img/faq-arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    margin-left: 10px;
}
.faq-item__title.active::after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.faq-item__text {
    padding: 5px 14px 29px;
    color: #98a2d2;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    display: none;
}
.faq-items {
    width: 665px;
    max-width: 100%;
    margin: 0 auto;
}

.main-padding {
    padding-top: 60px;
}
.main-block {
    margin-bottom: 40px;
}
.main-block:last-child {
    margin-bottom: 0;
}
.main-block__slider {
    min-width: 494px;
}
.main-block__item {
    padding-top: 134%;
    border-radius: 5px;
}
.main-block__item img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -o-object-fit: cover;
    object-fit: cover;
}
.main-block__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: rgba(28, 32, 131, 0.4);
    opacity: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    background-image: url("../img/play.svg");
    background-repeat: no-repeat;
    background-position: center;
}
.main-block__item:hover::before {
    opacity: 1;
}
.main-block__link {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}
.main-block__title {
    margin-bottom: 30px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
}
.main-block__title img {
    margin-right: 10px;
}
.main-item {
    padding: 25px 24px 19px;
    border-radius: 7px;
    background: radial-gradient(74.43% 121.41% at 60.95% 100%, #1861a5 0%, #2d3c60 100%);
    border: 1px solid #1c7ac9;
    min-height: 100%;
}
.main-item__title {
    color: #1c8cf4;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
}
.main-item__subtitle {
    margin: 12px 0 31px;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
}
.main-item__btn {
    padding: 0 19px;
    height: 44px;
    font-size: 14px;
}
.main-item__bottom {
    margin-top: auto;
}
.main-item__icon {
    bottom: 0;
    right: -16px;
}
.main-items {
    background: #151a32;
    padding: 40px 0;
}
.main-items__block {
    width: 33.333%;
}

.main-items__block:nth-child(2) .main-item__icon {
    right: -37px;
}

.providers-item {
    height: 77px;
    border-radius: 5px;
    background: #1b213c;
    border: 1px solid #1b213c;
}
.providers-item:hover {
    border-color: hsla(0, 0%, 100%, 0.1);
}
.providers-item img {
    height: 45px;
    max-width: 100%;
    margin: 0 auto;
    -o-object-fit: cover;
    object-fit: cover;
}
.providers-item__link {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.providers-slider {
    min-width: 556px;
}

.fixed-bonus {
    position: fixed;
    bottom: 60px;
    right: calc(50% + 700px);
    z-index: 24;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.fixed-bonus img {
    transition: all 0.4s;
    border-radius: 100%;
}
.fixed-bonus img:last-child {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    box-shadow: 0px 0px 14px 0px #f4c025;
    z-index: 1;
}
.fixed-bonus:hover img:last-child {
    opacity: 1;
}

.table-title {
    margin-bottom: 30px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
}
.table-title b {
    width: 7px;
    height: 7px;
    background: #7dd934;
    border-radius: 100%;
    margin-right: 10px;
    display: block;
}

.hide-winners {
    display: none !important;
}

.table-content table {
    display: block;
    width: 100%;
}
.table-content table thead,
.table-content table tbody {
    display: block;
    width: 100%;
}
.table-content table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.table-content table tbody tr {
    border-radius: 5px;
}
.table-content table tbody tr:nth-child(even) {
    background: #191f3b;
}
.table-content table th {
    padding: 0 20px 20px;
    width: 20%;
    color: #98a2d2;
    font-size: 16px;
    text-align: left;
    font-weight: 600;
    line-height: normal;
    width: 22%;
}
.table-content table th:last-child {
    text-align: right;
    width: 12%;
}
.table-content table td {
    padding: 18px 20px;
    width: 22%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
}
.table-content table td .sort-table__username {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 140px;
}
.table-content table td img {
    margin-right: 10px;
	width: 21px;
}
.table-content table td:last-child {
    text-align: right;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    color: #7dd934;
    width: 12%;
}

.disabled {
    color: #98a2d2 !important;
}

.table-winers__all-pay {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.table-winers__all-pay::after {
    content: "";
    display: block;
    width: 10px;
    height: 12px;
    background-image: url("../img/arrow-1.svg");
    background-repeat: no-repeat;
    margin-left: 4px;
}

.table-winers__all-pay.disabled::after {
    background-image: url("../img/arrow-2.svg");
}

.sort-table__game.disabled {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.sort-table__game.disabled::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    margin-left: 5px;
    background-image: url("../img/hidden.svg");
    background-repeat: no-repeat;
}

.table-winers__all {
    overflow: hidden;
}
.table-winers__all thead {
    background: #0f1328;
    position: relative;
    z-index: 3;
}
.table-winers__all tbody tr:nth-child(even) {
    -webkit-animation: 0.5s ease-out 0s 1 normal none running roo239;
    animation: 0.5s ease-out 0s 1 normal none running roo239;
}
.table-winers__all tbody tr:nth-child(odd) {
    -webkit-animation: 0.5s ease-out 0s 1 normal none running roo240;
    animation: 0.5s ease-out 0s 1 normal none running roo240;
}

@-webkit-keyframes roo239 {
    from {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}
@-webkit-keyframes roo240 {
    from {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}
.main-block__item,
.providers-item,
.main-item {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.main-block__item:hover,
.providers-item:hover,
.main-item:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.main-block__slider {
    margin-top: -5px;
}
.main-block__slider .swiper-slide {
    padding-top: 5px;
}

.main-top {
    background-image: url("../img/bg-main.png");
    background-size: cover;
    background-position: center;
    padding: 45px 0 42px;
}
.main-top__item {
    width: 295px;
    margin-left: 30px;
    height: 289px;
    border-radius: 5px;
}
.main-top__item:first-child {
    margin-left: 0;
}
.main-top__item:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}
.main-top__item-link {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}
.main-top__item-img {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.main-top__item-wrapper {
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
    padding: 15px 18px;
    border-top: 1px solid #487db4;
    background: #195da1;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
}
.main-top__item-wrapper span {
    margin: 0 12px;
}
.main-top__item-wrapper::after {
    content: "";
    display: block;
    width: 20px;
    height: 12px;
    background-image: url("../img/main-item-icon-2.svg");
}
.main-top__item:nth-child(2) .main-top__item-wrapper {
    border-top: 1px solid #46516d;
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#3b4866),
        color-stop(47.12%, #485676),
        to(#3b4866)
    );
    background: linear-gradient(90deg, #3b4866 0%, #485676 47.12%, #3b4866 100%);
}
.main-top__item:nth-child(2) .main-top__item-wrapper::after {
    background-image: url("../img/main-item-icon-4.svg");
}
.main-top__title {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 38px;
    line-height: normal;
}
.main-top__border {
    border-radius: 5px;
    border: 1px solid #33395c;
    background: #212747;
    padding: 4px;
}
.main-top__btn {
    height: 44px;
    padding: 0 34px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: #38c758;
}
.main-top__btn svg {
    margin-left: 11px;
}
.main-top__btn:hover {
    background: #34a94d;
}
.main-top__btn:hover svg {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
}
.main-top__or {
    margin: 0 14px;
    color: #6e7492;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
}
.main-top__soc {
    height: 54px;
    padding: 0 14px;
    border-radius: 5px;
    border: 1px solid #33395c;
    background: #212747;
}
.main-top__soc-link {
    margin-right: 17px;
}
.main-top__soc-link:last-child {
    margin-right: 0;
}

.page-bonus {
    padding: 79px 0 77px;
    background-image: url("../img/bg-bonus.png");
    background-size: cover;
    background-position: center;
}
.page-bonus__title {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    line-height: normal;
}
.page-bonus__subtitle {
    margin: 20px 0 40px;
    color: #e8e5ff;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    width: 655px;
}
.page-bonus__copy {
    height: 68px;
    width: 292px;
    margin-right: 40px;
    border-radius: 5px;
    border: 1px solid #fff;
    background: #212747;
    overflow: hidden;
}
.page-bonus__copy-text {
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 2.86px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.page-bonus__copy-icon {
    height: 100%;
    width: 70px;
    border-left: 1px solid #fff;
}
.page-bonus__copy-active {
    left: 0;
    top: 0;
    width: calc(100% - 70px);
    height: 100%;
    color: #9eb2c4;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    opacity: 0;
}
.page-bonus__copy-active img {
    margin-left: 12px;
}
.page-bonus__copy:hover .page-bonus__copy-text {
    color: #1c8cf4;
}
.page-bonus__copy:hover .page-bonus__copy-icon {
    background: #1c8cf4;
}
.page-bonus__copy:hover .page-bonus__copy-icon img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.page-bonus__copy.active {
    pointer-events: none;
}
.page-bonus__copy.active .page-bonus__copy-active {
    opacity: 1;
}
.page-bonus__copy.active .page-bonus__copy-text {
    opacity: 0;
}
.page-bonus__text {
    white-space: nowrap;
    border: 1px solid rgb(250, 165, 7);
    color: rgb(250, 165, 7);
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    padding: 0 24px;
    height: 68px;
}
.page-bonus__text::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    background: -webkit-gradient(linear, left top, left bottom, from(#f3c01c), to(#faa507));
    background: linear-gradient(180deg, #f3c01c 0%, #faa507 100%);
}
.page-bonus__text:hover {
    color: #fff;
}
.page-bonus__text:hover::before {
    opacity: 1;
}
.page-bonus__img {
    left: calc(50% + 60px);
    top: 0;
    height: 100%;
}

.bonus {
    padding: 17px 79px 17px 49px;
    border-radius: 5px;
    border: 1px solid #3e446b;
    background: #2c3251;
    position: fixed;
    z-index: 20;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -300px;
    -webkit-transition: all 1s;
    transition: all 1s;
    width: 1300px;
    display: none;
}
.bonus.open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.bonus.active {
    bottom: 0 !important;
}
.bonus-logo {
    margin-right: auto;
}
.bonus-gray {
    margin: 0 auto;
    color: #98a2d2;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.bonus-btn {
    padding: 0 30px;
    height: 51px;
    font-size: 14px;
}
.bonus-close {
    top: 4px;
    right: 5px;
    width: 25px;
    height: 25px;
    background-image: url("../img/close.svg");
    background-repeat: no-repeat;
    background-position: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.burger {
    height: 62px;
    padding-left: 29px;
    border-right: 1px solid #242945;
    border-bottom: 1px solid #242945;
}
.burger-item {
    height: 100%;
}
.burger-links {
    height: 44px;
    padding: 3px 5px 4px;
    border-radius: 5px;
    border: 1px solid #33395c;
    background: #212747;
    width: 149px;
    margin-left: 29px;
}
.burger-link {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
    padding: 0 9px;
    height: 100%;
    border: 1px solid transparent;
}
.burger-link:last-child {
    padding: 0 23px;
}
.burger-link.active {
    border-radius: 4px;
    border: 1px solid #1f99ff;
    background: #0077db;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.25) inset;
    box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.25) inset;
}
.burger-link.active:hover {
    opacity: 0.8;
}

.mobile-wrapper {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 21;
    width: 251px;
    overflow-y: auto;
    background: #1b213c;
    height: 100%;
}
.mobile-wrapper::-webkit-scrollbar {
    display: none;
}

.page-menu__wrapper {
    padding: 30px 25px;
    border-bottom: 1px solid #242945;
}
.page-menu__lang {
    padding: 15px 24px;
}
.page-menu__lang-current {
    border-radius: 5px;
    border: 1px solid #33395c;
    background: #212747;
    padding: 0 9px 0 4px;
    height: 37px;
    color: #7d7e97;
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.page-menu__lang-current:hover {
    background: #272e52;
}
.page-menu__lang-current span {
    margin: 0 10px;
}

.open.page-menu__lang .page-menu__lang-current img.transition {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.page-menu__lang-wrapper {
    position: absolute;
    border-radius: 5px;
    border: 1px solid #33395c;
    background: #212747;
    overflow: hidden;
    bottom: calc(15px + 41px);
    left: 24px;
    opacity: 0;
    pointer-events: none;
}
.open.page-menu__lang .page-menu__lang-wrapper {
    opacity: 1;
    pointer-events: auto;
}
.page-menu__lang-link {
    display: flex;
    align-items: center;
    height: 37px;
    color: #7d7e97;
    font-size: 12px;
    font-weight: 600;
    padding: 0 9px 0 4px;
    line-height: normal;
}
.page-menu__lang-link img {
    margin-right: 10px;
}
.page-menu__lang-link:hover {
    background: #1b213c;
}

.page-menu__link {
    margin-top: 20px;
    color: #7d7e97;
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
}
.page-menu__link img {
    margin-right: 10px;
}
a.page-menu__link:hover,
.page-menu__link.active {
    filter: brightness(0) invert(1);
}

.page-menu__days-top {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
}
.page-menu__days-gradient {
    background: linear-gradient(18deg, #e3ba28 10.07%, #ffdfba 39.08%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
}
.page-menu__days-center {
    margin: 0 13px;
}
.page-menu__days-right {
    background: linear-gradient(to top, rgba(255, 214, 69, 1), rgba(45, 45, 45, 1));
    border-radius: 4px;
    padding: 1px;
    overflow: hidden;
}
.page-menu__days-right span {
    background: #2d2d2d;
    height: 21px;
    padding: 0 4px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
    border-radius: 4px;
}
.page-menu__tabs-item {
    height: 36px;
    width: 100%;
    border: 1px solid transparent;
}
.page-menu__tabs {
    padding: 2px;
    border-radius: 5px;
    border: 1px solid #33395c;
    background: #212747;
    width: 42px;
    margin: 0 auto;
}
.page-menu__tabs-item.active {
    border-radius: 4px;
    border: 1px solid #2b97f2;
    background: #1281dd;
}
.page-menu__tabs-item img {
    opacity: 0.15;
}
.page-menu__tabs-item.active img {
    opacity: 1;
}
.page-menu__tabs-wrapper {
    padding: 15px 0;
    border-bottom: 1px solid #242945;
}
.page-menu__link {
    overflow: hidden;
    transition: all 0.4s;
}
.page-menu__link span {
    transition: all 0.4s;
    white-space: nowrap;
}
.page-menu__days-top,
.page-menu__days-gradient {
    transition: all 0.4s;
    white-space: nowrap;
}


.article-img {
	width: 600px;
	min-width: 600px;
	margin-left: 24px;
}
.article-top {
	margin-bottom: 24px;
}
.article-left {
	flex-grow: 1;
}

@media (min-width: 1341px) {
    .open-menu .page-menu__link span {
        opacity: 0;
    }
    .open-menu .page-menu__days-center,
    .open-menu .page-menu__days-right {
        opacity: 0;
    }
    .open-menu .page-menu__link {
        width: 24px;
    }
    .open-menu .page-menu__tabs-wrapper {
        display: block;
    }
    .open-menu .mobile-wrapper {
        width: 82px;
    }
    .open-menu .page-menu__lang-current,
    .open-menu .page-menu__lang-link {
        padding-left: 6px;
        padding-right: 6px;
    }
    .open-menu .page-menu__lang-link img {
        margin: 0 auto;
    }
    .open-menu .page-menu__lang {
        padding: 10px 21px;
    }
    .open-menu .page-menu__wrapper {
        padding: 30px 28px;
    }
    .open-menu .burger-links {
        display: none;
    }
    .open-menu .page-menu__lang-current span,
    .open-menu .page-menu__lang-link span,
    .open-menu img.arrow {
        display: none;
    }
}
@media (min-width: 1341px) {
    .size-menu.page-wrapper {
        width: calc(100% - 240px);
    }
    .size-menu .header {
        width: calc(100% - 240px);
        left: 240px;
    }
    .size-menu .container {
        max-width: calc(100% - 80px);
    }
    .bonus {
        transition: all 0.4s;
        margin-left: 0px;
    }
    .size-menu .bonus {
        margin-left: 120px;
        max-width: calc(100% - 320px);
    }
    .open-menu.page-wrapper {
        width: calc(100% - 82px);
    }
    .open-menu .header {
        width: calc(100% - 82px);
        left: 82px;
    }
    .open-menu .container {
        max-width: calc(100% - 41px);
    }
    .open-menu .bonus {
        margin-left: 41px;
        max-width: calc(100% - 120px);
    }
}
@media (max-width: 1600px) {
    .page-error__img {
        min-width: 1600px;
    }
    .page-error__btn {
        bottom: 100px;
    }
    .fixed-bonus {
        left: 20px;
        right: auto;
        bottom: 20px;
    }
}
@media (max-width: 1500px) {
    .page-bonus__copy {
        margin-right: 20px;
    }
    .bonus {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (max-width: 1340px) {
    .container {
        width: 960px;
    }
    .main-item__icon {
        right: -5px;
        width: 123px;
    }
    .main-items__block:nth-child(2) .main-item__icon {
        right: -19px;
        width: 139px;
    }
    .main-items__block:nth-child(3) .main-item__icon {
        right: -14px;
        width: 120px;
    }
    .fixed-bonus {
        display: none;
    }
    .main-top__item {
        width: 250px;
    }
    .page-bonus__img {
        display: none;
    }
    .bonus.open {
        display: block !important;
    }
    .bonus {
        width: 960px;
        padding: 25px 17px 15px;
    }
    .bonus-logo {
        display: none;
    }
    .mobile-wrapper {
        transition: all 0.4s;
        left: -260px;
    }
    .size-menu .mobile-wrapper {
        left: 0;
    }
    .bonus-close {
        right: 0;
        top: -32px;
    }
    .bonus .page-bonus__flex {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .bonus-gray {
        margin: 10px 0;
        font-size: 14px;
        line-height: 24px;
        text-align: center;
        letter-spacing: 0;
    }
    .bonus-btn {
        padding: 0;
        width: 100%;
        font-size: 14px;
    }
    .bonus .page-bonus__copy {
        width: auto !important;
        flex-grow: 1;
    }
    .page-bonus__text {
        margin-left: 20px;
    }
}
@media (max-width: 992px) {
    .container {
        width: 730px;
    }
	.article-img {
		width: 100%;
		min-width: 100%;
		margin-left: 0;
		margin-top: 54px;
	}
	.article-top {
		display: block;
	}
    .header-burger {
        margin-right: 0;
    }
    .bonus {
        width: 730px;
        display: block;
    }
    .header-burger {
        display: block;
    }
    .header-logo {
        margin-left: 22px;
    }
    .header-logo img {
        width: 71px;
    }
    .header-gift {
        width: 35px;
        height: 34px;
    }
    .header-gift img {
        width: 17px;
    }
    .header-border,
    .header-btn {
        padding: 0 14px;
        font-size: 10px;
        height: 34px;
    }
    .page-error {
        width: 100%;
    }
    .page-error__img {
        min-width: 1100px;
        -webkit-transform: translateX(-47%);
        -ms-transform: translateX(-47%);
        transform: translateX(-47%);
    }
    .page-error__btn {
        bottom: 100px;
        left: 50%;
        bottom: 33px;
    }
    .footer {
        padding: 40px 0 20px;
    }
    .footer-copy {
        text-align: center;
        margin-top: 30px;
        padding-top: 20px;
        font-size: 12px;
        line-height: 24px;
    }
    .footer-items {
        padding-top: 30px;
    }
    .footer-items__block {
        width: 100%;
        margin-top: 10px;
    }
    .footer-item {
        padding: 11px 14px;
        font-size: 14px;
    }
    .footer-pay img {
        width: 38px;
    }
    .footer-pay {
        padding-top: 30px;
        margin-top: 30px;
        font-size: 12px;
    }
    .footer-nav {
        width: 50%;
        margin: 40px 0 0 0;
        width: calc(50% - 5px);
    }
    .footer-top {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .footer-left {
        width: 100%;
    }
    .footer-text {
        font-size: 14px;
        line-height: 24px;
    }
    .footer-contact__item {
        margin-top: 10px;
        font-size: 12px;
    }
    .footer-contact__item img {
        width: 18px;
        margin-right: 10px;
    }
    .article {
        padding: 30px 0;
    }
    .article-content table tr {
        padding: 10px 5px;
    }
    .article-content table td,
    .article-content table th {
        padding: 10px;
        font-size: 14px;
    }
    .article-content table th {
        font-size: 16px;
    }
    .faq {
        padding-bottom: 30px;
    }
    .faq-items {
        width: 100%;
    }
    .faq-item__title {
        padding: 12px 9px;
        font-size: 14px;
        line-height: normal;
    }
    .faq-item__text {
        padding: 5px 9px 14px;
        font-size: 14px;
    }
    .main-padding {
        padding-top: 40px;
    }
    .table-content table th,
    .table-content table td {
        width: 40% !important;
    }
    .table-content table th:nth-child(2),
    .table-content table th:nth-child(3),
    .table-content table td:nth-child(2),
    .table-content table td:nth-child(3) {
        display: none;
    }
    .table-content table th:last-child,
    .table-content table td:last-child {
        width: 20% !important;
        padding-right: 12px;
    }
    .main-top {
        padding: 44px 0 40px;
    }
    .main-top__title {
        margin-bottom: 18px;
        font-size: 26px;
    }
    .main-top__list {
        display: block;
    }
    .main-top__right {
        width: 100%;
    }
    .main-top__item {
        width: calc(50% - 5px);
        margin-left: 10px;
        margin-top: 40px;
    }
    .page-bonus__copy {
        margin-right: 0;
    }
    .bonus .page-bonus__copy,
    .bonus .page-bonus__flex {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .container {
        width: 540px;
    }
    .page-bonus__text {
        margin-left: 0px;
    }
    .bonus {
        width: 540px;
    }
    .footer-pay img {
        width: 38px;
    }
    .footer-pay {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-top: 13px;
    }
    .footer-pay__block {
        width: 16.6666666667%;
        margin-top: 17px;
    }
    .main-items__block {
        width: 100%;
        margin-top: 10px;
    }
    .main-items__block:first-child {
        margin-top: 0;
    }
    .table-content table td img {
        display: none;
    }
    .table-content table td .sort-table__username {
        max-width: 100%;
    }
    .table-content table th:last-child {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
    .page-bonus {
        padding: 44px 0 30px;
    }
    .page-bonus__subtitle {
        margin: 18px 0 24px;
        font-size: 16px;
        line-height: normal;
        letter-spacing: 0;
    }
    .page-bonus__flex {
        display: block;
        width: 292px;
        margin: 0 auto;
    }
    .page-bonus__text {
        height: 54px;
        font-size: 18px;
        margin-top: 10px;
    }
    .page-bonus__copy {
        height: 54px;
    }
    .page-bonus__copy-text {
        font-size: 20px;
    }
}
@media (max-width: 576px) {
    .container {
        width: 100%;
        padding: 0 16px;
    }
    .bonus {
        width: calc(100% - 32px);
    }
    .header-logo {
        margin: 0 auto;
    }
    .page-error__img {
        min-width: 900px;
        -webkit-transform: translateX(-46.5%);
        -ms-transform: translateX(-46.5%);
        transform: translateX(-46.5%);
    }
    .main-top__item {
        height: 189px;
    }
    .main-top__item-wrapper {
        font-size: 14px;
        padding: 8px 12px;
    }
    .main-top__item-wrapper span {
        margin: 0 6px;
    }
}
@media (max-width: 400px) {
    .main-top__soc {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }
    .main-top__btn {
        padding: 0 20px;
        font-size: 14px;
    }
    .main-top__btn svg {
        margin-left: 10px;
    }
}
@media (max-width: 360px) {
    .header-border,
    .header-btn {
        padding: 0 10px;
    }
    .page-error__img {
        min-width: 820px;
    }
    .table-content table th {
        font-size: 14px;
        padding: 0 10px 14px;
    }
    .table-content table td {
        font-size: 12px;
        padding: 14px 10px;
    }
    .main-top__or {
        margin: 0 8px;
    }
    .main-top__btn {
        padding: 0 14px;
    }
    .main-top__soc {
        padding: 0 5px;
    }
    .main-top__soc-link {
        margin-right: auto;
    }
    .main-top__item-wrapper {
        font-size: 10px;
    }
}
