/* MDTROPININ CSS CUSTOMIZATION */
/* USER VARIABLES SECTION */

:root {
	--accent-orange: #FF6A00;
	--accent-dark: #1B1B23;
	--text: #fff;
	--regular-text: 18px;
	--lineheight: 1.65;
	--userfont: montl, sans-serif;
	--title: montb, sans-serif;
	--subtext: montr, sans-serif;
}

/* BOOTSTRAP SETTINGS SECTION */

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl { --bs-gutter-x: .625rem; }
.row, .row > * { --bs-gutter-x: 1.25rem; }

/* FONTS LOAD SECTION */

@font-face { src: url("../fonts/MontserratAlternates-Bold.woff2") format("woff2"); font-family: "montb"; }
@font-face { src: url("../fonts/MontserratAlternates-Regular.woff2") format("woff2"); font-family: "montr"; }
@font-face { src: url("../fonts/Montserrat-Light.woff2") format("woff2"); font-family: "montl"; }

/* GENERAL CSS SETTINGS */

::placeholder { 
	color: #666;
	font-family: var(--subtext);
	font-size: 18px;
}
::selection { background-color: var(--accent-orange); color: var(--accent-dark); }
input, textarea { 
	outline: none;
}
input, textarea { outline: none; }
input:focus:required:invalid, textarea:focus:required:invalid { border-color: rgb(255, 60, 0); }
input:required:valid, textarea:required:valid { border-color: rgb(90, 255, 90); }

body {
	font-family: var(--userfont);
	font-size: var(--regular-text);
	line-height: var(--lineheight);
	color: var(--text);
	min-width: 320px;
	position: relative;
	overflow-x: hidden;
	background-color: var(--accent-dark);
}
section {
	padding-top: 100px;
	padding-bottom: 100px;
}
section.sc-accent {
	background-color: var(--accent-orange);
}
a {
	text-decoration: none;
	font-family: var(--subtext);
	color: var(--accent-orange);
	transition: all .2s ease-in-out;
}
a:hover {
	text-decoration: none;
	color: var(--accent-orange);
}
/* BUTTON CSS */
/* BUTTON CSS */
.btn {
	border-radius: 4px;
	font-size: 18px;
	font-family: var(--userfont);
	font-weight: bold;
	color: #fff;
	padding: 12px 62px;
	display: inline-block;
}
.btn:hover {
	color: #fff;
}
.btn-yellow {
	text-transform: uppercase;
	box-shadow: 0px 0px 4px #FF720D;
	background: #FF8800;
	background: linear-gradient(33deg,rgba(255, 136, 0, 1) 0%, rgba(255, 130, 88, 1) 100%);
}
.btn-yellow:hover {
	box-shadow: 0px 0px 2px #FF720D;
	background: linear-gradient(123deg,rgba(255, 136, 0, 1) 10%, rgba(255, 130, 88, 1) 100%);
	transform: translateY(2px);
}
.btn-circle {
	border-radius: 50px;
  background-color: #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 57px;
  height: 57px;
  z-index: 9;
  transition: all .2s ease-in-out;
	padding: 0;
}
.btn-circle::before {
	z-index: 1;
  width: 79px;
  height: 79px;
  position: absolute;
  content: '';
  background-color: rgba(217, 217, 217, 24%);
  border-radius: 50px;
  animation: mdOpacitykAnim 4s linear infinite;
}
.btn-circle:hover {
	background-color: var(--accent-orange)
}
.btn-circle:hover svg path {
	fill: #fff;
}
.read-more {
	font-size: 13px;
	padding: 8px 20px;
}
.btn-dark {
	background-color: rgba(255, 255, 255, 0.31);
	text-transform: uppercase;
}
.btn-dark:hover {
	background-color: rgba(255, 255, 255, 0.45);
	transform: translateY(2px);
}
.btn-empt {
	border: 1px solid #484857;
	color: #484857;
}
.btn-empt:hover {
	border: 1px solid var(--accent-orange);
	color: var(--accent-orange);
}
@keyframes mdOpacitykAnim {
	0% {
    opacity: .6;
		transform: scale(0.4);
  }
  50% {
    opacity: 1;
		transform: scale(1);
  }
	100% {
    opacity: .6;
		transform: scale(0.4);
  }
}

/* BreadCrumbs */
.sc-breadcrumbs .breadcrumbs{
	font-family: var(--userfont);
	font-size: 14px;
}
.sc-breadcrumbs .breadcrumbs span {
	color: #6b6a7c;
}
.sc-breadcrumbs .breadcrumbs a {
	font-family: var(--userfont);
	font-size: 14px;
	color: #4e4d72;
	border: 1px solid #4e4d72;
	padding: 2px 6px;
	background-color: var(--accent-dark);
	border-radius: 4px;
}
.sc-breadcrumbs .breadcrumbs a:hover {
	color: #fff;
	border: 1px solid var(--accent-orange);
	background-color: var(--accent-orange);
}
.sc-breadcrumbs .breadcrumbs .aioseo-breadcrumb-separator {
	color: #424150;
}
/* HEADER CSS */
/* HEADER CSS */
header {
	position: relative;
}
.header-top__wrapper {
	display: flex;
	padding: 16px 0;
	justify-content: space-between;
}
.logo {
	width: 27px;
	height: 27px;
	display: flex;
  align-items: center;
}
.logo img {
	width: 100%;
	height: auto;
}
#header-nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
#header-nav ul li {
	display: inline-block;
	margin-right: 20px;
}
#header-nav ul li:last-child {
	margin-right: 0;
}
#header-nav ul li a,
#header-nav ul li span {
	color: #8b8b8b;
	font-family: var(--userfont);
	font-weight: 700;
	transition: all .2s ease-in-out;
	font-size: 14px;
	letter-spacing: 0.5px;
}
#header-nav ul li a:hover {
	color: #fff;
}
#header-nav ul li.current-menu-item a {
	color: #fff;
}
#header-nav ul li.current-menu-item span {
	color: #fff;
	cursor: pointer;
}
.header-top {
  z-index: 99;
  position: fixed;
	display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: var(--accent-dark);
	box-shadow: 0px 0px 0px 1px #151212;
	top: 0px;
}
.header-footer {
	background-size: cover;
	background-position: center;
	padding: 120px 0;
}
.no_home .header-footer {
	padding: 80px 0;
	padding-top: 150px;
	margin-top: 60px;
}
.header-footer::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: linear-gradient(180deg,rgba(255, 136, 0, 0) 52%, rgba(27, 27, 35, 1) 100%);
}
.no_home .header-footer::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: linear-gradient(180deg,rgba(255, 136, 0, 0) 2%, rgba(27, 27, 35, 1) 100%);
}
.header-footer__wrapper {
	z-index: 9;
}
@keyframes mdopacity {
	0% {
    opacity: 0.7;
		text-shadow: 0px 0px 11px #53FF31;
  }
  50% {
    opacity: 1;
		text-shadow: 0px 0px 4px #53FF31;
  }
	100% {
    opacity: 0.7;
		text-shadow: 0px 0px 11px #53FF31;
  }
}
.server-status {
	background-color: #3B3B4B;
	border-radius: 20px;
	padding: 6px 22px;
	font-family: var(--userfont);
	font-weight: 600;
	color: #ececec;
	font-size: 14px;
	letter-spacing: 0.8px;
}
.server-status span {
	color: #29F800;
	animation: mdopacity 3s ease-in-out infinite;
}
.topper {
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 10px;
}
.header-title__top {
	border-radius: 20px;
	background-color: #24262A;
	font-size: 14px;
	font-family: var(--subtext);
	color: #A9A9A9;
	display: flex;
	justify-content: center;
  padding: 6px 30px;
}
.vk-spinn-image {
	width: 21px;
	height: 21px;
	margin-right: 10px;
	display: flex;
  align-items: center;
  padding-top: 1px;
}
.header-title__top img {
	width: 100%;
	height: auto;
}
.header-title__top:hover {
	background-color: #0077ff;
	color: #fff;
}
.header-title__name {
	font-size: 84px;
	font-family: var(--title);
	line-height: 1.2;
}
.no_home .header-title__h1 {
	font-size: 48px;
	font-family: var(--title);
	margin-bottom: 40px;
}
.no_home .topper {
	margin-bottom: 40px;
}
.header-title__name span {
	color: var(--accent-orange);
}
.header-title__h1 {
	font-size: 28px;
	color: #E8E8E8;
	font-family: var(--subtext);
	margin-bottom: 80px;
}
.header-title__buttons {
	display: flex;
	gap: 30px;
	align-items: center;
}
.header-title__buttons .circle {
	display: flex;
	align-items: center;
}

/* MOBILE MENU */
.mobile-nav {
	display: none;
}
.mobile-menu {
	position: absolute;
	height: 50px;
	width: 50px;
	right: 4px;
	top: 6px;
	z-index: 99;
}
.mobile-menu__button {
	position: relative;
	z-index: 3;
	cursor: pointer;
	width: 50px;
	height: 50px;
	display: flex;
  flex-direction: column;
  justify-content: center;
	align-items: center;
}
.menu-icon__line {
  height: 2px;
  width: 30px;
  display: block;
  background-color: var(--accent-orange);
  margin-bottom: 4px;
  transition: transform 0.2s ease, background-color 0.5s ease;
}
.menu-icon__line-left {
  width: 15px;
	align-self: start;
  margin-left: 10px;
}
.menu-icon__line-right {
  width: 15px;
  float: right;
	text-align: right;
	align-self: end;
	margin-right: 10px;
}
.nav-btn-clicked .menu-icon__line {
  background-color: #F65C00;
  transform: translateX(0px) rotate(-45deg);
}
.nav-btn-clicked .menu-icon__line-left {
  transform: translateX(1px) rotate(45deg);
}
.nav-btn-clicked .menu-icon__line-right {
  transform: translateX(-2px) rotate(45deg);
}
.mobile-menu__content {
	background-color: #12121A;
	padding: 30px;
	position: absolute;
	z-index: 9;
	top: -1000px;
	left: 0;
  right: 0;
	transition: all .25s ease-in-out !important;
}
.mobile-menu__content.show {
  bottom: 0;
  top: 0;
	left: 0;
	right: 0;
	height: 100vh;
	display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu__content ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.mobile-menu__content ul li {
	font-weight: 400;
	font-size: 18px;
	padding: 14px 80px;
	border-bottom: 1px solid #171922;
	transition: all .2s ease-in-out;
	text-align: center;
}
.mobile-menu__content ul li a {
	color: #D0D0D0;
	font-family: var(--title);
	font-weight: bold;
	font-size: 14px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}
.mobile-menu__content ul li:last-child {
	border-bottom: none;
}
.mobile-menu__content ul li:hover {
	background: #582b2b;
}

/* SECTION GAMES */
/* SECTION GAMES */
.one-title__wrapper {
	text-align-last: left;
	margin-bottom: 60px;
}
h2 {
	font-size: 24px;
	font-family: var(--title);
}
.game-item__wrapper {
	padding: 25px;
	border-radius: 6px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 352px;
	background-size: cover;
	background-position: center;
	position: relative;
	margin-bottom: 24px;
	box-shadow: 0 0 10px #111;
	overflow: hidden;
}
.game-wrapper__bottom {
	display: flex;
	justify-content: start;
	align-items: center;
	flex-direction: row;
	gap: 14px;
}
.game-item__wrapper::after {
	content: '';
	position: absolute;
	background-color: rgba(27, 27, 35, 70%);
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transition: all .2s ease-in-out;
}
.game-item__wrapper:hover::after {
	background-color: rgba(27, 27, 35, 15%);
}
.game-item__top {
	display: flex;
	align-items: start;
	gap: 10px;
	z-index: 9;
}
.game-item__spin {
	border-radius: 20px;
	padding: 2px 18px;
	font-size: 13px;
	background-color: rgba(255, 255, 255, .2);
}
.game-item__bottom {
	z-index: 9;
}
.game-item__name {
	font-size: 32px;
	font-family: var(--subtext);
	font-weight: bold;
	line-height: 1;
	padding-bottom: 10px;
}
.game-item__feat {
	font-family: var(--subtext);
	font-size: 14px;
	color: #9A9A9A;
	display: flex;
	flex-direction: row;
	gap: 10px;
	align-items: center;
}
.game-item__feat img {
	width: 10px;
	height: 10px;
}
.game-item__descr {
	font-size: 18px;
	color: #fff;
	margin-bottom: 10px;
}

/* SECTION ABOUT */
/* SECTION ABOUT */
@keyframes mdBorderBackAnim {
	0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(10px);
  }
	100% {
    transform: translateY(-10px);
  }
}
.s-about-left img {
	width: 100%;
	height: auto;
	animation: mdBorderBackAnim 3s ease-in-out infinite;
}
.cute-title__wrapper {
	font-family: var(--title);
	margin-bottom: 20px;
}
.subtitle {
	font-size: 24px;
	color: #fff;
	line-height: 1;
}
.cute-title__wrapper h2 {
	font-size: 46px;
}
.cute-title__wrapper h2 span {
	color: var(--accent-orange);
}

/* SECTION STRIP */
/* SECTION STRIP */
.sc-strip {
	text-align: center;
	padding: 80px 0;
}
.sc-accent .cute-title__wrapper h2 {
	color: var(--accent-dark);
	font-size: 36px;
}
.sc-accent .subtitle {
	margin-bottom: 16px;
}

/* BLOG CSS */
/* BLOG CSS */
.blog-item-link {
	color: #fff;
}
.blog-item__wrapper {
	background-color: #111117;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 30px;
}
.blog-item__wrapper:hover .blog-item__top img {
	transform: scale(1.1);
}
.blog-item__footer {
	padding: 0 22px;
	padding-top: 12px;
	padding-bottom: 30px;
}
.blog-item__top {
	overflow: hidden;
}
.blog-item__top img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	transition: all .2s ease-in-out;
}
.blog-item__inf {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: var(--subtext);
	font-size: 12px;
	color: #404957;
	margin-bottom: 12px;
}
.blog-item__date,
.blog-item__comment{
	display: flex;
	align-items: center;
}
.blog-item__date img,
.blog-item__comment img{
	margin-right: 5px;
}
.blog-item__inf img {
	width: 9px;
	height: auto;
}
.blog-item__title {
	font-size: 20px;
	font-family: var(--userfont);
	font-weight: bold;
}
.to-blog {
	display: block;
  width: 300px;
	margin: auto;
	text-align: center;
	margin-top: 40px;
}
/* FEATURES */
/* FEATURES */
.sc-features {
	background-color: #0c0f17;
}
.short-h-description {
  max-width: 700px;
  width: 100%;
	margin-top: 16px;
}
.section-features__content-item {
	margin-bottom: 30px;
}
.section-features__content-item-img {
	width: 100%;
	height: 200px;
	max-height: 200px;
	overflow: hidden;
	border-radius: 6px;
	margin-bottom: 18px;
	position: relative;
}
.section-features__content-item-img:after {
	content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(180deg,rgba(255, 136, 0, 0) 2%, rgb(9, 13, 23) 100%);
}
.section-features__content-item-img h3 {
	margin-bottom: 0;
}
.section-features__content-item-img img {
	width: 100%;
  height: 100%;
  object-fit: cover;
	transition: all .4s ease-in-out;
}
.section-features__content-item-img:hover img {
	transform: scale(1.1);
}
.section-features__content-item-title {
	position: absolute;
	bottom: 18px;
	left: 10px;
}
.section-features__content-item-title h3 {
	font-family: var(--title);
	font-size:19px;
	position: relative;
	z-index: 9;
}

/* FAQ */
/* FAQ */
#accordeon {
	position: relative;
	z-index: 9;
	list-style:none;
	padding-left: 0;
  margin-left: 0;
}
#accordeon li {
	padding: 4px 24px;
  border-radius:6px;
  margin-bottom: 8px;
  position: relative;
  border: 1px solid transparent;
	background: #24242f;
	background: #24242f;
	transition: all .2s ease-in-out;
}
#accordeon li:hover {
	cursor: pointer;
	border: 1px solid #313131;
}
#accordeon li:hover .phead {
	cursor: pointer;
	color: var(--accent-orange);
}
#accordeon .hidden{
  margin:auto;
  visibility: hidden;
  height:0;
  overflow:hidden;
  opacity:0;
  transition:all .4s ease-in-out;
}
#accordeon li.active .answer{
  visibility: visible;
  height:auto;
  overflow:none;
  opacity:1;
	padding-top: 0;
	line-height: 1.8;
	font-size: 16px;
	padding-top: 14px;
}
#accordeon li.active {
	border: 1px solid #313131;
}
#accordeon li.active .phead {
	color: var(--accent-orange);
}
.phead {
	margin: 0;
	font-family: var(--userfont);
	font-size: 18px;
	transition: all .2s ease-in-out;
}
.phead span {
	font-size: 26px;
	margin-right: 10px;
}
.six-section.faq-section {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: top;
}
.faq-wrapper.faq-accordeon {
	margin-bottom: 50px;
}
#accordeon ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
#accordeon ul li {
	margin: 0;
	padding: 0;
}


/* FOOTER CSS */
/* FOOTER CSS */
footer {
	background: #111117;
	padding-top: 140px;
}
.footer-wrapper .header-title__name {
	margin-bottom: 10px;
}
.footer-spin__wrapper {
	display: flex;
	align-items: center;
	justify-content: start;
	flex-direction: row;
	margin-bottom: 100px;
}
.footer-title__spin {
	background-color: #24262A;
	color: #A9A9A9;
	border-radius: 20px;
	padding: 6px 18px;
	font-family: var(--subtext);
	font-size: 16px;
	margin-right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
}
.footer-title__spin img {
	margin-right: 5px;
}
.spin-vk img {
	width: 24px;
	height: auto;
}
.spin-tg img {
	width: 15px;
	height: auto;
}

.footer-title__spin:hover {
	background-color: #fff;
	color: var(--accent-dark);
}
.footer-wrapper {
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer-bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.footer-bottom a {
	color: #898989;
	margin-bottom: 20px;
	padding: 12px 20px;
	text-align: center;
}
.footer-bottom a:hover {
	color: var(--accent-orange);
}
.copyright {
	text-align: center;
	padding-top: 40px;
	padding-bottom: 10px;
	font-family: var(--userfont);
	font-size: 14px;
	color: #353541;
}
article h2 {
	font-family: var(--title);
	font-size: 28px;
	margin-bottom: 20px;
}
article h3 {
	font-family: var(--title);
	font-size: 20px;
	margin-bottom: 20px;
}
article h4 {
	font-family: var(--title);
	font-size: 18px;
	margin-bottom: 20px;
}
.article-box {
	background-color: #0d0f14;
	border-radius: 20px;
	padding: 50px 30px;
	position: relative;
}
.article-metha {
  position: absolute;
  display: flex;
  top: 24px;
  font-size: 12px;
  color: #293240;
  align-items: center;
  justify-content: center;
	font-family: var(--subtext);
}
.article-metha .blog-item__date,
.article-metha .blog-item__comment {
	display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.article-metha .blog-item__date img,
.article-metha .blog-item__comment img {
	margin-bottom: 0;
}
.article-metha .blog-item__date {
	margin-right: 20px;
}
.article-box h2 {
	margin-bottom: 20px;
	border-bottom: 1px solid #11151e;
	padding-bottom: 14px;
	margin-top: 24px;
}
.article-box h3 {
	margin-top: 40px;
	margin-bottom: 14px;
	padding-bottom: 10px;
	border-bottom: 1px solid #11151e;
}
.article-box table {
	white-space: nowrap;
}
figure.wp-block-table,
figure.wp-block-table.aligncenter, figure.wp-block-table.alignleft, figure.wp-block-table.alignright {
	overflow-x: auto;
	display: block;
}
figcaption.wp-element-caption {
  font-size: 14px;
  color: #33394f;
  margin: 0;
  padding: 0;
}
.article-box .wp-block-table tbody,.article-box .wp-block-table td,.article-box .wp-block-table tfoot,.article-box .wp-block-table th,.article-box .wp-block-table thead,.article-box .wp-block-table tr {
	border: 1px solid #202436;
	padding: 6px 15px;
}
.wp-block-table.aligncenter td, .wp-block-table.aligncenter th, .wp-block-table.alignleft td, .wp-block-table.alignleft th, .wp-block-table.alignright td, .wp-block-table.alignright th {
	border: 1px solid #202436;
	padding: 6px 15px;
}
.article-box tbody p, 
td p, 
tfoot p, 
th p, 
thead p, 
tr p {
	padding: 0;
	margin: 0;
}
.article-custom {
	background-color: #171c26;
	padding: 8px 20px;
	border-radius: 4px;
}
.seporator {
	border-bottom: 1px solid #19202f;
	margin-bottom: 18px;
	padding-top: 4px;
}
article img {
	max-width: 100%;
	border-radius: 10px;
	margin-bottom: 20px;
}
section.article {
	padding-bottom: 40px;
}
.nopadding {
	padding: 0;
}
.nomargin {
	margin: 0;
}
.sc-cath {
	padding-bottom: 0;
}
section.article {
	padding-top: 40px;
}

/* COMMENTS */
/* COMMENTS */
.respond {
	position: relative;
}
.respond-wrapper {
	padding-top: 30px;
	margin-top: 40px;
	border-top: 1px solid #14161e;
}
.respond label {
	display: block;
}
#respond {
	width: 100%;
	max-width: 800px;
	margin: 1em auto 2em;
	position: relative;
	margin-top: 40px;
}
.comment-respond {
	padding: 20px;
  background-color: #0c0c13;
  border-radius: 10px;
	border: 6px solid #14161e;
}
.comment-respond h3 {
	margin-top: 4px;
}
.respond-cont input, .respond-cont textarea {
	width: 100%;
	width: 100%;
  background-color: #161820;
  border: none;
  border-radius: 5px;
  padding: .6em .8em;
  color: #d3d3d3;
  box-shadow: inset 0 0 0 1px #1f2428;
}
.respond-cont input[type="checkbox"] {
	width: auto;
	float: left;
	margin-top: 7px;
	margin-right: 12px;
}
.respond-cont .comment-body img{
	padding-bottom: 0;
}
article.comment-body {
	position: relative;
}
.respond-cont ul {
	list-style-type: none;
}
.respond-cont ul.commentslist {
	padding: 0;
	padding-bottom: 40px;
}
.respond-cont h2{
	border-bottom: 1px solid #a2a9b1;
	padding-bottom: 4px;
	margin-bottom: 6px;
}
.respond-cont h2.comment-title {
	border-bottom: 1px solid #121820;
	margin-bottom: 20px;
}
span#reply-title {
	font-size: 24px;
	font-family: var(--title);
	display: flex;
  justify-content: space-between;
  align-items: center;
	margin-bottom: 12px;
}
#wait_approval {
	background: #163c1e;
  padding: 10px 20px;
  color: #9bdb7e;
  border-radius: 7px;
}
.comment-form-cookies-consent {
  font-size: 15px;
  font-family: var(--regular-text);
  color: #293559;
  padding: 14px 0;
  margin: 0;
}
form .form-submit {
	margin-top: 20px;
}
form .form-submit input#submit {
	background: linear-gradient(33deg,rgb(215, 70, 0) 0%, rgb(164, 44, 32) 100%);
	box-shadow: 0px 0px 1px #3c1f17;
}
footer.comment-meta {
	padding: 10px 16px;
  font-family: var(--subtext);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
  color: #60a3cc;
	background-color: transparent;
	position: relative;
}
footer.comment-meta img {
	margin-bottom: 0;
	border-radius: 40px;
	margin-right: 16px;
}
.comment-content {
	padding: 10px 16px;
	font-family: var(--subtext);
}
.comment-author.vcard {
	display: flex;
	align-items: center;
}
span.says {
	display: none;
}
.comment-metadata a {
	color: #20313c;
  font-size: 14px;
}
ul.commentslist li.comment {
	position: relative;
	margin-bottom: 20px;
}
.respond-cont .reply {
  position: absolute;
  right: 14%;
  top: 10px;
}
li.comment.parent {
	border-left: 1px dotted #4a4545;
	border-radius: 8px;
	background-color: #0a0d13;
}
li.comment {
	border-bottom: 1px dotted #151b28;
}
.respond-cont .reply a {
  font-size: 14px;
  border: 1px solid #262c46;
  padding: 3px 6px;
  border-radius: 6px;
  color: #262c46;
}
.logged-in-as {
  font-size: 15px;
  font-family: var(--regular-text);
  color: #293559;
}
li .comment-respond {
  background-color: #0d121a;
  border-radius: 10px;
  border: 1px dashed #2e2f42;
  box-shadow: 0 0 5px #060709;
}
#cancel-comment-reply-link {
	border: 1px solid #1e2d40;
  padding: 2px 10px;
  font-size: 12px;
  color: #525c68;
  border-radius: 4px;
}

/* COOCKIES */
/* COOCKIES */
#cookie_note{
    display: none;
    position: fixed;
    top: 20%;
    left: 50%;
    max-width: 90%;
    transform: translateX(-50%);
    padding: 0;
		overflow: hidden;
    border-radius: 4px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
		background-color: #25252f;
		z-index: 99;
}
.cookie-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
	width: 900px;
}
.cookie-left-side {
  height: 100%;
  width: 100%;
  max-width: 600px;
  overflow: hidden;
	background-position: center left;
  background-size: cover;
	position: relative;
	margin-right: -100px;
}
.cookie-left-side::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(90deg,rgba(255, 136, 0, 0) 0%, rgb(37, 37, 47) 98%);
}
.cookie-right-side {
	width: 100%;
	position: relative;
  z-index: 99;
	padding: 0;
	padding-bottom: 0;
}
.info-right-box,
.rule-for-accept {
	padding-top: 20px;
	padding-right: 20px;
	cursor: pointer;
}
.cookie-right-wrapper p {
	font-size: 16px;
	color: #fff;
	line-height: 1.5;
	margin-bottom: 10px;
}
.label-for-law-input {
	font-size: 14px;
	margin-top: -4px;
}
.rule-for-accept {
	display: flex;
  flex-direction: row-reverse;
  justify-content: start;
  align-items: start;
	padding-bottom: 8px;
}
.rule-for-accept input {
	-ms-transform: scale(1.7); /* IE */
	-moz-transform: scale(1.7); /* FF */
	-webkit-transform: scale(1.7); /* Safari and Chrome */
	-o-transform: scale(1.7); /* Opera */
	transform: scale(1.7);
	margin-right: 14px;
	margin-left: 6px;
	cursor: pointer;
}
.cookie-links-box {
  border-bottom: 1px dashed #3f4459;
  padding-bottom: 8px;
}
.cookie-links-box a {
	display: block;
}
button.cookie_accept:disabled {
	width: 100%;
  border-radius: 0;
  border: 0;
  font-weight: 300;
  font-size: 16px;
  padding: 12px;
	background-color: #313131;
}
button.cookie_accept {
	width: 100%;
  border-radius: 0;
  border: 0;
  font-weight: 300;
  font-size: 16px;
  padding: 12px;
	background-color: var(--accent-orange);
	transition: all .2s ease-in-out;
}
.wp-block-video {
    max-width: 500px;
}
