/* ------------------------------------------------------------------------ */

* {
	padding: 0;
	margin: 0;
	border: 0;
}

*,
*:before,
*:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

:focus,
:active {
	outline: none;
}

a:focus,
a:active {
	outline: none;
}

nav,
footer,
header,
aside {
	display: block;
}

html,
body {
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
	font-family: inherit;
}

input::-ms-clear {
	display: none;
}

button {
	cursor: pointer;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

a:hover {
	text-decoration: none;
}

a {
	color: #fff;
	cursor: pointer;
	-webkit-appearance: none !important;
	-webkit-tap-highlight-color: transparent;
	-webkit-tap-highlight-color: transparent;
	-webkit-transition: .1s ease-in-out;
	-o-transition: .1s ease-in-out;
	transition: all .1s ease-in-out;
}

ul li {
	list-style: none;
}

img {
	max-width: 100%;
	border-radius: 8px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: 400;
}

h1 {
	font-size: 2.25em;
	font-weight: bold;
}

h1,
h2,
h3 {
	margin: 1.5rem 0;
	color: var(--heading-color);
}

h2 {
	display: block;
	font-size: 1.5em;
	margin-block-start: 0.83em;
	margin-block-end: 0.83em;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
	font-weight: bold;
}

h3 {
	display: block;
	font-size: 1.3em;
	margin-block-start: 0.83em;
	margin-block-end: 0.83em;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
	font-weight: bold;
}

h4 {
	display: block;
	font-size: 1.1em;
	margin-block-start: 0.83em;
	margin-block-end: 0.83em;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
	font-weight: bold;
}

@media screen and (max-width: 1200px) {
                h1 {
                    font-size:24px;
                    line-height: 1.2
                }

                h2 {
                    font-size: 18px;
                    line-height: 1.2
                }

                h3 {
                    font-size: 16px;
                    line-height: 1.2
                }

                h4 {
                    font-size: 16px;
                    line-height: 1.2
                }
            }

p,
ul {
	margin: 1.5rem 0;
	
}

li {
    display: list-item;
    text-align: -webkit-match-parent;
}

::marker {
    unicode-bidi: isolate;
    font-variant-numeric: tabular-nums;
    text-transform: none;
    text-indent: 0px !important;
    text-align: start !important;
    text-align-last: start !important;
}

p {
	display: block;
	margin-block-start: 1em;
	margin-block-end: 1em;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
}

ul {
	padding-left: 30px;
}

table {
	-webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, .15);
	box-shadow: 0 4px 14px rgba(0, 0, 0, .15);
	border: 24px solid transparent;
	border-top-width: 12px;
	border-bottom-width: 12px;
	border-radius: 10px;
}

tr {
	display: table-row;
	vertical-align: inherit;
	border-color: inherit;
}

table td {
	padding: 12px;
	border: 0;
}

table tr:not(:last-child) td {
	border-bottom: 1px dashed rgba(255, 255, 255, .25);
}



table td:first-child {
	padding-left: 0;
}

table td:last-child {
	padding-right: 0;
}



/* ---------------------------------------------------------------------------- */

:root {
	--site-bg-color: #08090a;
	--accent-color: #22262a;
	--accent-color-2: #212428;
	--accent-color-3: #1f2226;
	--heading-color: #ffffff;
	--text-color: rgb(249, 249, 249);
	--buttons-color: #dd3333;
	--buttons-color-2: #dd3333;
}

html {
	scroll-behavior: smooth;
}

body {
	min-width: 320px;
	overflow-x: hidden;
	margin: 0;
	font-weight: 400;
	line-height: 1.5;
	background: var(--site-bg-color);
	color: var(--text-color);
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
}

.body-wrapper {
	position: relative;
	overflow: hidden !important;
	min-height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}


/* ---------------------------header------------------------------------- */

.header {
	position: relative;
}

.header__top {
	background: var(--accent-color);
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.header__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.header__burger {
	display: none;
	width: 34px;
	height: 31px;
	cursor: pointer;
	overflow: hidden;
	background-color: transparent;
	padding: 10px;
}

.header__burger-line {
	width: 20px;
	height: 1px;
	display: block;
	background: var(--heading-color);
	transition: all .3s ease;
}

.b1 {}

.b2 {}

.b3 {}

.header__burger--active .b1 {
	transform: translate(0, 2px) rotate(50deg);
}

.header__burger--active .b2 {
	opacity: 0;
}

.header__burger--active .b3 {
	transform: translate(-1px, -8px) rotate(-50deg);
}

.burger span {
	-webkit-transition: .2s .1s;
	-o-transition: .2s .1s;
	transition: all .2s .1s;
}

.header__logo {
	width: 166px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-right: 36px;
}

.header__logo>a {
	display: block;
	width: 100%;
}

.header__logo>a img {
	width: 100%;
	height: auto;
	display: block;
	-o-object-fit: contain;
	object-fit: contain;
}

.menu__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -12px;
	padding: 0;
}

.menu__list li a {
	display: inline-block;
	padding: 16px 12px;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.7;
	text-decoration: none;
	text-transform: uppercase;
	color: #fff;
	-webkit-transition: .1s ease-in-out;
	-o-transition: .1s ease-in-out;
	transition: all .1s ease-in-out;
}

.menu__list li a:hover {
	background-color: #171b1d;
}

.header__actions {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-left: auto;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.header__lang {
	margin-right: 8px;
}

.lang {
	position: relative;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.7;
	cursor: pointer;
}

.lang__current {
	position: relative;
}

.lang__current::after {
	content: '>';
	position: absolute;
	top: 50%;
	right: -10px;
	width: 5px;
	height: 5px;
	transform: translateY(-50%) rotate(90deg);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all .2s ease;
}

.lang__current:hover.lang__current::after {
	transform: translateY(-50%) rotate(-90deg);
}

.btn {
	display: inline-block;
	padding: 18px;
	font-weight: 700;
	font-size: 14px;
	line-height: 18px;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
	border: 1px solid var(--buttons-color);
	border-radius: 5px;
	background: 0 0;
	cursor: pointer;
	-webkit-transition: .1s ease-in-out;
	-o-transition: .1s ease-in-out;
	transition: all .1s ease-in-out;
}

.header__button {
	margin-left: 16px;
	padding: 8px 15px;
}

.btn--fill {
	background: var(--buttons-color);
}

.header__bottom {
	background: rgba(255, 255, 255, .05);
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, .1);
	box-shadow: 0 1px 0 rgba(255, 255, 255, .1);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

.header__mobile-buttons {
	display: none;
}

.menu-mobile {
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 999;
	width: 100vw;
	height: calc(100vh - 100%);
	background: var(--site-bg-color);
	overflow: auto;
	scrollbar-width: none;
}

.menu-mobile__main {}

.menu-mobile__main .menu__list {
	margin: 0;
	display: block;
}

.menu-mobile__main .menu__list li a {
	padding: 10px 0;
}

.header__bottom .menu__list {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}



/* ---------------------------------main------------------------------- */

.content {
	position: relative;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	padding: 40px 0 80px;
}

.content-wrapper {
	max-width: 740px;
}

.site-content {
	width: 100%;
	max-width: 710px;
}

.entry-content {
	counter-reset: footnotes;
}

.csl_sliders_block {
	color: #fff;
}

.csl_sliders_list {}

.csl_sliders_rows {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: -4px;
	margin-bottom: -4px;
}

.csl_sliders_rows .cb_item {
	padding-top: 4px;
	padding-bottom: 4px;
	-webkit-flex: 0 1 50%;
	-ms-flex: 0 1 50%;
	flex: 0 1 50%;
	width: 50%;
	max-width: 50%;
	min-width: 50%;
}

.csl_sliders_list .cb_item {
	padding: 0 4px;
}

.csl_sliders_list .cb_inner {
	position: relative;
}

.csl_sliders_list .cb_img {
	position: relative;
	height: auto;
	padding-bottom: 0;
}

.csl_sliders_list .cb_left_top {
	top: 4px;
	left: 4px;
}

.csl_sliders_list [class^=cb_left_] {
	position: absolute;
	font-size: 15px;
	font-weight: 700;
	padding: 6px;
	line-height: 1;
	background-color: #19bb77;
	transition: all .15s ease-in;
	border-radius: 3px;
}

.csl_sliders_list .cb_reveal {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	transition: all .15s ease-in;
	background: rgba(0, 0, 0, .7);
}

.cb_reveal:hover {
	opacity: 1;
}

.csl_sliders_list .cb_title {
	padding: 4px;
}

.csl_sliders_list .cb_name {
	display: block;
	line-height: 1.15;
	margin-bottom: 4px;
}

.csl_sliders_list .cb_control {
	padding-top: 10px;
}

.csl_sliders_list .cb_control>div {
	text-align: center;
	margin-bottom: 8px;
}

.csl_sliders_list .cb_control .btn {
	font-weight: 400;
	padding-top: 4px;
	padding-bottom: 4px;
	width: auto !important;
	border: none !important;
}

.csl_sliders_block .btn.btn--fill-2 {
	border-color: #19bb77;
	background-color: #19bb77;
}

.csl_sliders_block .btn {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.285714285714286;
	text-align: center;
	color: #fff;
	text-decoration: none !important;
	white-space: nowrap;
	padding: 7px 16px;
	border-width: 1px;
	border-style: solid;
	border-radius: 8px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	background-image: none;
}

.csl_sliders_list .cb_control>div:last-child {
	margin-bottom: 0;
}

.csl_sliders_list .cb_img img {
	position: static;
	width: 100%;
	height: auto;
}

.list-style li {
	list-style: disc !important;
}

.cb_left_top {
	transition: all, 15s ease;
}

.cb_item:hover .cb_left_top {
	opacity: 0;
}

.magic-image {}

.magic-image {
	margin: 30px 0;
}

.magic-image .aligncenter {
	margin-left: auto;
	margin-right: auto;
}

.magic-image img {
	box-sizing: border-box;
	height: auto;
	max-width: 100%;
	vertical-align: bottom;
}

.aligncenter {
	text-align: center;
}

.magic-buttons>.magic-button.magic-button__width-75 {
	width: calc(75% - var(--wp--style--block-gap, .5em)*.25);
}

.is-layout-flex {
	display: flex;
	gap: 2em;
}

.magic-button__link {
	color: #fff;
	background-color: #32373c;
	border-radius: 9999px;
	box-shadow: none;
	text-decoration: none;
	padding: calc(0.667em + 2px) calc(1.333em + 2px);
	font-size: 1.125em;
}

.has-vivid-red-background-color {
	background-color: #cf2e2e;
}

.magic-buttons>.magic-button.magic-button__width-100 {
	flex-basis: 100%;
	width: 100%;
}

.magic-buttons>.magic-button.has-custom-width .magic-button__link {
	display: inline-block;
	width: 100%;
	text-align: center;
}

:where(.magic-columns) {
	margin-bottom: 1.75em;
}

:where(figure) {
	margin: 0 0 1em;
}

#ez-toc-container {
	background: #0b0d0e;
	border: 1px solid #0b0d0e;
	padding-right: 20px;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
	display: table;
	margin-bottom: 1em;
	padding: 10px;
	position: relative;
	width: auto;
	max-width: 220px;
	transition: all .3s ease;
}

.ez-toc-title-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	transition: all .3s ease;
	max-width: 180px;
}

.ez-toc-title-container--visible {
	max-width: 100% !important;
}

#ez-toc-container nav {
	max-height: 0;
	overflow: hidden;
	transition: all .3s ease;
}

.ez-toc-title-toggle {
	font-size: 16px;
	padding: 0;
	border: 1px solid #999191;
	border-radius: 5px;
	cursor: pointer;
	display: flex;
	align-items: end;
	padding: 5px;
}

#ez-toc-container nav ul li a {
	text-decoration: none;
}

.ez-toc-list-level-1 {}

.ez-toc-page-1 {}

.ez-toc-heading-level-2 {}

div#ez-toc-container ul li {
	font-size: 95%;
}

.ez-toc-list-level-3 {
	margin: 0;
	padding: 0px 0px 0px 20px;
}

.app {
	margin: 40px 0;
	padding: calc(40px - 1.5rem) 40px 40px;
	border-radius: 8px;
}

.app h1,
.app h2 {
	font-size: 30px;
	line-height: 1.2;
}

.has-text-align-center {
	text-align: center;
}

.has-x-large-font-size {
	font-size: 42px !important;
}

.has-medium-font-size {
	font-size: 20px !important;
}

.has-small-font-size {
	font-size: 13px !important;
}

.is-content-justification-center {
	justify-content: center;
}

.magic-table table {
	border-collapse: collapse;
	width: 100%;
}

.magic-table td {
	border: 1px solid;
	padding: 0.5em;
}

.faq {
	margin: 1.5em 0;
}

.faq__item {
	margin: 8px 0;
	padding: 15px 19px;
	border-width: 1px;
	border-style: solid;
	border-color: #dd3333;
	border-radius: 12px;
	cursor: pointer;
	-webkit-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.faq__item--active {
	background-color: #dd3333;
}

.faq__item.active,
.faq__item:hover {
	background: #dd3333;
}

.faq__question {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	position: relative;
	margin: 0 !important;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
}

.faq__answer {
	max-height: 0px;
	overflow: hidden;
	transition: all .4s ease;
}

.faq__answer>div {
	margin: 12px 0px 0px 0px;
}

.faq__question::after {
	content: '+';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 22px;
	height: 22px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1.5px solid #fff;
	border-radius: 50%;
	background-repeat: no-repeat;
	background-size: 11.5px 1.5px, 1.5px 11.5px;
	background-position: center center, center center;
	-webkit-transition: .1s ease-in-out;
	-o-transition: .1s ease-in-out;
	transition: all .1s ease-in-out;
}

.faq__item--active .faq__question::after {
	content: '-';
	transform: translateY(-50%) rotate(180deg);
}

table.full_ {
	background: #22262a;
	margin-top: 20px;
	width: 100%;
	border-collapse: inherit;
	padding: 20px;
}

tr.item-tovars td {
	display: flex;
}

td.tovav-content {
	padding: 10px;
}

td.open-tovar a {
	background: #d33;
	padding: 10px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 700;
	text-align: center;
	color: #fff;
}

.click-coupon {
	text-decoration: underline;
}

.open-tovar {
	justify-content: end;
}

.scroll-up {
	width: 56px;
	height: 56px;
	position: fixed;
	right: calc(50% - 585px);
	bottom: 150px;
	display: flex;
	justify-content: center;
	align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 27px;
	color: var(--heading-color);
	background: var(--buttons-color);
	transform: rotate(-90deg);
	opacity: 0;
	pointer-events: none;
}

.scroll-up--visible {
	opacity: 1;
	pointer-events: all;
}


/* --------------------footer---------------------- */

.footer {
	padding: 40px 0 154px 0;
	background: var(--accent-color-3);
}

.footer__copyright {
	margin: 24px 0 0;
	text-align: center;
	color: rgba(255, 255, 255, .7);
}

.footer .menu__list {
	margin: 0;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.footer .menu__list li a {
	margin: 0 14px;
	padding: 0;
	font-weight: 400;
	text-transform: unset;
	color: rgba(255, 255, 255, .6);
}


/* ----------------.banner-float-bar-bg----------------- */

.banner-float-bar-bg {
	position: fixed;
	bottom: 0px;
	left: 0;
	right: 0;
	top: auto;
	background-color: #22262a;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-ms-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: all .3s ease-in-out;
	transform: translateY(100%);
}

.banner-float-bar-bg--visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.banner-float-bar-bg-ins {
	padding: 10px 0;
}

.banner-float-bar {
	margin: 0 15px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	height: 94px;
}

.banner-float-bar-data {
	width: 100%;
	max-width: 50%;
}

.banner-float-bar-data-ins {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.banner-float-bar-logo {
	flex: 0 0 120px;
}

.banner-float-bar-logo-img {
	line-height: 1;
}

.banner-float-bar-logo-img img {
	max-width: 100px;
	max-height: 80px;
	object-fit: contain;
}

.banner-float-bar-title {}

.banner-float-bar-title-wrap {
	color: #fff !important;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.2;
}

.banner-float-bar-rating {
	font-size: 16px;
	line-height: 1;
	display: flex;
	align-items: center;
}

.star-rating {}

.banner-float-bar-rating .star-rating {
	margin-bottom: 3px;
	display: flex;
	margin-right: 5px;
}

.star {}

.banner-float-bar-rating .star-rating .star {
	color: #fed330;
	display: inline-block;
	font-size: 24px;
	font-style: normal;
	line-height: 1;
	text-align: center;
	text-decoration: inherit;
	vertical-align: top;
	padding: 0 3px 0 0;
}

.banner-float-bar-rating span {
	color: #7f8c8d;
}

.banner-float-bar-button {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.show-banner .banner-float-bar-bg {
	opacity: 1;
	visibility: visible;
	bottom: 0;
	z-index: 2;
}

.banner-float-bar-button-wrap .btn {
	display: inline-block;
	text-transform: capitalize !important;
	font-size: 18px;
	line-height: 1;
	padding: 14px 30px;
	text-align: center;
	margin: 0;
	font-weight: 700;
	border-radius: 5px;
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-ms-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: all .5s ease-in-out;
	text-decoration: none;
	border: 0;
}

.banner-float-bar-button-wrap .btn-secondary {
	color: #fff;
	background: 0 0;
	border: 1px solid #d33;
	margin-right: 10px;
}

.btn-secondary:hover {
	background-color: #d33;
}

.banner-float-bar-button-wrap .btn-primary {
	color: #fff;
	background: #d33;
	border: 1px solid #d33;
}

.btn-primary:hover {
	background-color: transparent;
}

/* ---------------------media---------------------- */

@media (min-width: 600px) {
	.csl_sliders_rows .cb_item {
		-webkit-flex: 0 1 33.333333%;
		-ms-flex: 0 1 33.333333%;
		flex: 0 1 33.333333%;
		width: 33.333333%;
		max-width: 33.333333%;
		min-width: 33.333333%;
	}
}

@media (min-width: 782px) {
	.magic-columns {
		flex-wrap: nowrap;
	}

	.magic-columns:not(.is-not-stacked-on-mobile)>.magic-column[style*=flex-basis] {
		flex-grow: 0;
	}

	.magic-columns:not(.is-not-stacked-on-mobile)>.magic-column {
		flex-basis: 0;
		flex-grow: 1;
	}
}

@media (min-width: 1024px) {
	.csl_sliders_rows .cb_item {
		-webkit-flex: 0 1 25%;
		-ms-flex: 0 1 25%;
		flex: 0 1 25%;
		width: 25%;
		max-width: 25%;
		min-width: 25%;
	}
}


@media screen and (max-width: 1200px) {
	body {
		font-size: 14px;
	}

	.menu {
		display: none;
	}

	.header {
		position: fixed;
		left: 0;
		right: 0;
		top: 0;
		z-index: 999;
	}

	.header__actions .header__button {
		display: none;
	}

	.header__burger {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
		overflow: visible;
	}

	.header__inner {
		position: relative;
		-webkit-box-pack: space-between;
		-ms-flex-pack: space-between;
		justify-content: space-between;
	}

	.header__actions {
		margin: 0;
	}

	.header__logo {
		margin: 0;
	}

	.header__top {
		padding: 18px 10px;
	}

	.header__mobile-buttons {
		padding: 5px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		background: #1f1f26;
	}

	.content{
		padding: 150px 0 80px 0;
	}

	.menu-mobile__main .menu__list {
		margin: 0;
		display: block;
	}

	.menu-mobile__second .menu__list {
		margin: 0;
		display: block;
	}

	.menu-mobile__buttons {
		display: none;
	}

	.menu-mobile {
		display: block;
		max-height: 0px;
		overflow: hidden;	
		transition: all .5s ease;
		pointer-events: none;
	}

	.menu-mobile-body{
		padding: 22px 40px 22px;
	}

	.menu-mobile--active {
		transform: translateY(0%);
		pointer-events: all;
		max-height: 100vh;
	}

	.menu-mobile__main {
		display: flex;
	}

	.menu-mobile__second {
		display: flex;
	}

	.menu-mobile__second .menu__list li a {
		padding: 8px 0;
		color: var(--text-color);
		text-transform: unset;
	}

	.menu-mobile__sep {
		margin: 18px 0;
		border-color: #fff;
		border-top: 0;
		border-bottom: 1px solid;
	}

	.magic-columns {
		flex-wrap: wrap;
		justify-content: center;
	}

	.magic-column-is-layout-flow {
		flex-basis: 100% !important;
	}

}

@media(max-width:700px){

	.banner-float-bar-data-ins{
		flex-wrap: wrap;
	}
	
	.banner-float-bar-logo{
		flex: 0 1 100%;
	}

	.banner-float-bar-button-wrap .btn-secondary{
		display: none;
	}

	.banner-float-bar-logo-img img{
		max-height: 30px;
	}
}