body {
    --wp--preset--color--black: #000;
    --wp--preset--color--cyan-bluish-gray: #abb8c3;
    --wp--preset--color--white: #fff;
    --wp--preset--color--pale-pink: #f78da7;
    --wp--preset--color--vivid-red: #cf2e2e;
    --wp--preset--color--luminous-vivid-orange: #ff6900;
    --wp--preset--color--luminous-vivid-amber: #fcb900;
    --wp--preset--color--light-green-cyan: #7bdcb5;
    --wp--preset--color--vivid-green-cyan: #00d084;
    --wp--preset--color--pale-cyan-blue: #8ed1fc;
    --wp--preset--color--vivid-cyan-blue: #0693e3;
    --wp--preset--color--vivid-purple: #9b51e0;
    --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg, rgba(6, 147, 227, 1) 0%, rgb(155, 81, 224) 100%);
    --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg, rgb(122, 220, 180) 0%, rgb(0, 208, 130) 100%);
    --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg, rgba(252, 185, 0, 1) 0%, rgba(255, 105, 0, 1) 100%);
    --wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg, rgba(255, 105, 0, 1) 0%, rgb(207, 46, 46) 100%);
    --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg, rgb(238, 238, 238) 0%, rgb(169, 184, 195) 100%);
    --wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg, rgb(74, 234, 220) 0%, rgb(151, 120, 209) 20%, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%, rgb(251, 105, 98) 80%, rgb(254, 248, 76) 100%);
    --wp--preset--gradient--blush-light-purple: linear-gradient(135deg, rgb(255, 206, 236) 0%, rgb(152, 150, 240) 100%);
    --wp--preset--gradient--blush-bordeaux: linear-gradient(135deg, rgb(254, 205, 165) 0%, rgb(254, 45, 45) 50%, rgb(107, 0, 62) 100%);
    --wp--preset--gradient--luminous-dusk: linear-gradient(135deg, rgb(255, 203, 112) 0%, rgb(199, 81, 192) 50%, rgb(65, 88, 208) 100%);
    --wp--preset--gradient--pale-ocean: linear-gradient(135deg, rgb(255, 245, 203) 0%, rgb(182, 227, 212) 50%, rgb(51, 167, 181) 100%);
    --wp--preset--gradient--electric-grass: linear-gradient(135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100%);
    --wp--preset--gradient--midnight: linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%);
    --wp--preset--font-size--small: 13px;
    --wp--preset--font-size--medium: 20px;
    --wp--preset--font-size--large: 36px;
    --wp--preset--font-size--x-large: 42px;
    --wp--preset--spacing--20: .44rem;
    --wp--preset--spacing--30: .67rem;
    --wp--preset--spacing--40: 1rem;
    --wp--preset--spacing--50: 1.5rem;
    --wp--preset--spacing--60: 2.25rem;
    --wp--preset--spacing--70: 3.38rem;
    --wp--preset--spacing--80: 5.06rem;
    --wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, .2);
    --wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, .4);
    --wp--preset--shadow--sharp: 6px 6px 0 rgba(0, 0, 0, .2);
    --wp--preset--shadow--outlined: 6px 6px 0 -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);
    --wp--preset--shadow--crisp: 6px 6px 0 rgba(0, 0, 0, 1)
}

:where(.is-layout-flex) {
    gap: .5em
}

:where(.is-layout-grid) {
    gap: .5em
}

body .is-layout-flex {
    display: flex
}

body .is-layout-flex {
    flex-wrap: wrap;
    align-items: center
}

body .is-layout-flex > * {
    margin: 0
}

body .is-layout-grid {
    display: grid
}

body .is-layout-grid > * {
    margin: 0
}

:where(.wp-block-columns.is-layout-flex) {
    gap: 2em
}

:where(.wp-block-columns.is-layout-grid) {
    gap: 2em
}

:where(.wp-block-post-template.is-layout-flex) {
    gap: 1.25em
}

:where(.wp-block-post-template.is-layout-grid) {
    gap: 1.25em
}

.has-black-color {
    color: var(--wp--preset--color--black) !important
}

.has-cyan-bluish-gray-color {
    color: var(--wp--preset--color--cyan-bluish-gray) !important
}

.has-white-color {
    color: var(--wp--preset--color--white) !important
}

.has-pale-pink-color {
    color: var(--wp--preset--color--pale-pink) !important
}

.has-vivid-red-color {
    color: var(--wp--preset--color--vivid-red) !important
}

.has-luminous-vivid-orange-color {
    color: var(--wp--preset--color--luminous-vivid-orange) !important
}

.has-luminous-vivid-amber-color {
    color: var(--wp--preset--color--luminous-vivid-amber) !important
}

.has-light-green-cyan-color {
    color: var(--wp--preset--color--light-green-cyan) !important
}

.has-vivid-green-cyan-color {
    color: var(--wp--preset--color--vivid-green-cyan) !important
}

.has-pale-cyan-blue-color {
    color: var(--wp--preset--color--pale-cyan-blue) !important
}

.has-vivid-cyan-blue-color {
    color: var(--wp--preset--color--vivid-cyan-blue) !important
}

.has-vivid-purple-color {
    color: var(--wp--preset--color--vivid-purple) !important
}

.has-black-background-color {
    background-color: var(--wp--preset--color--black) !important
}

.has-cyan-bluish-gray-background-color {
    background-color: var(--wp--preset--color--cyan-bluish-gray) !important
}

.has-white-background-color {
    background-color: var(--wp--preset--color--white) !important
}

.has-pale-pink-background-color {
    background-color: var(--wp--preset--color--pale-pink) !important
}

.has-vivid-red-background-color {
    background-color: var(--wp--preset--color--vivid-red) !important
}

.has-luminous-vivid-orange-background-color {
    background-color: var(--wp--preset--color--luminous-vivid-orange) !important
}

.has-luminous-vivid-amber-background-color {
    background-color: var(--wp--preset--color--luminous-vivid-amber) !important
}

.has-light-green-cyan-background-color {
    background-color: var(--wp--preset--color--light-green-cyan) !important
}

.has-vivid-green-cyan-background-color {
    background-color: var(--wp--preset--color--vivid-green-cyan) !important
}

.has-pale-cyan-blue-background-color {
    background-color: var(--wp--preset--color--pale-cyan-blue) !important
}

.has-vivid-cyan-blue-background-color {
    background-color: var(--wp--preset--color--vivid-cyan-blue) !important
}

.has-vivid-purple-background-color {
    background-color: var(--wp--preset--color--vivid-purple) !important
}

.has-black-border-color {
    border-color: var(--wp--preset--color--black) !important
}

.has-cyan-bluish-gray-border-color {
    border-color: var(--wp--preset--color--cyan-bluish-gray) !important
}

.has-white-border-color {
    border-color: var(--wp--preset--color--white) !important
}

.has-pale-pink-border-color {
    border-color: var(--wp--preset--color--pale-pink) !important
}

.has-vivid-red-border-color {
    border-color: var(--wp--preset--color--vivid-red) !important
}

.has-luminous-vivid-orange-border-color {
    border-color: var(--wp--preset--color--luminous-vivid-orange) !important
}

.has-luminous-vivid-amber-border-color {
    border-color: var(--wp--preset--color--luminous-vivid-amber) !important
}

.has-light-green-cyan-border-color {
    border-color: var(--wp--preset--color--light-green-cyan) !important
}

.has-vivid-green-cyan-border-color {
    border-color: var(--wp--preset--color--vivid-green-cyan) !important
}

.has-pale-cyan-blue-border-color {
    border-color: var(--wp--preset--color--pale-cyan-blue) !important
}

.has-vivid-cyan-blue-border-color {
    border-color: var(--wp--preset--color--vivid-cyan-blue) !important
}

.has-vivid-purple-border-color {
    border-color: var(--wp--preset--color--vivid-purple) !important
}

.has-vivid-cyan-blue-to-vivid-purple-gradient-background {
    background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important
}

.has-light-green-cyan-to-vivid-green-cyan-gradient-background {
    background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important
}

.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {
    background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important
}

.has-luminous-vivid-orange-to-vivid-red-gradient-background {
    background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important
}

.has-very-light-gray-to-cyan-bluish-gray-gradient-background {
    background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important
}

.has-cool-to-warm-spectrum-gradient-background {
    background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important
}

.has-blush-light-purple-gradient-background {
    background: var(--wp--preset--gradient--blush-light-purple) !important
}

.has-blush-bordeaux-gradient-background {
    background: var(--wp--preset--gradient--blush-bordeaux) !important
}

.has-luminous-dusk-gradient-background {
    background: var(--wp--preset--gradient--luminous-dusk) !important
}

.has-pale-ocean-gradient-background {
    background: var(--wp--preset--gradient--pale-ocean) !important
}

.has-electric-grass-gradient-background {
    background: var(--wp--preset--gradient--electric-grass) !important
}

.has-midnight-gradient-background {
    background: var(--wp--preset--gradient--midnight) !important
}

.has-small-font-size {
    font-size: var(--wp--preset--font-size--small) !important
}

.has-medium-font-size {
    font-size: var(--wp--preset--font-size--medium) !important
}

.has-large-font-size {
    font-size: var(--wp--preset--font-size--large) !important
}

.has-x-large-font-size {
    font-size: var(--wp--preset--font-size--x-large) !important
}

.wp-block-navigation a:where(:not(.wp-element-button)) {
    color: inherit
}

:where(.wp-block-post-template.is-layout-flex) {
    gap: 1.25em
}

:where(.wp-block-post-template.is-layout-grid) {
    gap: 1.25em
}

:where(.wp-block-columns.is-layout-flex) {
    gap: 2em
}

:where(.wp-block-columns.is-layout-grid) {
    gap: 2em
}

.wp-block-pullquote {
    font-size: 1.5em;
    line-height: 1.6
}
*, *::before, *::after {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box
}

a {
    text-decoration: none;
    color: #fdcd2d
}

a:hover {
    color: #fff
}

ul, ol {
    margin: 0 0 15px 15px;
    padding: 0;
    clear: both
}

ul {
    list-style: disc
}

ol {
    list-style: decimal
}

img {
    vertical-align: top;
    height: auto;
    max-width: 100% !important;
    border-style: none
}

h1, h2, h3, h4, h5, h6 {
    color: #fff
}

h1 {
    margin: 0 0 15px;
    padding: 0;
    font-weight: 700;
    font-size: 26px
}

h2 {
    margin: 0 0 15px;
    padding: 0;
    font-weight: 700;
    font-size: 23px
}

h3 {
    margin: 0 0 15px;
    padding: 0;
    font-weight: 700;
    font-size: 20px
}

h4 {
    margin: 0 0 15px;
    padding: 0;
    font-weight: 700;
    font-size: 16px
}

h5 {
    margin: 0 0 15px;
    padding: 0;
    font-weight: 700;
    font-size: 12px
}

h6 {
    margin: 0 0 15px;
    padding: 0;
    font-weight: 700;
    font-size: 10px
}

p, blockquote {
    margin: 0 0 15px;
    padding: 0
}

input, textarea {
    padding: 10px;
    border: none
}

input:focus, textarea:focus, input:active, textarea:active {
    border: none;
    outline: 0;
    box-shadow: none
}

textarea {
    width: 100%;
    height: 130px
}

table {
    text-align: center;
    border: 1px solid #883FEB;
    border-collapse: collapse;
    color: #FFF;
    width: 100%;
    margin: 15px auto
}

table thead tr th {
    border: 1px solid #883FEB;
    padding: 10px;
    font-size: 22px;
    color: #FFF;
    background: #251b45
}

table tr td {
    border: 1px solid #883FEB;
    padding: 10px
}

table tr:first-child td {
    font-weight: 700;
    background: #883FEB !important;
    color: #FFF
}

table tr:nth-child(odd) td {
    background: none
}

blockquote {
    border: 1px solid #883FEB;
    border-left: 10px solid #883FEB;
    padding: 10px;
    font-weight: 700;
    font-style: italic;
    color: #883FEB
}

blockquote p {
    margin: 0
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.single-post-thumbnail {
    width: 100%
}

.table-cover {
    overflow: auto;
    padding: 1px
}

iframe {
    width: 100%;
    height: 300px
}

@media screen and (min-width: 450px) {
    iframe {
        height: 350px
    }
}

@media screen and (min-width: 600px) {
    iframe {
        height: 400px
    }
}

@media screen and (min-width: 768px) {
    iframe {
        height: 400px
    }
}

@media screen and (min-width: 980px) {
    iframe {
        height: 500px
    }

    .single-post-thumbnail {
        width: 40%;
        float: left;
        margin: 0 15px 15px 0
    }
}

body {
    min-width: 320px;
    overflow-x: hidden;
    font-family: -apple-system, Roboto, Tahoma, Arial, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    background: #1d1630;
    color: #c8c8c8
}

.post-link {
    display: block;
    padding: 15px;
    font-weight: 700;
    color: #000;
    background: #fdcd2d;
    margin: 10px auto;
    width: auto;
    max-width: 320px;
    text-align: center
}

.post-link:hover {
    background: #883FEB
}

.breadcrumbs {
    padding: 15px;
    background: #251b45
}

.wp-pagenavi {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700
}

.wp-pagenavi span {
    margin-right: 10px;
    width: 38px;
    height: 38px;
    background: #883FEB;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #FFF
}

.wp-pagenavi a {
    margin-right: 10px;
    color: #fff
}

.wp-pagenavi a:hover {
    color: #883FEB
}

.sidebar {
    margin-top: 15px;
    padding: 15px;
    background: #251b45
}

.sidebar-title {
    font-size: 22px;
    font-weight: 700;
    color: #FFF
}

.latest-posts {
    margin-bottom: 10px
}

.latest-posts a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #883FEB
}

.sidebar-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.sidebar-buttons a {
    width: calc(50% - 5px);
    padding: 10px;
    border-radius: 5px;
    color: #FFF;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .8
}

.sidebar-buttons a:hover {
    opacity: 1
}

.sidebar-buttons a:nth-child(odd) {
    background: #1070e3
}

.sidebar-buttons a:nth-child(even) {
    background: #883feb
}

header {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 15px;
    background: #1d1630
}

.home-link img {
    width: 100px;
    height: 60px;
}

nav {
    padding: 10px 0;
    color: #fff;
    font-weight: 700
}

nav a {
    margin: 0 10px
}

nav a:hover {
    color: #fdcd2d
}

.pushme {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.pushme a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(50% - 5px);
    height: 40px;
    border-radius: 5px;
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
    border: 1px solid #1d1630
}

.pushme .download {
    border-color: #2f2840;
    color: #6a7284
}

.pushme .register {
    color: #000;
    background: #fdcd2d
}

.pushme a:hover {
    background: #ffe926;
    color: #000
}

@media screen and (min-width: 370px) {
    header {
        flex-direction: row;
        justify-content: space-between
    }

    .pushme {
        margin: 15px 0
    }
}

@media screen and (min-width: 635px) {
    .pushme {
        margin: 0;
        width: 240px
    }

    .pushme a {
        width: auto;
        margin-left: 10px
    }

    nav {
        width: calc(90% - 302px);
        font-weight: 400;
        padding-left: 15px
    }
}

.footer-container {
    width: calc(100% - 26px);
    margin: 13px auto;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, .4)
}

.footer-left_copy, .footer-right_text {
    color: rgba(255, 255, 255, 1)
}

.footer-left_nav, .footer-right_nav {
    color: rgba(130, 143, 154, 1);
    font-size: 14px
}

.footer-left_nav a {
    margin-right: 15px
}

.footer-right_nav a {
    margin-left: 15px
}

.footer-left_nav a:hover, .footer-right_nav a:hover {
    color: #FFF
}

.footer-left_buttons {
    display: flex;
    align-items: center;
    margin-top: 10px
}

.footer-left_buttons a {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    padding: 0 20px;
    color: #000;
    font-weight: 700
}

.footer-bttn-white {
    background: rgba(255, 255, 255, .4);
    margin-right: 10px
}

.footer-bttn-white:hover {
    background: rgba(255, 255, 255, .5)
}

.footer-bttn-orange {
    background: rgba(253, 205, 43, 1)
}

.footer-bttn-orange:hover {
    background: rgba(253, 205, 43, .91)
}

.footer-right {
    text-align: right
}

.footer-right_icons {
      margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-right_icons svg:nth-child(2) {
    margin: 0 15px
}

@media screen and (max-width: 860px) {
    .footer-container {
        flex-direction: column
    }

    .footer-right {
        text-align: left;
        margin-top: 15px
    }

    .footer-right_nav a {
        margin-left: 0;
        margin-right: 15px
    }
}

.blue-banner {
    background: #507bfb;
    width: 100%;
    max-width: 1180px;
    padding: 30px 15px;
    margin: 10px auto;
    border-radius: 15px;
    text-align: center;
    color: #fff
}

.blue-banner a {
    display: block;
    max-width: 200px;
    border-radius: 30px;
    color: #000;
    background: #fff;
    text-align: center;
    padding: 10px;
    margin: 10px auto;
    font-weight: 700
}

.blue-banner span {
    font-weight: 700;
    font-size: 22px;
    display: inline-block;
    background-color: rgba(0, 0, 0, .26);
    padding: 5px 10px;
    border-radius: 10px;
    margin-bottom: 10px
}

.blue-banner span.promocode {
    font-size: 15px
}

.promocode b {
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: #fdcd2d;
    margin-right: 22px
}

.promocode b:after {
    content: '';
    -webkit-mask-image: url(../pics/copy.svg);
    mask: url(../pics/copy.svg);
    -webkit-mask-position: 50%;
    background-color: #fdcd2d;
    position: absolute;
    width: 18px;
    height: 18px;
    top: 2px;
    right: -22px
}

.igry {
    max-width: 1200px;
    margin: auto;
    padding: 10px
}

.igra {
    background: #251b45;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 7px;
    margin-bottom: 14px
}

.igra img {
    max-width: 100%;
    border-radius: 5px
}

.o_igre {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between
}

.o_igre span {
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 5px 0
}

.o_igre a {
    background: #000;
    width: calc(50% - 3px);
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 5px
}

.o_igre a:nth-child(2) {
    background: #1070e3
}

.o_igre a:nth-child(3) {
    background: #833ee4
}

.o_igre a:hover {
    background: #ff5722
}

@media screen and (min-width: 630px) {
    .igry {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: space-between
    }

    .igra {
        width: calc(50% - 7px)
    }
}

@media screen and (min-width: 980px) {
    .igra {
        width: calc(25% - 7px)
    }
}

.articles {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: auto;
    max-width: 1200px;
    padding: 15px
}

.article {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    border: 1px solid #833de3;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    color: #fff;
    margin-bottom: 15px
}

.article:hover {
    background: #251b45
}

.article img {
    margin-bottom: 15px;
    border-radius: 5px
}

.article-title {
    text-transform: uppercase;
    color: #833de3;
    font-weight: 700;
    display: block
}

@media screen and (min-width: 520px) {
    .article {
        width: calc(50% - 7.5px)
    }
}

@media screen and (min-width: 768px) {
    .article {
        display: block;
        width: 100%;
        text-align: left
    }

    .article img {
        float: left;
        margin-right: 15px;
        width: 40%
    }
}

@media screen and (min-width: 1024px) {
    .articles {
        flex-direction: row
    }

    .article {
        width: calc(50% - 10px)
    }

    .article img {
        margin-bottom: 0
    }
}

.arttitle, .home h2 {
    font-size: 23px;
    font-weight: 700;
    margin: 0 0 15px;
    display: block;
    width: 100%
}

.article-layout {
    padding: 15px;
    max-width: 1230px
}

.skin-sidebar {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: 15px auto
}

@media screen and (min-width: 1024px) {
    .skin-sidebar {
        flex-direction: row;
        align-items: start;
        justify-content: space-between
    }

    .skin-sidebar .article-layout {
        width: calc(100% - 300px)
    }

    .skin-sidebar .sidebar {
        width: 285px
    }

    .article-layout {
        margin: auto
    }
}

.article-image {
    width: 40%;
    float: left;
    margin-right: 20px
}

.article-post {
    clear: both;
    margin-bottom: 30px
}

.clearfix::after {
    display: block;
    clear: both;
    content: ""
}

.comments-title, .comment-reply-title {
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    font-size: 20px
}

ol.comment-list {
    margin: 0;
    list-style: none
}

ol.comment-list ol {
    margin: 0;
    list-style: none;
    padding-left: 30px
}

.comment-head img {
    float: left;
    margin-right: 15px
}

.comment-date {
    font-size: 13px;
    opacity: .6
}

.comment-content {
    padding-bottom: 20px
}

#comments label {
    font-size: 13px;
    opacity: .6;
    display: block;
    margin: 0 0 6px
}

#comments input[type="submit"] {
    cursor: pointer;
    background: #362862;
    font-weight: 700;
    color: #fff
}

.wrapper-sidebar {
    display: flex;
    flex-direction: column;
    width: 100%
}

.wrapper-post {
    padding: 15px;
    margin-bottom: 15px
}

@media screen and (min-width: 1024px) {
    .wrapper-sidebar {
        flex-direction: row;
        align-items: start;
        justify-content: space-between;
        max-width: 1250px;
        margin: 15px auto
    }

    .wrapper-post {
        padding: 15px;
        max-width: 1250px;
        margin: auto
    }

    .wrapper-sidebar .wrapper-post {
        width: calc(100% - 300px);
        margin: 0
    }

    .wrapper-sidebar .sidebar {
        width: 300px
    }

    .cards {
        max-width: 1200px;
        margin: 15px auto
    }
}

html.with--no_scroll {
    overflow: hidden;
    margin-right: 17px
}

.popup__layout {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 1000;
    will-change: top;
    opacity: .75;
    visibility: visible;
    -webkit-transition: opacity 300ms cubic-bezier(.2, 0, .2, 1), visibility 0ms 0ms;
    transition: opacity 300ms cubic-bezier(.2, 0, .2, 1), visibility 0ms 0ms
}

.popup__container {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-perspective: 600px;
    perspective: 600px;
    z-index: 1001;
    text-align: center;
    visibility: visible;
    overflow-y: scroll;
    padding: 15px
}

.popup__container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle
}

.popup__body {
    background-color: #222123;
    pointer-events: auto;
    position: relative;
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    -webkit-transition: all 300ms cubic-bezier(.2, 0, .2, 1), visibility 0ms 0ms;
    transition: all 300ms cubic-bezier(.2, 0, .2, 1), visibility 0ms 0ms;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    padding: 15px;
    max-width: 800px
}

.popup__body.mobile {
    background-color: #000 !important;
    max-width: 340px
}

.popup__body a.second {
    display: block;
    margin: 20px auto 10px;
    padding: 10px;
    max-width: 200px
}

.popup__close {
    position: absolute;
    font-size: 1.2rem;
    right: 0;
    top: 0;
    cursor: pointer;
    color: #fff;
    background: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTQgMTQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik02Ljk5OTk5IDUuNTg1MThMMi4wNTA4IDAuNjM1OTg2TDAuNjM2NTg1IDIuMDUwMkw1LjU4NTc3IDYuOTk5MzlMMC42MzUzNzYgMTEuOTQ5OEwyLjA0OTU5IDEzLjM2NEw2Ljk5OTk5IDguNDEzNkwxMS45NTAzIDEzLjM2MzlMMTMuMzY0NSAxMS45NDk3TDguNDE0MiA2Ljk5OTM5TDEzLjM2MzMgMi4wNTAyOUwxMS45NDkxIDAuNjM2MDc5TDYuOTk5OTkgNS41ODUxOFoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPg==) 50% 50% no-repeat;
    background-size: 13px;
    width: 30px;
    height: 30px;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.popup__heading {
    font-size: 18px;
    line-height: 21px;
    margin: 0 0 12px;
    color: #000;
    font-weight: 700;
    text-align: center
}

.promo__text {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto
}

.promo__image {
    margin: 30px auto 15px;
    display: block
}

.popup__heading__promo {
    font-weight: 700;
    color: #fff;
    font-size: 20px;
    margin: 0 0 30px
}

@media (max-width: 768px) {
    .popup__body {
        min-width: auto
    }

    .promo__image {
        margin-top: 10px
    }

    html.with--no_scroll {
        margin-right: 0
    }
}

.faq__block {
    background: rgba(0, 0, 0, .2)
}

.faq__block + .faq__block {
    margin-top: 15px
}

.faq__question:before {
    content: '';
    position: absolute;
    top: calc(50% - 8px);
    right: 13px;
    width: 10px;
    height: 10px;
    border-bottom: 3px solid #4CAF50;
    border-left: 3px solid #4CAF50;
    -webkit-transform: rotateZ(-45deg);
    -ms-transform: rotate(-45deg);
    transition: all ease .3s;
    transform: rotateZ(-45deg)
}

.faq__question.open:before {
    transform: rotate(135deg)
}

label.faq__question {
    padding: 15px 15px !important;
    cursor: pointer;
    font-weight: 700;
    position: relative;
    display: block
}

.faq__answer {
    display: none;
    padding: 15px;
    background: rgba(0, 0, 0, .25)
}

.faq__answer a {
    text-decoration: underline
}

.faq__answer a:hover {
    text-decoration: none
}

.fag-checkbox {
    position: absolute;
    left: -100vw
}

.fag-checkbox:checked ~ .faq__answer {
    display: block
}

.faq__answer {
    display: none
}


/*! This file is auto-generated */
.wp-block-button__link {
    color: #fff;
    background-color: #32373c;
    border-radius: 9999px;
    box-shadow: none;
    text-decoration: none;
    padding: calc(.667em + 2px) calc(1.333em + 2px);
    font-size: 1.125em
}

.wp-block-file__button {
    background: #32373c;
    color: #fff;
    text-decoration: none
}

.rll-youtube-player {
    position: relative;
    padding-bottom: 56.23%;
    height: 0;
    overflow: hidden;
    max-width: 100%
}

.rll-youtube-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: 0 0
}

.rll-youtube-player img {
    bottom: 0;
    display: block;
    left: 0;
    margin: auto;
    max-width: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    height: auto;
    cursor: pointer;
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all
}

.rll-youtube-player img:hover {
    -webkit-filter: brightness(75%)
}

.rll-youtube-player .play {
    height: 72px;
    width: 72px;
    left: 50%;
    top: 50%;
    margin-left: -36px;
    margin-top: -36px;
    position: absolute;
    background: url(../pics/youtube.png) no-repeat;
    cursor: pointer
}


table tr td {
    border: 1px solid #883FEB !important;
    padding: 10px;
}

.footer_logo img{
	width:100px;
}