* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lucida Sans Unicode', 'Lucida Grande', sans-serif
}

body {
    overflow-x: hidden;
    position: relative;
    background: var(--main)
}

a {
    text-decoration: none;
    transition: 0.3s
}

input, button {
    border: none;
    box-shadow: none;
    transition: 0.3s
}

input {
    outline: none
}

p, span, li, a {
    font-size: 18px;
    line-height: 30px
}

h1, h2, h3, h4, h5, h6 {
    text-align: center;
    padding: 20px 0;
    color: var(--text)
}

p, span, li, h1, h2, h3, a, b, i, label, input, button, td, tr, figcaption {
    color: var(--text)
}

p {
    padding-bottom: 20px
}

li {
    list-style: none
}

button {
    cursor: pointer;
    background: transparent
}

img {
    max-width: 100%;
    display: block
}

i {
    font-style: normal
}

.wrapper {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto
}

:root {
    --main: #fff;
    --gradient: linear-gradient(103.42deg, #0f78d8 6.06%, #000 77.61%);
    --text: #333;
    --header: #1b243a;
    --color-primary: #007acc;
    --color-secondary: #012f5e;
    --color-font1: #9b9bb3;
    --color-back: #242432;
    --color-hover: #373748;
    --border_button: 5px;
    --shadow-primary: 0 0 50px 5px rgba(0, 0, 0, 0.1);
    --shadow-secondary: inset -2px -2px 4px #FFFFFF, inset 4px 4px 4px rgba(133, 137, 152, 0.65);
    --border: 15px;
    --gradient-yellow: linear-gradient(180deg, #ffd600, #ffba00);
    --gradient-yellow-hover: linear-gradient(180deg, #ffe871, #ffc938);
    --gradient-violet: linear-gradient(180deg, #9537df, #5d35f5);
    --gradient-violet-hover: linear-gradient(180deg, #aa45fa, #6a43ff)
}

header {
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--main);
    z-index: 9;
    box-shadow: var(--shadow-primary)
}

.header_top {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    display: flex;
    margin-bottom: 20px
}

.header .logo img {
    width: 110px;
    height: 25px
}

.header .buttons button {
    border-radius: var(--border_button);
    padding: 10px;
    text-transform: uppercase;
    font-size: 17px;
    color: #fff;
    transition: all .3s ease-out
}

.header .logButton {
    margin-right: 15px
}

.header .buttons button:hover {
    box-shadow: var(--shadow-secondary)
}

.logButton {
    color: #fff;
    background: var(--color-primary);
    position: relative
}

.regButton {
    background: var(--color-secondary);
    position: relative
}

.header .menu {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative
}

.deskMenu {
    display: flex;
    justify-content: center;
    background: #F6F6F6;
    border-radius: 6px
}

.deskMenu li {
    display: inline-block;
    margin: 0 10px
}

.deskMenu a {
    font-size: 15px;
    line-height: 20px;
    padding: 10px;
    display: inline-block
}

.deskMenu a:hover {
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 6px
}

.deskMenu a[aria-current] {
    background-color: var(--color-primary);
    position: relative;
    color: #fff;
    border-radius: 6px
}

.deskMenu .menu-item-has-children {
    position: relative
}

.deskMenu .sub-menu-wrap {
    display: none;
    position: absolute;
    left: -20px;
    top: 20px;
    padding-top: 20px
}

.deskMenu .sub-menu {
    background: var(--header);
    box-shadow: 0 0 50px 5px rgba(0, 0, 0, .1);
    width: 180px;
    padding: 10px
}

.menuDesktop .sub-menu li {
    display: block
}

.deskMenu .menu-item-has-children:hover > .sub-menu-wrap {
    display: block
}

.headerDesktop .burger {
    display: none
}

.burger img {
    width: 28px;
    height: 28px
}

.menu_mobile, amp-sidebar {
    background: var(--main);
    box-shadow: var(--shadow-primary);
    width: 100%;
    padding: 0 30px;
    max-width: 350px;
    min-height: 100vh;
    position: fixed;
    top: 0;
    right: -100%;
    display: block;
    transition: right 0.8s;
    z-index: 11
}

.menu_mobile.show {
    right: 0;
    transition: right 0.8s
}

header .overlay {
    display: none;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9
}

header .overlay.active {
    display: block
}

.menu_mobile .close {
    display: flex;
    justify-content: center;
    padding: 20px 0
}

.menu_mobile .close img {
    width: 28px;
    height: 28px
}

.menu_mobile ul {
    display: flex;
    align-items: flex-start;
    flex-direction: column
}

.menu_mobile .sub-menu {
    padding-left: 20px
}

.lang_choose .choose {
    padding: 0 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 100%;
    cursor: pointer
}

.lang_choose span {
    position: relative;
    padding: 0 18px 0 0px !important
}

.lang_choose img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-right: 8px
}

.lang_choose a, .lang_choose .choose span {
    color: #000;
    padding: 0 11px;
    font-size: 13px;
    font-weight: 600
}

.lang_choose .submenu {
    position: absolute;
    top: 30px;
    left: 0;
    background: var(--header);
    width: 230px;
    display: none
}

.submenu div {
    display: flex;
    align-items: center
}

.submenu img, .choose img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-right: 8px
}

.submenu a {
    display: flex;
    width: 100%;
    padding: 5px 10px 5px 14px;
    align-items: center
}

.lang_choose:hover .submenu {
    display: block
}

.header.pam_content {
    display: flex;
    justify-content: space-between
}

amp-script {
    opacity: 1
}

.amp-sidebar-mask {
    background: rgba(0, 0, 0, .5) !important;
    z-index: 10 !important
}

amp-sidebar {
    min-width: 320px;
    opacity: 1 !important
}

amp-sidebar .closeButton {
    padding: 20px 0 19px 0;
    text-align: center;
    margin: 0 auto;
    display: block
}

amp-sidebar .closeButton img {
    width: 28px;
    height: 28px
}

amp-sidebar ul {
    max-height: 80vh;
    overflow-y: auto;
    flex-wrap: wrap;
    display: flex
}

amp-sidebar .sub-menu {
    padding-left: 20px
}

amp-sidebar ul li {
    display: block;
    width: 100%
}

.lang_choose .choose .toggled {
    display: flex;
    align-items: center
}

#amp-mobile-version-switcher {
    display: none
}

.mainBanner {
    margin-top: 30px;
    border-radius: 26px;
    background: #f5f5f5;
    border-radius: 26px;
    background: linear-gradient(135deg, #f5f5f5 40%, #3a93e466 100%);
    box-shadow: 0 0 12px 0 rgba(35, 36, 38, .15), 0 0 6px 0 rgba(33, 35, 37, .04)
}

.mainBannerText {
    text-align: center
}

.textFirst {
    margin-bottom: 10px;
    padding-bottom: 0;
    color: #26272b;
    font-size: 56px;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase
}

.textSecond {
    padding: 10px 20px;
    max-width: 300px;
    margin: 0 auto;
    margin-bottom: 10px;
    color: #fff;
    font-size: 52px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 4.4px;
    text-transform: uppercase;
    border-radius: 72px;
    opacity: .8;
    background: #3A93E4
}

.textSecond span {
    font-size: 27px;
    color: #fff
}

.textSecond sub {
    position: relative;
    display: inline-block;
    color: #fff;
    left: 10px;
    top: -10px;
    font-size: 46px;
    font-weight: 700;
    text-transform: uppercase;
    vertical-align: text-top;
    z-index: 5
}

.textSecond sub::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    right: -17px;
    top: -35%;
    background-image: url(/wp-content/themes/1xbet/img/banner-icon.svg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1
}

.textThird {
    margin-bottom: 15px;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .22px;
    text-transform: uppercase
}

.mainBannerInner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 0 0 56px
}

.bannerImg {
    max-width: 500px
}

.bannerImg img {
    width: 100%
}

.bannerButton {
    padding: 15px 28px;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(135deg, #4fc027 0%, #59b720 100%);
    border-radius: 90px;
    transition: opacity .3s ease-in-out
}

.bannerButton:hover {
    opacity: .8
}

.content_page {
    padding: 110px 20px 40px 20px
}

h1 {
    font-size: 36px;
    line-height: 40px
}

h2 {
    font-size: 32px;
    line-height: 40px
}

h3 {
    font-size: 26px;
    line-height: 36px
}

h4 {
    font-size: 20px;
    line-height: 28px
}

h5, h6 {
    font-size: 18px;
    line-height: 28px
}

.content_page a {
    color: var(--color-primary);
    text-decoration: none
}

.content_page a:hover {
    text-decoration: underline
}

.content_page section {
    background: #F6F6F6;
    border-radius: var(--border);
    margin-bottom: 20px;
    padding: 10px
}

.page404 {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column
}

.page404 img {
    margin: 0 auto;
    border-radius: var(--border);
    display: block
}

.button404 {
    display: flex;
    justify-content: center
}

.button404 button {
    padding: 4px 14px;
    font-size: 18px
}

.content_page ul {
    margin-left: 15px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none
}

.content_page ul li {
    width: 48%;
    position: relative;
    padding-bottom: 10px;
    padding-left: 35px
}

.content_page ul li:before, .wp-block-column ul li:before {
    position: absolute;
    width: 20px;
    height: 20px;
    background: url(/wp-content/themes/1xbet/img/list.svg) no-repeat;
    background-size: cover;
    content: "";
    left: 0;
    top: 5px
}

.wp-block-column ul li {
    position: relative;
    padding-bottom: 10px;
    padding-left: 35px
}

.content_page ol {
    margin-left: 30px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

.content_page ol li {
    list-style: decimal;
    position: relative;
    padding-left: 10px;
    margin-bottom: 10px;
    width: 48%
}

.content_page ol li::marker {
    font-size: 17px;
    color: #fff
}

.content_page ol li:before {
    content: '';
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, #4FC027 0%, #59B720 100%);
    border-radius: 25%;
    position: absolute;
    top: 2px;
    left: -26px;
    z-index: -1
}

.content_page li > ul li {
    width: 100%
}

.content_page li > ul li:before {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--color-primary);
    background-size: cover;
    content: "";
    left: 0;
    top: 5px;
    border-radius: 50%
}

.wp-block-column ol li, .wp-block-column ul li {
    width: 100% !important
}

.rank-math-breadcrumb p {
    padding-bottom: 0;
    line-height: 24px
}

.rank-math-breadcrumb a, .rank-math-breadcrumb span {
    font-size: 15px;
    line-height: 25px
}

.wp-block-image {
    margin: 0 auto;
    margin-bottom: 20px;
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column
}

.wp-block-image figure {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column
}

.wp-block-image img {
    height: 100%;
    max-height: 500px;
    width: auto;
    margin: 0 auto;
    margin-bottom: 15px;
    border-radius: var(--border)
}

.wp-block-image figcaption {
    text-align: center;
    color: #595959;
    font-size: 14px
}

.wp-block-columns {
    display: flex;
    align-items: center
}

.wp-block-column {
    width: 50%
}

.wp-block-columns img {
    max-height: 500px !important;
    width: auto;
    max-width: 100% !important;
    margin: 0 auto;
    margin-bottom: 15px;
    border-radius: var(--border)
}

.wp-block-media-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
    flex-wrap: wrap
}

.wp-block-media-text .wp-block-media-text__content, .wp-block-media-text__media {
    width: 48%
}

.wp-block-media-text img {
    max-height: 500px !important;
    width: auto
}

.wp-block-columns ul li {
    width: 100%
}

.wp-block-table {
    max-width: 100%;
    overflow-x: auto
}

.wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px
}

.wp-block-table table td {
    text-align: center;
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 10px
}

.wp-block-table table tr:nth-child(2n) {
    background: #fff
}

blockquote {
    background: #373748;
    border-radius: var(--border);
    padding: 20px 20px 0 40px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-primary);
    position: relative
}

blockquote:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 10px;
    border-radius: var(--border);
    background: var(--gradient)
}

.content_page .rank-math-answer {
    display: none
}

.content_page.pam_content .rank-math-answer {
    display: block
}

.rank-math-answer.active {
    display: block
}

.rank-math-list-item {
    background: #fff url(/wp-content/themes/1xbet/img/faq-down.svg) no-repeat;
    background-size: 20px;
    background-position: 96% 19px;
    cursor: pointer;
    border-radius: var(--border);
    position: relative;
    padding: 20px 50px 20px 40px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-primary)
}

.rank-math-list-item.minus {
    background: #fff url(/wp-content/themes/1xbet/img/faq-up.svg) no-repeat;
    background-size: 20px;
    background-position: 96% 19px
}

.rank-math-question {
    text-align: left;
    padding-bottom: 0
}

.rank-math-question span, .rank-math-question {
    font-size: 20px !important;
    line-height: 30px !important;
    padding-bottom: 0;
    padding-top: 0
}

.rank-math-answer p {
    padding-top: 5px;
    padding-bottom: 0
}

#rank-math-faq {
    position: relative;
    z-index: 4
}

#alfa__contents input[type='checkbox'] {
    display: none
}

#alfa__contents {
    margin: 1.2rem 0
}

.lbl-toggle {
    display: inline-block;
    font-weight: 700;
    font-family: monospace;
    font-size: 15px;
    text-transform: uppercase;
    text-align: center;
    padding: 10px;
    color: #DDD;
    background: #0069ff;
    cursor: pointer;
    border-radius: 7px;
    transition: all 0.25s ease-out
}

.lbl-toggle:hover {
    color: #FFF
}

.lbl-toggle::before {
    content: ' ';
    display: inline-block;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid currentColor;
    vertical-align: middle;
    margin-right: .7rem;
    transform: translateY(-2px);
    transition: transform .2s ease-out
}

.toggle:checked + .lbl-toggle::before {
    transform: rotate(90deg) translateX(-3px)
}

.alfa__contents-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease-in-out;
    display: flex;
    flex-direction: column
}

.toggle:checked + .lbl-toggle + .alfa__contents-submenu {
    max-height: 1000px
}

.toggle:checked + .lbl-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.alfa__contents-submenu a {
    color: #fff
}

footer {
    background: var(--main);
    padding: 30px 0;
    box-shadow: var(--shadow-primary)
}

.footerInner .copy {
    text-align: center;
    padding-bottom: 15px
}

.footerInner .copy span {
    font-size: 15px
}

.footerInner .copy a {
    color: #9b9bb3
}

.footerInner .copy a:hover {
    color: var(--color-primary)
}

.footerLinks {
    border-top: 1px solid #ddd;
    padding: 10px 0 20px 0;
    max-width: 90%;
    margin: 0 auto
}

.footerLinks ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.footerLinks ul li {
    font-size: 16px;
    line-height: 25px;
    margin: 0 8px;
    text-align: center
}

.footerLinks ul li a:hover {
    color: var(--color-primary)
}

.scrollToTop {
    opacity: 0;
    background: var(--color-primary);
    width: 30px;
    height: 30px;
    transition: 0.4s;
    border-radius: 50%;
    position: fixed;
    bottom: 70px;
    right: 30px;
    box-shadow: var(--shadow-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 5
}

.scrollToTop img {
    width: 15px;
    height: 15px
}

.scrollToTop.pam_content {
    opacity: 1
}

.fixed_buttons {
    display: none;
    position: fixed;
    width: 100%;
    padding: 12px 0;
    justify-content: center;
    background: var(--main);
    box-shadow: var(--shadow-primary);
    bottom: 0;
    left: 0;
    z-index: 8
}

.fixed_buttonsInner {
    display: flex;
    justify-content: center;
    align-items: center
}

.fixed_buttons button {
    border-radius: var(--border_button);
    padding: 10px 10px;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    width: 48.5%;
    max-width: 200px;
    margin: 0 10px
}

.buttonWrapper {
    margin: 15px 0;
    display: flex;
    justify-content: center
}

.buttonWrapper button {
    background: var(--color-secondary);
    padding: 15px 30px;
    border-radius: 30px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase
}

.buttonWrapper button:hover {
    background: var(--color-primary)
}

@media screen and (max-width: 500px) {
    .buttonsApp button {
        margin: 15px 0
    }
}

@media screen and (max-width: 1250px) {
    .header_top {
        margin-bottom: 0
    }

    .bannerImg {
        display: none
    }

    .mainBannerInner {
        flex-direction: column;
        padding: 10px
    }

    .textFirst {
        font-size: 38px;
        text-align: center
    }

    .textSecond {
        font-size: 32px
    }

    .textSecond span {
        font-size: 20px
    }

    .bannerButton {
        font-size: 16px
    }

    .textThird {
        margin-bottom: 15px
    }

    .textSecond sub::after {
        width: 50px;
        height: 50px;
        right: -30%
    }

    .textSecond sub {
        font-size: 30px
    }

    .headerDesktop .burger {
        display: flex;
        align-items: center
    }

    header .deskMenu {
        display: none !important
    }

    .header .buttons {
        display: none
    }

    .lang_choose:hover .submenu {
        display: none
    }

    .lang_choose .submenu.show {
        display: block
    }

    .content_page {
        padding: 40px 8px 10px 8px
    }

    .fixed_buttons {
        display: block
    }

    .footerLinks {
        padding: 10px 0 40px 0
    }

    .wp-block-column {
        width: 100%
    }

    .wp-block-columns img {
        max-height: 300px !important
    }

    .wp-block-columns {
        flex-wrap: wrap !important
    }

    h1 {
        font-size: 26px;
        line-height: 30px
    }

    h2 {
        font-size: 22px;
        line-height: 32px
    }

    h3 {
        font-size: 20px;
        line-height: 30px
    }

    h4 {
        font-size: 18px;
        line-height: 28px
    }

    h5, h6 {
        font-size: 16px;
        line-height: 26px
    }

    h1, h2, h3, h4, h5, h6 {
        padding: 10px 0
    }

    .content_page ul li, .content_page ol li {
        width: 100%
    }

    .rank-math-question span, .rank-math-question {
        font-size: 18px !important;
        line-height: 28px !important
    }

    .rank-math-list-item {
        padding: 10px 50px 10px 10px
    }

    blockquote {
        padding: 20px 20px 0 28px
    }

    p, span, li {
        font-size: 17px;
        line-height: 28px
    }

    .content_page ul {
        margin-left: 0
    }

    .wp-block-media-text__media {
        width: 100%;
        display: flex;
        justify-content: center
    }

    .wp-block-media-text__media img {
        max-width: 100%;
        height: auto;
        margin-bottom: 15px
    }

    .wp-block-media-text .wp-block-media-text__content, .wp-block-media-text__media {
        width: 100%
    }

    .wp-block-media-text__media img {
        margin: 0 auto
    }

    body .is-layout-flex > * {
        flex-basis: 100% !important
    }
}

@media screen and (max-width: 480px) {
    .fixed_buttonsInner {
        justify-content: space-between
    }

    .fixed_buttons button {
        margin: 0 0
    }
}
h1 {
    margin-top: 35px;
}
.content_page img {
    display: block;
    max-width: 100%;
    border-radius: 14px;
    margin: 30px auto;
}