@font-face {
    font-family: 'Gilroy';
    font-weight: normal;
    font-style: normal;

    font-display: swap;
    src: url('../fonts/Gilroy-Bold.woff') format('woff'),
        url('../fonts/Gilroy-Bold.ttf') format('truetype');
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*:before,
*:after {
    box-sizing: border-box;
}

img {
    border: none;
}

textarea {
    overflow: auto;
}

input,
textarea,
input:active,
textarea:active {
    -webkit-border-radius: 0;
    border-radius: 0;
    outline: none transparent !important;
    box-shadow: none;

    -webkit-appearance: none;
    appearance: none;
    -moz-outline: none !important;
}

input[type=submit],
button[type=submit],
input[type=reset],
button[type=reset] {
    -webkit-border-radius: 0;

    -webkit-appearance: none;
}

:focus {
    outline: none;
}

:hover,
:active {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
}


::-ms-clear {
    display: none;
}



/*---------------
    Main styles
---------------*/
:root {
    --bg: #f1f1f1;
    --aside_width: 360px;
    --scroll_width: 17px;
    --text_color: #000;
    --font_size: 15px;
    --font_size_title: 24px;
    --font_family: 'Roboto', 'Arial', sans-serif;
    --font_family2: 'Gilroy', 'Arial', sans-serif;
    --font_family3: 'Roboto Condensed', 'Arial', sans-serif;
}



.clear {
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}



html {
    height: 100%;

    background: var(--bg);

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}


body {
    color: var(--text_color);
    font-family: var(--font_family);
    font-size: var(--font_size);

    height: 100%;

    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-overflow-scrolling: touch;
    text-rendering: optimizeLegibility;
    text-decoration-skip: objects;
}

body.lock {
    position: fixed;

    overflow: hidden;

    width: 100%;
    height: 100%;
}


.wrap {
    position: relative;

    display: flex;
    overflow: hidden;
    flex-direction: column;

    min-width: 360px;
    min-height: 100%;
}


.main {
    flex: 1 0 auto;
}


.cont {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}


.compensate-for-scrollbar {
    margin-right: var(--scroll_width) !important;
}


.lozad {
    transition: opacity .5s linear;

    opacity: 0;
}

.lozad.loaded {
    opacity: 1;
}


.flex {
    display: flex;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}



.page_head {
    margin-top: -25px;
    margin-bottom: 25px;
}

.page_head .cont>*+* {
    margin-top: 20px;
}


.breadcrumbs {
    color: #aeaeae;
    font-size: 12px;
    font-weight: 700;
}

.breadcrumbs a {
    color: #aeaeae;

    transition: color .2s linear;
    white-space: nowrap;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--text_color);
}

.breadcrumbs .sep {
    display: inline-block;

    margin: 0 2px;

    vertical-align: top;
}


.page_title {
    color: #000;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;

    position: relative;

    display: block;

    width: 100%;
    padding-bottom: 8px;

    letter-spacing: .025em;
}

.page_title:after {
    position: absolute;
    bottom: 0;
    left: 0;

    display: block;

    width: 27px;
    height: 3px;

    content: '';

    background: #e54045;
}



.content_flex.flex,
.content_flex>.cont.flex {
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
}

.content_flex .content {
    position: relative;

    width: calc(100% - var(--aside_width) - 30px);
}

.content_flex .content> :first-child {
    margin-top: 0;
}

.content_flex .content> :last-child {
    margin-bottom: 0;
}



.block {
    margin-bottom: 60px;
}

.block.no_margin {
    margin-bottom: 0 !important;
}


.block_head {
    display: flex;

    width: 100%;
    margin-bottom: 30px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.block_head.center {
    text-align: center;

    justify-content: center;
}

.block_head .title {
    font-size: var(--font_size_title);
    font-weight: 700;
    line-height: calc(var(--font_size_title) + 4px);

    position: relative;

    padding-bottom: 7px;

    letter-spacing: .025em;
    text-transform: uppercase;
}

.block_head .title.mini {
    font-size: 18px;
    line-height: 24px;
}

.block_head .title:after {
    position: absolute;
    bottom: 0;
    left: 0;

    display: block;

    width: 27px;
    height: 3px;

    content: '';

    background: #e54045;
}

.block_head.center .title:after {
    right: 0;

    margin: auto;
}



.form {
    --form_border_color: #fff;
    --form_focus_color: #fff;
    --form_error_color: red;
    --form_success_color: green;
    --form_border_radius: 0;
    --form_bg_color: #fff;
    --form_placeholder_color: #808080;
}


.form ::-webkit-input-placeholder {
    color: var(--form_placeholder_color);
}

.form :-moz-placeholder {
    color: var(--form_placeholder_color);
}

.form :-ms-input-placeholder {
    color: var(--form_placeholder_color);
}



.form .columns {
    margin-left: calc(var(--form_columns_offset) * -1);

    --form_columns_offset: 14px;
}

.form .columns>* {
    width: calc(50% - var(--form_columns_offset));
    margin-left: var(--form_columns_offset);
}


.form .columns>*.width1of3 {
    width: calc(33.333% - var(--form_columns_offset));
}

.form .columns>*.width2of3 {
    width: calc(66.666% - var(--form_columns_offset));
}

.form .columns>*.width3of3 {
    width: calc(100% - var(--form_columns_offset));
}


.form .line {
    margin-bottom: 14px;
}


.form .field {
    position: relative;
}

.form .field+.field {
    margin-top: 10px;
}


.form .input {
    color: var(--text_color);
    font: 14px var(--font_family);

    display: block;

    width: 100%;
    height: 37px;
    padding: 0 11px;

    transition: .2s linear;

    border: 1px solid var(--form_border_color);
    border-radius: var(--form_border_radius);
    background: var(--form_bg_color);
}

.form textarea {
    color: var(--text_color);
    font: 14px var(--font_family);

    display: block;

    width: 100%;
    height: 67px;
    padding: 10px 11px;

    resize: none;
    transition: .2s linear;

    border: 1px solid var(--form_border_color);
    border-radius: var(--form_border_radius);
    background: var(--form_bg_color);
}


.form .input:focus,
.form textarea:focus {
    border-color: var(--form_focus_color);
}

.form .success {
    border-color: var(--form_success_color);
}

.form .error {
    border-color: var(--form_error_color);
}


.form .submit_btn {
    color: #fff;
    font-family: var(--font_family);
    font-size: 16px;
    font-weight: 700;
    line-height: 51px;

    display: inline-block;

    height: 51px;
    padding: 0 17px;

    cursor: pointer;
    transition: .2s linear;
    vertical-align: middle;
    letter-spacing: .025em;
    text-transform: uppercase;

    border: none;
    border-bottom: 3px solid #b01115;
    background: #e54045;
}

.form .submit_btn:hover {
    border-color: #c81419;
    background: #b01115;
}



.text_block {
    color: #7c7c7c;
    line-height: 24px;
}

.text_block.bg_white {
    padding: 35px 20px;

    background: #fff;
}


.text_block> :last-child,
.text_block blockquote> :last-child,
.text_block q> :last-child,
.text_block .minus> :last-child,
.text_block .plus> :last-child,
.text_block .message> :last-child {
    margin-bottom: 0 !important;
}

.text_block> :first-child,
.text_block blockquote> :first-child,
.text_block q> :first-child,
.text_block .minus> :first-child,
.text_block .plus> :first-child,
.text_block .message> :first-child {
    margin-top: 0 !important;
}


.text_block h2 {
    color: #474747;
    font-size: 30px;
    font-weight: 700;
    line-height: 34px;

    margin-bottom: 24px;

    letter-spacing: .025em;
}


.text_block h3 {
    color: #474747;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;

    margin-bottom: 20px;
}

.text_block h2+h3 {
    margin-top: 0 !important;
}


.text_block h4 {
    color: #474747;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;

    margin-bottom: 20px;
}

.text_block h2+h4,
.text_block h3+h4 {
    margin-top: 0 !important;
}


.text_block *+h2,
.text_block *+h3,
.text_block *+h4 {
    margin-top: 34px;
}

.text_block .clear+h2,
.text_block .clear+h3,
.text_block .clear+h4 {
    margin-top: 24px;
}

.text_block h2+*,
.text_block h3+*,
.text_block h4+* {
    margin-top: 0 !important;
}


.text_block p,
.text_block img,
.text_block ul,
.text_block ol,
.text_block .content_links,
.text_block blockquote,
.text_block q,
.text_block .message {
    margin-bottom: 20px;
}


.text_block img {
    display: block;
    height: auto;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.text_block img.left {
    max-width: calc(50% - 40px);
    margin-top: 4px;
    margin-right: 40px;
}

.text_block img.right {
    max-width: calc(50% - 40px);
    margin-top: 4px;
    margin-left: 40px;
}

.text_block img.loaded {
    height: auto !important;
}


.text_block ul {
    padding-left: 13px;
}

.text_block ul li {
    position: relative;

    display: block;

    padding-left: 27px;

    list-style-type: none;
}

.text_block ul li+li {
    margin-top: 7px;
}

.text_block ul li:before {
    position: absolute;
    top: 4px;
    left: 0;

    display: block;

    width: 16px;
    height: 16px;

    content: '';

    border-radius: 50%;
    background: #ff7e00;
}

.text_block ul li:after {
    position: absolute;
    top: 8px;
    left: 4px;

    display: block;

    width: 9px;
    height: 5px;

    content: '';
    transition: opacity .2s linear;
    transform: rotate(-45deg);

    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
}


.text_block ul.columns {
    position: relative;

    padding: 15px 20px;
    display: block;
    background: #f1f1f1;

    column-gap: 60px;
    column-count: 2;
}

.text_block ul.columns:before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;

    display: block;

    width: 15px;
    height: 100%;
    margin: auto;

    content: '';

    background: #fff;
}

.text_block ul.columns>* {
    --webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
}

.text_block ul.columns>*+* {
    margin-top: 10px;
}


.text_block ol {
    padding-left: 13px;

    counter-reset: li;
}

.text_block ol li {
    position: relative;

    display: block;

    padding-left: 33px;

    list-style-type: none;
}

.text_block ol li+li {
    margin-top: 7px;
}

.text_block ol li:before {
    color: #e75257;
    font-size: 12px;
    font-weight: 700;
    line-height: 17px;

    position: absolute;
    top: 2px;
    left: 0;

    width: 19px;
    height: 19px;
    padding-left: 1px;

    content: counters(li, '') '';
    counter-increment: li;
    text-align: center;

    border: 2px solid #e75257;
    border-radius: 50%;
}


.text_block blockquote,
.text_block q {
    position: relative;

    display: block;

    width: 100%;
    padding: 15px 20px 15px 45px;

    background: #f3f3f3;
}

.text_block blockquote:before,
.text_block q:before {
    color: #3d4fb9;
    font-size: 60px;

    position: absolute;
    top: 17px;
    left: 10px;

    display: block;

    content: '«';
    letter-spacing: .025em;
}

.text_block blockquote.color2,
.text_block q.color2 {
    background: #fff1e6;
}

.text_block blockquote.color2:before,
.text_block q.color2:before {
    color: #ff7505;
}


.text_block .minus {
    position: relative;

    min-height: 96px;
    margin-bottom: 30px;
    margin-left: 122px;
    padding: 15px 30px;

    border-radius: 2px;
    background: #f1f1f1;
}

.text_block .minus:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -116px;

    display: block;

    width: 96px;
    height: 96px;
    margin: auto;

    content: '';

    border: 2px solid #d80027;
    border-radius: 50%;
    background: #fff url(../images/ic_dislike.png) 50% no-repeat;
}


.text_block .plus {
    position: relative;

    min-height: 96px;
    margin-right: 122px;
    margin-bottom: 30px;
    padding: 15px 30px;

    border-radius: 2px;
    background: #f1f1f1;
}

.text_block .plus:before {
    position: absolute;
    top: 0;
    right: -116px;
    bottom: 0;

    display: block;

    width: 96px;
    height: 96px;
    margin: auto;

    content: '';

    border: 2px solid #83c550;
    border-radius: 50%;
    background: #fff url(../images/ic_plus.png) 50% no-repeat;
}


.text_block .message {
    color: #555;
    font-weight: 700;

    padding: 15px 20px;

    border-radius: 2px;
    background: #f2f2f2;
}


.text_block mark {
    color: #fff;

    display: inline-block;

    padding: 0 8px;

    vertical-align: top;

    border-radius: 12px;
    background: #ff7e00;
}


.text_block b {
    color: #000;
    font-weight: 700;
}


.text_block a {
    color: #ec403c;

    text-decoration: none;
}

.text_block a:hover {
    text-decoration: underline;
}



.content_links {
    padding: 15px 20px;

    border: 1px solid #e4e5ec;
}

.content_links .title {
    color: #555;
    font-size: 15px;
    font-weight: 700;
    line-height: 19px;

    position: relative;

    margin-bottom: 15px;
    padding-bottom: 7px;

    letter-spacing: .05em;
    text-transform: uppercase;
}

.content_links .title:after {
    position: absolute;
    bottom: 0;
    left: 0;

    display: block;

    width: 27px;
    height: 3px;

    content: '';

    background: #e54045;
}

.content_links .links {
    padding-left: 12px;
}

.content_links .links>* {
    position: relative;

    padding-left: 12px;
}

.content_links .links>*+* {
    margin-top: 5px;
}

.content_links .links>*:before {
    position: absolute;
    top: 11px;
    left: 0;

    display: block;

    width: 3px;
    height: 3px;

    content: '';

    border-radius: 50%;
    background: #e54045;
}

.content_links .links a {
    color: #555;
    font-weight: normal;

    display: inline-block;

    transition: color .2s linear;
    vertical-align: top;
    text-decoration: none;
}

.content_links .links a:hover {
    color: #ec403c;
}



.text_block .faq {
    margin: 34px 0;
    padding: 18px;

    background: #f1f1f1;
}

.text_block .faq .item {
    padding: 20px 15px;

    background: #fff;
}

.text_block .faq .item+.item {
    margin-top: 8px;
}

.text_block .faq .answer>*:last-child {
    margin-bottom: 0 !important;
}

.text_block .faq .question {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;

    margin-bottom: 5px;
}



.modal_cont {
    position: relative;
}

.mini_modal {
    position: absolute;
    z-index: 100;
    top: calc(100% + 30px);
    left: 0;

    visibility: hidden;

    transition: .2s linear;

    opacity: 0;
}

.mini_modal.active {
    top: 100%;

    visibility: visible;

    opacity: 1;
}



.tabs {
    display: flex;

    margin-bottom: 25px;
    margin-left: -15px;

    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}

.tabs button {
    color: #626262;
    font-family: var(--font_family);
    font-size: 12px;
    font-weight: 700;
    line-height: 28px;

    position: relative;

    display: inline-block;

    height: 26px;
    margin-left: 15px;
    padding: 0 17px;

    cursor: pointer;
    transition: .2s linear;
    vertical-align: top;
    letter-spacing: .025em;
    text-transform: uppercase;

    border: none;
    border-radius: 3px;
    background: #fff;
}

.tabs button:hover,
.tabs button.active {
    color: #fff;

    background: #e54045;
}

.tab_content {
    position: relative;

    visibility: hidden;

    height: 0;

    pointer-events: none;

    opacity: 0;
}

.tab_content.active {
    visibility: visible;

    height: auto;

    transition: opacity .5s linear;
    pointer-events: auto;

    opacity: 1;
}



.buttonUp {
    position: fixed;
    z-index: 999;
    right: 20px;
    bottom: 20px;

    display: none;
}

.buttonUp button {
    position: relative;

    display: block;

    width: 54px;
    height: 52px;

    cursor: pointer;

    border: none;
    border-radius: 4px;
    background: #2e3e9c url(../images/ic_btnUp.svg) 50% no-repeat;
}



.pagination {
    font-size: 14px;
    line-height: 23px;

    display: flex;

    margin-top: 24px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.pagination.center {
    justify-content: center;
}

.pagination.alignright {
    justify-content: flex-end;
}

.pagination>*+* {
    margin-left: 5px;
}

.pagination a,
.pagination span,
.pagination .sep {
    color: var(--text_color);

    display: inline-block;

    width: 24px;
    height: 23px;

    transition: .2s linear;
    text-align: center;
    vertical-align: top;
    text-decoration: none;
}

.pagination a:hover,
.pagination .current {
    color: #fff;

    background: #e54045;
}


.pagination .prev,
.pagination .next {
    line-height: 22px;
}



.overlay {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100vh;

    opacity: .65;
    background: #000;
}


.supports_error {
    font-family: 'Arial', sans-serif;
    font-size: 20px;
    line-height: 30px;

    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;
    padding: 20px;

    text-align: center;

    background: #fff;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.supports_error.show {
    display: flex;
}



/*---------------
   Header
---------------*/
.header_wrap {
    margin-bottom: 40px;
}

.header_wrap header {
    margin-bottom: 0;
}


header {
    position: relative;
    z-index: 99;
    top: 0;
    left: 0;

    width: 100%;
    margin-bottom: 40px;

    background: #012;
}


header .info .cont.flex a {
    text-decoration: none;
}

header .info .cont.flex {
    position: relative;

    padding-top: 10px;
    padding-bottom: 11px;

    align-items: center;
    align-content: center;
}

header .info .cont.flex:after {
    position: absolute;
    bottom: 0;
    left: 20px;

    display: block;

    width: calc(100% - 40px);
    height: 1px;

    content: '';

    opacity: .3;
    background: #fff;
}


header .bottom .cont.flex {
    align-items: center;
    align-content: center;
}



header .logo>* {
    color: #fff;
    font-family: var(--font_family2);
    font-size: 22px;
    font-weight: 700;
    line-height: 24px;

    display: flex;

    min-height: 39px;
    padding-left: 62px;

    text-decoration: none;
    text-transform: uppercase;

    background: url(../images/logo.png) 2px 50% no-repeat;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

header .logo .red {
    color: #e54045;
}

header .logo .blue {
    color: #2e3e9c;
}


header .slogan {
    color: #565656;
    font-size: 16px;

    margin-left: 15px;
    padding-left: 15px;

    letter-spacing: .025em;

    border-left: 1px solid rgba(255, 255, 255, .3);
}



header .burger {
    display: flex;

    min-height: 69px;
    margin-right: 33px;
    padding: 5px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

header .burger .link {
    display: block;

    width: 47px;
    height: 38px;
    padding: 11px 14px;

    cursor: pointer;

    border: 1px solid rgba(255, 255, 255, .3);
    background: none;
}

header .burger .link span {
    position: relative;

    display: block;

    width: 100%;
    height: 2px;

    transition: .2s linear;

    background: #fff;
}

header .burger .link span+span {
    margin-top: 3px;
}

header .burger .link.active span:nth-child(1) {
    top: 5px;

    transform: rotate(45deg);
}

header .burger .link.active span:nth-child(2) {
    opacity: 0;
}

header .burger .link.active span:nth-child(3) {
    top: -5px;

    transform: rotate(-45deg);
}

#burger_modal ul {
    list-style: none;
}

#burger_modal {
    width: 278px;
    min-width: 100%;
    padding: 15px 0;

    background: rgba(0, 17, 34, .9);
}

#burger_modal a {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;

    display: block;

    padding: 9px 30px;

    transition: background .2s linear;
    text-decoration: none;
    letter-spacing: .05em;
    text-transform: uppercase;
}

#burger_modal a:hover,
#burger_modal a.active {
    background: #012;
}



header .menu {
    width: calc(100% - 90px);
}

header .menu .menu-item {
    position: relative;

    display: block;

    list-style-type: none;
}

header .menu .menu-item+.menu-item {
    margin-left: 30px;
}

header .menu .menu-item>a {
    color: #fff;
    font-family: var(--font_family3);
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;

    position: relative;

    display: flex;

    min-height: 69px;

    transition: color .2s linear;
    text-decoration: none;
    letter-spacing: .025em;
    text-transform: uppercase;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

header .menu .menu-item>a .arr {
    position: relative;
    top: -1px;

    display: block;

    width: 12px;
    height: 8px;
    margin-left: 9px;

    background: url(../images/ic_menu_arr.svg) 0 0/100% 100% no-repeat;
}

header .menu .menu-item:hover>a,
header .menu .menu-item>a.active {
    color: #f99c9f;
}


header .menu .sub-menu,
header .menu .menu-item:hover>a.touch_link+.sub-menu {
    position: absolute;
    z-index: 99;
    top: calc(100% + 30px);
    left: -30px;

    visibility: hidden;

    width: 278px;
    min-width: 100%;
    padding: 15px 0;

    transition: .2s linear;

    opacity: 0;
    background: rgba(0, 17, 34, .9);
}

header .menu .menu-item:hover .sub-menu,
header .menu .menu-item>a.touch_link+.sub-menu.show {
    top: 100%;

    visibility: visible;

    opacity: 1;
}

header .menu .sub-menu .menu-item+.menu-item {
    margin-left: 0px;
}

header .menu .sub-menu a {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    min-height: auto;
    display: block;

    padding: 9px 30px;

    transition: background .2s linear;
    text-decoration: none;
    letter-spacing: .05em;
    text-transform: uppercase;
}

header .menu .sub-menu a:hover,
header .menu .sub-menu a.active {
    background: #012;
}



.mob_header {
    position: relative;

    display: none;

    margin-bottom: 20px;
    padding: 10px 0 0;

    border-bottom: 5px solid #2e3e9c;
    background: #012;
}

.mob_header .cont {
    display: flex;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.mob_header .logo {
    margin-right: auto;
    text-decoration: none;
}

.mob_header .logo>* {
    color: #fff;
    font-family: var(--font_family2);
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;

    display: flex;

    min-height: 24px;
    padding-left: 42px;

    text-decoration: none;
    text-transform: uppercase;

    background: url(../images/logo.png) 0 50%/auto 24px no-repeat;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.mob_header .logo .red {
    color: #e54045;
}

.mob_header .logo .blue {
    color: #2e3e9c;
}


.mob_header .mob_menu_link {
    display: block;

    width: 47px;
    height: 38px;
    padding: 11px 14px;

    cursor: pointer;

    border: 1px solid rgba(255, 255, 255, .3);
    background: none;
}

.mob_header .mob_menu_link span {
    position: relative;

    display: block;

    width: 100%;
    height: 2px;

    transition: .2s linear;

    background: #fff;
}

.mob_header .mob_menu_link span+span {
    margin-top: 3px;
}


.mob_header .menu {
    position: relative;
    z-index: 5;

    overflow: auto;

    width: calc(100% + 40px);
    margin: 10px -20px -5px;
    padding: 0 14px;

    white-space: nowrap;

    border-top: 1px solid rgba(241, 241, 241, .2);
}

.mob_header .menu::-webkit-scrollbar {
    width: 0;
    height: 0;

    border-radius: 0;
    background-color: none;

    -webkit-appearance: none;
}

.mob_header .menu::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: none;
}

.mob_header .menu>* {
    display: inline-block;

    vertical-align: top;
}

.mob_header .menu a {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 41px;

    display: flex;

    min-width: 30px;
    height: 41px;
    padding: 0 10px;

    transition: .2s linear;
    text-decoration: none;
    letter-spacing: .05em;
    text-transform: uppercase;

    opacity: .7;
    border-top: 3px solid transparent;
    border-bottom: 5px solid transparent;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.mob_header .menu a img {
    display: block;

    margin: 0 auto;
}

.mob_header .menu a.active {
    opacity: 1;
    border-top-color: #e54045;
    border-bottom-color: #012;
}


.mob_header .drop_menu {
    position: fixed;
    z-index: 101;
    top: 0;
    left: 0;

    width: 100%;
    padding: 48px 0 0;

    transition: transform .3s linear;
    transform: translateX(-100%);

    background: rgba(0, 17, 34, 95);
}

.mob_header .drop_menu.show {
    transform: translateX(0);
}

.mob_header .drop_menu .close {
    position: absolute;
    top: 5px;
    right: 15px;

    display: flex;

    width: 47px;
    height: 38px;
    padding: 11px 14px;

    cursor: pointer;

    border: 1px solid rgba(255, 255, 255, .3);
    background: none;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.mob_header .drop_menu .close span {
    position: relative;

    display: block;

    width: 100%;
    height: 2px;

    transition: .2s linear;

    background: #fff;
}

.mob_header .drop_menu .close span:nth-child(1) {
    top: 1px;

    transform: rotate(45deg);
}

.mob_header .drop_menu .close span:nth-child(2) {
    top: -1px;

    transform: rotate(-45deg);
}

.mob_header .drop_menu .scroll {
    overflow: auto;

    height: calc(100vh - 48px);
    padding: 0 0 70px;
}


.mob_header .drop_menu .links .item+.item {
    margin-top: 3px;
}

.mob_header .drop_menu .links .item a {
    color: #fff;
    font-size: 14px;
    font-weight: 700;

    position: relative;

    display: block;

    padding: 10px 20px 10px 53px;

    transition: .2s linear;
    text-decoration: none;
    letter-spacing: .025em;
    text-transform: uppercase;

    border-left: 2px solid transparent;
}

.mob_header .drop_menu .links .item a.sub_link {
    padding-right: 55px;

    background: url(../images/ic_menu_arr.svg) calc(100% - 30px) calc(50% - 1px)/12px 8px no-repeat;
}

.mob_header .drop_menu .links .icon {
    position: absolute;
    top: 0;
    left: 0;

    display: flex;

    width: 50px;
    height: 100%;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.mob_header .drop_menu .links .icon img {
    display: block;
}

.mob_header .drop_menu .links .item a.active {
    color: #e54045;

    border-color: #e54045;
}


.mob_header .drop_menu .links .sub_links {
    display: none;

    margin: 3px 0 10px;
    padding-left: 47px;
}

.mob_header .drop_menu .links .sub_links>*+* {
    margin-top: 5px;
}

.mob_header .drop_menu .links .sub_links a {
    font-weight: normal;

    padding: 7px 20px 7px 38px;

    border: none;
}

.mob_header .drop_menu .links .sub_links .icon {
    width: 33px;
}



header.fixed {
    position: fixed;

    transform: translateY(-100%);
}

header.fixed .info {
    display: none;
}

header.fixed.show {
    transition: transform .2s linear;
    transform: translateY(0%);
}

header.fixed .burger,
header.fixed .menu .menu-item>a {
    min-height: 50px;
}



/*---------------
   Sidebar
---------------*/
aside {
    position: relative;

    width: var(--aside_width);
    max-width: 100%;
}

aside>*+* {
    margin-top: 30px;
}


aside .block {
    margin-bottom: 0 !important;
    padding: 20px 15px;

    background: #fff;
}


aside .block_title {
    color: #555;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;

    position: relative;

    margin-bottom: 20px;
    padding-bottom: 5px;

    letter-spacing: .05em;
    text-transform: uppercase;
}

aside .block_title:after {
    position: absolute;
    bottom: 0;
    left: 0;

    display: block;

    width: 27px;
    height: 3px;

    content: '';

    background: #e54045;
}


aside .block_desc {
    color: #898989;
    font-size: 12px;
    line-height: 14px;

    margin-top: -10px;
    margin-bottom: 20px;

    letter-spacing: .05em;
}


aside .all {
    margin-top: 20px;
}

aside .all a {
    min-height: 27px;
    padding: 2px 15px;

    border: none;
}



aside .bookmakers .table_wrap {
    margin: -10px 0;
}

aside .bookmakers table {
    border-spacing: 0 10px;
    margin: 0;
}

aside .bookmakers table td.logo {
    width: 105px;
    min-width: 105px;
}

aside .bookmakers table td.actions {
    width: 100px;
    min-width: 100px;
}

aside .bookmakers table td.actions a {
    position: relative;

    width: 48px;
}

aside .bookmakers table td.actions a+a {
    margin-left: -2px;
}

aside .bookmakers table td.actions img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    margin: auto;
}


aside .bookmakers .all {
    margin-top: 10px;
}

aside .bookmakers .all a {
    min-height: 39px;

    text-align: left;

    background: #fff;

    justify-content: flex-start;
}



aside .sports .item+.item {
    margin-top: 7px;
}

aside .sports .item {
    color: #555;
    font-size: 12px;
    font-weight: 700;

    position: relative;

    display: flex;

    min-height: 44px;
    padding: 10px 20px 12px 85px;

    transition: .2s linear;
    text-align: left;
    text-decoration: none;
    letter-spacing: .05em;

    border-bottom: 2px solid #e2e3ea;
    background: #fff;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

aside .sports .item .icon {
    position: absolute;
    top: 0;
    left: 0;

    display: flex;

    width: 62px;
    height: 100%;

    transition: width .2s linear;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

aside .sports .item .icon1 {
    width: 24px;
    height: 24px;

    background: url(../images/ic_sport1_2.png) 0 0/100% 200% no-repeat;
}

aside .sports .item .icon2 {
    width: 23px;
    height: 23px;

    background: url(../images/ic_sport2_2.png) 0 0/100% 200% no-repeat;
}

aside .sports .item .icon3 {
    width: 24px;
    height: 23px;

    background: url(../images/ic_sport3_2.png) 0 0/100% 200% no-repeat;
}

aside .sports .item .icon4 {
    width: 24px;
    height: 24px;

    background: url(../images/ic_sport4_2.png) 0 0/100% 200% no-repeat;
}

aside .sports .item .icon5 {
    width: 26px;
    height: 15px;

    background: url(../images/ic_sport5_2.png) 0 0/100% 200% no-repeat;
}

aside .sports .item .icon6 {
    width: 25px;
    height: 25px;

    background: url(../images/ic_sport6_2.png) 0 0/100% 200% no-repeat;
}

aside .sports .item .icon7 {
    width: 26px;
    height: 26px;

    background: url(../images/ic_sport7_2.png) 0 0/100% 200% no-repeat;
}

aside .sports .item .icon8 {
    width: 30px;
    height: 18px;

    background: url(../images/ic_sport8_2.png) 0 0/100% 200% no-repeat;
}

aside .sports .item .icon9 {
    width: 37px;
    height: 13px;

    background: url(../images/ic_sport9_2.png) 0 0/100% 200% no-repeat;
}

aside .sports .item .icon10 {
    width: 32px;
    height: 28px;

    background: url(../images/ic_sport10_2.png) 0 0/100% 200% no-repeat;
}

aside .sports .item .icon11 {
    width: 24px;
    height: 24px;

    background: url(../images/ic_sport11_2.png) 0 0/100% 200% no-repeat;
}

aside .sports .item .icon12 {
    width: 21px;
    height: 21px;

    background: url(../images/ic_sport12_2.png) 0 0/100% 200% no-repeat;
}

aside .sports .item:hover,
aside .sports .item.active {
    padding-left: 105px;

    background: #fff;
}

aside .sports .item:hover .icon,
aside .sports .item.active .icon {
    width: 98px;
}

aside .sports .item:hover .name,
aside .sports .item.active .name {
    color: #e54045;
}

aside .cats {
    list-style: none;
}

aside .cats>*+* {
    margin-top: 7px;
}

aside .cats a {
    color: #555;
    font-size: 16px;

    position: relative;

    display: block;

    padding: 10px 20px 10px 45px;

    transition: .2s linear;
    text-decoration: none;
    letter-spacing: .05em;

    border-bottom: 2px solid #e2e3ea;
    background: #fff;
}

aside .cats a:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;

    display: block;

    width: 10px;
    height: 2px;
    margin: auto;

    content: '';
    transition: .2s linear;

    opacity: 0;
    background: #e54045;
}

aside .cats a:after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 27px;

    display: block;

    width: 8px;
    height: 8px;
    margin: auto;

    content: '';
    transition: .2s linear;
    transform: rotate(-45deg);

    opacity: 0;
    border-right: 2px solid #e54045;
    border-bottom: 2px solid #e54045;
}

aside .cats a:hover,
aside .cats a.active {
    font-weight: 700;

    padding-left: 62px;

    border-color: #edbabc;
}

aside .cats a:hover:before,
aside .cats a.active:before {
    left: 41px;

    opacity: 1;
}

aside .cats a:hover:after,
aside .cats a.active:after {
    left: 44px;

    opacity: 1;
}



aside .socials {
    display: flex;

    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}

aside .socials a {
    display: block;

    width: 50%;
}

aside .socials img {
    display: block;

    width: 100%;

    object-fit: cover;
}



aside .cappers {
    padding: 20px 15px;

    background: #fff;
}

aside .cappers .flex {
    margin-bottom: -32px;
    margin-left: -16px;
}

aside .cappers .flex>* {
    width: calc(33.333% - 16px);
    margin-bottom: 32px;
    margin-left: 16px;
}



aside .subscribe form {
    display: flex;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

aside .subscribe form ::-webkit-input-placeholder {
    color: #a2a2a2;
}

aside .subscribe form :-moz-placeholder {
    color: #a2a2a2;
}

aside .subscribe form :-ms-input-placeholder {
    color: #a2a2a2;
}

aside .subscribe form .input {
    color: var(--text_color);
    font-family: var(--font_family);
    font-size: 14px;

    display: block;

    width: calc(100% - 105px);
    height: 41px;
    padding: 0 12px;

    letter-spacing: .05em;

    border: none;
    background: #f1f1f1;
}

aside .subscribe form .submit_btn {
    color: #fff;
    font-family: var(--font_family);
    font-size: 14px;
    font-weight: 700;
    line-height: 41px;

    display: inline-block;

    width: 105px;
    height: 41px;

    cursor: pointer;
    transition: .2s linear;
    vertical-align: top;
    text-transform: uppercase;

    border: none;
    border-bottom: 3px solid #9b0005;
    background: #e54045;
}

aside .subscribe form .submit_btn:hover {
    border-color: #c81419;
    background: #b01115;
}



aside .bonuses {
    padding: 0;
}

aside .bonuses .head {
    padding: 20px 15px;
}

aside .bonuses .block_title,
aside .bonuses .block_desc {
    margin: 0;
}

aside .bonuses .block_desc {
    margin-top: 10px;
}

aside .bonuses .data {
    position: relative;
    z-index: 5;

    padding: 45px 25px 20px;

    background: #e6e6e6;
}

aside .bonuses .data:before {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;

    display: block;

    width: 56px;
    height: 48px;

    content: '';

    border-radius: 0 0 0 48px;
    background: #e54045 url(../images/ic_bonus.svg) calc(50% + 5px) calc(50% - 5px) no-repeat;
}

aside .bonuses .flex {
    margin-bottom: -14px;
    margin-left: -28px;
}

aside .bonuses .flex>* {
    width: calc(50% - 28px);
    margin-bottom: 14px;
    margin-left: 28px;
}

aside .bonuses .item {
    display: block;

    transition: .2s linear;
    text-align: center;
    text-decoration: none;

    background: #fff;
}

aside .bonuses .item .logo {
    display: flex;

    height: 55px;
    padding: 15px 20px;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

aside .bonuses .item .logo img {
    display: block;

    max-width: 100%;
    max-height: 100%;
}

aside .bonuses .item .price {
    color: #2e3e9c;
    font-size: 14px;
    font-weight: 700;
    line-height: 36px;

    white-space: nowrap;
}

aside .bonuses .item .price b {
    font-size: 24px;
}

aside .bonuses .item .link {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 34px;

    height: 34px;
    margin-top: 5px;

    transition: .2s linear;
    text-transform: uppercase;

    border-bottom: 3px solid #b7b7b7;
    background: #b7b7b7;
}

aside .bonuses .item:hover {
    box-shadow: 0 3px 32px 0 rgba(31, 39, 48, .45);
}

aside .bonuses .item:hover .link {
    border-color: #9b0005;
    background: #e54045;
}



/*---------------
   Main section
---------------*/
.owl-carousel,
.owl-carousel .slide:first-child {
    display: block;
}

.owl-carousel .slide {
    display: none;
}

.owl-carousel .owl-stage {
    white-space: nowrap;
}

.owl-carousel .owl-item {
    display: inline-block;
    float: none;

    vertical-align: top;
    white-space: normal;
}

.owl-carousel .slide .lozad {
    transition: .2s linear;
}



.bookmakers .table_wrap {
    overflow: auto;

    max-width: 100%;
    margin: 0 0 -25px;
}

.bookmakers table {
    width: 100%;
    margin-top: -25px;

    border-spacing: 0 25px;
    border-collapse: separate;
}

.bookmakers table td {
    text-align: center;
    vertical-align: middle;

    background: #fff;
}


.bookmakers table td.logo {
    width: 140px;
    min-width: 140px;
    padding: 0 10px;

    table-layout: fixed;
}

.bookmakers table td.logo a {
    display: inline-block;

    vertical-align: middle;
}

.bookmakers table td.logo img {
    display: block;

    max-width: 100%;
    max-height: 39px;
}


.bookmakers table td.price {
    color: #383838;
    font-size: 18px;
    font-weight: 700;

    padding: 5px 10px;

    table-layout: fixed;

    text-align: center;
    white-space: nowrap;
    letter-spacing: .025em;
    text-transform: uppercase;
}


.bookmakers table td.apps {
    padding: 5px 10px;

    text-align: center;
}

.bookmakers table td.apps a {
    display: inline-block;

    vertical-align: middle;
}

.bookmakers table td.apps a+a {
    margin-left: 11px;
}

.bookmakers table td.apps img {
    display: block;
}


.bookmakers table td.comments {
    color: #474747;
    font-size: 12px;

    padding: 5px 10px;

    text-align: center;
    letter-spacing: .025em;
}

.bookmakers table td.comments>* {
    line-height: 23px;

    display: inline-block;

    height: 21px;
    padding-left: 29px;

    vertical-align: top;

    background: url(../images/ic_comments.png) 0 50% no-repeat;
}


.bookmakers table td.actions {
    width: 218px;
    min-width: 218px;

    table-layout: fixed;
}

.bookmakers table td.actions a {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 41px;

    display: inline-block;

    width: 107px;
    height: 41px;

    transition: .2s linear;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: .025em;
    text-transform: uppercase;

    border-bottom: 3px solid transparent;
}

.bookmakers table td.actions a.red {
    border-color: #b01115;
    background: #e54045;
}

.bookmakers table td.actions a.blue {
    border-color: #101d65;
    background: #2e3e9c;
}

.bookmakers table td.actions a.red:hover {
    border-color: #c81419;
    background: #b01115;
}

.bookmakers table td.actions a.blue:hover {
    border-color: #132692;
    background: #101d65;
}



.forecasts .flex {
    margin-bottom: -45px;
    margin-left: -31px;

    align-items: stretch;
    align-content: stretch;
}

.forecasts .flex>* {
    width: calc(50% - 31px);
    margin-bottom: 45px;
    margin-left: 31px;
}


.forecasts .forecast {
    color: var(--text_color);

    position: relative;

    display: block;

    transition: .2s linear;
    text-decoration: none;

    background: #fff;
}

.forecasts .forecast .thumb {
    position: relative;

    overflow: hidden;

    padding-bottom: 66.666%;

    background: #ddd;
}

.forecasts .forecast .thumb:after {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    content: '';

    opacity: .75;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.forecasts .forecast .thumb img {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.forecasts .forecast .name {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;

    position: absolute;
    z-index: 5;
    bottom: 0;
    left: 0;

    width: 100%;
    padding: 15px 10px;

    letter-spacing: .025em;
    text-transform: uppercase;
}

.forecasts .forecast .info {
    color: #2e3e9c;
    font-size: 14px;
    font-weight: 700;
    line-height: 28px;

    display: flex;

    letter-spacing: .025em;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.forecasts .forecast .info>*+* {
    margin-left: 20px;
}

.forecasts .forecast .date {
    position: relative;
    z-index: 5;

    padding: 5px 5px 5px 43px;
}

.forecasts .forecast .time {
    position: relative;
    z-index: 5;

    padding: 5px 5px 5px 43px;
}

.forecasts .forecast .date:before,
.forecasts .forecast .time:before,
.forecasts .forecast .date:after,
.forecasts .forecast .time:after {
    position: absolute;
    z-index: -2;
    top: 0;
    bottom: 0;
    left: 5px;

    display: block;

    width: 29px;
    height: 29px;
    margin: auto;

    content: '';

    border-radius: 50%;
    background: #d8d8d8;
}

.forecasts .forecast .date:after,
.forecasts .forecast .time:after {
    z-index: -1;
}

.forecasts .forecast .date:after {
    background: url(../images/ic_date.png) 50% no-repeat;
}

.forecasts .forecast .time:after {
    background: url(../images/ic_time.svg) 50% no-repeat;
}

.forecasts .forecast .coefficient {
    color: #fff;

    margin-left: auto !important;
    padding: 5px 15px;

    background: #2e3e9c;
}

.forecasts .forecast:hover {
    box-shadow: 0 2px 40px 0 rgba(9, 19, 74, .31);
}



.articles .flex {
    margin-bottom: -27px;
    margin-left: -27px;

    align-items: stretch;
    align-content: stretch;
}

.articles .flex>* {
    width: calc(33.333% - 27px);
    margin-bottom: 27px;
    margin-left: 27px;
}


.articles .article {
    color: var(--text_color);

    position: relative;

    display: block;

    transition: .2s linear;
    text-decoration: none;

    background: #fff;
}

.articles .article .thumb {
    position: relative;

    overflow: hidden;

    padding-bottom: 66.666%;

    background: #ddd;
}

.articles .article .thumb:after {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    content: '';

    opacity: .6;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.articles .article .thumb img {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.articles .article .stats {
    color: #fff;
    font-size: 11px;
    line-height: 13px;

    position: absolute;
    z-index: 5;
    bottom: 0;
    left: 0;

    display: flex;

    width: 100%;
    padding: 7px 14px;

    letter-spacing: .05em;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.articles .article .stats>*+* {
    margin-left: 10px;
}

.articles .article .views {
    padding-left: 18px;

    background: url(../images/ic_view.svg) 0 calc(50% - 1px) no-repeat;
}

.articles .article .favorite {
    width: 12px;
    height: 12px;

    background: url(../images/ic_favorite.svg) 50% 0 no-repeat;
}

.articles .article .info {
    padding: 20px 10px 30px;
}

.articles .article .name {
    color: #474747;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;

    letter-spacing: .05em;
}

.articles .article .link {
    position: absolute;
    right: 0;
    bottom: 0;

    width: 37px;
    height: 33px;

    transition: background .2s linear;

    background: #2e3e9c;
}

.articles .article .link:before {
    position: absolute;
    top: 1px;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 10px;
    height: 2px;
    margin: auto;

    content: '';

    background: #fff;
}

.articles .article .link:after {
    position: absolute;
    top: 1px;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 8px;
    height: 8px;
    margin: auto;

    content: '';
    transform: rotate(-45deg);

    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.articles .article:hover {
    box-shadow: 0 2px 40px 0 rgba(9, 19, 74, .31);
}

.articles .article:hover .link {
    background: #e54045;
}



.articles .list {
    padding: 17px 13px;

    background: #fff;
}


.articles .list .search {
    margin-bottom: 21px;
}

.articles .list .search form {
    display: flex;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.articles .list .search form ::-webkit-input-placeholder {
    color: #898989;
}

.articles .list .search form :-moz-placeholder {
    color: #898989;
}

.articles .list .search form :-ms-input-placeholder {
    color: #898989;
}

.articles .list .search form .input {
    color: var(--text_color);
    font-family: var(--font_family);
    font-size: 14px;

    display: block;

    width: 100%;
    height: 81px;
    padding: 0 63px 0 25px;

    border: none;
    background: #f1f1f1;
}

.articles .list .search form .submit_btn {
    position: relative;

    display: inline-block;

    width: 58px;
    height: 81px;
    margin-left: -58px;

    cursor: pointer;
    vertical-align: top;

    border: none;
    background: url(../images/ic_search.svg) 50%/18px 19px no-repeat;
}


.articles .list .day+.day {
    margin-top: 21px;
}

.articles .list .date {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 38px;

    display: inline-block;

    height: 36px;
    margin-bottom: 15px;
    padding: 0 13px;

    vertical-align: top;
    white-space: nowrap;
    letter-spacing: .025em;
    text-transform: uppercase;

    background: #e54045;
}


.articles .list .item {
    display: flex;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.articles .list .item+.item {
    margin-top: 20px;
}

.articles .list .item .time {
    color: #243483;
    font-size: 16px;
    font-weight: 700;

    width: 100px;

    text-align: right;
}

.articles .list .item .info {
    color: #7c7c7c;
    font-size: 14px;
    line-height: 16px;

    width: calc(100% - 115px);
    padding-right: 13px;

    letter-spacing: .025em;
}

.articles .list .item .info>*+* {
    margin-top: 10px;
}

.articles .list .item .name {
    font-size: 16px;
    font-weight: 700;

    padding-right: 50px;
}

.articles .list .item .name a {
    color: #555;

    display: inline-block;

    transition: color .2s linear;
    vertical-align: top;
    text-decoration: none;
}

.articles .list .item .name a:hover {
    color: #e54045;
}

.articles .list .item .desc {
    padding-right: 50px;
}

.articles .list .item .hide {
    display: none;
}

.articles .list .item .spoler_link {
    color: #7c7c7c;
    font-family: var(--font_family);
    font-size: 12px;
    line-height: 16px;

    position: relative;

    display: inline-block;

    width: 100%;
    padding-top: 5px;
    padding-right: 17px;

    cursor: pointer;
    text-align: right;
    vertical-align: top;
    letter-spacing: .025em;

    border: none;
    border-top: 2px solid #e6e6e6;
    background: none;
}

.articles .list .item .spoler_link:after {
    position: absolute;
    top: 10px;
    right: 1px;

    display: block;

    width: 10px;
    height: 6px;

    content: '';
    transition: .2s linear;

    border-top: 6px solid #e54045;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
}

.articles .list .item .spoler_link span+span,
.articles .list .item .spoler_link.active span {
    display: none;
}

.articles .list .item .spoler_link.active span+span {
    display: inline;
}

.articles .list .item .spoler_link.active:after {
    transform: rotate(-180deg);
}



.bonus_banner {
    margin-bottom: 15px;
}

.bonus_banner a,
.bonus_banner img {
    display: block;
    height: auto;
    width: 100%;
}


.rate {
    color: #555;
    font-weight: 700;
    line-height: 24px;

    margin-top: 25px;

    letter-spacing: .025em;
}

.rate .stars {
    position: relative;

    display: flex;
    overflow: hidden;
    flex-direction: row-reverse;

    width: 100%;
    height: 11px;
    margin-top: 4px;

    justify-content: flex-end;
}

.rate .stars .rating-0 {
    filter: grayscale(100%);
}

.rate .stars>input {
    display: none;
}

.rate .stars>label {
    width: 12px;
    height: 11px;
    margin-top: auto;

    cursor: pointer;

    background: url('../images/ic_star.png') 0 0 no-repeat;
}

.rate .stars>label~label {
    margin-right: 4px;
}

.rate .stars>input:checked~label,
.rate .stars>input:checked~label~label,
.rate .stars>input:not(:checked)~label:hover,
.rate .stars>input:not(:checked)~label:hover~label {
    background-position: 0 100%;
}



.strategies .flex {
    margin-bottom: -29px;
    margin-left: -29px;

    align-items: stretch;
    align-content: stretch;
}

.strategies .flex>* {
    width: calc(50% - 29px);
    margin-bottom: 29px;
    margin-left: 29px;
}


.strategies .item {
    position: relative;

    display: block;

    transition: box-shadow .2s linear;
    text-decoration: none;

    border-bottom: 3px solid #e54045;
    background: #fff;
}

.strategies .item .thumb {
    position: relative;

    overflow: hidden;

    padding-bottom: 51.5%;

    background: #ddd;
}

.strategies .item .thumb:after {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    content: '';

    opacity: .6;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.strategies .item .thumb img {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.strategies .item .name {
    color: #fff;
    font-size: 16px;
    line-height: 20px;

    position: absolute;
    z-index: 5;
    bottom: 0;
    left: 0;

    width: 100%;
    padding: 12px 15px;

    letter-spacing: .025em;
}

.strategies .item:hover {
    box-shadow: 0 2px 40px 0 rgba(9, 19, 74, .31);
}



.cappers {
    padding: 40px 37px;

    background: #fff;
}

.cappers .flex {
    margin-bottom: -42px;
    margin-left: -27px;
}

.cappers .flex>* {
    width: calc(20% - 27px);
    margin-bottom: 42px;
    margin-left: 27px;
}


.cappers .item {
    color: #a2a2a2;
    font-size: 12px;
    font-weight: 700;
    line-height: 14px;

    display: block;

    transition: color .2s linear;
    text-decoration: none;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.cappers .item .foto {
    position: relative;

    width: 84px;
    height: 85px;
    padding: 4px;

    transition: box-shadow .2s linear;

    border-radius: 21px;
    background: #2e3e9c;
}

.cappers .item .foto>img {
    display: block;

    width: 100%;
    height: 100%;

    border-radius: 20px;

    object-fit: cover;
}

.cappers .item .sport {
    position: absolute;
    right: -5px;
    bottom: -10px;

    width: 38px;
    height: 38px;
}

.cappers .item .sport img {
    display: block;

    max-width: 100%;
    max-height: 100%;
}

.cappers .item .name {
    margin-top: 12px;
}

.cappers .item:hover {
    color: #2e3e9c;
}

.cappers .item:hover .foto {
    box-shadow: 0 11px 24px rgba(7, 23, 116, .6);
}



.sports .flex {
    margin-bottom: -14px;
    margin-left: -20px;

    align-items: stretch;
    align-content: stretch;
}

.sports .flex>* {
    width: calc(16.666% - 20px);
    margin-bottom: 14px;
    margin-left: 20px;
}


.sports .item {
    color: #808080;
    font-size: 12px;
    line-height: 14px;

    display: block;

    padding: 5px;

    transition: .2s linear;
    text-align: center;
    text-decoration: none;
    letter-spacing: .025em;

    background: #fff;
}

.sports .item>*+* {
    margin-top: 5px;
}

.sports .item .icon {
    display: flex;

    height: 47px;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.sports .item .icon1 {
    width: 41px;
    height: 41px;

    background: url(../images/ic_sport1.png) 0 0 no-repeat;
}

.sports .item .icon2 {
    width: 35px;
    height: 35px;

    background: url(../images/ic_sport2.png) 0 0 no-repeat;
}

.sports .item .icon3 {
    width: 39px;
    height: 39px;

    background: url(../images/ic_sport3.png) 0 0 no-repeat;
}

.sports .item .icon4 {
    width: 40px;
    height: 40px;

    background: url(../images/ic_sport4.png) 0 0 no-repeat;
}

.sports .item .icon5 {
    width: 51px;
    height: 30px;

    background: url(../images/ic_sport5.png) 0 0 no-repeat;
}

.sports .item .icon6 {
    width: 36px;
    height: 36px;

    background: url(../images/ic_sport6.png) 0 0 no-repeat;
}

.sports .item .icon7 {
    width: 39px;
    height: 39px;

    background: url(../images/ic_sport7.png) 0 0 no-repeat;
}

.sports .item .icon8 {
    width: 75px;
    height: 39px;

    background: url(../images/ic_sport8.png) 0 0 no-repeat;
}

.sports .item .icon9 {
    width: 69px;
    height: 25px;

    background: url(../images/ic_sport9.png) 0 0 no-repeat;
}

.sports .item .icon10 {
    width: 48px;
    height: 41px;

    background: url(../images/ic_sport10.png) 0 0 no-repeat;
}

.sports .item .icon11 {
    width: 41px;
    height: 41px;

    background: url(../images/ic_sport11.png) 0 0 no-repeat;
}

.sports .item .icon12 {
    width: 38px;
    height: 38px;

    background: url(../images/ic_sport12.png) 0 0 no-repeat;
}

.sports .item .name {
    color: #555;
    font-weight: 700;

    text-transform: uppercase;
}

.sports .item:hover,
.sports .item.active {
    color: #fff;

    background: #e54045;
}

.sports .item:hover .name,
.sports .item.active .name {
    color: #fff;
}

.sports .item:hover .icon>*,
.sports .item.active .icon>* {
    background-position: 0 100%;
}



.cappers_rating .table_head {
    padding: 15px 20px;

    background: #fff;
}

.cappers_rating .table_head .title {
    color: #474747;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;

    letter-spacing: .025em;
    text-transform: uppercase;
}


.cappers_rating .table_wrap {
    overflow: auto;

    max-width: 100%;
    margin: -25px 0 -10px;
}

.cappers_rating table {
    width: 100%;

    border-spacing: 0 25px;
    border-collapse: separate;
}

.cappers_rating table th {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;

    height: 50px;
    padding: 10px 0;

    text-align: center;
    letter-spacing: .025em;
    text-transform: uppercase;

    background: #243483;
}

.cappers_rating table td {
    text-align: center;
    vertical-align: middle;

    background: #fff;
}

.cappers_rating table th+th,
.cappers_rating table td+td {
    padding-left: 15px;
}


.cappers_rating table td.number {
    color: #fff;
    font-size: 16px;
    font-weight: 700;

    width: 27px;
    min-width: 27px;
    padding: 5px 0;

    table-layout: fixed;

    letter-spacing: .025em;

    background: #ff8e32;
}


.cappers_rating table td.logo {
    width: 98px;
    min-width: 98px;
    padding: 5px 10px;

    table-layout: fixed;

    background: #000;
}

.cappers_rating table td.logo a {
    display: inline-block;

    vertical-align: middle;
}

.cappers_rating table td.logo img {
    display: block;

    max-width: 100%;
    max-height: 39px;
}


.cappers_rating table td.sport>* {
    color: #555;
    font-size: 12px;
    font-weight: 700;

    display: flex;

    letter-spacing: .025em;
    text-transform: uppercase;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}

.cappers_rating table td.sport .icon {
    margin-right: 10px;
}

.cappers_rating table td.sport .icon1 {
    width: 24px;
    height: 24px;

    background: url(../images/ic_sport1_2.png) 0 0/100% 200% no-repeat;
}

.cappers_rating table td.sport .icon2 {
    width: 23px;
    height: 23px;

    background: url(../images/ic_sport2_2.png) 0 0/100% 200% no-repeat;
}

.cappers_rating table td.sport .icon3 {
    width: 24px;
    height: 23px;

    background: url(../images/ic_sport3_2.png) 0 0/100% 200% no-repeat;
}

.cappers_rating table td.sport .icon4 {
    width: 24px;
    height: 24px;

    background: url(../images/ic_sport4_2.png) 0 0/100% 200% no-repeat;
}

.cappers_rating table td.sport .icon5 {
    width: 26px;
    height: 15px;

    background: url(../images/ic_sport5_2.png) 0 0/100% 200% no-repeat;
}

.cappers_rating table td.sport .icon6 {
    width: 25px;
    height: 25px;

    background: url(../images/ic_sport6_2.png) 0 0/100% 200% no-repeat;
}

.cappers_rating table td.sport .icon7 {
    width: 26px;
    height: 26px;

    background: url(../images/ic_sport7_2.png) 0 0/100% 200% no-repeat;
}

.cappers_rating table td.sport .icon8 {
    width: 30px;
    height: 18px;

    background: url(../images/ic_sport8_2.png) 0 0/100% 200% no-repeat;
}

.cappers_rating table td.sport .icon9 {
    width: 37px;
    height: 13px;

    background: url(../images/ic_sport9_2.png) 0 0/100% 200% no-repeat;
}

.cappers_rating table td.sport .icon10 {
    width: 32px;
    height: 28px;

    background: url(../images/ic_sport10_2.png) 0 0/100% 200% no-repeat;
}

.cappers_rating table td.sport .icon11 {
    width: 24px;
    height: 24px;

    background: url(../images/ic_sport11_2.png) 0 0/100% 200% no-repeat;
}

.cappers_rating table td.sport .icon12 {
    width: 21px;
    height: 21px;

    background: url(../images/ic_sport12_2.png) 0 0/100% 200% no-repeat;
}


.cappers_rating table td.rating {
    padding-top: 5px;
    padding-bottom: 5px;
}

.cappers_rating table td.rating>div {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 33px;

    width: 33px;
    height: 33px;
    margin: 0 auto;

    letter-spacing: .025em;
    text-transform: uppercase;

    border-radius: 50%;
    background: #e54045;
}


.cappers_rating table td.coefficient {
    color: #555;
    font-size: 12px;
    font-weight: 700;

    padding-top: 5px;
    padding-bottom: 5px;

    letter-spacing: .025em;
    text-transform: uppercase;
}


.cappers_rating table td.check {
    font-size: 12px;
    font-weight: 700;
    line-height: 33px;

    padding-top: 5px;
    padding-bottom: 5px;

    letter-spacing: .025em;
    text-transform: uppercase;
}

.cappers_rating table td.check>* {
    position: relative;

    padding-left: 38px;
}

.cappers_rating table td.check>*:before {
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 33px;
    height: 33px;

    content: '';

    border-radius: 50%;
    background-image: url(../images/ic_check.png);
    background-repeat: no-repeat;
    background-position: 50%;
}

.cappers_rating table td.check .green {
    color: #409200;
}

.cappers_rating table td.check .green:before {
    background-color: #83c550;
}


.cappers_rating table td.comments {
    color: #474747;
    font-size: 12px;

    padding-top: 5px;
    padding-bottom: 5px;

    text-align: center;
    letter-spacing: .025em;
}

.cappers_rating table td.comments>* {
    line-height: 23px;

    display: inline-block;

    height: 21px;
    padding-left: 29px;

    vertical-align: top;

    background: url(../images/ic_comments.png) 0 50% no-repeat;
}


.cappers_rating table td.actions {
    width: 101px;
    min-width: 101px;

    table-layout: fixed;
}

.cappers_rating table td.actions a {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 41px;

    display: inline-block;

    width: 100%;
    height: 41px;

    transition: .2s linear;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: .025em;
    text-transform: uppercase;

    border-bottom: 3px solid transparent;
}

.cappers_rating table td.actions a.red {
    border-color: #b01115;
    background: #e54045;
}

.cappers_rating table td.actions a.blue {
    border-color: #101d65;
    background: #2e3e9c;
}

.cappers_rating table td.actions a.red:hover {
    border-color: #c81419;
    background: #b01115;
}

.cappers_rating table td.actions a.blue:hover {
    border-color: #132692;
    background: #101d65;
}


.forecast_info {
    padding: 20px 20px 30px;

    background: #fff;
}


.forecast_info .head {
    position: relative;

    overflow: hidden;

    margin: -20px -20px 0;
    padding-bottom: 61.5%;

    background: #ddd;
}

.forecast_info .head img {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.forecast_info .head .info {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 28px;

    position: absolute;
    z-index: 5;
    bottom: 0;
    left: 0;

    display: flex;

    width: 100%;
    padding: 8px 16px;

    letter-spacing: .025em;

    background: rgba(0, 0, 0, .8);

    justify-content: flex-end;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.forecast_info .head .info>*+* {
    margin-left: 20px;
}

.forecast_info .head .date,
.forecast_info .head .time {
    position: relative;
    z-index: 5;

    padding-left: 43px;
}

.forecast_info .head .date:before,
.forecast_info .head .time:before,
.forecast_info .head .date:after,
.forecast_info .head .time:after {
    position: absolute;
    z-index: -2;
    top: 0;
    bottom: 0;
    left: 5px;

    display: block;

    width: 29px;
    height: 29px;
    margin: auto;

    content: '';

    border-radius: 50%;
    background: #c81419;
}

.forecast_info .head .date:after,
.forecast_info .head .time:after {
    z-index: -1;
}

.forecast_info .head .date:after {
    background: url(../images/ic_date.png) 50% no-repeat;
}

.forecast_info .head .time:after {
    background: url(../images/ic_time.svg) 50% no-repeat;
}



.forecast_info .capper {
    display: flex;

    margin-top: 20px;
    padding: 0 30px;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.forecast_info .capper .foto {
    position: relative;

    width: 84px;
    height: 85px;
    padding: 4px;

    transition: box-shadow .2s linear;

    border-radius: 21px;
    background: #2e3e9c;
}

.forecast_info .capper .foto>img {
    display: block;

    width: 100%;
    height: 100%;

    border-radius: 20px;

    object-fit: cover;
}

.forecast_info .capper .sport {
    position: absolute;
    right: -5px;
    bottom: -10px;

    display: flex;

    width: 37px;
    height: 37px;
    padding: 5px;

    border-radius: 50%;
    background: #f1901c;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.forecast_info .capper .sport img {
    display: block;

    max-width: 100%;
    max-height: 100%;
}

.forecast_info .capper .desc {
    color: #898989;
    font-size: 14px;
    font-style: italic;
    line-height: 18px;

    width: calc(100% - 110px);

    letter-spacing: .025em;

    align-self: center;
}

.forecast_info .capper .desc a {
    color: #243483;
    font-weight: 700;
    font-style: normal;
}

.forecast_info .capper .desc a:hover {
    text-decoration: none;
}



.forecast_info .bet {
    margin-top: 39px;
    padding: 15px 11px;

    background: #f1f1f1;
}

.forecast_info .bet .item {
    display: flex;

    background: #fff;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.forecast_info .bet .item+.item {
    margin-top: 18px;
}

.forecast_info .bet .type {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;

    width: 135px;

    text-align: center;
    letter-spacing: .025em;
    text-transform: uppercase;

    border-right: 1px solid #d1d1d1;
}

.forecast_info .bet .coefficient {
    color: #555;
    font-size: 14px;
    line-height: 26px;

    width: calc(100% - 435px);

    text-align: center;
    letter-spacing: .025em;
}

.forecast_info .bet .coefficient b {
    color: #000;
    font-size: 18px;

    margin-left: 6px;
}

.forecast_info .bet .link {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 38px;

    display: inline-block;

    width: 143px;
    height: 38px;

    transition: .2s linear;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: .025em;
    text-transform: uppercase;

    border-bottom: 3px solid #b01115;
    background: #e54045;
}

.forecast_info .bet .link:hover {
    border-color: #c81419;
    background: #b01115;
}

.forecast_info .bet .logo {
    display: flex;

    width: 157px;
    min-height: 38px;
    padding: 5px 15px;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.forecast_info .bet .logo a {
    display: block;
}

.forecast_info .bet .logo img {
    display: block;

    max-width: 100%;
    max-height: 28px;
}



.forecast_info .promocode {
    margin-top: 45px;
}

.forecast_info .promocode .data {
    display: flex;

    padding: 0 28px 0 19px;

    background: #3948a1 url(../images/bg_promocode.jpg) 50%/cover no-repeat;
    box-shadow: 0 2px 43px 0 rgba(194, 192, 192, .65);

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.forecast_info .promocode .logo {
    position: relative;

    display: flex;

    width: 156px;
    height: 125px;
    padding: 15px;

    text-decoration: none;

    background: #fff;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.forecast_info .promocode .logo:after {
    position: absolute;
    top: 0;
    right: 6px;

    display: block;

    width: 1px;
    height: 100%;

    content: '';

    border-right: 1px dashed #9aa2cf;
}

.forecast_info .promocode .logo img {
    display: block;

    max-width: 100%;
    max-height: 100%;
}

.forecast_info .promocode .price {
    color: #fff;
    font-size: 36px;
    font-weight: 700;

    text-align: center;
    white-space: nowrap;
    letter-spacing: .025em;
    text-transform: uppercase;
}

.forecast_info .promocode .code {
    color: #6f6f6f;
    font-size: 18px;
    font-weight: 700;
    line-height: 38px;

    width: 100%;
    min-width: 135px;
    height: 44px;

    text-align: center;
    letter-spacing: .025em;

    border: 3px solid #d9d9d9;
    border-radius: 3px;
    background: #fff;
}

.forecast_info .promocode .price+.code {
    margin-top: 5px;
}

.forecast_info .promocode .copy_link {
    color: #fff;
    font-family: var(--font_family);
    font-size: 18px;
    font-weight: 700;
    line-height: 73px;

    display: inline-block;

    height: 76px;
    padding: 0 17px;

    cursor: pointer;
    vertical-align: top;
    letter-spacing: .025em;
    text-transform: uppercase;

    border: none;
    border-bottom: 3px solid #7c4400;
    border-radius: 3px;
    background: -moz-linear-gradient(top, #ff9f00 0%, #ff7800 100%);
    background: -webkit-linear-gradient(top, #ff9f00 0%, #ff7800 100%);
    background: linear-gradient(to bottom, #ff9f00 0%, #ff7800 100%);
}



.forecast_info .text_block {
    font-size: 16px;

    margin-top: 45px;
    padding-left: 45px;
}



.comments {
    padding: 20px;

    background: #fff;
}

.comments .block_title {
    color: #808080;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;

    margin-bottom: 15px;

    letter-spacing: .025em;
    text-transform: uppercase;
}


.comments .comment {
    display: block;

    padding-left: 12px;

    list-style-type: none;
}

.comments .comment+.comment {
    margin-top: 20px;
}

.comments .comment .comment-body {
    position: relative;

    min-height: 46px;
    padding-top: 10px;
    padding-left: 60px;
}

.comments .children {
    margin-top: 20px;
    padding-left: 44px;
}


.comments .comment .avatar {
    position: absolute;
    top: 0;
    left: 0;

    overflow: hidden;

    width: 46px;
    height: 46px;
    padding: 3px;

    border-radius: 50%;
    background: #2e3e9c;
}

.comments .comment .avatar img {
    display: block;

    width: 100%;
    height: 100%;

    border-radius: 50%;

    object-fit: cover;
}


.comments .comment .name {
    color: #2e3e9c;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
}

.comments .comment .date {
    color: #898989;
    font-size: 12px;
    line-height: 18px;
}

.comments .comment .text_block {
    color: #898989;
    font-size: 14px;
    line-height: 24px;

    margin-top: 10px;
}

.comments .comment-reply-link {
    color: #2e3e9c;
    font-family: var(--font_family);
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;

    position: absolute;
    top: 10px;
    right: 0;

    display: inline-block;

    cursor: pointer;
    vertical-align: top;
    text-transform: uppercase;

    border: none;
    background: none;
}


.comment-respond {
    margin-top: 45px;
}

.comment-respond form {
    padding: 14px 18px;

    background: #ececec;
}



.bookmakers_rating .text_block {
    color: #000;
    font-size: 16px;
    line-height: 24px;

    padding: 30px 20px;

    background: #fff;
}


.bookmakers_rating .they_offer {
    padding: 5px 20px 30px;

    background: #fff;
}

.bookmakers_rating .they_offer .flex {
    margin-bottom: -30px;
    margin-left: -20px;
}

.bookmakers_rating .they_offer .flex>* {
    width: calc(25% - 20px);
    margin-bottom: 30px;
    margin-left: 20px;
}

.bookmakers_rating .they_offer .item {
    color: #555;
    font-size: 15px;
    line-height: 17px;

    text-align: center;
}

.bookmakers_rating .they_offer .icon {
    display: flex;

    width: 73px;
    height: 73px;
    margin: 0 auto 15px;

    border: 2px solid #e54045;
    border-radius: 50%;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.bookmakers_rating .they_offer .icon img {
    display: block;

    max-width: 100%;
    max-height: 100%;
}


.bookmakers_rating .best .block_head {
    margin-bottom: 0;
    padding: 20px 20px 30px;

    background: #fff;
}


.bookmakers_rating .table_wrap {
    overflow: auto;

    width: 100%;
    margin: -8px 0;
}

.bookmakers_rating table {
    width: 100%;

    border-spacing: 0 8px;
    border-collapse: separate;
}

.bookmakers_rating table th {
    color: #aeaeae;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;

    padding: 10px 0;

    text-align: center;
    letter-spacing: .025em;
    text-transform: uppercase;

    background: #fff;
}

.bookmakers_rating table td {
    text-align: center;
    vertical-align: middle;

    background: #fff;
}

.bookmakers_rating table th+th,
.bookmakers_rating table td+td {
    padding-left: 10px;
}


.bookmakers_rating table td.number {
    color: #a2a2a2;
    font-size: 15px;
    font-weight: 700;
    line-height: 24px;

    width: 46px;
    min-width: 46px;
    padding: 5px 10px;

    table-layout: fixed;

    letter-spacing: .025em;

    border-right: 1px solid #e2e3ea;
}


.bookmakers_rating table td.logo {
    width: 125px;
    min-width: 125px;
    padding: 0 15px;

    table-layout: fixed;
}

.bookmakers_rating table td.logo a {
    display: inline-block;

    vertical-align: middle;
}

.bookmakers_rating table td.logo img {
    display: block;

    max-width: 100%;
    max-height: 39px;
}


.bookmakers_rating table td.bonus {
    color: #383838;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;

    padding-top: 5px;
    padding-bottom: 5px;

    white-space: nowrap;
    letter-spacing: .025em;
    text-transform: uppercase;
}


.bookmakers_rating table td.rating {
    color: #7c7c7c;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;

    padding-top: 5px;
    padding-bottom: 5px;

    white-space: nowrap;
    letter-spacing: .025em;
}


.bookmakers_rating table td.comments {
    color: #474747;
    font-size: 12px;

    padding-top: 5px;
    padding-bottom: 5px;

    text-align: center;
    letter-spacing: .025em;
}

.bookmakers_rating table td.comments>* {
    line-height: 23px;

    display: inline-block;

    height: 21px;
    padding-left: 29px;

    vertical-align: top;

    background: url(../images/ic_comments.png) 0 50% no-repeat;
}


.bookmakers_rating table td.actions {
    width: 228px;
    min-width: 228px;

    table-layout: fixed;
}

.bookmakers_rating table td.actions a {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 41px;

    display: inline-block;

    width: 107px;
    height: 41px;

    transition: .2s linear;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: .025em;
    text-transform: uppercase;

    border-bottom: 3px solid transparent;
}

.bookmakers_rating table td.actions a.red {
    border-color: #b01115;
    background: #e54045;
}

.bookmakers_rating table td.actions a.blue {
    border-color: #101d65;
    background: #2e3e9c;
}

.bookmakers_rating table td.actions a.red:hover {
    border-color: #c81419;
    background: #b01115;
}

.bookmakers_rating table td.actions a.blue:hover {
    border-color: #132692;
    background: #101d65;
}


.bookmakers_rating .goal {
    margin-top: 50px;
}



.capper_info {
    padding: 30px 20px;

    background: #fff;
}



.capper_info .data {
    display: flex;

    padding: 0 56px 0 42px;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}


.capper_info .person {
    width: 170px;
    max-width: 100%;
    padding-top: 43px;

    text-align: center;
}

.capper_info .person .foto {
    width: 122px;
    height: 122px;
    margin: 0 auto 21px;

    border-radius: 20px;
    background: #ddd;
}

.capper_info .person .foto img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.capper_info .person .name {
    color: #132692;
    font-size: 24px;
    font-weight: 700;
    line-height: 26px;

    letter-spacing: .025em;
}

.capper_info .person .sport {
    color: #aeaeae;
    font-size: 14px;
    line-height: 16px;

    margin-top: 5px;

    letter-spacing: .025em;
}


.capper_info .stats {
    width: 360px;
    max-width: 100%;
}


.capper_info .stats .period {
    margin-bottom: 18px;
}

.capper_info .stats select {
    display: none;
}

.capper_info .stats .nice-select {
    position: relative;

    display: inline-block;

    vertical-align: top;
}

.capper_info .stats .nice-select .current {
    color: #a2a2a2;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;

    position: relative;

    display: block;
    overflow: hidden;

    height: 25px;
    padding: 0 20px 0 0;

    cursor: pointer;
    transition: .2s linear;
    white-space: nowrap;
    text-overflow: ellipsis;

    border-bottom: 1px solid #d9d9d9;
}

.capper_info .stats .nice-select .current:after {
    position: absolute;
    top: -2px;
    right: 0;
    bottom: 0;

    display: block;

    width: 8px;
    height: 6px;
    margin: auto;

    content: '';

    border-top: 6px solid #a2a2a2;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.capper_info .stats .nice-select .list {
    position: absolute;
    z-index: 9;
    top: calc(100% + 30px);
    left: 0;

    visibility: hidden;
    overflow: hidden;

    min-width: 100%;
    padding: 5px 0;

    transition: .2s linear;

    opacity: 0;
    border: 1px solid #d9d9d9;
    background: #fff;
}

.capper_info .stats .nice-select.open .list {
    top: calc(100% - 1px);

    visibility: visible;

    opacity: 1;
}

.capper_info .stats .nice-select .list .scrollbar {
    overflow: auto;

    max-height: 240px;
}

.capper_info .stats .nice-select .list .list_item {
    color: #a2a2a2;
    font-size: 15px;
    font-weight: 700;
    line-height: 19px;

    padding: 5px 15px;

    cursor: pointer;
    transition: .2s linear;
    white-space: nowrap;
}

.capper_info .stats .nice-select .list .list_item:empty {
    display: none;
}

.capper_info .stats .flex.active {
    display: flex;
}

.capper_info .stats .flex {
    margin-bottom: -22px;
    margin-left: -22px;
    display: none;
    align-items: stretch;
    align-content: stretch;
}

.capper_info .stats .flex>* {
    width: calc(33.333% - 22px);
    margin-bottom: 22px;
    margin-left: 22px;
}

.capper_info .stats .item {
    color: #808080;
    font-size: 12px;
    line-height: 16px;

    padding: 10px 15px 15px;

    text-align: center;
    letter-spacing: .025em;

    border-radius: 3px;
    background: #f1f1f1;
}

.capper_info .stats .item .val {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
}

.capper_info .stats .item .rate-circle-back {
    color: #fff;
}

.capper_info .stats .item .rate-circle-front,
.capper_info .stats .item .rate-circle-value {
    color: #808080 !important;
}

.capper_info .stats .item .green,
.capper_info .stats .item .green .rate-circle-front,
.capper_info .stats .item .green .rate-circle-value {
    color: #43b26f !important;
}

.capper_info .stats .item .red,
.capper_info .stats .item .red .rate-circle-front,
.capper_info .stats .item .red .rate-circle-value {
    color: #d65a5a !important;
}

.capper_info .stats .item .percents {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;

    position: relative;
    z-index: 5;

    display: flex;

    width: 71px;
    height: 71px;
    margin: 0 auto 20px;

    text-align: center;
    white-space: nowrap;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.capper_info .stats .item .percents small {
    font-size: 16px;
}

.capper_info .stats .item .param+.param {
    position: relative;

    margin-top: 10px;
    padding-top: 11px;
}

.capper_info .stats .item .param+.param:before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;

    display: block;

    width: 65px;
    height: 1px;
    margin: auto;

    content: '';

    background: #d1d1d1;
}


.capper_info .description {
    color: #898989;
    font-size: 14px;

    margin-top: 40px;
    padding-left: 42px;

    letter-spacing: .025em;
}


.capper_info .history {
    margin-top: 50px;
}

.capper_info .history .price {
    color: #555;
    font-size: 14px;
    font-weight: 700;

    position: relative;

    display: flex;

    min-height: 37px;
    margin-bottom: 6px;
    padding-left: 52px;

    text-transform: uppercase;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.capper_info .history .price:before {
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 37px;
    height: 37px;

    content: '';

    background: #ff8e32 url(../images/ic_bet_price.svg) 50% no-repeat;
}

.capper_info .history .price span {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 31px;

    position: relative;

    display: inline-block;

    height: 31px;
    margin-left: 14px;
    padding: 0 17px;

    vertical-align: top;
    white-space: nowrap;
    text-transform: none;

    border-radius: 2px;
    background: #ff8e32;
}

.capper_info .history .price small {
    font-size: 14px;
}

.capper_info .history .price span:before {
    position: absolute;
    top: 0;
    right: 100%;
    bottom: 0;

    display: block;

    width: 6px;
    height: 12px;
    margin: auto;

    content: '';

    border-top: 6px solid transparent;
    border-right: 6px solid #ff8e32;
    border-bottom: 6px solid transparent;
}


.capper_info .history .table_wrap {
    overflow: auto;

    max-width: 100%;
}

.capper_info .history table {
    width: 100%;

    border-spacing: 0;
    border-collapse: collapse;
}

.capper_info .history table th {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;

    height: 39px;
    padding: 10px 0;

    text-align: left;
    letter-spacing: .025em;
    text-transform: uppercase;

    background: #243483;
}

.capper_info .history table td {
    padding: 10px 0;

    text-align: left;
    vertical-align: middle;

    border-bottom: 2px solid #dadada;
}

.capper_info .history table th,
.capper_info .history table td {
    padding-left: 25px;
}

.capper_info .history table th:last-child,
.capper_info .history table td:last-child {
    padding-right: 25px;
}

.capper_info .history table td.event .name a {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-decoration: none;
}

.capper_info .history table td.event .name {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

.capper_info .history table td.event .date,
.capper_info .history table td.event .time {
    color: #898989;
    font-size: 11px;
    line-height: 16px;

    display: inline-block;

    margin-top: 3px;
    margin-right: 10px;

    vertical-align: top;
    white-space: nowrap;
}

.capper_info .history table td.event .date span,
.capper_info .history table td.event .time span {
    color: #383838;
    font-size: 14px;
}

.capper_info .history table td.forecast {
    color: #898989;
    font-size: 11px;
    line-height: 13px;
}

.capper_info .history table td.forecast b {
    color: #383838;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;

    display: block;
}

.capper_info .history table td.result {
    color: #555;
    font-size: 14px;
    line-height: 24px;

    white-space: nowrap;
}

.capper_info .history table td.result .val {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 44px;

    display: inline-block;

    width: 44px;
    height: 44px;
    margin-right: 11px;

    text-align: center;
    vertical-align: middle;

    border-radius: 50%;
    background: #ddd;
}

.capper_info .history table td.result .val.red {
    background: #c81419;
}

.capper_info .history table td.result .val.green {
    background: #43b26f;
}

.capper_info .history table .center {
    text-align: center;
}



.rating_goal {
    padding: 30px 20px;

    background: #fff;
}

.rating_goal .block_title {
    color: #474747;
    font-size: 30px;
    font-weight: 700;
    line-height: 34px;

    margin-bottom: 20px;

    letter-spacing: .025em;
}



.all {
    margin-top: 40px;
}

.all a {
    color: #474747;
    font-weight: 700;

    display: flex;

    min-height: 43px;
    padding: 10px 15px;

    transition: border-color .2s linear;
    text-align: center;
    text-decoration: none;
    letter-spacing: .05em;
    text-transform: uppercase;

    border: 2px solid #dedcdc;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.all a span {
    position: relative;

    display: inline-block;

    padding-right: 17px;

    vertical-align: top;
}

.all a span:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;

    display: block;

    width: 10px;
    height: 2px;
    margin: auto;

    content: '';
    transition: background .2s linear;

    background: #adadad;
}

.all a span:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;

    display: block;

    width: 8px;
    height: 8px;
    margin: auto;

    content: '';
    transition: border-color .2s linear;
    transform: rotate(-45deg);

    border-right: 2px solid #adadad;
    border-bottom: 2px solid #adadad;
}

.all a:hover,
.all a:hover span:after {
    border-color: #e54045;
}

.all a:hover span:before {
    background: #e54045;
}



.load_more {
    margin-top: 10px;
}

.load_more button {
    color: #474747;
    font-family: var(--font_family);
    font-weight: 700;

    display: flex;

    width: 100%;
    min-height: 43px;
    padding: 10px 15px;

    cursor: pointer;
    transition: border-color .2s linear;
    letter-spacing: .05em;
    text-transform: uppercase;

    border: 2px solid #dedcdc;
    background: none;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.load_more button span {
    position: relative;

    display: inline-block;

    padding-right: 17px;

    vertical-align: top;
}

.load_more button span:before {
    position: absolute;
    top: 0;
    right: 4px;
    bottom: 0;

    display: block;

    width: 2px;
    height: 10px;
    margin: auto;

    content: '';
    transition: background .2s linear;

    background: #adadad;
}

.load_more button span:after {
    position: absolute;
    top: 0;
    right: 1px;
    bottom: 0;

    display: block;

    width: 8px;
    height: 8px;
    margin: auto;

    content: '';
    transition: border-color .2s linear;
    transform: rotate(-45deg);

    border-bottom: 2px solid #adadad;
    border-left: 2px solid #adadad;
}

.load_more button:hover,
.load_more button:hover span:after {
    border-color: #e54045;
}

.load_more button:hover span:before {
    background: #e54045;
}



/*---------------
   Footer
---------------*/
footer {
    background: #2e3e9c;

    flex: 0 0 auto;
}


footer .info {
    padding: 40px 0;
}

footer .info .cont.flex {
    justify-content: space-between;
}


footer .bottom {
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
    line-height: 18px;

    letter-spacing: .025em;
}

footer .bottom .cont {
    position: relative;

    padding-top: 20px;
    padding-bottom: 19px;

    align-items: center;
    align-content: center;
}

footer .bottom .cont:after {
    position: absolute;
    top: 0;
    left: 20px;

    display: block;

    width: calc(100% - 40px);
    height: 1px;

    content: '';

    opacity: .3;
    background: #fff;
}

footer .bottom a {
    color: rgba(255, 255, 255, .5);

    transition: color .2s linear;
}

footer .bottom a:hover {
    color: #fff;

    text-decoration: none;
}



footer .col_left {
    width: 340px;
    max-width: 100%;
}



footer .logo {
    color: #fff;
    font-family: var(--font_family2);
    font-size: 22px;
    font-weight: 700;
    line-height: 24px;

    display: flex;

    min-height: 39px;
    padding-left: 62px;

    text-decoration: none;
    text-transform: uppercase;

    background: url(../images/logo2.png) 2px 50% no-repeat;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


footer .slogan {
    color: #fff;
    font-size: 14px;
    line-height: 18px;

    margin-top: 10px;
    padding-top: 10px;

    letter-spacing: .025em;

    border-top: 1px solid rgba(255, 255, 255, .3);
}



footer .age {
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
    line-height: 26px;

    margin-top: 25px;

    letter-spacing: .025em;
}

footer .age span {
    display: inline-block;

    height: 26px;
    padding: 0 4px;

    vertical-align: middle;

    border-radius: 50%;
    background: #ec403c;
}



footer .menu {
    list-style: none;
    column-gap: 60px;
    column-count: 2;
}

footer .menu>* {
    transform: translateZ(0);

    --webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
}

footer .menu>*+* {
    margin-top: 7px;
}

footer .menu a {
    color: #fff;
    font-size: 14px;
    line-height: 18px;

    display: inline-block;

    transition: color .2s linear;
    vertical-align: top;
    text-decoration: none;
    letter-spacing: .025em;
}

footer .menu a:hover,
footer .menu a.active {
    color: #979fce;
}



footer .socials {
    color: #fff;
    font-size: 14px;
    line-height: 24px;

    letter-spacing: .025em;
}

footer .socials>*+* {
    margin-top: 15px;
}

footer .socials a {
    display: block;

    transition: opacity .2s linear;

    opacity: .5;
}

footer .socials a+a {
    margin-left: 13px;
}

footer .socials img {
    display: block;
}

footer .socials a:hover {
    opacity: 1;
}



footer .privacy_policy {
    margin-left: 10px;
}



/*---------------
   PopUp
---------------*/
.modal {
    display: none;
    visibility: visible !important;

    width: 480px;
    max-width: 100%;
    padding: 40px 50px;

    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

.modal_title {
    font-size: var(--font_size_title);
    font-weight: 700;
    line-height: normal;

    text-align: center;
}

.modal_desc {
    margin-top: 25px;

    text-align: center;
}




.list_bonuse.bonuses .flex {
    margin-bottom: -20px;
    margin-left: -20px;

    align-items: stretch;
    align-content: stretch;
}

.list_bonuse.bonuses .flex>* {
    width: calc(25% - 20px);
    margin-bottom: 20px;
    margin-left: 20px;
}

.list_bonuse.bonuses .flex>* {
    width: calc(33.333% - 20px);
}


.list_bonuse.bonuses .item {
    padding: 29px 28px;

    text-align: center;

    border-radius: 4px;
    background: #fff;
    box-shadow: 0 15px 30px 0 rgba(230, 230, 230, .46);
}

.list_bonuse.bonuses .item .logo {
    display: flex;

    height: 30px;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.list_bonuse.bonuses .item .logo {
    height: 49px;
}

.list_bonuse.bonuses .item .logo img {
    display: block;

    max-width: 100%;
    max-height: 100%;
}

.list_bonuse.bonuses .item .desc {
    font-size: 15px;
    font-weight: 600;

    margin-top: 15px;
}

.list_bonuse.bonuses .item .desc a {
    color: #e54045;
    font-weight: normal;

    display: inline-block;

    vertical-align: top;
}

.list_bonuse.bonuses .item .desc a:hover {
    text-decoration: none;
}

.list_bonuse.bonuses .item .bonus {
    font-weight: 800;

    display: flex;

    height: 82px;
    margin-top: 23px;

    background: url(../images/ic_bonus.png) 50% no-repeat;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.list_bonuse.bonuses .item .desc+.bonus {
    margin-top: 20px;
}

.list_bonuse.bonuses .item .bonus .val {
    font-size: 23px;

    width: 100%;
}

.list_bonuse.bonuses .item .stock {
    font-size: 15px;

    margin-top: 17px;
}

.list_bonuse.bonuses .item .link {
    color: #e54045;
    font-size: 15px;
    font-weight: 800;
    line-height: 46px;

    display: block;

    height: 50px;
    margin-top: 29px;
    padding: 0 20px;

    transition: .2s linear;
    text-align: center;
    text-decoration: none;

    border: 2px solid;
    border-radius: 4px;
}

.list_bonuse.bonuses .item .stock+.link {
    margin-top: 18px;
}

.list_bonuse.bonuses .item .link:hover {
    color: #fff;

    border-color: #e54045;
    background: #e54045;
    box-shadow: 0 5px 12px 0 rgba(229, 64, 69, .3);
}



.clipboard {
    margin-bottom: 1.6em;
}

.clipboard-block {
    display: inline-flex;
    align-items: center;
}

.clipboard-text {
    color: #5f497a;
    font-weight: bold;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.clipboard-btn .btn {
    cursor: pointer;
    width: 158px;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    -o-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
}

.clipboard-btn .btn-red {
    color: #fff;
    background-color: #f6151d;
    border-color: #f6151d;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
}

.btn-red:hover {
    color: #fff;
    background-color: #dc0810;
    border-color: #d0080f;
}

.clipboard-btn .btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.clipboard-btn .btn-success:hover {
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34;
}


a.knopka {
    color: #fff;
    text-decoration: none;
    user-select: none;
    background: #d44b38;
    padding: .7em 1.5em;
    outline: none;
}

a.knopka:hover {
    background: #e85f4c;
}

a.knopka:active {
    background: #980f00;
}



/*! CSS Used from: https://promo-bukmekerov.ru/wp-content/themes/raten2/css/styles.css?v=1587566089 */


.has-text-weight-bold {
    font-weight: 700 !important;
}

.tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.tags .tag {
    margin-bottom: .5rem;
}

.tags .tag:not(:last-child) {
    margin-right: .5rem;
}

.tags:not(:last-child) {
    margin-bottom: 1rem;
}

.tag:not(body) {
    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;
    border-radius: 4px;
    background-color: #f5f5f5;
    padding-right: .75em;
    padding-left: .75em;
    height: 2em;
    color: #000;
    font-size: .75rem;
    line-height: 1.5;
    white-space: nowrap;
}

.card {
    position: relative;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #fff;
    max-width: 100%;
    color: #000;
}

.card-content {
    background-color: transparent;
    padding: 1rem;
}

.level {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.level.is-mobile,
.level.is-mobile .level-left,
.level.is-mobile .level-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.level.is-mobile .level-left+.level-right {
    margin-top: 0;
}

@media print,
screen and (min-width:769px) {
    .level {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.level-left,
.level-right {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.level-left {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

@media screen and (max-width:768px) {
    .level-left+.level-right {
        margin-top: 1.5rem;
    }
}

@media print,
screen and (min-width:769px) {
    .level-left {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.level-right {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media print,
screen and (min-width:769px) {
    .level-right {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.button-code {
    font-weight: 500;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.button.button-3 {
    border-color: #c01;
    background-color: #c01;
    color: #fff;
    padding: 10px 20px;
}

.button.button-3:focus,
.button.button-3:hover {
    border-color: #900;
    background-color: #900;
    color: #fff;
}

.card {
    border-radius: 2px;
}

.card,
.card:focus,
.card:hover {
    text-decoration: none;
}

.card-secondary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #fffefe;
    font-size: .8125rem;
    line-height: 1.4;
}

.card-secondary .card-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1rem;
}

@media (max-width:599px) {
    .card-secondary .card-label {
        position: absolute;
        bottom: 0;
        left: 0;
    }
}

@media (min-width:600px) {
    .card-secondary .card-label {
        position: relative;
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 8.25rem;
    }

    .card-secondary .card-label:after {
        position: absolute;
        top: 1rem;
        right: 0;
        bottom: 1rem;
        border-left: 1px dotted #ccc;
        content: "";
    }
}

.card-secondary .card-label-content {
    font-weight: 500;
    text-align: center;
}

@media (max-width:599px) {
    .card-secondary .card-label-content .text-sm {
        display: none;
    }
}

.card-secondary .card-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 100%;
}

.card-secondary .card-text {
    margin-bottom: .5rem;
}

@media (max-width:599px) {
    .card-secondary .card-text {
        display: none;
    }
}

@media (max-width:599px) {
    .card-secondary .link:after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1;
        background-color: transparent;
        pointer-events: auto;
        content: "";
    }
}

@media (max-width:599px) {
    .card-secondary .level {
        font-size: .75rem;
    }
}

.card-secondary .tags:not(:last-child) {
    margin-bottom: .25rem;
}

@media (max-width:599px) {
    .card-secondary .tags:not(:last-child) {
        font-size: .75rem;
    }
}

.card-secondary .tag {
    margin-bottom: .25rem;
    background-color: transparent;
    height: 1.5em;
    font-size: inherit;
}

.card-secondary .tag:not(:last-child) {
    margin-right: .875rem;
}

.card-secondary .tag-check {
    background-color: #1a6;
    color: #fff;
}

.card-secondary .tag-feature {
    padding: 0;
    font-weight: 700;
}

.card-secondary .tag-time {
    margin-bottom: 0;
    padding: 0;
    height: auto;
    color: #727272;
}

@media (max-width:599px) {
    .card-secondary .tag-time {
        position: absolute;
        left: 46%;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 6.25rem;
        line-height: 1.25;
    }

    .card-secondary .tag-time .has-text-weight-bold {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        margin-left: 0 !important;
        width: 100%;
    }
}

@media (max-width:479px) {
    .card-secondary .tag-time {
        display: none;
    }
}

.card-secondary .button-code {
    font-size: .875rem;
}

@media (max-width:599px) {
    .card-secondary .button-code {
        border-color: transparent;
        background-color: transparent;
        padding-right: 0;
        padding-left: 0;
        min-width: 0;
        height: 2rem;
        color: #c01;
        font-size: .8125rem;
        font-weight: 700;
    }

    .card-secondary .button-code:before {
        content: none;
    }

    .card-secondary .button-code:after {
        content: "";
        position: static;
        margin-left: .375rem;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 768 768'%3E%3Cpath fill='%23c01' d='M157.56 744.891c-25.795-28.667-23.471-72.809 5.189-98.604l291.428-262.286-291.428-262.286c-28.661-25.795-30.985-69.941-5.189-98.602s69.94-30.985 98.601-5.189l349.09 314.181a69.817 69.817 0 0 1 0 103.79L256.16 750.077c-28.661 25.791-72.806 23.473-98.601-5.188z'/%3E%3C/svg%3E");
        width: 1em;
        height: 1em;
    }
}

.has-promocode .card-label,
.has-promocode .tag-feature {
    color: #f90;
}

.waves-effect {
    -webkit-tap-highlight-color: transparent;
    position: relative;
    overflow: hidden;
}

.ml-4 {
    margin-left: .25rem !important;
}

.card-secondary .card-label-content span svg {
    vertical-align: middle;
    width: 25px;
    height: 25px;
    font-size: inherit;
    fill: #2299ee;
    display: block;
    margin: 0 auto;
    text-align: center;
}

.card-secondary .card-label-content span svg.icon-gift.yellow {
    fill: #ff9900;
}

h3 .link {
    color: #000;
    font-size: 20px;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}

.button.button-3 {
    text-decoration: none;
}

.card-secondary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #f7f7f7;
    font-size: .8125rem;
    line-height: 1.4;
    box-shadow: 0px 0px 3px #33333347;
}

.bonus_new {
    margin-bottom: 20px;
}

.card-heading {
    margin: 0 !important;
}





.clipboard {
    margin-bottom: 1.6em;
}

.clipboard-block {
    display: inline-flex;
    align-items: center;
}

.clipboard-text {
    color: #5f497a;
    font-weight: bold;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.clipboard-btn .btn {
    cursor: pointer;
    width: 158px;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    -o-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
}

.clipboard-btn .btn-red {
    color: #fff;
    background-color: #f6151d;
    border-color: #f6151d;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
}

.btn-red:hover {
    color: #fff;
    background-color: #dc0810;
    border-color: #d0080f;
}

.has-text-centered {
    text-align: center !important;
}

.is-inline-block {
    display: inline-block !important;
}

.column {
    display: block;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    padding: .5rem;
}

@media print,
screen and (min-width:769px) {
    .column.is-four-fifths-tablet {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 80%;
    }
}

.columns {
    margin-top: -.5rem;
    margin-right: -.5rem;
    margin-left: -.5rem;
}

.columns:last-child {
    margin-bottom: -.5rem;
}

.columns:not(:last-child) {
    margin-bottom: 1rem;
}

@media print,
screen and (min-width:769px) {
    .columns:not(.is-desktop) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.list {
    padding-left: 1.5em;
}

.modal-heading {
    padding-right: 1.5rem;
}

.modal-label.has-promocode {
    color: #f90;
}

.modal-label .text-lg {
    font-size: 1.5rem;
    line-height: 1;
}

@media print,
screen and (min-width:769px) {
    .modal-label .text-lg {
        margin-bottom: .25rem;
        font-size: 2.5rem;
    }
}

.modal-label .text-sm {
    text-transform: lowercase;
}

@media print,
screen and (min-width:769px) {
    .modal-label {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.modal-divider {
    position: relative;
}

.modal-divider:after {
    position: absolute;
    top: calc(100% + 3px);
    right: -.5rem;
    left: -.5rem;
    border-top: 1px solid #ccc;
    content: "";
}

.modal-content-lg {
    font-size: 1.5rem;
    line-height: 1.25;
}

@media screen and (max-width:768px) {
    .modal-content-lg {
        font-size: 1.125rem;
    }
}

.modal-content-lg .list {
    counter-reset: item;
    padding-left: 0;
    list-style: none;
}

.modal-content-lg .list li {
    position: relative;
}

.modal-content-lg .list li:before {
    counter-increment: item;
    font-weight: 700;
    content: counter(item) ". ";
}

@media print,
screen and (min-width:769px) {
    .modal-content-lg .list li:before {
        position: absolute;
        right: calc(100% + .5rem);
    }
}

.modal-content-lg .list li+li {
    margin-top: 6px;
}

.ml-auto {
    margin-left: auto !important;
}

body .modal {
    display: none;
    max-width: 600px;
}

.modal-heading {
    font-size: 22px;
    margin-bottom: 10px;
}

.modal svg {
    vertical-align: middle;
    width: 50px;
    height: 50px;
    font-size: inherit;
    fill: #ff9900;
    display: block;
    margin: 0 auto;
    text-align: center;
}

.modal .clipboard {
    margin-top: 10px;
    margin-bottom: 10px;
}

@media (max-width:479px) {
    body .modal {
        padding: 15px;
    }
}

.modal {
    display: none;
}



.margin_top {
    margin-top: 50px;
}


.kapper-head {
    margin-bottom: 12px;
    font-family: 'Gilroy';
}

.kapper-head:after {
    content: '';
    display: block;
    width: auto;
    height: 1px;
    background: #e9eaeb;
    margin: 0 40px;
}

.kapper-head__top {
    background: #2f2f2f;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 14px 14px 14px 20px;
}

.kapper-head__top-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    padding: 7px 20px 0 0;
}

.kapper-head__title {
    font-size: 25px;
    font-weight: bold;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    margin: 0 17px 10px 0;
}

.kapper-head__site-link {
    font-size: 18px;
    font-weight: bold;
    margin: 0 21px 17px;
}

.kapper-head__site-link a {
    position: relative;
    padding-left: 43px;
    color: #fff;
    text-decoration: none;
}

.kapper-head__site-link a:before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #8dc651;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: -5px;
    left: 0;
}

.kapper-head__site-link_1 a:before {
    background-image: url(https://promo-bukmekerov.ru/wp-content/themes/raten2/images/link-icon-1.png);
}

.kapper-head__top-right {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
}

body .rate_green {
    border-color: #22a650;
}

.kapper-head__rate {
    width: 46px;
    height: 46px;
    margin-left: 18px;
    border: 3px solid #e15e50;
    border-radius: 50%;
    background: #fff;
    font-size: 20px;
    line-height: 42px;
    font-weight: bold;
    text-align: center;
    color: #3e464e;
    -webkit-box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 1);
    -moz-box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 1);
}

.kapper-head__list {
    padding: 28px 10px 1px 15px;
    background: #fff;
}

.long_namesite {
    display: contents;
}

.kapper-head__list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
}

.kapper-head__list li {
    width: 33.3333333%;
    box-sizing: border-box;
    padding: 9px 10px 8px 28px;
    position: relative;
    font-size: 14px;
    margin-bottom: 9px;
}

.kapper-head__list li:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: url(https://promo-bukmekerov.ru/wp-content/themes/raten2/images/icon-sprite.png) no-repeat;
    position: absolute;
    top: 5px;
    left: 0;
}

.kapper-head__list li.icon-1:before {
    background-position: left 0;
}

.kapper-head__list li.icon-2:before {
    background-position: left -20px;
}

.kapper-head__list li.icon-3:before {
    background-position: left -40px;
}

.kapper-head__list li.icon-4:before {
    background-position: left -60px;
}

.kapper-head__list li.icon-5:before {
    background-position: left -80px;
}

/*! CSS Used from: https://promo-bukmekerov.ru/wp-content/themes/raten2/css/response_767.css ; media=(max-width: 767px) */
@media (max-width: 767px) {
    @media (max-width: 767px) {
        .kapper-head__list li {
            width: 50%;
        }

        .kapper-head__top {
            background: url(https://kapper1.ru/wp-content/themes/kapper/images/kapper-title-mobile.jpg);
            padding: 6px 14px 23px 15px;
        }

        .kapper-head__top-left {
            flex-direction: column;
            align-content: flex-start;
        }

        .kapper-head__title {
            font-size: 22px;
            margin: 0 0 16px 0;
        }

        .kapper-head__site-link {
            font-size: 16px;
            margin: 0 0 24px;
        }

        .kapper-head__site-link:last-child {
            margin-bottom: 0;
        }

        .kapper-head__site-link a {
            padding-left: 39px;
        }

        .kapper-head__site-link a:before {
            width: 26px;
            height: 26px;
            left: 3px;
        }

        .kapper-head__top-right {
            padding: 0 2px;
            flex-shrink: 0;
            flex-direction: column;
            justify-content: flex-end;
            align-content: center;
            font-size: 14px;
        }

        .kapper-head__rate {
            margin: 19px 0 0 0;
        }

        .kapper-head__list {
            padding: 12px 15px 11px;
        }

        .kapper-head__list li {
            margin-bottom: 0;
        }

        .kapper-head__list li.icon-3,
        .kapper-head__list li.icon-4 {
            display: none;
        }

        .kapper-head__list li.icon-5 {
            order: 2;
        }
    }
}

/*! CSS Used from: https://promo-bukmekerov.ru/wp-content/themes/raten2/css/response_479.css ; media=(max-width: 479px) */
@media (max-width: 479px) {
    @media (max-width: 479px) {
        .kapper-head__list li {
            width: 100%;
        }
    }
}












.text_block blockquote.quote {
    font-size: 1.1em
}

@media (min-width:576px) {
    .text_block blockquote.quote {
        font-size: 1.2em
    }
}

.text_block blockquote.check,
.text_block blockquote.danger,
.text_block blockquote.info,
.text_block blockquote.quote,
.text_block blockquote.warning,
.taxonomy-description blockquote.check {
    font-size: 100%;
    padding: 15px 20px 15px 65px;
    -webkit-border-radius: 0 6px 6px 0;
    border-radius: 0 6px 6px 0;
    border-left: none
}

.text_block blockquote.check:before,
.text_block blockquote.danger:before,
.text_block blockquote.info:before,
.text_block blockquote.quote:before,
.text_block blockquote.warning:before {
    display: none
}

@media (min-width:768px) {

    .text_block blockquote.check,
    .text_block blockquote.danger,
    .text_block blockquote.info,
    .text_block blockquote.quote,
    .text_block blockquote.warning {
        padding: 20px 30px 20px 70px
    }
}

@media (max-width:768px) {

    .text_block blockquote.check,
    .text_block blockquote.danger,
    .text_block blockquote.info,
    .text_block blockquote.quote,
    .text_block blockquote.warning {
        margin-left: 0
    }
}

.text_block blockquote.warning,
.taxonomy-description blockquote.warning {
    background: #fff4d4 url(../images/blockquote-warning.png) 20px center no-repeat
}

.text_block blockquote.info,
.taxonomy-description blockquote.info {
    background: #e3f1f4 url(../images/blockquote-info.png) 20px center no-repeat
}

.text_block blockquote.danger,
.taxonomy-description blockquote.danger {
    background: #ffe3db url(../images/blockquote-danger.png) 20px center no-repeat
}

.text_block blockquote.check,
.taxonomy-description blockquote.check {
    background: #def9e5 url(../images/blockquote-check.png) 20px center no-repeat
}

.text_block blockquote.quote,
.taxonomy-description blockquote.quote {
    background: #eff4f5 url(../images/blockquote-quote.png) 20px 20px no-repeat
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 20px;
}

.video-container iframe,
.video-container object,
.video-container embed,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.result_form {
    margin-top: 30px;
}

.result_form p {
    color: green
}

.notCorrect {
    border: 1px solid red !important
}

.subscribe-to-comments {
    padding: 0;
    line-height: 30px;
}

.text_block .aligncenter,
.text_block div.aligncenter {
    display: block;
    margin: 5px auto
}

.text_block .alignright {
    float: right;
    margin: 20px 0 20px 20px
}

.text_block .alignleft {
    float: left;
    margin: 20px 20px 20px 0
}

.text_block a img.alignright {
    float: right;
    margin: 20px 0 20px 20px
}

.text_block a img.alignnone {
    margin: 20px 20px 20px 0
}

.text_block a img.alignleft {
    float: left;
    margin: 20px 20px 20px 0
}

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

.text_block .wp-caption {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center
}

.text_block .wp-caption.alignnone {
    margin: 20px 20px 20px 0
}

.text_block .wp-caption.alignleft {
    margin: 20px 20px 20px 0
}

.text_block .wp-caption.alignright {
    margin: 20px 0 20px 20px
}

.text_block .wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto
}

.text_block .wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px
}

.text_block img {
    max-width: 100%;
    height: auto
}

.text_block iframe {
    max-width: 100%
}

.text_block .toc_list li:before {
    display: none
}

.spanlink {
    color: #ec6a2a;
    text-decoration: underline;
    cursor: pointer;
}

.spanlink:hover {
    text-decoration: none;
}


#cancel-comment-reply-link {
    color: #ec6a2a
}

.text_block #toc_container {
    margin-bottom: 30px;
    padding: 30px;
    border: none;
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e4e5ec;
}

.text_block #toc_container .toc_title {
    color: #000;
    font-size: 16px;
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.text_block #toc_container ul {
    counter-reset: myCounter;
    padding-left: 12px;
}

.text_block #toc_container ul li {
    position: relative;
    padding-left: 12px;
    margin-bottom: 15px;
}

.text_block #toc_container ul li:after {
    position: absolute;
    top: 11px;
    left: 0;
    display: block;
    width: 3px;
    height: 3px;
    content: '';
    border-radius: 50%;
    background: #e54045;
    border: none;
}

.text_block #toc_container ul li .toc_number {
    color: #d0571d;
    font-size: 14px;
    margin-right: 10px;
}

.text_block #toc_container ul li a {
    font-size: 14px;
    color: #000;
    transition: 0.5s;
}

.text_block #toc_container ul li a:hover {
    text-decoration: underline;
}

.sp-brandname__left {
    display: none !important
}

.sp-form[sp-id="126170"] {
    background: none !important;
    padding: 0 !important
}

.sp-form[sp-id="126170"] {
    width: 100% !important
}

.sp-form .sp-field {
    padding: 0 !important
}










.bonus {
    margin-bottom: 30px;
}

.bookmakers-rating-table {
    white-space: nowrap;
    position: relative;
    display: table !important;
    overflow-x: auto !important;
}

@media (min-width: 744px) {
    .bookmakers-rating-table {
        overflow-x: hidden !important;
    }
}

.bookmakers-rating-table th {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.bookmakers-rating-table td {
    padding: 1rem 0;
    border-bottom: solid 1px #e5e5e5;
}

@media (min-width: 744px) {
    .bookmakers-rating-table td {
        padding: 1.25rem 0;
    }
}

.bookmakers-rating-table tr:last-child td {
    border-bottom: none;
}

.bookmakers-rating-table tr {
    position: relative;
    cursor: pointer;
}

@media (min-width: 744px) {
    .bookmakers-rating-table tr .logo-td {
        max-width: 10rem;
        width: 10rem;
    }
}

@media (min-width: 1080px) {
    .bookmakers-rating-table tr .logo-td {
        max-width: 15rem;
        width: 15rem;
    }
}

.bookmakers-rating-table tr .logo-td:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 2;
    left: -1rem;
    right: -1rem;
    height: 66px;
    -webkit-transform: translateY(-17px);
    transform: translateY(-17px);
    -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .12);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .12);
    border-radius: 3px;
    opacity: 0;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
    pointer-events: none;
    border-bottom: solid 1px #fff;
    border-top: solid 1px #fff;
}

@media (min-width: 744px) {
    .bookmakers-rating-table tr .logo-td:before {
        left: -1.5rem;
        right: -1.5rem;
        height: 82px;
        -webkit-transform: translateY(-21px);
        transform: translateY(-21px);
    }
}

.bookmakers-rating-table tr:hover .logo-td:before {
    opacity: 1;
}

.bookmakers-rating-table .logo {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: .5rem;
    width: 6.25rem;
    height: 2rem;
}

@media (min-width: 744px) {
    .bookmakers-rating-table .logo {
        margin-right: 1rem;
        width: 7.75rem;
        height: 2.5rem;
    }
}

@media (min-width: 1080px) {
    .bookmakers-rating-table .logo {
        margin-right: 2rem;
    }
}

.bookmakers-rating-table .capsule {
    margin-right: .75rem;
    min-width: 5rem;
    font-weight: 600;
}

@media (min-width: 1366px) {
    .bookmakers-rating-table .capsule {
        margin-right: 1rem;
    }
}

@media (min-width: 1566px) {
    .bookmakers-rating-table .capsule {
        margin-right: 1.5rem;
    }
}

.bookmakers-rating-table .capsule:before {
    color: rgba(0, 0, 0, .2);
}

.bookmakers-rating-table .capsule.icon-bonus {
    background-color: rgba(255, 197, 4, .2);
}

@media (min-width: 744px) {
    .bookmakers-rating-table .capsule.icon-bonus {
        margin-right: 0;
        width: auto;
        max-width: 7.75rem;
        font-family: futura pt, sans-serif;
        font-size: 1rem;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .bookmakers-rating-table .capsule.icon-bonus:hover {
        background-color: rgba(255, 197, 4, .2);
    }
}

.bookmakers-rating-table .buttons-td {
    width: 26%;
    text-align: right;
}

.bookmakers-rating-table .buttons-td a {
    margin-left: .5rem;
}

.bookmakers-rating-table .buttons-td a:first-child {
    margin-left: 0;
}

@media (min-width: 744px) {
    .bookmakers-rating-table .buttons-td {
        width: 12%;
    }
}

.bookmakers-rating-table .buttons-td .button {
    width: 100%;
}

@media (min-width: 414px) {
    .bookmakers-rating-table .buttons-td .button {
        width: calc(100% - .5rem);
    }
}

@media (min-width: 744px) {
    .bookmakers-rating-table .buttons-td .button {
        width: calc(100% - 1.5rem);
    }
}

.bookmakers-rating-table .button {
    white-space: nowrap;
}

.bookmakers-rating-table .details {
    margin-left: .375rem;
    color: rgba(0, 0, 0, .4);
}

.bookmakers-rating-table .details:hover {
    color: #d0021b;
}

.bookmakers-rating-table .button+.details {
    display: none;
}

@media (min-width: 744px) {
    .bookmakers-rating-table .button+.details {
        display: inline-block;
    }
}

.bookmaker-rating-bonuses-table .bonus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: .5rem;
}

.bookmaker-rating-bonuses-table .bonus .icon-bonus {
    display: inline-block;
    border-radius: 2.1875rem;
    margin-right: 0;
    width: 4.5rem;
    min-width: 0;
    padding-left: .5rem;
    background-color: rgba(255, 197, 4, .2);
    overflow: hidden;
    text-overflow: ellipsis;
}

.capsule {
    display: inline-block;
    padding: .5rem 1rem;
    border-radius: 1rem;
    background-color: #f0f1f2;
    -webkit-transition: color .2s, background-color .2s;
    transition: color .2s, background-color .2s;
}

a.capsule:hover {
    background-color: #e8e8e8;
}

.bookmaker-rating-bonuses-table .icon {
    padding-left: 1.5rem;
    min-height: 1rem;
    position: relative;
}

.bookmaker-rating-bonuses-table .icon:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1rem;
    height: 1rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    font-family: legalbet icons;
    font-size: 1rem;
    line-height: 1rem;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-decoration: none;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon.capsule {
    min-width: 3.25rem;
    min-height: 2rem;
    padding: .5rem;
    padding-left: 1.75rem;
    border-radius: 1rem;
    background-color: #f0f1f2;
    text-align: center;
}

.icon.capsule:before {
    top: .5rem;
    left: .5rem;
}

.icon.icon-bonus:before {
    background-image: url(https://promo-bukmekerov.ru/wp-content/themes/raten2/css/gift.svg);
}

.bookmakers-rating-table .capsule {
    margin-right: .75rem;
    min-width: 5rem;
    font-weight: 600;
}

@media (min-width:1366px) {
    .bookmakers-rating-table .capsule {
        margin-right: 1rem;
    }
}

@media (min-width:1566px) {
    .bookmakers-rating-table .capsule {
        margin-right: 1.5rem;
    }
}

.bookmakers-rating-table .capsule:before {
    color: rgba(0, 0, 0, .2);
}

.bookmakers-rating-table .capsule.icon-bonus {
    background-color: rgba(255, 197, 4, .2);
}

@media (min-width:744px) {
    .bookmakers-rating-table .capsule.icon-bonus {
        margin-right: 0;
        width: auto;
        max-width: 7.75rem;
        font-family: futura pt, sans-serif;
        font-size: 1rem;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .bookmakers-rating-table .capsule.icon-bonus:hover {
        background-color: rgba(255, 197, 4, .2);
    }
}

@media (min-width:744px) {
    .bookmaker-rating-bonuses-table .capsule {
        width: 6rem;
    }
}

@media (min-width:1080px) {
    .bookmaker-rating-bonuses-table .capsule {
        margin-right: 3rem;
    }
}

.bookmaker-rating-bonuses-table .bonus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: .5rem;
}

@media (min-width:744px) {
    .bookmaker-rating-bonuses-table .bonus {
        margin-right: 1.25rem;
    }
}

.bookmaker-rating-bonuses-table .bonus .icon-bonus {
    display: inline-block;
    border-radius: 2.1875rem;
    margin-right: 0;
    width: 4.5rem;
    min-width: 0;
    padding-left: .5rem;
    background-color: rgba(255, 197, 4, .2);
    overflow: hidden;
    text-overflow: ellipsis;
}

.bookmaker-rating-bonuses-table .bonus .icon-bonus:before {
    display: none;
}

@media (min-width:744px) {
    .bookmaker-rating-bonuses-table .bonus .icon-bonus {
        margin-right: 1rem;
        width: 7rem;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        padding-left: 1.75rem;
    }

    .bookmaker-rating-bonuses-table .bonus .icon-bonus:before {
        display: block;
    }
}

.bookmaker-rating-bonuses-table .bonus .caption {
    display: none;
}

@media (min-width:744px) {
    .bookmaker-rating-bonuses-table .bonus .caption {
        display: block;
        white-space: normal;
        max-height: 2rem;
    }
}

.capsule {
    display: inline-block;
    padding: .5rem 1rem;
    border-radius: 1rem;
    background-color: #f0f1f2;
    -webkit-transition: color .2s, background-color .2s;
    transition: color .2s, background-color .2s;
}

a.capsule:hover {
    background-color: #e8e8e8;
}

.bookmaker-rating-bonuses-table .icon {
    padding-left: 1.5rem;
    min-height: 1rem;
    position: relative;
}

.bookmaker-rating-bonuses-table .icon:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1rem;
    height: 1rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    font-family: legalbet icons;
    font-size: 1rem;
    line-height: 1rem;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-decoration: none;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon.capsule {
    min-width: 3.25rem;
    min-height: 2rem;
    padding: .5rem;
    padding-left: 1.75rem;
    border-radius: 1rem;
    background-color: #f0f1f2;
    text-align: center;
}

.icon.capsule:before {
    top: .5rem;
    left: .5rem;
}

.icon.icon-review:before {
    content: '\e81c';
}

.bookmakers-rating-table .capsule {
    margin-right: .75rem;
    min-width: 5rem;
    font-weight: 600;
}

@media (min-width:1366px) {
    .bookmakers-rating-table .capsule {
        margin-right: 1rem;
    }
}

@media (min-width:1566px) {
    .bookmakers-rating-table .capsule {
        margin-right: 1.5rem;
    }
}

.bookmakers-rating-table .capsule:before {
    color: rgba(0, 0, 0, .2);
}

@media (min-width:744px) {
    .bookmaker-rating-bonuses-table .capsule {
        width: 6rem;
    }
}

@media (min-width:1080px) {
    .bookmaker-rating-bonuses-table .capsule {
        margin-right: 3rem;
    }
}

.button {
    display: inline-block;
    padding: .5rem 1rem;
    border-radius: 3px;
    background-color: #d0021b;
    border: none;
    outline: none;
    text-align: center;
    color: #fff;
    font-weight: 600;
    line-height: 1rem;
    cursor: pointer;
    -webkit-transition: color .2s, background-color .2s, border-color .2s;
    transition: color .2s, background-color .2s, border-color .2s;
}

.button:hover {
    background: #d93449;
    color: #fff;
}

.button:active {
    background: #ba0218;
}

.bookmakers-rating-table .buttons-td a {
    margin-left: .5rem;
}

.bookmakers-rating-table .buttons-td a:first-child {
    margin-left: 0;
}

.bookmakers-rating-table .buttons-td .button {
    width: 100%;
}

@media (min-width:414px) {
    .bookmakers-rating-table .buttons-td .button {
        width: calc(100% - .5rem);
    }
}

@media (min-width:744px) {
    .bookmakers-rating-table .buttons-td .button {
        width: calc(100% - 1.5rem);
    }
}

.bookmakers-rating-table .button {
    white-space: nowrap;
}

.bookmaker-rating-bonuses-table .buttons-td .button {
    margin-left: 0;
}

.link {
    color: #3498db;
}

.link:hover {
    color: #d0021b;
}

.link {
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: color .2s;
    transition: color .2s;
}

.js-link:hover {
    cursor: pointer;
}

.img-box {
    margin: 0 auto;
}

table.bookmaker-rating-bonuses-table {
    width: 100%;
    border: none;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: .75rem;
}

@media (min-width:984px) {
    table.bookmaker-rating-bonuses-table {
        font-size: .875rem;
    }
}

@media (min-width:744px) {
    table.bookmaker-rating-bonuses-table:not(.tournament-group-table) {
        display: table;
    }
}

table.bookmaker-rating-bonuses-table th,
table.bookmaker-rating-bonuses-table td {
    padding: .5rem .25rem;
}

table.bookmaker-rating-bonuses-table th:first-child,
table.bookmaker-rating-bonuses-table td:first-child {
    padding-left: 0;
}

table.bookmaker-rating-bonuses-table th:last-child,
table.bookmaker-rating-bonuses-table td:last-child {
    padding-right: 0;
}

table.bookmaker-rating-bonuses-table th {
    text-align: left;
    padding-top: 0;
    border-bottom: solid 1px #e5e5e5;
}

table.bookmaker-rating-bonuses-table tr:last-child td {
    padding-bottom: 0;
}

*/ .capsule {
    display: inline-block;
    padding: .5rem 1rem;
    border-radius: 1rem;
    background-color: #f0f1f2;
    -webkit-transition: color .2s, background-color .2s;
    transition: color .2s, background-color .2s;
}

a.capsule:hover {
    background-color: #e8e8e8;
}

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

@media (min-width:744px) {
    .md-hide {
        display: none !important;
    }

    .md-show-inline {
        display: inline !important;
    }
}

.bookmaker-rating-bonuses-table .icon {
    padding-left: 1.5rem;
    min-height: 1rem;
    position: relative;
}

.bookmaker-rating-bonuses-table.icon:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1rem;
    height: 1rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    font-family: legalbet icons;
    font-size: 1rem;
    line-height: 1rem;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-decoration: none;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

i.icon {
    padding-left: 1rem;
}

.icon.capsule {
    min-width: 3.25rem;
    min-height: 2rem;
    padding: .5rem;
    padding-left: 1.75rem;
    border-radius: 1rem;
    background-color: #f0f1f2;
    text-align: center;
}

.icon.capsule:before {
    top: .5rem;
    left: .5rem;
}

.icon.icon-bonus:before {
    background-image: url(https://web.legalcdn.org/img/gift.svg);
}

.icon.icon-arrow-right:before {
    content: '\e804';
}

.icon.icon-review:before {
    content: '\e81c';
}

.button {
    display: inline-block;
    padding: .5rem 1rem;
    border-radius: 3px;
    background-color: #d0021b;
    border: none;
    outline: none;
    text-align: center;
    color: #fff;
    font-weight: 600;
    line-height: 1rem;
    cursor: pointer;
    -webkit-transition: color .2s, background-color .2s, border-color .2s;
    transition: color .2s, background-color .2s, border-color .2s;
}

.button:hover {
    background: #d93449;
    color: #fff;
}

.button:active {
    background: #ba0218;
}

.bookmakers-rating-table {
    white-space: nowrap;
    position: relative;
    display: table !important;
    overflow-x: auto !important;
}

@media (min-width:744px) {
    .bookmakers-rating-table {
        overflow-x: hidden !important;
    }
}

.bookmakers-rating-table th {
    padding-left: 0;
    padding-right: 0;
}

.bookmakers-rating-table td {
    padding: 1rem 0;
    border-bottom: solid 1px #e5e5e5;
}

@media (min-width:744px) {
    .bookmakers-rating-table td {
        padding: 1.25rem 0;
    }
}

.bookmakers-rating-table tr:last-child td {
    border-bottom: none;
}

.bookmakers-rating-table tr {
    position: relative;
    cursor: pointer;
}

@media (min-width:744px) {
    .bookmakers-rating-table tr .logo-td {
        max-width: 10rem;
        width: 10rem;
    }
}

@media (min-width:1080px) {
    .bookmakers-rating-table tr .logo-td {
        max-width: 15rem;
        width: 15rem;
    }
}

.bookmakers-rating-table tr .logo-td:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 2;
    left: -1rem;
    right: -1rem;
    height: 66px;
    -webkit-transform: translateY(-17px);
    transform: translateY(-17px);
    -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .12);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .12);
    border-radius: 3px;
    opacity: 0;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
    pointer-events: none;
    border-bottom: solid 1px #fff;
    border-top: solid 1px #fff;
}

@media (min-width:744px) {
    .bookmakers-rating-table tr .logo-td:before {
        left: -1.5rem;
        right: -1.5rem;
        height: 82px;
        -webkit-transform: translateY(-21px);
        transform: translateY(-21px);
    }
}

.bookmakers-rating-table tr:hover .logo-td:before {
    opacity: 1;
}

.bookmakers-rating-table .logo {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: .5rem;
    width: 6.25rem;
    height: 2rem;
}

@media (min-width:744px) {
    .bookmakers-rating-table .logo {
        margin-right: 1rem;
        width: 7.75rem;
        height: 2.5rem;
    }
}

@media (min-width:1080px) {
    .bookmakers-rating-table .logo {
        margin-right: 2rem;
    }
}

.bookmakers-rating-table .capsule {
    margin-right: .75rem;
    min-width: 5rem;
    font-weight: 600;
}

@media (min-width:1366px) {
    .bookmakers-rating-table .capsule {
        margin-right: 1rem;
    }
}

@media (min-width:1566px) {
    .bookmakers-rating-table .capsule {
        margin-right: 1.5rem;
    }
}

.bookmakers-rating-table .capsule:before {
    color: rgba(0, 0, 0, .2);
}

.bookmakers-rating-table .capsule.icon-bonus {
    background-color: rgba(255, 197, 4, .2);
}

@media (min-width:744px) {
    .bookmakers-rating-table .capsule.icon-bonus {
        margin-right: 0;
        width: auto;
        max-width: 7.75rem;
        font-family: futura pt, sans-serif;
        font-size: 1rem;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .bookmakers-rating-table .capsule.icon-bonus:hover {
        background-color: rgba(255, 197, 4, .2);
    }
}

.bookmakers-rating-table .buttons-td {
    width: 26%;
    text-align: right;
}

.bookmakers-rating-table .buttons-td a {
    margin-left: .5rem;
}

.bookmakers-rating-table .buttons-td a:first-child {
    margin-left: 0;
}

@media (min-width:744px) {
    .bookmakers-rating-table .buttons-td {
        width: 12%;
    }
}

.bookmakers-rating-table .buttons-td .button {
    width: 100%;
}

@media (min-width:414px) {
    .bookmakers-rating-table .buttons-td .button {
        width: calc(100% - .5rem);
    }
}

@media (min-width:744px) {
    .bookmakers-rating-table .buttons-td .button {
        width: calc(100% - 1.5rem);
    }
}

.bookmakers-rating-table .button {
    white-space: nowrap;
}

.bookmakers-rating-table .details {
    margin-left: .375rem;
    color: rgba(0, 0, 0, .4);
}

.bookmakers-rating-table .details:hover {
    color: #d0021b;
}

.bookmakers-rating-table .button+.details {
    display: none;
}

@media (min-width:744px) {
    .bookmakers-rating-table .button+.details {
        display: inline-block;
    }
}

.bookmaker-rating-bonuses-table tr .logo-td {
    max-width: 10rem !important;
    width: 10rem !important;
}

.bookmaker-rating-bonuses-table th:nth-child(3),
.bookmaker-rating-bonuses-table td:nth-child(3) {
    display: none;
}

@media (min-width:1080px) {

    .bookmaker-rating-bonuses-table th:nth-child(3),
    .bookmaker-rating-bonuses-table td:nth-child(3) {
        display: table-cell;
    }
}

.bookmaker-rating-bonuses-table .logo {
    width: 5.875rem;
    height: 2rem;
}

@media (min-width:744px) {
    .bookmaker-rating-bonuses-table .logo {
        width: 7.75rem;
        height: 2.5rem;
    }
}

@media (min-width:1080px) {
    .bookmaker-rating-bonuses-table .logo {
        margin-right: 3.5rem;
    }
}

@media (min-width:744px) {
    .bookmaker-rating-bonuses-table .capsule {
        width: 6rem;
    }
}

@media (min-width:1080px) {
    .bookmaker-rating-bonuses-table .capsule {
        margin-right: 3rem;
    }
}

.bookmaker-rating-bonuses-table .bonus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: .5rem;
}

@media (min-width:744px) {
    .bookmaker-rating-bonuses-table .bonus {
        margin-right: 1.25rem;
    }
}

.bookmaker-rating-bonuses-table .bonus .icon-bonus {
    display: inline-block;
    border-radius: 2.1875rem;
    margin-right: 0;
    width: 4.5rem;
    min-width: 0;
    padding-left: .5rem;
    background-color: rgba(255, 197, 4, .2);
    overflow: hidden;
    text-overflow: ellipsis;
}

.bookmaker-rating-bonuses-table .bonus .icon-bonus:before {
    display: none;
}

@media (min-width:744px) {
    .bookmaker-rating-bonuses-table .bonus .icon-bonus {
        margin-right: 1rem;
        width: 7rem;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        padding-left: 1.75rem;
    }

    .bookmaker-rating-bonuses-table .bonus .icon-bonus:before {
        display: block;
    }
}

.bookmaker-rating-bonuses-table .bonus .caption {
    display: none;
}

@media (min-width:744px) {
    .bookmaker-rating-bonuses-table .bonus .caption {
        display: block;
        white-space: normal;
        max-height: 2rem;
    }
}

.bookmaker-rating-bonuses-table:not(.bookmaker-rating-licenses-ro-table) td {
    border-bottom: none;
    padding-bottom: .75rem;
}

@media (min-width:744px) {
    .bookmaker-rating-bonuses-table:not(.bookmaker-rating-licenses-ro-table) td {
        padding-bottom: 1.25rem;
        border-bottom: 1px solid #e5e5e5;
    }
}

.bookmaker-rating-bonuses-table .bonus-caption-mobile-tr td {
    padding-top: 0;
    border-bottom: solid 1px #e5e5e5;
    padding-bottom: .75rem;
    font-size: .875rem;
    white-space: normal;
}

.bookmaker-rating-bonuses-table .buttons-td .button {
    margin-left: 0;
}

.bookmaker-rating-bonuses-table .logo-td:before {
    display: none !important;
}

@media (min-width:744px) {
    .bookmaker-rating-bonuses-table .logo-td:before {
        display: block !important;
    }
}

@media (min-width:744px) {
    .bookmaker-rating-bonuses-table:not(.bookmaker-rating-licenses-ro-table) tr:nth-last-child(2) td {
        border-bottom: none;
        padding-bottom: 0;
    }
}

.bookmaker-rating-bonuses-table th:nth-child(3),
.bookmaker-rating-bonuses-table td:nth-child(3) {
    display: none;
}

@media (min-width:744px) {

    .bookmaker-rating-bonuses-table th:nth-child(3),
    .bookmaker-rating-bonuses-table td:nth-child(3) {
        display: table-cell;
    }
}

.bookmakers-rating-table tr .logo-td:before {
    display: none !important;
}

.bookmaker-rating-bonuses-table .logo img {
    margin: 0 auto !important;
}

.bookmaker-rating-bonuses-table .bonus .icon-bonus {
    padding: 2px !important;
    color: black !important;
    text-decoration: none;
    padding-left: 18px !important;
}

.bookmaker-rating-bonuses-table .bonus {
    margin: 0 !important;
}

.bookmaker-rating-bonuses-table:not(.bookmaker-rating-licenses-ro-table) td {
    padding: 0 !important;
}

.bookmaker-rating-bonuses-table .logo {
    display: inherit;
}

.bookmaker-rating-bonuses-table:not(.bookmaker-rating-licenses-ro-table) td {
    padding: 10px 0 !important;
}

.bookmaker-rating-bonuses-table .capsule {
    padding: 0;
}

.bookmaker-rating-bonuses-table .capsule {
    padding: 2px 0;
    text-align: center;
    padding-left: 13px;
    color: #3498db;
    text-decoration: none;
}

.bookmakers-rating-table .buttons-td a:first-child {
    color: #fff;
    text-decoration: none;
}

@media (max-width:744px) {
    .bookmaker-rating-bonuses-table:not(.bookmaker-rating-licenses-ro-table) td {
        width: 100px !important;
    }

    .bookmaker-rating-bonuses-table .bonus .icon-bonus {
        padding: 2px 10px !important;
        line-height: 27px;
    }
}


/*! CSS Used fontfaces */
@font-face {
    font-family: legalbet icons;
    src: url(https://web.legalcdn.org/fonts/legalbet-icons.woff2) format("woff2"), url(https://web.legalcdn.org/fonts/legalbet-icons.woff) format("woff"), url(https://web.legalcdn.org/fonts/legalbet-icons.ttf) format("truetype");
}


.post-ratings img {
    display: inline-block;
}


a.knopka {
    color: #fff;
    text-decoration: none;
    user-select: none;
    background: #d44b38;
    padding: .7em 1.5em;
    outline: none;
}

a.knopka:hover {
    background: #e85f4c;
}

a.knopka:active {
    background: #980f00;
}

button.knopka {
    color: #fff;
    background: #FFA500;
    padding: 5px;
    border-radius: 5px;
    border: 2px solid #FF8247;
}

.sports .list {
    padding: 0;
}

.comment-form .columns {
    margin: 0px;
    margin-left: calc(var(--form_columns_offset) * -1);
}




@media all {
    .side-fixed-btn {
        display: none;
        position: fixed;
        z-index: 1300;
        left: 0;
        top: 50%;
        transform-origin: 50% 0;
        transform: translateX(-50%) rotate(-90deg);
        padding: 0 20px;
        background: none;
        border: none;
        outline: none;
        cursor: pointer;
    }

    @media (max-width:600px) {
        .side-fixed-btn {
            display: block;
        }
    }

    .side-fixed-btn span {
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    position: relative;
	    z-index: 2;
	    padding: 4px 10px;
	    border-radius: 0 0 3px 3px;
	    font-size: 12px;
	    white-space: nowrap;
	    background: #61ae1d;
	    color: #fff;
	    border: none;
    }

    .side-fixed-btn {
        display: none;
        position: fixed;
        z-index: 1300;
        left: 0;
        top: 50%;
        transform-origin: 50% 0;
        transform: translateX(-50%) rotate(-90deg);
        padding: 0 20px;
        background: none;
        border: none;
        outline: none;
        cursor: pointer;
    }

    @media (max-width:600px) {
        .side-fixed-btn {
            display: block;
        }
    }


    #modal_book {
        width: auto;
        background: linear-gradient(310deg,#e54045,#ad2025);
        color: #fff;
    }

    .book-card {
        background: linear-gradient(258deg, #fff, #fff);
        display: flex;
        align-items: center;
        justify-content: center;
        height: 52px;
        color: #fff;
        font-size: 20px;
        padding: 10px;
        text-decoration: none;
        margin-bottom: 20px;
        border-radius: 32px;
    }

    .books-popup__title {
        font-size: 20px;
        font-weight: bold;
        text-align: center;
        margin-bottom: 20px;
    }