:root {
	--theme-block-margin-bottom: 32px;
	--theme-block-margin-bottom-mob: 24px;
	--theme-block-p-bottom: 1rem;
	--theme-block-p-bottom-mob: 1rem;
}
body {
	font-family: 'Inter', sans-serif;
	background-color: var(--bs-body-bg);
}
.wrap {
	padding-top: 94px;
}
.container {
	max-width: 1200px;
}
h1, h2, h3 {
	font-weight: 600;
	margin-bottom: 20px;
}
img {
	max-width: 100%;
	height: auto;
}
.wp-block-media-text {
	margin-bottom: var(--theme-block-margin-bottom);
}
.wp-block-media-text img {
	border-radius: var(--theme-rounded-images);
}
@media (max-width: 991px) {
	.wp-block-media-text {
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
}
@media (min-width: 992px) {
	.secondary-menu-init .wrap {
		padding-top: 134px;
	}
	.toc-menu-init .wrap {
		padding-top: 142px;
	}
	.secondary-menu-init.toc-menu-init .wrap {
		padding-top: 182px;
	}
}
@media (max-width: 600px) {
	.admin-bar .wrap {
		padding-top: 40px;
	}
}

a,
a:hover {
	color: var(--bs-primary);
}

/**
	Header
 */
header.header {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	background-color: var(--header_bg_color);
	border-bottom: 1px solid var(--bs-secondary);
	z-index: 20;
}
header.header .header__container {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 70px;
	transition: .5s;
}
header.header .logo {
	max-width: 175px;
}
header.header .logo img {
	max-height: 50px;
}
header.header .primary_menu_desktop_ver {
	max-width: 50%;
	display: flex;
	gap: 20px;
	width: -webkit-fill-available;
}
header.header .primary_menu_desktop_ver > ul {
	display: flex;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}
header.header .primary_menu_desktop_ver > ul > li > a {
	position: relative;
	display: block;
	font-size: .9rem;
	text-decoration: none;
	white-space: nowrap;
	color: var(--header_footer_link_color);
}
header.header .primary_menu_desktop_ver > ul > li.current-menu-item > a,
header.header .primary_menu_desktop_ver > ul > li.current-menu-ancestor > a,
header.header .primary_menu_desktop_ver > ul > li > a.show-dropdown,
header.header .primary_menu_desktop_ver > ul > li > a:hover {
	color: var(--bs-primary);
}
header.header .primary_menu_desktop_ver > ul > li:last-child {
	margin-right: 0;
}
header.header .primary_menu_desktop_ver .dropdown-menu {
	transform: translateY(10px);
}
header.header .primary_menu_desktop_ver > ul > li ul > li a.dropdown-toggle:after {
	transform: rotate(-90deg);
}
header.header .primary_menu_desktop_ver > ul > li ul > li.dropdown:hover ul {
	display: block;
}
header.header .primary_menu_desktop_ver .dropdown-menu .dropdown-item {
	font-size: .85rem;
	color: initial !important;
}
header.header .primary_menu_desktop_ver .dropdown-menu .dropdown-item:focus,
header.header .primary_menu_desktop_ver .dropdown-menu .dropdown-item:hover,
header.header .primary_menu_desktop_ver .dropdown-menu .dropdown-item.active,
header.header .primary_menu_desktop_ver .dropdown-menu .dropdown-item:active {
	background-color: #e9ecef !important;
}
header.header .primary_menu_desktop_ver .header_dropdown {
	position: relative;
}
header.header .primary_menu_desktop_ver .header_dropdown > ul {
	display: none;
	position: absolute;
	top: 20px;
	left: 0;
	flex-direction: column;
	padding: 12px;
	margin: 0;
	list-style: none;
	z-index: 10;
	border: 1px solid var(--bs-secondary);
	background-color: var(--header_bg_color);
	border-radius: 10px;
}
header.header .primary_menu_desktop_ver .header_dropdown > ul li a {
	display: flex;
	padding: 6px;
	align-items: center;
	gap: 4px;
	font-size: .9rem;
	text-decoration: none;
	color: var(--header_footer_link_color) !important;
}
header.header .primary_menu_desktop_ver .header_dropdown > ul li a:hover {
	color: var(--bs-primary) !important;
}
header.header .primary_menu_desktop_ver .header_dropdown .dropdown-menu {
	transform: none;
}
header.header .primary_menu_desktop_ver .header_dropdown .header_dropdown_ellipsis {
	cursor: pointer;
}
header.header .primary_menu_mobile_ver > ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
header.header .primary_menu_mobile_ver > ul > li {
	position: relative !important;
}
header.header .primary_menu_mobile_ver > ul > li > a {
	display: block;
	padding: 8px;
	margin-right: 45px;
	text-decoration: none;
	color: var(--header_footer_link_color);
}
header.header .primary_menu_mobile_ver > ul > li a:after {
	display: none !important;
}
header.header .primary_menu_mobile_ver > ul > li .arrow {
	position: absolute;
	top: 5px;
	right: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--header_footer_link_color);
}
header.header .primary_menu_mobile_ver > ul > li .arrow:after {
	content: "";
	display: inline-block;
	vertical-align: 0.255em;
	border-top: 0.3em solid;
	border-right: 0.3em solid transparent;
	border-bottom: 0;
	border-left: 0.3em solid transparent;
}
header.header .primary_menu_mobile_ver > ul > li .arrow.show:after {
	transform: rotate(180deg);
}
header.header .primary_menu_mobile_ver > ul > li ul > li .arrow {
	top: 0;
	color: #316E92;
}
header.header .primary_menu_mobile_ver .dropdown-menu {
	position: relative;
	top: 0 !important;
	flex-direction: column;
	border: none;
	margin-bottom: -1px;
	margin-left: -16px;
	margin-right: -16px;
	padding-left: 25px;
	padding-right: 25px;
	border-radius: 0;
}
header.header .primary_menu_mobile_ver .dropdown-menu li {
	width: 100%;
}
header.header .primary_menu_mobile_ver .dropdown-menu li > .dropdown-item {
	font-size: .9rem;
	color: initial !important;
}
header.header .primary_menu_mobile_ver .dropdown-menu .dropdown-item.active,
header.header .primary_menu_mobile_ver .dropdown-menu .dropdown-item:active,
header.header .primary_menu_mobile_ver .dropdown-menu .dropdown-item:focus,
header.header .primary_menu_mobile_ver .dropdown-menu .dropdown-item:hover {
	background-color: inherit !important;
}
header.header .dropdown-toggle:after {
	display: inline-block;
	margin-left: 0.255em;
	vertical-align: 0.255em;
	content: "";
	border-top: 0.3em solid;
	border-right: 0.3em solid transparent;
	border-bottom: 0;
	border-left: 0.3em solid transparent;
}
header.header .buttons_container {
	display: flex;
	align-items: center;
}
header.header .lang button {
	font-size: 14px !important;
}
header.header .lang .dropdown-menu {
	font-size: 14px;
	min-width: auto;
}
header.header .buttons {
	display: grid;
	grid-template-columns: repeat(2, auto);
	grid-gap: 8px;
}
header.header .buttons .btn img {
	margin-right: 5px;
}
header.header .mobile-menu-button {
	display: none;
	position: absolute;
	top: 24px;
	right: 0;
	width: 26px;
	height: 24px;
	cursor: pointer;
}
header.header .mobile-menu-button span {
	position: absolute;
	left: 0;
	display: block;
	width: 100%;
	height: 3px;
	background-color: #fff;
	border-radius: 2px;
}
header.header .mobile-menu-button span:nth-child(1) {
	top: 2px;
}
header.header .mobile-menu-button span:nth-child(2) {
	top: 10px;
}
header.header .mobile-menu-button span:nth-child(3) {
	top: 18px;
}
header.header .offcanvas {
	max-width: 300px;
	background: var(--mobile_menu_bg);
	border-radius: 15px 0 0 15px;
}
header.header .offcanvas .buttons {
	position: relative;
	top: 0;
	grid-template-columns: repeat(2, auto);
	margin-bottom: 10px;
}
header.header .offcanvas a {
	color: var(--header_footer_text_color);
}
header.header .offcanvas-header {
	position: relative;
	padding: 4px 10px;
	min-height: 73px;
	border-bottom: 1px solid var(--bs-secondary);
}
header.header .offcanvas-header .custom-logo-link {
	max-width: 175px;
}
header.header .offcanvas-header .custom-logo-link img {
	max-height: 50px;
}
header.header .offcanvas-header .btn-close {
	position: absolute;
	top: 28px;
	right: 25px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' fill='%23ffffff' class='bi bi-x' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") center/2.5em auto no-repeat;
	opacity: 1;
}
header.header .secondary_menu_desktop_ver {
	background-color: var(--header_secondary_menu_bg_color);
}
header.header .secondary_menu_desktop_ver ul {
	display: flex;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
	height: 40px;
	gap: 20px;
}
header.header .secondary_menu_desktop_ver ul > li {
	display: flex;
	align-items: center;
}
header.header .secondary_menu_desktop_ver ul > li > a {
	position: relative;
	display: block;
	font-size: .8rem;
	text-decoration: none;
	color: var(--header_footer_link_color);
}
header.header .secondary_menu_desktop_ver ul > li ul {
	display: none;
}
header.header .secondary_menu_desktop_ver ul > li.current-menu-item > a,
header.header .secondary_menu_desktop_ver ul > li.current-menu-ancestor > a,
header.header .secondary_menu_desktop_ver ul > li > a:hover {
	color: var(--bs-primary);
}
header.header .secondary_menu_desktop_ver ul > li:last-child {
	margin-right: 0;
}
header.header .secondary_menu_mobile_ver > ul {
	list-style: none;
	padding: 0;
	margin: 0;
	border-top: 1px solid var(--bs-secondary);
	padding-top: 10px;
	margin-top: 10px;
}
header.header .secondary_menu_mobile_ver > ul > li {
	position: relative !important;
}
header.header .secondary_menu_mobile_ver > ul > li > a {
	display: block;
	padding: 5px 8px;
	font-size: .8rem;
	text-decoration: none;
	color: var(--header_footer_link_color);
}
body.admin-bar .header.header {
	top: 32px;
}
body.header_no_bottom_line header.header {
	border-bottom: none;
}
body.home header.header .primary_menu_desktop_ver > ul > li > a {
	color: var(--header_footer_link_color) !important;
	text-wrap: nowrap;
}
body.home header.header .primary_menu_desktop_ver > ul > li > a:hover {
	color: var(--bs-primary) !important;
}
@media (max-width: 991px) {
	header.header .header__container.out {
		margin-top: -70px;
	}
	header.header .primary_menu_desktop_ver,
	header.header .header__container .buttons,
	header.header .secondary_menu_desktop_ver {
		display: none;
	}
	header.header .mobile-menu-button {
		display: block;
	}
	header.header .lang {
		position: absolute;
		right: 35px;
		top: 16px;
	}
}
@media (max-width: 782px) {
	body.admin-bar .header.header {
		top: 46px;
	}
}
@media (max-width: 600px) {
	body.admin-bar .header.header {
		top: 0;
	}
}

/**
	Footer
 */
footer.footer {
	padding-top: 40px;
	padding-bottom: 40px;
	color: var(--header_footer_text_color);
	background-color: var(--footer_bg_color);
}
footer.footer .logo_row {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: baseline;
	grid-gap: 24px;
	margin-bottom: 24px;
}
footer.footer .logo_row:after {
	content: "";
	display: block;
	height: 1px;
	background-color: var(--bs-secondary);
}
footer.footer .logo_row .custom-logo-link {
	max-width: 100px;
}
footer.footer .logo_row .custom-logo-link .custom-logo {
	max-height: 50px;
}
footer.footer .footer__container {
	display: grid;
	grid-template-columns: 1.3fr repeat(3, 1fr);
	grid-gap: 100px;
	justify-content: space-between;
	margin-bottom: 24px;
}
footer.footer .footer__container .heading {
	margin-bottom: 16px;
	font-size: 20px;
}
footer.footer .footer__container .footer_description .description {
	font-size: .7rem;
}
footer.footer .footer__container nav ul {
	display: flex;
	flex-direction: column;
	gap: 5px;
	list-style: none;
	margin: 0;
	padding: 0;
}
footer.footer .footer__container nav ul li {
	font-size: .8rem;
	padding-bottom: 4px;
}
footer.footer .footer__container nav ul li a {
	color: var(--header_footer_link_color);
	text-decoration: none;
}
footer.footer .footer__container nav ul li a:hover {
	color: var(--bs-primary);
}
footer.footer .footer__container2 {
	display: grid;
	grid-template-columns: repeat(2, auto);
	grid-gap: 10px;
	justify-content: space-between;
	margin-bottom: 24px;
}
footer.footer .footer__container2 .social {
	display: flex;
	gap: 12px;
}
footer.footer .footer__container2 .social a {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	text-decoration: none;
	text-align: center;
	line-height: normal;
	color: var(--header_footer_link_color);
}
footer.footer .footer__container2 .social a:hover {
	color: var(--bs-primary);
}
footer.footer .footer__container2 .footer_payments {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	max-width: 814px;
}
footer.footer .footer__container2 .footer_payments .item {
	max-width: 75px;
}
footer.footer .footer__container2 .footer_payments img {
	max-height: 32px;
}
footer.footer .footer_logos_police {
	display: flex;
	justify-content: center;
	gap: 32px;
	flex-wrap: wrap;
	border-top: 1px solid var(--bs-secondary);
	border-bottom: 1px solid var(--bs-secondary);
	padding: 24px 0;
	margin-bottom: 24px;
}
footer.footer .footer_logos_police .item {
	max-width: 75px;
}
footer.footer .footer_logos_police img {
	width: auto;
	height: 30px;
}
footer.footer .footer_text2 {
	font-size: .9rem;
	text-align: center;
	color: var(--header_footer_link_color);
	margin-bottom: 14px;
}
footer.footer .footer_text3 {
	font-size: .9rem;
	text-align: center;
	margin-bottom: 5px;
}
footer.footer .copyright {
	font-size: .8rem;
	text-align: center;
}
@media (max-width: 991px) {
	footer.footer {
		text-align: center;
	}
	footer.footer.panel_mode {
		padding-bottom: 84px;
	}
	footer.footer .footer__container {
		grid-template-columns: none;
		grid-gap: 24px;
	}
	footer.footer .footer__container nav ul {
		gap: 12px;
	}
	footer.footer .footer__container nav ul li {
		font-size: inherit;
	}
	footer.footer .footer__container2 {
		grid-template-columns: none;
		grid-gap: 24px;
		justify-content: center;
		border-top: 1px solid var(--bs-secondary);
		padding: 24px 0;
		margin-bottom: 0;
	}
	footer.footer .footer__container2 .social {
		justify-content: center;
	}
	footer.footer .nav_column .heading {
		opacity: .5;
	}
	footer.footer .footer_logos_police {
		gap: 12px;
	}
	footer.footer .footer_logos_police .item {
		max-width: 42px;
	}
}

/**
	Breadcrumbs
 */
.breadcrumbs {
	margin-bottom: var(--theme-block-margin-bottom);
}
.breadcrumb {
	font-size: 0.9rem;
}
.breadcrumb a {
	text-decoration: none;
	color: inherit;
}
.breadcrumb-item.active {
	color: inherit;
	opacity: .4;
}
@media (max-width: 991px) {
	.breadcrumbs {
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
}

/**
	Buttons
*/
.btn,
.wp-block-buttons .wp-block-button .wp-block-button__link {
	font-size: inherit !important;
	font-weight: 600 !important;
	padding: 0.5rem 1rem !important;
	box-shadow: none !important;
	border-radius: var(--theme-rounded-button) !important;
	white-space: nowrap;
}
.wp-block-buttons .wp-block-button .wp-block-button__link {
	padding: 0.6rem 1rem !important;
	min-width: 200px;
}
.btn a {
	color: #fff;
	text-decoration: none !important;
}
.btn-normal,
.wp-block-buttons .wp-block-button.is-style-bootstrap-normal .wp-block-button__link {
	border-color: var(--bs-secondary);
	color: var(--header_footer_text_color);
}
.btn-primary,
.wp-block-buttons .wp-block-button.is-style-bootstrap-primary .wp-block-button__link {
	color: var(--primary_text_color_button) !important;
	background: linear-gradient(256.5deg, var(--primary_color_button_1) 9.68%,
	var(--primary_color_button_1) 33.08%, var(--primary_color_button_2) 63.53%,
	var(--primary_color_button_2) 90.32%);
	border-color: transparent !important;
}
.btn-outline-primary,
.wp-block-buttons .wp-block-button.is-style-bootstrap-primary-outline .wp-block-button__link {
	color: var(--primary_outline_text_color_button) !important;
	background: none !important;
	border-color: var(--bs-primary) !important;
}
.btn-success,
.wp-block-buttons .wp-block-button .wp-block-button__link {
	color: var(--success_text_color_button) !important;
	background: linear-gradient(90deg, var(--success_color_button_1) 0%, var(--success_color_button_2) 100%);
	border-color: transparent !important;
}
.btn-outline-success,
.wp-block-buttons .wp-block-button.is-style-bootstrap-success-outline .wp-block-button__link {
	color: var(--success_outline_text_color_button) !important;
	background: none !important;
	border-color: var(--bs-success) !important;
}
.wp-block-buttons {
	margin-bottom: var(--theme-block-margin-bottom);
}
@media (max-width: 991px) {
	.wp-block-buttons {
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
}
@media (max-width: 575px) {
	.wp-block-buttons .wp-block-button,
	.wp-block-buttons .wp-block-button .wp-block-button__link {
		width: 100%;
	}
}

/**
	Container
 */
.wp-block-hc-container {
	max-width: 1200px;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}

/**
	Section
 */
.wp-block-hc-alternate-group-section {
	margin-bottom: var(--theme-block-margin-bottom);
}
.wp-block-hc-alternate-group-section h2,
.wp-block-hc-alternate-group-section h3 {
	position: relative;
	margin-bottom: 20px;
	margin-top: calc(var(--theme-block-margin-bottom) + 10px);
}
.bef_b {
	position: relative;
	margin-top: 10px;
}
.bef_b:before,
.wp-block-hc-alternate-group-section h2:before,
.wp-block-hc-alternate-group-section h3:before {
	content: "";
	display: block;
	width: 50px;
	height: 2px;
	position: absolute;
	top: -10px;
	left: 0;
	background-color: var(--bs-primary);
}
.wp-block-hc-alternate-group-section h2.no_bef_b:before,
.wp-block-hc-alternate-group-section h3.no_bef_b:before {
	display: none;
}
.wp-block-hc-alternate-group-section ol {
	list-style: none;
	padding: 0;
	margin-bottom: var(--theme-block-p-bottom);
	counter-reset: item;
}
.wp-block-hc-alternate-group-section ol li ol {
	margin-top: 1rem;
}
.wp-block-hc-alternate-group-section ul {
	list-style: none;
	padding: 0;
	margin-bottom: var(--theme-block-p-bottom);
}
.wp-block-hc-alternate-group-section ul li ul {
	margin-top: 1rem;
}
.wp-block-hc-alternate-group-section ol > li,
.wp-block-hc-alternate-group-section ul > li {
	position: relative;
	padding-left: 40px;
	margin-bottom: 10px;
}
.wp-block-hc-alternate-group-section ul > li:last-child {
	margin-bottom: 0;
}
.wp-block-hc-alternate-group-section ol > li {
	counter-increment: item;
}
.wp-block-hc-alternate-group-section ol > li:last-child {
	margin-bottom: 0;
}
.wp-block-hc-alternate-group-section ol > li:before {
	position: absolute;
	left: 0;
	top: -2px;
	content: counter(item);
	display: flex;
	width: 27px;
	height: 27px;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	border: 1px solid var(--bs-primary);
	border-radius: 50%;
}
.wp-block-hc-alternate-group-section ul > li:before {
	font-family: "Font Awesome 6 Pro";
	content: "";
	position: absolute;
	left: 0;
	top: -2px;
	display: flex;
	width: 27px;
	height: 27px;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	line-height: normal;
	background: var(--bs-primary);
	border-radius: 50%;
}
.wp-block-hc-alternate-group-section .wp-block-image {
	margin-bottom: var(--theme-block-p-bottom);
}
.wp-block-hc-alternate-group-section .wp-block-image img {
	border-radius: var(--theme-rounded-images);
}
.wp-block-hc-alternate-group-section .wp-block-hc-alternate-group-section {
	margin-bottom: 0;
}
@media (max-width: 991px) {
	.wp-block-hc-alternate-group-section {
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
	.wp-block-hc-alternate-group-section .wp-block-image {
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
}
@media (max-width: 767px) {
	.wp-block-hc-alternate-group-section {
		margin-bottom: 0;
	}
	.wp-block-hc-alternate-group-section h2,
	.wp-block-hc-alternate-group-section h3 {
		margin-top: calc(var(--theme-block-margin-bottom-mob) + 10px);
	}
	.wp-block-hc-alternate-group-section ul,
	.wp-block-hc-alternate-group-section ol {
		margin-bottom: var(--theme-block-p-bottom-mob);
	}
}

/**
	Table
 */
.wp-block-table {
	margin-bottom: var(--theme-block-p-bottom);
	position: relative;
}
.wp-block-table table {
	border-collapse: separate;
	border-spacing: 0;
	color: var(--bs-body-color);
	margin-bottom: 0;
}
.wp-block-table table > thead {
	color: #fff;
	background-color: var(--bs-secondary);
}
.wp-block-table table tr th,
.wp-block-table table tr td {
	padding: 14px 14px 14px 24px;
	border: none;
	border-right: 1px solid var(--bs-body-color);
	border-bottom: 1px solid var(--bs-body-color);
}
.wp-block-table table tr th:first-child,
.wp-block-table table tr td:first-child {
	border-left: 1px solid var(--bs-body-color);
}
.wp-block-table table tr th {
	background-color: var(--header_table_background);
	text-align: left;
	border-top: 1px solid var(--bs-body-color);
}
.wp-block-table table tr:first-child td {
	border-top: 1px solid var(--bs-body-color);
}
.wp-block-table table > *:first-child tr:first-child th:first-child,
.wp-block-table table > *:first-child tr:first-child td:first-child {
	border-top: 1px solid var(--bs-body-color);
	border-top-left-radius: var(--theme-rounded-images);
}
.wp-block-table table > *:first-child tr:first-child th:last-child,
.wp-block-table table > *:first-child tr:first-child td:last-child {
	border-top: 1px solid var(--bs-body-color);
	border-top-right-radius: var(--theme-rounded-images);
}
.wp-block-table table tr:last-child td:first-child {
	border-bottom-left-radius: var(--theme-rounded-images);
}
.wp-block-table table tr:last-child td:last-child {
	border-bottom-right-radius: var(--theme-rounded-images);
}
.wp-block-table table a {
	color: var(--bs-primary);
}
.wp-block-table .finger-animation {
	position: absolute;
	top: 15px;
	right: 0;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	animation: swipe 4s ease-in-out forwards;
}
.wp-block-table .finger-animation i {
	font-size: 30px;
}
@media (max-width: 991px) {
	.wp-block-table {
		margin-bottom: var(--theme-block-p-bottom-mob);
	}
}
@keyframes swipe {
	0% { transform: translate(0, 0); opacity: 0; }
	10% { opacity: 0.6; }
	25% { transform: translate(-50px, 0); }
	50% { transform: translate(0, 0); }
	75% { transform: translate(-50px, 0); }
	90% { opacity: 0.6; }
	100% { transform: translate(0, 0); opacity: 0; }
}

/**
	Home Page
 */
.home-page .welcome-section {
	position: relative;
	margin-bottom: var(--theme-block-margin-bottom);
}
.home-page .welcome-section .main_page_header_buttons {
	display: none;
	gap: 8px;
}
.home-page .welcome-section .welcome-section__container {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 80px;
}
.home-page .welcome-section .welcome-section__container.no-banner {
	grid-template-columns: 1fr;
}
.home-page .welcome-section .welcome-section__container h1 {
	font-weight: 700;
	margin-bottom: 20px;
}
.home-page .welcome-section .banner {
	display: flex;
	flex-direction: column;
	align-items: end;
	justify-content: center;
	padding: 1.4rem;
	text-align: right;
	line-height: normal;
	position: relative;
	color: #fff;
	/*background-color: var(--bs-secondary);*/
	background: linear-gradient(90deg, transparent 0%, var(--bs-secondary) 100%);
	border-radius: var(--theme-rounded);
}
.home-page .welcome-section .banner .bg {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-position: left bottom;
}
.home-page .welcome-section .banner .title {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 14px;
	z-index: 1;
}
.home-page .welcome-section .banner .bonus {
	font-size: 36px;
	font-weight: 900;
	margin-bottom: 8px;
	color: var(--bs-success);
	z-index: 1;
}
.home-page .welcome-section .banner .comment {
	font-size: 12px;
	margin-bottom: 14px;
	z-index: 1;
}
.home-page .welcome-section .banner .btn {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-top: 8px;
	padding: 0.6rem 3rem !important;
	z-index: 1;
}
@media (max-width: 991px) {
	.home-page .welcome-section {
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
	.home-page .welcome-section .main_page_header_buttons {
		display: flex;
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
	.home-page .welcome-section .main_page_header_buttons .btn {
		flex-grow: 1;
	}
	.home-page .welcome-section .welcome-section__container {
		grid-template-columns: none;
		grid-gap: 0;
	}
	.home-page .welcome-section .banner {
		align-items: center;
		text-align: center;
		padding-bottom: 150px;
	}
	.home-page .welcome-section .banner .bg {
		background-position: center bottom;
	}
}

/**
	Custom Page
 */
.custom-page .welcome-section {
	margin-bottom: var(--theme-block-margin-bottom);
}
.custom-page .welcome-section .welcome-section__container {
	position: relative;
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	grid-gap: 80px;
}
.custom-page .welcome-section .welcome-section__container.noimage {
	grid-template-columns: none;
}
.custom-page .welcome-section .welcome-section__container h1 {
	font-weight: 700;
	margin-bottom: 20px;
}
.custom-page .welcome-section .welcome-section__container .buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.custom-page .welcome-section .welcome-section__container .buttons .btn {
	padding: 0.5rem 2rem !important;
}
.custom-page .welcome-section .welcome-section__container .image img {
	border-radius: var(--theme-rounded-images);
}
@media (max-width: 991px) {
	.custom-page .welcome-section {
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
	.custom-page .welcome-section .welcome-section__container {
		grid-template-columns: none;
		grid-gap: 35px;
	}
}
@media (max-width: 575px) {
	.custom-page .welcome-section .welcome-section__container .buttons .btn {
		width: 100%;
	}
}

/**
	Promocode Page
 */
.promocode-page .welcome-section {
	text-align: center;
	margin-bottom: var(--theme-block-margin-bottom);
}
.promocode-page .welcome-section h1 {
	font-weight: 800;
	margin-bottom: 20px;
}
.promocode-page .welcome-section .description {
	margin-bottom: 20px;
}
.promocode-page .welcome-section .welcome-section-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-bottom: 20px;
}
.promocode-page .welcome-section .welcome-section-buttons .btn {
	padding: 0.5rem 2rem !important;
}
.promocode-page .welcome-section .welcome-section-promocode {
	max-width: 700px;
	margin: auto auto 20px;
	padding: 20px;
	background-color: var(--promocode-page-background-color, #284673);
	border-radius: var(--theme-rounded);
}
.promocode-page .welcome-section .welcome-section-promocode header {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-bottom: 20px;
}
.promocode-page .welcome-section .welcome-section-promocode header .icon img {
	width: auto;
	height: 42px;
}
.promocode-page .welcome-section .welcome-section-promocode header .title {
	font-size: 30px;
	font-weight: 800;
	line-height: normal;
}
.promocode-page .welcome-section .welcome-section-promocode hr {
	height: 1px;
	opacity: .5;
	color: var(--bs-body-color);
}
.promocode-page .welcome-section .welcome-section-promocode .promocode-content {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
.promocode-page .welcome-section .welcome-section-promocode .bonus-container {
	display: flex;
	padding: 5px 10px;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 5px;
}
.promocode-page .welcome-section .welcome-section-promocode .bonus-container .bonus_wrap {
	margin-bottom: 7px;
}
.promocode-page .welcome-section .welcome-section-promocode .bonus-container .bonus_wrap .bonus_value {
	font-size: 30px;
	line-height: normal;
	color: var(--promocode-page-accent-color, #85FF00);
}
.promocode-page .welcome-section .welcome-section-promocode .bonus-container .bonus_wrap .bonus_value b {
	font-weight: 800;
}
.promocode-page .welcome-section .welcome-section-promocode .bonus-container .bonus_wrap .bonus_description {
	font-weight: 300;
	line-height: normal;
}
.promocode-page .welcome-section .welcome-section-promocode .bonus-container .free_spin_wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	align-self: stretch;
}
.promocode-page .welcome-section .welcome-section-promocode .bonus-container .free_spin_wrap .free_spin_value {
	text-align: center;
	font-size: 16px;
	line-height: normal;
	color: var(--promocode-page-accent-color, #85FF00);
}
.promocode-page .welcome-section .welcome-section-promocode .bonus-container .free_spin_wrap .free_spin_value b {
	font-weight: 800;
}
.promocode-page .welcome-section .welcome-section-promocode .bonus-container .free_spin_wrap .free_spin {
	line-height: normal;
}
.promocode-page .welcome-section .welcome-section-promocode .promocode-arrows svg {
	fill: var(--promocode-page-accent-color);
	animation: swing ease-in-out 1s infinite alternate;
}
.promocode-page .welcome-section .welcome-section-promocode .copy-block-wrap {
	display: flex;
	gap: 5px;
	width: 200px;
}
.promocode-page .welcome-section .welcome-section-promocode .copy-block-wrap .copy-block {
	position: relative;
	height: 45px;
	border: 1px dashed var(--bs-success);
	border-radius: var(--theme-rounded-button);
}
.promocode-page .welcome-section .welcome-section-promocode .copy-block-wrap .copy-block .copy-msg {
	display: none;
	position: absolute;
	right: 0;
	top: -50px;
	font-weight: 700;
	font-size: 12px;
	padding: 10px;
	color: #000;
	background-color: var(--promocode-page-accent-color);
	border-radius: 10px;
	cursor: default;
}
.promocode-page .welcome-section .welcome-section-promocode .copy-block-wrap .copy-block .copy-msg:before {
	content: "";
	position: absolute;
	bottom: -9px;
	right: 20px;
	border-top: 5px solid var(--promocode-page-accent-color);
	border-right: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 5px solid var(--promocode-page-accent-color);
}
.promocode-page .welcome-section .welcome-section-promocode .copy-block-wrap .copy-block input {
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
	box-shadow: none;
	border: none;
	background-color: #fff;
	font-size: .9rem;
	font-weight: 600;
	padding-right: 33px;
	outline: none;
	cursor: pointer;
	border-radius: var(--theme-rounded-button);
}
.promocode-page .welcome-section .welcome-section-promocode .copy-block-wrap .copy-block .copy-icon {
	display: block;
	position: absolute;
	top: calc(50% - 12.5px);
	right: 10px;
	width: 25px;
	height: 25px;
	background-image: url('../img/copy.svg?v=2');
	cursor: pointer;
}
.promocode-page .welcome-section .welcome-section-promocode .copy-block-wrap .copy-block.copy-ok .copy-icon {
	background-image: url('../img/check.svg');
}
.promocode-page .welcome-section .welcome-section-promocode .copy-block-wrap .copy-block.copy-ok .copy-msg {
	display: block;
}
.promocode-page .welcome-section .welcome-section-promocode .buttons {
	display: flex;
	justify-content: center;
}
.promocode-page .welcome-section .welcome-section-promocode .buttons .btn {
	display: flex;
	min-width: 270px;
	height: 55px;
	padding: 10px 20px;
	justify-content: center;
	align-items: center;
	gap: 5px;
}
@media (max-width: 991px) {
	.promocode-page .welcome-section {
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
	.promocode-page .welcome-section .welcome-section-promocode header .icon img {
		height: 34px;
	}
	.promocode-page .welcome-section .welcome-section-promocode header .title {
		font-size: 18px;
	}
	.promocode-page .welcome-section .welcome-section-promocode .promocode-content {
		flex-direction: column;
	}
	.promocode-page .welcome-section .welcome-section-promocode .promocode-arrows {
		display: none;
	}
}
@media (max-width: 575px) {
	.promocode-page .welcome-section .welcome-section-buttons .btn {
		width: 100%;
	}
}
@keyframes swing {
	0% { transform: scale(1) }
	100% { transform: scale(1.2) }
}

/**
	Apps Page
 */
.apps-page .welcome-section {
	margin-bottom: var(--theme-block-margin-bottom);
}
.apps-page .welcome-section .welcome-section__container {
	position: relative;
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	grid-gap: 80px;
}
.apps-page .welcome-section .welcome-section__container h1 {
	font-weight: 700;
	margin-bottom: 20px;
}
.apps-page .welcome-section .welcome-section__container .buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.apps-page .welcome-section .welcome-section__container .buttons .btn {
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 0.5rem 2rem !important;
}
.apps-page .welcome-section .welcome-section__container .buttons .btn > span {
	display: flex;
	flex-direction: column;
	text-align: left;
	line-height: normal;
	white-space: nowrap;
	font-size: 14px;
}
.apps-page .welcome-section .welcome-section__container .buttons .btn > span > span:nth-child(1) {
	font-size: 11px;
	font-weight: 500;
}
.apps-page .welcome-section .welcome-section__container .image img {
	border-radius: var(--theme-rounded-images);
}
@media (max-width: 991px) {
	.apps-page .welcome-section {
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
	.apps-page .welcome-section .welcome-section__container {
		grid-template-columns: none;
		grid-gap: 35px;
	}
	.apps-page .welcome-section .welcome-section__container .buttons {
		flex-direction: column;
		width: 100%;
	}
	.apps-page .welcome-section .welcome-section__container .buttons .btn {
		justify-content: center;
		width: 100%;
	}
	.apps-page .welcome-section .welcome-section__container .buttons .btn > span {
		width: 120px;
	}
}

/* plugin luckywp-table-of-contents */
.lwptoc {
	margin-bottom: var(--theme-block-margin-bottom);
}
.lwptoc .lwptoc_i {
	padding: 14px 18px 7px;
	color: inherit !important;
	background: linear-gradient(90deg, var(--bs-secondary) 0%, transparent 100%) !important;
	border-radius: var(--theme-rounded) !important;
}
.lwptoc_toggle_label {
	border: none!important;
	background: none!important;
	padding: 0!important;
	outline: none!important;
	cursor: pointer;
	color: inherit;
}
.lwptoc .lwptoc_i DIV A {
	color: inherit !important;
}
@media (max-width: 991px) {
	.lwptoc {
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
}

/**
	Bottom Panel
 */
.bottom_panel {
	position: fixed;
	left: 12px;
	bottom: 12px;
	right: 12px;
	display: none;
	align-items: center;
	gap: 10px;
	height: 70px;
	padding: 0 12px;
	border: 1px solid var(--bottom_panel_border);
	background-color: var(--bottom_panel_bg);
	border-radius: var(--theme-rounded-images);
	z-index: 10;
	transition: .5s;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}
.bottom_panel.apps .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: 100%;
	padding: 0.3rem 1rem !important;
}
.bottom_panel.apps .btn > span {
	display: flex;
	flex-direction: column;
	text-align: left;
	line-height: normal;
	font-size: 13px;
}
.bottom_panel.apps .btn > span > span:nth-child(1) {
	font-size: 10px;
	font-weight: 500;
}
.bottom_panel.bonus .bonus {
	width: 50%;
	font-size: 14px;
	text-align: left;
	line-height: normal;
	color: var(--bs-body-color);
}
.bottom_panel.bonus .bonus b {
	color: var(--bs-success);
}
.bottom_panel.bonus .btn {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-grow: 1;
	gap: 5px;
}
@media (max-width: 991px) {
	.bottom_panel {
		display: flex;
		transform: translateY(100px);
	}
	.bottom_panel.show {
		transform: translateY(0px);
	}
}

/**
	TOC Navigation
 */
.toc_navigation {
	display: flex;
	height: 48px;
	color: var(--header_footer_text_color);
	border-top: 1px solid var(--bs-secondary);
}
.toc_navigation .container {
	display: flex;
	align-items: center;
	position: relative;
}
.toc_navigation .min-title {
	font-size: 12px;
	font-weight: 600;
	padding-right: 10px;
}
.toc_navigation .items {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
	list-style: none;
	margin: 0;
	padding: 0;
}
.toc_navigation .items::-webkit-scrollbar {
	display: none;
}
.toc_navigation .items .item:last-child {
	padding-right: 8px;
}
.toc_navigation .items .item a {
	display: flex;
	align-items: center;
	font-weight: 500;
	text-decoration: none;
	padding: 3px 10px;
	line-height: normal;
	white-space: nowrap;
	border: 1px solid var(--header_footer_text_color);
	color: var(--header_footer_link_color);
	border-radius: var(--theme-rounded-button);
}
.toc_navigation .items .item a.active {
	color: var(--bs-primary);
	border-color: var(--bs-primary);
}
.toc_navigation .items .item a .icon {
	width: 28px;
	height: 28px;
	margin-right: 5px;
}
.toc_navigation .items .item a .name {
	font-size: 13px;
}
.toc_navigation .progress-container {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	padding-left: 12px;
	padding-right: 12px;
	background-color: transparent;
}
.toc_navigation .progress-container .progress-bar {
	width: 0;
	height: 2px;
	background-color: var(--bs-primary);
	transition: .3s;
}
@media (max-width: 991px) {
	.toc_navigation {
		display: none;
	}
	.toc_navigation.show {
		display: flex;
	}
	.toc_navigation .container {
		padding-right: 0;
	}
	.toc_navigation .progress-container {
		padding-left: 0;
		padding-right: 0;
	}
}

/**
	Post LastUpdate
 */
.post_last_update {
	opacity: .2;
	font-size: 12px;
	margin-bottom: var(--theme-block-margin-bottom);
}
@media (max-width: 991px) {
	.post_last_update {
		margin-bottom: var(--theme-block-margin-bottom-mob);
	}
}

/**
	ScrollTop fix
 */
@media (max-width: 991px) {
	#wpfront-scroll-top-container {
		z-index: 19 !important;
	}
	#wpfront-scroll-top-container.panel_mode {
		bottom: 95px !important;
	}
	#wpfront-scroll-top-container img {
		width: 40px !important;
		height: 40px !important;
	}
}

/**
	404
 */
.page_404 .container_404 {
	text-align: center;
	margin-bottom: 60px;
	margin-top: 40px;
}
.page_404 .container_404 h1 {
	font-size: 8rem;
	font-weight: 600;
	margin-bottom: 0;
	color: var(--bs-success);
}
.page_404 .container_404 .description {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 30px;
}
