.section-light {
	background-color: #f6f6f6;
}

.section-gap_large {
	padding: 50px 0;
}

.section-gap {
	padding: 30px 0;
}

.button-link {
	color: var(--bs-blue);
	font-weight: 600;
}

.button-link:hover {
	color: #3180fc;
	text-decoration: underline;
}

.button-theme {
	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;
	vertical-align: middle;
	color: var(--bs-white) !important;
	border: 1px solid transparent;
	border-radius: 4px;
	gap: 5px;
	position: relative;
	overflow: hidden;
	white-space: nowrap;
	font-size: 1.075em;
	padding: 8px 18px;
}

.button-theme:before {
	content: '';
	display: block;
	width: 200%;
	height: 100%;
	position: absolute;
	top: 0;
	left: -200%;
	z-index: 1;
	background: -o-linear-gradient(left, transparent, rgba(255, 255, 255, .3), transparent);
	background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, .3)), to(transparent));
	background: linear-gradient(to right, transparent, rgba(255, 255, 255, .3), transparent);
	-webkit-transform: skew(-20deg);
	-ms-transform: skew(-20deg);
	transform: skew(-20deg);
	-webkit-transition: inherit;
	-o-transition: inherit;
	transition: inherit;
}

.button-theme:hover::before {
	-webkit-animation: animationShine 1.2s ease;
	animation: animationShine 1.2s ease;
}

@-webkit-keyframes animationShine {
	100% {
		left: 200%;
	}
}

@keyframes animationShine {
	100% {
		left: 200%;
	}
}

.button-theme.button-theme_primary {
	border-color: var(--secondary-color);
	background-color: var(--secondary-color);
}

.button-theme.button-theme_secondary {
	border-color: var(--secondary-color);
	background-color: var(--secondary-color);
}

.button-theme.button-theme_large {
	font-size: 1.225em;
	padding: 12px 25px;
}

.button-theme.button-theme_medium {
	font-size: 1.15em;
	padding: 10px 25px;
}

.button-theme.button-theme_small {
	font-size: 0.925em;
	padding: 4px 14px;
	font-weight: 400;
}

.button-theme.button-theme_rounded {
	border-radius: 40px;
}

.section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 20px;
}

.section-heading .heading-title {
	font-size: 1.3em;
	font-weight: 700;
	color: var(--bs-dark);
	text-transform: uppercase;
}

.section-heading .heading-title img {
	height: 40px;
	margin-right: 5px;
}

.section-heading .heading-sub {
	font-size: 1.15em;
	font-weight: 700;
	color: var(--bs-dark);
}

.section-heading .heading-description {
	font-size: 1.075em;
	color: var(--bs-dark);
	text-transform: uppercase;
}

.section-heading .heading-link > a {
	font-size: 0.85em;
	color: #9ba1a8;
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
}

.section-heading .heading-link > a > i {
	font-size: 1.9em;
}

.section-heading .heading-link > a:hover {
	color: var(--primary-color);
}

.section-heading .heading-description ul:last-child {
	margin-bottom: 0;
}

.section-heading .heading-description ul {
	list-style: none;
	padding-left: 0;
}

.section-heading .heading-description ul li {
	position: relative;
	color: var(--bs-black);
	padding: 5px 0 5px 25px;
}

.section-heading .heading-description ul li:before {
	position: absolute;
	width: 20px;
	height: 20px;
	background: url('../images/check-green.svg') center center/cover no-repeat;
	top: 5px;
	left: 0;
	content: "";
}

.section-heading .heading-button .nav-tabs {
	gap: 8px;
	flex-wrap: nowrap;
}

.section-heading .heading-button .nav-tabs .nav-item .nav-link {
	border-radius: 4px;
	border: 1px solid var(--bs-gray-200);
	margin: 0;
	font-size: 0.925em;
	padding: 4px 14px;
	font-weight: 400;
	color: var(--bs-black);
}

.section-heading .heading-button .nav-tabs .nav-item .nav-link.active,
.section-heading .heading-button .nav-tabs .nav-item .nav-link:hover {
	color: var(--bs-white);
	border-color: var(--primary-color);
	background-color: var(--primary-color);
}

.header {
	background-color: var(--primary-color);
	position: sticky;
	top: 0;
	z-index: 10;
	left: 0;
	right: 0;
	transition: var(--transition-default);
	box-shadow: rgba(0, 0, 0, 0.075) 0 0 24px;
}

.header.is-scroll {
	box-shadow: rgba(0, 0, 0, 0.05) 0 0 12px;
	top: -36px;
}

.header-navigation ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

.header-navigation > ul {
	display: flex;
	align-items: center;
}

.header-navigation ul > li {
	position: relative;
	display: flex;
	align-items: center;
}

.header-navigation > ul > li + li {
	margin-left: 12px;
}

.header-navigation > ul > li + li:before {
	content: "|";
	margin-right: 12px;
	font-size: 0.775em;
	color: #f3f3f3;
	opacity: .8;
	display: inline-block;
}

.header-navigation > ul > li:nth-child(2) {
	margin-left: 0;
}

.header-navigation > ul > li:nth-child(2):before {
	display: none;
}

.header-navigation > ul > li > a {
	color: var(--bs-white);
	font-size: 1em;
	padding: 10px 0;
	display: flex;
	align-items: center;
	white-space: nowrap;
	gap: 5px;
}

.header-navigation > ul > li > a > i {
	font-size: 0.95em;
	transition: transform .3s ease-in-out;
}

.header-navigation > ul > li:hover > a {
	opacity: .8;
}

.header-navigation > ul > li:hover > a > i {
	transform: rotate(180deg);
}

.header-navigation > ul > li > ul {
	background-color: var(--bs-white);
	min-width: 175px;
	-webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
	border-radius: 4px;
	opacity: 0;
	overflow: hidden;
	visibility: hidden;
	pointer-events: none;
	top: 100%;
	left: -15px;
	z-index: 2;
	position: absolute;
}

.header-navigation > ul > li:hover > ul {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	top: 100%;
	left: 0;
}

.header-navigation > ul > li > ul > li > a {
	padding: 12px 15px;
	color: var(--bs-dark);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	width: 100%;
	font-weight: 700;
	font-size: 1.075em;
}

.header-navigation > ul > li > ul > li + li {
	border-top: 1px solid var(--bs-gray-200);
}

.header-navigation > ul > li > ul > li:hover > a {
	background: #f4f4f4;
	color: var(--primary-color);
}

.header-bottom {
	background-color: #fff;
	border-bottom: 1px solid var(--bs-gray-300);
}

.header-bottom .header-navigation > ul > li > a {
	font-size: 1.15em;
	border-bottom: 3px solid transparent;
	color: var(--bs-black);
	padding-top: 15px;
	padding-bottom: 12px;
	font-weight: 700;
}

.header-bottom .header-navigation > ul > li + li {
	margin-left: 30px;
}

.header-bottom .header-navigation > ul > li.navigation-logo + li {
	margin-left: 0;
}

.header-bottom .header-navigation > ul > li + li:before {
	display: none;
}

.header-bottom .header-navigation > ul > li:hover > a {
	border-bottom-color: var(--primary-color);
	color: var(--primary-color);
	opacity: 1;
}

.header-top .header-links .header-links_item {
	position: relative;
}

.header-top .header-links .header-links_item > a {
	color: var(--bs-white);
	font-size: 1em;
	padding: 10px 0;
}

.header-top .header-links .header-links_item > a:hover {
	opacity: .8;
}

.header-top .header-links:not(.header-links_right) .header-links_item + .header-links_item {
	margin-left: 8px;
}

.header-top .header-links:not(.header-links_right) .header-links_item + .header-links_item:before {
	content: "|";
	margin-right: 8px;
	font-size: 0.775em;
	color: #f3f3f3;
	opacity: .5;
}

.header-top .header-links.header-links_right .header-links_item + .header-links_item {
	margin-left: 24px;
}

.header-top .header-links .header-links_item .header-links_social {
	margin-left: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.header-top .header-links .header-links_item .header-links_social > a {
	color: var(--bs-white);
}

.header-top .header-links .header-links_item .header-links_social > a:hover {
	opacity: .8;
}

.header-top .header-links .header-language .header-language_btn {
	display: flex;
	align-items: center;
	color: var(--bs-white);
}

.header-top .header-links .header-language .header-language_btn .header-language_btn__image {
	height: 20px;
	width: 20px;
	border-radius: 50%;
	background-color: var(--bs-gray-100);
	box-shadow: rgba(var(--bs-black-rgb), 0.05) 0 0 0 1px;
	padding: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-top .header-links .header-language .header-language_btn:hover {
	opacity: .8;
}

.header-top .header-links .header-language .header-language_btn:hover > i {
	transform: rotate(180deg);
}

.header-top .header-links .header-language .header-language_list {
	background-color: var(--bs-white);
	min-width: 175px;
	-webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
	border-radius: 8px;
	opacity: 0;
	overflow: hidden;
	visibility: hidden;
	pointer-events: none;
	top: 100%;
	right: 15px;
	z-index: 2;
}

.header-top .header-links .header-language:hover .header-language_list {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	top: 100%;
	right: 0;
}

.header-top .header-links .header-language .header-language_list .language-item {
	padding: 8px 15px;
	color: var(--bs-dark);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
}

.header-top .header-links .header-language .header-language_list .language-item img {
	height: 24px;
	width: 24px;
	padding: 2px;
	background-color: #fff;
	border-radius: 50px;
}

.header-top .header-links .header-language .header-language_list .language-item:hover {
	background: #f4f4f4;
}

.header-top .header-links .header-language .header-language_list .language-item.language-item_active {
	color: var(--primary-color);
	background: #f4f4f4;
	font-weight: 500;
}

.header-main {
	padding: 5px 0 10px;
}

.header-main .header-logo img {
	height: 50px;
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
}

.header-main .header-search .header-search_inner {
	position: relative;
}

.header-main .header-search .header-search_inner .form-control {
	border: 0;
	width: 100%;
	border-radius: 4px;
	font-size: 1.075em;
	min-height: 40px;
	padding: 10px 70px 10px 15px;
}

.header-main .header-search .header-search_inner .form-control::placeholder {
	opacity: .8;
}

.header-main .header-search .header-search_inner .button-theme {
	position: absolute;
	top: 50%;
	right: 6px;
	transform: translateY(-50%);
	border-radius: 4px;
	padding-left: 16px;
	padding-right: 16px;
}

.header-main .header-search .header-search_hint {
	--line: 1;
	color: var(--bs-white);
}

.header-main .header-search .header-search_hint a {
	margin-right: 7px;
	margin-top: 6px;
	display: inline-flex;
	color: rgba(var(--bs-white-rgb), .8);
	font-size: 0.925em;
	font-weight: 500;
}

.header-main .header-search .header-search_hint a:hover {
	color: var(--bs-white);
}

.header-main .header-actions .header-users .header-user_item {
	display: flex;
	align-items: center;
	position: relative;
}

.header-main .header-actions .header-users .header-user_item .link-default {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bs-white);
	font-size: 1em;
	font-weight: 600;
	text-transform: uppercase;
	gap: 6px;
	white-space: nowrap;
	padding: 10px 0;
}

.header-main .header-actions .header-users .header-user_item .link-default:hover {
	opacity: .8;
}

.header-main .header-actions .header-users .header-user_item .link-default > i {
	font-size: 1.15em;
	position: relative;
	top: -1px;
}

.header-main .header-actions .header-users .header-user_item .link-default > span > i {
	transition: transform .3s ease-in-out;
}

.header-main .header-actions .header-users .header-user_item .link-default:hover > span > i {
	transform: rotate(180deg);
}

.header-main .header-actions .header-users .header-user_item + .header-user_item {
	margin-left: 12px;
	padding-left: 12px;
}

.header-main .header-actions .header-users .header-user_item + .header-user_item:before {
	content: "/";
	font-size: 1.15em;
	color: #f3f3f3;
	opacity: .4;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -6px;
}

.header-main .header-actions .header-users .header-user_item .user-dropdown {
	position: relative;
}

.header-main .header-actions .header-users .header-user_item .user-dropdown > ul {
	position: absolute;
	background-color: var(--bs-white);
	min-width: 200px;
	-webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
	border-radius: 8px;
	opacity: 0;
	overflow: hidden;
	visibility: hidden;
	pointer-events: none;
	top: 100%;
	right: 15px;
	z-index: 2;
	margin-bottom: 0;
	list-style: none;
	padding-left: 0;
}

.header-main .header-actions .header-users .header-user_item .user-dropdown > ul:before {
	position: absolute;
	content: "";
	display: block;
	top: -20px;
	background-color: var(--bs-white);
	left: 0;
	width: 100%;
	height: 20px;
}

.header-main .header-actions .header-users .header-user_item .user-dropdown:hover > ul {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	right: 0;
}

.header-main .header-actions .header-users .header-user_item .user-dropdown > ul > li > a {
	padding: 8px 15px;
	color: var(--bs-dark);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	font-size: 1.075em;
}

.header-main .header-actions .header-users .header-user_item .user-dropdown > ul > li > a > i {
	width: 16px;
	font-size: 1.075em;
}

.header-main .header-actions .header-users .header-user_item .user-dropdown > ul > li > a:hover {
	background: #f4f4f4;
	color: var(--primary-color);
}

.hero-slider {
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .05);
	border-radius: 4px;
	overflow: hidden;
	flex-grow: 2;
	flex-shrink: 1;
	flex-basis: 0;
}

.hero-slider [class*=slider-button] {
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 1.6em;
	box-shadow: 0 1px 8px 0 rgba(var(--bs-black-rgb), .09);
	color: var(--bs-white);
	background-color: rgba(var(--bs-black-rgb), .18);
	transition: var(--transition-default);
	z-index: 2;
	width: 35px;
	height: 60px;
	opacity: 0;
}

.hero-slider .slider-button_next {
	right: -5px;
}

.hero-slider .slider-button_prev {
	left: -5px;
}

.hero-slider:hover [class*=slider-button] {
	opacity: 1;
}

.hero-slider [class*=slider-button]:hover {
	background-color: rgba(var(--bs-black-rgb), .48);
}

.hero-slider .slider-pagination {
	position: absolute;
	bottom: 15px;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.hero-slider .slider-pagination .swiper-pagination-bullet {
	margin: 0;
	border-radius: 50%;
	width: 11px;
	height: 11px;
	border: 1px solid rgba(137, 137, 137, 0.4);
	background-color: rgba(var(--bs-white-rgb), 0.4);
	opacity: 1;
	transition: var(--transition-default);
}

.hero-slider .slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: var(--primary-color);
}

.hero-thumb {
	flex-grow: 1;
	flex-shrink: 1;
	flex-basis: 0;
}

.hero-thumb .hero-thumb_item {
	border-radius: 4px;
}

.featured-card {
	padding: 18px;
	gap: 18px;
	border-radius: 12px;
	border: 1px solid var(--bs-gray-200);
}

.featured-card .featured-list {
	gap: 18px;
}

.featured-card .featured-list .featured-item {
	width: calc(33.33333% - 12px);
}

.featured-card .featured-list .featured-item .featured-item_avatar {
	width: 60px;
	height: 60px;
	background-color: var(--bs-gray-100);
	box-shadow: rgba(var(--bs-black-rgb), 0.05) 0 0 0 1px;
	border-radius: 15px;
}

.featured-card .featured-list .featured-item .featured-item_content {
	margin-left: 12px;
}

.featured-card .featured-list .featured-item .featured-item_title {
	font-size: 1em;
	color: var(--bs-dark);
	line-height: 1.3;
	font-weight: 600;
	transition: var(--transition-default);
}

.featured-card .featured-list .featured-item .featured-item_text {
	font-size: .85em;
	color: #9ba1a8;
	margin-top: 2px;
}

.featured-card .featured-list .featured-item:hover .featured-item_avatar > img {
	transform: scale(1.05);
}

.featured-card .featured-list .featured-item:hover .featured-item_title {
	color: var(--primary-color);
}

.learning-card .card-image {
	border-radius: 5px;
}

.learning-card .card-title {
	margin-top: 10px;
	font-size: 1.075em;
	color: var(--bs-dark);
	line-height: 1.3;
	font-weight: 600;
	transition: var(--transition-default);
	margin-bottom: 5px;
}

.learning-card .card-price .price-current {
	font-weight: 600;
	color: var(--bs-black);
}

.learning-card .card-price .price-cost {
	text-decoration: line-through;
	font-weight: 500;
	color: #9ba1a8;
}

.learning-card .card-price .price-percent {
	font-weight: 500;
	color: var(--bs-white);
	border-radius: 5px;
	background: var(--bs-danger);
	font-size: .85em;
	padding: 2px 6px;
}

.learning-card:hover .card-image img {
	transform: scale(1.05);
}

.learning-card:hover .card-title {
	color: var(--primary-color);
}

.learning-card.learning-card_ofs .card-image img {
	opacity: .5;
}

.learning-card.learning-card_ofs .card-ofs {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
	pointer-events: none;
	font-weight: 500;
	color: var(--bs-white);
	border-radius: 5px;
	background: var(--bs-dark);
	font-size: .925em;
	padding: 4px 10px;
}

.game-card .card-image {
	border-radius: 12px;
	background-color: var(--bs-gray-100);
	box-shadow: rgba(var(--bs-black-rgb), 0.05) 0 0 0 1px;
}

.game-card .card-title {
	margin-top: 10px;
	font-size: 1.075em;
	color: var(--bs-dark);
	line-height: 1.3;
	font-weight: 600;
	transition: var(--transition-default);
	margin-bottom: 5px;
}

.game-card .card-meta {
	font-size: .85em;
	color: #9ba1a8;
	display: flex;
	align-items: center;
}

.game-card .card-meta .card-meta_item {
	position: relative;
	--line: 1;
}

.game-card .card-meta .card-meta_item + .card-meta_item {
	margin-left: 3px;
	padding-left: 7px;
}

.game-card .card-meta .card-meta_item + .card-meta_item:before {
	content: "/";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.game-card:hover .card-image img {
	transform: scale(1.05);
}

.game-card:hover .card-title {
	color: var(--primary-color);
}

.topup-card .card-image {
	border-radius: 12px;
	box-shadow: rgba(0, 0, 0, .1) 0 0 0.5em, rgba(0, 0, 0, .05) 0 0 0 1px;
}

.topup-card .card-image:after {
	background: rgba(255, 255, 255, 0.15) repeat center center;
	border-radius: 0;
	content: "";
	display: block;
	height: 0;
	left: -50%;
	margin: 0;
	overflow: hidden;
	position: absolute;
	top: 48%;
	transform: rotate(45deg);
	transition: all 0.65s ease 0s;
	width: 200%;
	z-index: 1;
}

.topup-card .card-title {
	font-size: 1.075em;
	color: #232323;
	margin-bottom: 0;
	padding-top: 8px;
}

.topup-card:hover .card-image {
	box-shadow: rgba(0, 0, 0, .35) 0 0 0.5em, rgba(0, 0, 0, .25) 0 0 0 1px;
}

.topup-card:hover .card-title {
	color: var(--primary-hover);
}

.topup-card:hover .card-image img {
	transform: scale(1.1);
}

.topup-card:hover .card-image::after {
	height: 400%;
	left: -60%;
	top: -100%;
	transform: rotate(45deg);
	transition: all 0.65s ease 0s;
	width: 200%;
}

.document-card {
	border: 1px solid var(--bs-gray-200);
	height: 100%;
	transition: var(--transition-default);
}

.document-card:hover {
	transform: translateY(-3px);
	border-color: var(--primary-color);
}

.document-card .card-header {
	padding: 10px !important;
	position: relative;
}

.document-card .card-header .card-image {
	position: relative;
	overflow: hidden;
	border-radius: 5px !important;
}

.document-card .card-header .card-image:before {
	display: block;
	content: "";
	padding-top: calc(1 / 1 * 100%);
}

.document-card .card-header .card-image img {
	position: absolute;
	width: 100%;
	height: 100%;
	max-width: 100%;
	object-fit: cover;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

.document-card .card-header .stretched-link:after {
	z-index: 3;
}

.document-card .card-header .card-percent {
	font-weight: 500;
	color: var(--bs-white);
	border-radius: 5px;
	background: var(--bs-danger);
	font-size: .85em;
	padding: 2px 6px;
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 2;
	display: inline-flex;
}

.document-card .card-type {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.6em;
	position: absolute;
	top: 5px;
	right: 5px;
	z-index: 2;
}

.document-card .card-type.card-type_word {
	color: #0C67C2;
}

.document-card .card-type.card-type_pdf {
	color: #C1401E;
}

.document-card .card-type.card-type_excel {
	color: #016E38;
}

.document-card .card-body {
	padding: 10px;
	flex: 1 1 0%;
	display: flex;
	flex-direction: column;
}

.document-card .card-body .card-category {
	margin-bottom: 5px;
}

.document-card .card-body .card-category > a {
	font-size: .9em;
	color: #9ba1a8;
	transition: var(--transition-default);
}

.document-card .card-body .card-category > a:hover {
	color: #323232;
}

.document-card .card-body .card-title {
	margin-bottom: 8px;
}

.document-card .card-body .card-title > a {
	color: #121212;
	font-weight: 500;
	font-size: 1.075em;
	line-height: 20px;
}

.document-card .card-body .card-title > a:hover {
	color: var(--primary-color);
}

.document-card .card-body .card-price {
	margin-bottom: 8px;
}

.document-card .card-body .card-price .price-current {
	font-weight: 600;
	color: var(--bs-danger);
}

.document-card .card-body .card-price .price-cost {
	text-decoration: line-through;
	font-weight: 500;
	color: #9ba1a8;
}

.document-card .card-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: .925em;
	margin-top: auto;
}

.document-card .card-meta .card-meta_item {
	flex-shrink: 0;
	text-align: right;
	color: #9ba1a8;
	display: flex;
	align-items: center;
	gap: 3px;
}

.document-card .card-meta .card-meta_item > i {
	font-size: 1.075em;
}

.product-card .card-image {
	border-radius: 4px;
	padding: 4px;
	background-color: var(--bs-white);
	-webkit-box-shadow: 0 0 0.75em 0 rgba(0, 0, 0, 0.25);
	box-shadow: 0 0 0.75em 0 rgba(0, 0, 0, 0.25);
}

.product-card .card-image .card-percent {
	font-weight: 500;
	color: var(--bs-white);
	border-radius: 5px;
	background: var(--bs-danger);
	font-size: .85em;
	padding: 2px 6px;
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 2;
	display: inline-flex;
}

.product-card .card-image img {
	border-radius: 4px;
}

.product-card .card-title {
	margin-top: 10px;
	font-size: 1.075em;
	color: var(--bs-dark);
	line-height: 1.4;
	font-weight: 600;
	transition: var(--transition-default);
	margin-bottom: 5px;
	text-align: center;
	--line: 3;
}

.product-card .card-price .price-current {
	font-weight: 600;
	color: var(--bs-danger);
}

.product-card .card-price .price-cost {
	text-decoration: line-through;
	font-weight: 500;
	color: #9ba1a8;
}

.product-card:hover .card-image img {
	transform: scale(1.05);
}

.product-card:hover .card-title {
	color: var(--primary-color);
}

.footer {
	background-color: #f6f6f6;
	border-top: 1px solid var(--bs-gray-200);
}

.footer .footer-title {
	font-size: 1.15em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--bs-black);
	margin-bottom: 15px;
}

.footer .footer-list .footer-list_item .footer-list_item--link {
	color: var(--bs-gray-900);
	font-size: 1em;
}

.footer .footer-list .footer-list_item .footer-list_item--link > i {
	font-size: 1.075em;
	margin-right: 10px;
}

.footer .footer-list .footer-list_item .footer-list_item--link:hover {
	color: var(--primary-color);
}

.footer .footer-list .footer-list_item + .footer-list_item {
	margin-top: 14px;
}

.footer .footer-social {
	margin-top: 15px;
}

.footer .footer-social .footer-social_item .footer-social_item--link {
	border-radius: 50%;
	height: 30px;
	width: 30px;
	background: #fafafa;
	color: var(--bs-white);
	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;
}

.footer .footer-social .footer-social_item .footer-social_item--link.footer-social_facebook {
	background-color: #0866FF;
}

.footer .footer-social .footer-social_item .footer-social_item--link.footer-social_twitter {
	background-color: #1DA0F1;
}

.footer .footer-social .footer-social_item .footer-social_item--link.footer-social_youtube {
	background-color: #ff0000;
}

.footer .footer-social .footer-social_item .footer-social_item--link.footer-social_google {
	background-color: #EA4335;
}

.footer .footer-social .footer-social_item .footer-social_item--link:hover {
	opacity: .7;
}

.footer .footer-copyright {
	color: #737373;
	font-size: 0.925em;
}

.footer .footer-logos img {
	height: 24px;
}

.footer .footer-dropdown .btn-dropdown {
	font-size: 1em;
	border: 1px solid #e5e7eb;
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 5px 8px;
	background: #fff;
	border-radius: 4px;
}

.footer .footer-dropdown .btn-dropdown img {
	width: 18px;
	height: 18px;
	margin-right: 5px;
}


.footer .footer-dropdown .dropdown-wrap .dropdown-menu {
	padding: 8px;
	z-index: 995;
	background-color: #fff;
	border: 1px solid #d8d8d8;
	-webkit-box-shadow: 0 16px 24px rgb(51 51 51 / 8%);
	box-shadow: 0 16px 24px rgb(51 51 51 / 8%);
	border-radius: 4px;
	margin-top: 8px;
	min-width: 9rem;
	font-size: 13.5px;
}

.footer .footer-dropdown .dropdown-wrap .dropdown-menu > a {
	padding: 6px 10px;
	font-weight: 400;
	line-height: 18px;
	background-color: #fff;
	border-radius: 4px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	font-size: 13.5px;
	color: #232323;
}

.footer .footer-dropdown .dropdown-wrap .dropdown-menu > a + a {
	margin-top: 4px;
}

.footer .footer-dropdown .dropdown-wrap .dropdown-menu > a > img {
	width: 18px;
	height: 18px;
	margin-right: 5px;
}

.footer .footer-dropdown .dropdown-wrap .dropdown-menu > a.active, .footer .footer-dropdown .dropdown-wrap .dropdown-menu > a:hover {
	background-color: #f4fafd;
	color: var(--primary-color);
}

.footer .section-gap + .section-gap {
	padding-top: 0;
}

.section-login {
	background: rgba(var(--primary-rgb), 0.075);
	padding: 80px 0;
}

.login-wrapper {
	background: var(--bs-white);
	border-radius: 8px;
	-webkit-box-shadow: 0px 6px 14px -6px rgba(24, 39, 75, 0.12), 0px 10px 32px -4px rgba(24, 39, 75, 0.1);
	box-shadow: 0px 6px 14px -6px rgba(24, 39, 75, 0.12), 0px 10px 32px -4px rgba(24, 39, 75, 0.1);
	overflow: hidden;
}

.login-wrapper .login-image {
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.login-wrapper .login-image .login-protected {
	position: absolute;
	left: 25px;
	right: 25px;
	bottom: 25px;
	width: calc(100% - 50px);
	background-color: var(--bs-white);
	border-radius: 8px;
	-webkit-box-shadow: 0px 6px 14px -6px rgba(24, 39, 75, 0.12), 0px 10px 32px -4px rgba(24, 39, 75, 0.1);
	box-shadow: 0px 6px 14px -6px rgba(24, 39, 75, 0.12), 0px 10px 32px -4px rgba(24, 39, 75, 0.1);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: 15px;
	padding: 15px;
}

.login-wrapper .login-image .login-protected .protected-icon {
	width: 55px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.login-wrapper .login-image .login-protected .protected-content .protected-title {
	font-size: 1.15em;
	font-weight: 700;
	color: var(--bs-black);
	margin-bottom: 5px;
}

.login-wrapper .login-image .login-protected .protected-content .protected-text {
	font-size: 1em;
	color: var(--bs-gray-700);
}

.login-wrapper .login-inner {
	padding: 60px 45px;
}

.login-wrapper .login-inner .section-heading {
	align-items: flex-start;
	flex-direction: column;
	gap: 0;
}

.login-wrapper .login-inner .section-heading .heading-title {
	font-size: 1.5em;
	color: var(--secondary-color);
}

.login-wrapper .login-inner .login-form .login-form_item {
	position: relative;
	width: 100%;
}

.login-wrapper .login-inner .login-form .login-form_item > i {
	color: var(--bs-gray-600);
	font-size: 1.15em;
	position: absolute;
	top: 50%;
	left: 15px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.login-wrapper .login-inner .login-form .login-form_item .form-control {
	height: 42px;
	border-radius: 6px;
	border: 1px solid #ced4da;
	width: 100%;
	padding: 8px 16px 8px 42px;
	font-size: 1.075em;
	color: var(--bs-black);
}

.login-wrapper .login-inner .login-form .login-form_item.login-form_icon .form-control {
	padding-right: 42px;
}

.login-wrapper .login-inner .login-form .login-form_item .form-control:focus {
	outline: none !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	border-color: var(--bs-gray-500) !important;
}

.login-wrapper .login-inner .login-form .login-form_item > .login-form_view {
	color: var(--bs-gray-600);
	font-size: 1.15em;
	position: absolute;
	top: 50%;
	right: 15px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
}

.login-wrapper .login-inner .login-form .login-form_item > .login-form_view:hover {
	color: var(--bs-gray-900);
}

.login-wrapper .login-inner .login-form .login-form_item .form-control::-webkit-input-placeholder {
	opacity: .7;
}

.login-wrapper .login-inner .login-form .login-form_item .form-control::-moz-placeholder {
	opacity: .7;
}

.login-wrapper .login-inner .login-form .login-form_item .form-control:-ms-input-placeholder {
	opacity: .7;
}

.login-wrapper .login-inner .login-form .login-form_item .form-control::-ms-input-placeholder {
	opacity: .7;
}

.login-wrapper .login-inner .login-form .login-form_item .form-control::placeholder {
	opacity: .7;
}

.login-wrapper .login-inner .login-form .form-check {
	margin-bottom: 0;
	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;
	vertical-align: middle;
	gap: 5px;
}

.login-wrapper .login-inner .login-form .form-check .form-check-input {
	width: 1.125em;
	height: 1.125em;
	position: relative;
	top: -1px;
}

.login-wrapper .login-inner .login-form .form-check .form-check-input:checked {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

.login-wrapper .login-inner .login-form .button-theme_large {
	padding-top: 14px;
	padding-bottom: 14px;
	font-size: 1.125em;
}

.login-wrapper .login-inner .login-form .button-theme_large > i {
	line-height: 1;
	position: relative;
	top: -1px;
}

.article-card {
	-webkit-box-shadow: 0 6px 14px -6px rgba(24, 39, 75, 0.12), 0px 10px 32px -4px rgba(24, 39, 75, 0.1);
	box-shadow: 0 6px 14px -6px rgba(24, 39, 75, 0.12), 0px 10px 32px -4px rgba(24, 39, 75, 0.1);
	height: 100%;
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
}

.article-card .card-header .card-image:after {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	inset: 0;
	background: rgba(0, 0, 0, .2);
	z-index: 1;
	position: absolute;
	display: block;
	content: "";
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
}

.article-card .card-title {
	font-size: 1.15em;
	color: var(--bs-black);
	margin-bottom: 16px;
	font-weight: 700;
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
	line-height: 1.3;
}

.article-card .card-text {
	--line: 4;
	color: var(--bs-gray-700);
}

.article-card .card-date {
	margin-top: 15px;
	font-size: .925em;
	color: #888e93;
	text-align: right;
}

.article-card:hover {
	-webkit-box-shadow: 0 6px 14px -6px rgba(24, 39, 75, 0.25), 0px 10px 32px -4px rgba(24, 39, 75, 0.23);
	box-shadow: 0 6px 14px -6px rgba(24, 39, 75, 0.25), 0px 10px 32px -4px rgba(24, 39, 75, 0.23);
}

.article-card:hover .card-header .card-image:after {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.article-card:hover .card-header .card-image img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.article-card:hover .card-title {
	color: var(--primary-color);
}

.section-pagination {
	margin-top: 30px;
}

.section-pagination .pagination {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 0;
	gap: 8px;
}

.section-pagination .pagination > .page-item > .page-link {
	background: #eeeeee;
	color: var(--bs-gray-700);
	font-size: 1.075em;
	margin: 0;
	min-width: 35px;
	height: 35px;
	border-radius: 4px;
	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;
	line-height: 35px;
	border: 0;
	outline: none !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	padding: 0;
}

.section-pagination .pagination > .page-item.active > .page-link,
.section-pagination .pagination > .page-item:hover > .page-link {
	background: var(--primary-color);
	color: var(--bs-white);
}

.section-breadcrumb .breadcrumb {
	margin-bottom: 0;
}

.section-breadcrumb .breadcrumb .breadcrumb-item {
	font-size: 1.075em;
	position: relative;
}

.section-breadcrumb .breadcrumb .breadcrumb-item > a {
	color: var(--bs-black);
}

.section-breadcrumb .breadcrumb .breadcrumb-item > a:hover {
	color: var(--primary-color);
}

.section-breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item {
	padding-left: 12px;
	margin-left: 12px;
}

.section-breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item:before {
	content: "\f105";
	font-family: "Font Awesome 5 Pro";
	float: none;
	padding-right: 0;
	position: absolute;
	font-weight: 500;
	left: -3px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--bs-black);
}

.section-breadcrumb.section-breadcrumb_bg {
	background-color: #f4f4f4;
	border-bottom: 1px solid var(--bs-gray-200);
}

.section-breadcrumb.section-breadcrumb_bg .breadcrumb .breadcrumb-item {
	padding-top: 10px;
	padding-bottom: 10px;
}

.section-sidebar .sidebar-item {
	background: #fff;
	-webkit-box-shadow: 0 6px 14px -6px rgba(24, 39, 75, 0.05), 0px 10px 32px -4px rgba(24, 39, 75, 0.01);
	box-shadow: 0 6px 14px -6px rgba(24, 39, 75, 0.05), 0px 10px 32px -4px rgba(24, 39, 75, 0.01);
	border-radius: 12px;
}

.section-sidebar .sidebar-item .sidebar-title {
	font-size: 1.15em;
	color: var(--bs-black);
	font-weight: 700;
	padding-left: 22px;
	position: relative;
}

.section-sidebar .sidebar-item .sidebar-title:before,
.section-sidebar .sidebar-item .sidebar-title:after {
	position: absolute;
	content: '';
	top: 12px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 5px;
	height: 5px;
	border-radius: 100%;
	background-color: var(--primary-color);
}

.section-sidebar .sidebar-item .sidebar-title:before {
	left: 8px;
}

.section-sidebar .sidebar-item .sidebar-title:after {
	left: 0;
}

.section-sidebar .sidebar-item .sidebar-desc {
	margin-top: 4px;
	font-size: 1.075em;
	color: #6a6a6a;
}

.section-sidebar .sidebar-body .sidebar-list > ul > li > a {
	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;
	font-size: 1.075em;
	color: var(--bs-gray-900);
	padding: 12px 0;
}

.section-sidebar .sidebar-body .sidebar-list > ul > li > a > i {
	font-size: 1.15em;
	-webkit-transition: .3s ease-in-out transform;
	-o-transition: .3s ease-in-out transform;
	transition: .3s ease-in-out transform;
}

.section-sidebar .sidebar-body .sidebar-list > ul > li > a:hover,
.section-sidebar .sidebar-body .sidebar-list > ul > li > a[aria-expanded=true] {
	color: var(--primary-color);
}

.section-sidebar .sidebar-body .sidebar-list > ul > li > a[aria-expanded=true] > i {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.section-sidebar .sidebar-body .sidebar-list > ul > li + li {
	border-top: 1px solid var(--bs-gray-200);
}

.section-sidebar .sidebar-body .sidebar-list > ul > li > ul {
	border-top: 1px solid var(--bs-gray-200);
}

.section-sidebar .sidebar-body .sidebar-list > ul > li > ul > li > a {
	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;
	font-size: 1em;
	color: var(--bs-gray-600);
	padding: 8px 0 8px 15px;
	position: relative;
}

.section-sidebar .sidebar-body .sidebar-list > ul > li > ul > li > a:before {
	position: absolute;
	content: '';
	top: 20px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 5px;
	height: 5px;
	border-radius: 100%;
	background-color: var(--primary-color);
	left: 0;
	opacity: .7;
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
}

.section-sidebar .sidebar-body .sidebar-list > ul > li > ul > li > a:hover {
	color: var(--primary-color);
}

.section-sidebar .sidebar-body .sidebar-list > ul > li > ul > li > a:hover:before {
	opacity: 1;
}

.section-sidebar .sidebar-body .sidebar-list > ul > li > ul > li + li {
	border-top: 1px solid var(--bs-gray-200);
}

.section-sidebar.sidebar-recharge .sidebar-body .sidebar-list > ul {
	padding-bottom: 10px;
}

.section-sidebar.sidebar-recharge .sidebar-body .sidebar-list.sidebar-recharge > ul {
	padding-bottom: 10px;
}

.section-sidebar.sidebar-recharge .sidebar-body .sidebar-list > ul > li {
	border-top: 0 !important;
	width: 100%;
}

.section-sidebar.sidebar-recharge .sidebar-body .sidebar-list > ul > li .topup-card {
	flex-direction: row;
	align-items: center;
	gap: 8px;
	width: 100%;
	padding: 8px 20px 8px 0 !important;
	transition: var(--transition-default);
	border-radius: 5px !important;
	position: relative;
}

.section-sidebar.sidebar-recharge .sidebar-body .sidebar-list > ul > li .topup-card:before {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 5px;
	font-size: 1.3em;
	color: var(--primary-color);
	font-family: "Font Awesome 5 Pro";
	content: "\f105";
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: var(--transition-default);
}

.section-sidebar.sidebar-recharge .sidebar-body .sidebar-list > ul > li .topup-card .card-title {
	padding-top: 0;
	padding-left: 10px;
	text-align: left !important;
	font-size: 1em;
	position: relative;
}

.section-sidebar.sidebar-recharge .sidebar-body .sidebar-list > ul > li .topup-card .card-title:before {
	height: 4px;
	width: 4px;
	background: var(--bs-gray-900);
	display: inline-block;
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	border-radius: 50%;
	transition: var(--transition-default);
}

.section-sidebar.sidebar-recharge .sidebar-body .sidebar-list > ul > li .topup-card.active:before {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.section-sidebar.sidebar-recharge .sidebar-body .sidebar-list > ul > li .topup-card.active .card-title {
	font-weight: 700;
	color: var(--primary-color);
}

.section-sidebar.sidebar-recharge .sidebar-body .sidebar-list > ul > li .topup-card:hover .card-title:before,
.section-sidebar.sidebar-recharge .sidebar-body .sidebar-list > ul > li .topup-card.active .card-title:before {
	background: var(--primary-color);
}

.section-sidebar .sidebar-body .sidebar-tags {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 8px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.section-sidebar .sidebar-body .sidebar-tags .tag-item {
	background: rgba(var(--primary-rgb), .1);
	border: 1px solid rgba(var(--primary-rgb), .4);
	color: var(--primary-color);
	padding: 4px 8px;
	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;
	text-decoration: none;
	border-radius: 4px;
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
}

.section-sidebar .sidebar-body .sidebar-tags .tag-item:hover {
	background: var(--primary-color);
	color: var(--bs-white);
}

.section-sidebar .sidebar-item .article-item .article-item_image {
	width: 40%;
	border-radius: 6px;
}

.section-sidebar .sidebar-item .article-item .article-item_image:after {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	inset: 0;
	background: rgba(0, 0, 0, .2);
	z-index: 1;
	position: absolute;
	display: block;
	content: "";
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
}

.section-sidebar .sidebar-item .article-item .article-item_title {
	width: 100%;
	font-size: 1.075em;
	color: var(--bs-black);
	--line: 3;
	font-weight: 500;
	line-height: 1.3;
	-ms-flex-item-align: start;
	align-self: flex-start;
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
}

.section-sidebar .sidebar-item .article-item:hover .article-item_title {
	color: var(--primary-color);
}

.section-sidebar .sidebar-item .article-item:hover .article-item_image:after {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.section-sidebar .sidebar-item .article-item:hover .article-item_image img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.section-sidebar .sidebar-item .article-item + .article-item {
	padding-top: 15px;
	margin-top: 15px;
	border-top: 1px solid var(--bs-gray-200);
}

.section-sidebar .sidebar-item + .sidebar-item {
	margin-top: 20px;
}

.section-sidebar .sidebar-item .sidebar-ratio {
	position: relative;
	margin-top: 12px;
}

.section-sidebar .sidebar-item .sidebar-ratio:first-child {
	margin-top: 8px;
}

.section-sidebar .sidebar-item .sidebar-ratio:last-child {
	padding-bottom: 12px;
}

.section-sidebar .sidebar-item .sidebar-ratio .sidebar-ratio_item > span {
	position: relative;
	font-size: 1.075em;
	color: var(--bs-gray-900);
	cursor: pointer;
	display: block;
	transition: var(--transition-default);
}

.section-sidebar .sidebar-item .sidebar-ratio .sidebar-ratio_item > span:before {
	display: inline-block;
	content: "";
	width: 20px;
	height: 20px;
	background-color: var(--bs-white);
	border: 1px solid var(--bs-gray-300);
	margin-right: 8px;
	position: relative;
	top: 5px;
	border-radius: 4px;
	overflow: hidden;
	background-image: url(../images/check.svg);
	background-size: 0;
	background-position: center;
	background-repeat: no-repeat;
	transition: background-size cubic-bezier(.5, 0, .5, 2) .3s, background-color .3s;
}

.section-sidebar .sidebar-item .sidebar-ratio .sidebar-ratio_item input[type=radio] + span:before {
	border-radius: 50%;
}

.section-sidebar .sidebar-item .sidebar-ratio .sidebar-ratio_item input {
	position: absolute;
	opacity: 0;
	visibility: hidden;
}

.section-sidebar .sidebar-item .sidebar-ratio .sidebar-ratio_item > span:hover {
	color: var(--bs-dark);
}

.section-sidebar .sidebar-item .sidebar-ratio .sidebar-ratio_item.active span,
.section-sidebar .sidebar-item .sidebar-ratio .sidebar-ratio_item input:checked + span {
	color: var(--primary-color);
	font-weight: 500;
}

.section-sidebar .sidebar-item .sidebar-ratio .sidebar-ratio_item.active span:before,
.section-sidebar .sidebar-item .sidebar-ratio .sidebar-ratio_item input:checked + span:before {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	background-size: 100%;
}


.section-sidebar .sidebar-item .sidebar-item_wrapper + .sidebar-item_wrapper {
	padding-top: 4px;
	margin-top: 4px;
	border-top: 1px solid var(--bs-gray-200);
}

.section-sidebar .sidebar-item .sidebar-dropdown {
	padding-bottom: 15px;
	position: relative;
}

.section-sidebar .sidebar-item .sidebar-dropdown .sidebar-dropdown_btn {
	width: 100%;
	border-radius: 4px;
	font-size: 1.075em;
	min-height: 40px;
	padding: 6px 12px;
	border: 1px solid var(--bs-gray-200);
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--bs-black);
	gap: 8px;
	background-color: var(--bs-white);
}

.section-sidebar .sidebar-item .sidebar-dropdown .sidebar-dropdown_btn > i {
	font-size: 1.15em;
	transition: .3s transform ease;
}

.section-sidebar .sidebar-item .sidebar-dropdown .sidebar-dropdown_btn > span {
	--line: 1;
}

.section-sidebar .sidebar-item .sidebar-dropdown .sidebar-dropdown_btn[aria-expanded=true] > i {
	transform: rotate(180deg);
}

.section-sidebar .sidebar-item .sidebar-dropdown .dropdown-menu {
	font-size: 1em;
	width: 100%;
	border-color: var(--bs-gray-200);
	transform: unset !important;
	padding: 0 15px;
	max-height: 355px;
	overflow-y: auto;
}

.section-sidebar .sidebar-item .sidebar-dropdown .dropdown-menu::-webkit-scrollbar {
	width: 5px;
}

.section-sidebar .sidebar-item .sidebar-dropdown .dropdown-menu::-webkit-scrollbar-track {
	background: #eeeeee;
}

.section-sidebar .sidebar-item .sidebar-dropdown .dropdown-menu::-webkit-scrollbar-thumb {
	background: #d7d7d7;
}

.section-sidebar .sidebar-item .sidebar-dropdown .dropdown-menu::-webkit-scrollbar-thumb:hover {
	background: #b9b9b9;
}

.section-sidebar .sidebar-item .sidebar-dropdown .dropdown-menu[data-popper-placement=top-start] {
	border-radius: 4px 4px 0 0;
	bottom: calc(100%) !important;
	top: unset !important;
	border-bottom: 0 !important;
}

.section-sidebar .sidebar-item .sidebar-dropdown .dropdown-menu[data-popper-placement=top-start] + .sidebar-dropdown_btn {
	border-radius: 0 0 4px 4px;
}

.section-sidebar .sidebar-item .sidebar-dropdown .dropdown-menu[data-popper-placement=bottom-start] {
	border-radius: 0 0 4px 4px;
	top: calc(100% - 15px) !important;
	bottom: unset !important;
	border-top: 0 !important;
}

.section-sidebar .sidebar-item .sidebar-dropdown .dropdown-menu[data-popper-placement=bottom-start] + .sidebar-dropdown_btn {
	border-radius: 4px 4px 0 0;
}

.article-detail {
	background: #fff;
	-webkit-box-shadow: 0 6px 14px -6px rgba(24, 39, 75, 0.05), 0px 10px 32px -4px rgba(24, 39, 75, 0.01);
	box-shadow: 0 6px 14px -6px rgba(24, 39, 75, 0.05), 0px 10px 32px -4px rgba(24, 39, 75, 0.01);
	border-radius: 12px;
	padding: 16px;
}

.article-detail .article-title {
	font-size: 2em;
	color: var(--bs-black);
	font-weight: 700;
	margin-bottom: 15px;
}

.article-detail .detail-content {
	padding-top: 16px;
	margin-top: 16px;
	border-top: 1px solid var(--bs-gray-200);
}

.detail-content {
	font-size: 1.15em;
	line-height: 1.6;
}

.detail-content p,
.detail-content ul,
.detail-content ol,
.detail-content blockquote {
	margin-bottom: 16px;
}

.detail-content ul,
.detail-content ol {
	padding-left: 16px;
	line-height: 1.6;
}

.detail-content h1,
.detail-content h2,
.detail-content h3,
.detail-content h4,
.detail-content h5,
.detail-content h6 {
	margin-bottom: 10px;
	font-weight: 700;
}

.detail-content h1 b,
.detail-content h1 strong,
.detail-content h2 b,
.detail-content h2 strong,
.detail-content h3 b,
.detail-content h3 strong,
.detail-content h4 b,
.detail-content h4 strong,
.detail-content h5 b,
.detail-content h5 strong,
.detail-content h6 b,
.detail-content h6 strong {
	font-weight: 700;
}

.detail-content h2 {
	font-size: 1.375em;
}

.detail-content h3 {
	font-size: 1.15em;
}

.detail-content h4,
.detail-content h5,
.detail-content h6 {
	font-size: 1em;
}

.detail-content p:last-child,
.detail-content ul:last-child,
.detail-content ol:last-child {
	margin-bottom: 0;
}

.detail-content img {
	max-width: 100%;
	height: auto;
}

.article-detail .table {
	--bs-table-border-color: var(--bs-gray-500)
}

.article-detail .table th,
.article-detail .table td {
	padding: 10px;
	min-width: 150px;
}

.article-detail .table td ul {
	padding-left: 24px;
}

.detail-content blockquote {
	padding: 15px 15px 15px 45px;
	border-left: 5px solid var(--primary-color);
	background: rgba(var(--primary-rgb), .05);
	position: relative;
}

.detail-content blockquote:before {
	position: absolute;
	content: "\f10d";
	font-family: "Font Awesome 5 Pro";
	font-size: 1.5em;
	color: var(--primary-color);
	top: 10px;
	left: 10px;
	-webkit-transform: rotateX(180deg);
	transform: rotateX(180deg);
	font-weight: 700;
	line-height: 1;
}

.article-detail .article-bottom {
	padding-top: 24px;
	margin-top: 24px;
	border-top: 1px solid var(--bs-gray-200);
}

.article-detail .article-social > ul > li > * {
	height: 20px !important;
	line-height: 20px;
}

.topup-header {
	padding-top: 0;
	background-image: url('../images/bg-topup.svg'), linear-gradient(135deg, rgb(125, 160, 185), rgb(197, 200, 201));
	background-repeat: repeat-x;
	background-position: top center;
	background-size: 1200px, cover;
}

.topup-header .topup-header_image {
	width: 180px;
	transform: translateY(30px);
	border-radius: 18px;
	position: relative;
	overflow: hidden;
	box-shadow: rgba(255, 255, 255, 0.05) 0 0 0 1px, rgba(0, 0, 0, 0.2) 0 0 24px 0;
}

.topup-header .topup-header_content {
	max-width: 768px;
	padding-top: 80px;
}

.topup-header .topup-header_title {
	font-size: 2em;
	color: var(--bs-white);
	font-weight: 700;
	margin-bottom: 10px;
}

.topup-header .topup-header_description {
	font-size: 1.075em;
	color: var(--bs-white);
	font-weight: 500;
	display: flex;
	gap: 10px;
	line-height: 1.3;
}

.topup-header .topup-header_description i {
	font-size: 1.4em;
	position: relative;
	top: 3px;
}

.topup-body {
	padding-top: 30px;
	padding-bottom: 30px;
	background-color: #f6f6f6;
}

.topup-choose .topup-choose_content {
	padding: 15px;
	font-weight: 700;
	cursor: pointer;
	background-color: var(--bs-white);
	font-size: 1.075em;
	-webkit-box-shadow: 0 6px 14px -6px rgba(24, 39, 75, 0.05), 0px 10px 32px -4px rgba(24, 39, 75, 0.01);
	box-shadow: 0 6px 14px -6px rgba(24, 39, 75, 0.05), 0px 10px 32px -4px rgba(24, 39, 75, 0.01);
	border-radius: 12px;
	border: 1px solid #ced4da;
}

.topup-choose .topup-choose_content .topup-choose_text {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
}

.topup-choose .topup-choose_content .topup-choose_text:before {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	content: "";
	overflow: hidden;
	border-radius: 50%;
	background-color: #eaeaea;
	background-image: url("../images/check.svg");
	background-size: 0;
	background-position: center;
	background-repeat: no-repeat;
	transition: background-size cubic-bezier(.5, 0, .5, 2) .3s, background-color .3s;
}

.topup-choose .topup-choose_content .topup-choose_text {
	color: var(--bs-black);
}

.topup-choose .topup-choose_content .topup-choose_price {
	color: var(--bs-danger);
	margin-left: 26px;
}

.topup-choose .topup-choose_input:checked + .topup-choose_content {
	border-color: var(--primary-color);
	background-color: rgba(var(--primary-rgb), 0.05);
}

.topup-choose .topup-choose_input:checked + .topup-choose_content .topup-choose_text:before {
	background-color: var(--primary-color);
	background-size: 100%;
}

.learning-page .learning-images {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.learning-page .learning-images .learning-image {
	border-radius: 8px;
	overflow: hidden;
}

.learning-page .learning-images .learning-image > img {
	width: 100%;
}

.learning-page .learning-images .learning-thumb .learning-image {
	opacity: .5;
	transition: var(--transition-default);
	cursor: pointer;
}

.learning-page .learning-images .learning-thumb .swiper-slide.swiper-slide-thumb-active .learning-image {
	opacity: 1;
}

.learning-page .learning-content .learning-title {
	font-size: 1.7em;
	color: var(--bs-black);
	font-weight: 700;
	line-height: 1.3;
}

.learning-page .learning-content .learning-meta {
	margin-top: 12px;
}

.learning-page .learning-content .learning-meta .learning-meta_item {
	align-items: flex-start;
}

.learning-page .learning-content .learning-meta .learning-meta_item .learning-meta_item__icon {
	font-size: 1.3em;
	position: relative;
}

.learning-page .learning-content .learning-meta .learning-meta_item .learning-meta_item__text {
	font-size: 1.075em;
}

.learning-page .learning-content .learning-meta .learning-meta_item .learning-meta_item__text > a {
	color: var(--primary-color);
	font-weight: 500;
}

.learning-page .learning-content .learning-meta .learning-meta_item .learning-meta_item__text > a:hover {
	text-decoration: underline;
}

.learning-page .learning-content .learning-price {
	margin-top: 12px;
}

.learning-page .learning-content .learning-price .learning-price_current {
	font-weight: 600;
	color: var(--bs-black);
	font-size: 1.3em;
}

.learning-page .learning-content .learning-price .learning-price_cost {
	text-decoration: line-through;
	font-weight: 500;
	color: #9ba1a8;
	font-size: 1.3em;
}

.learning-page .learning-content .learning-price .learning-price_percent {
	font-weight: 500;
	color: var(--bs-white);
	border-radius: 5px;
	background: var(--bs-danger);
	font-size: .925em;
	padding: 3px 6px;
}

.learning-page .learning-content .learning-options {
	padding-top: 24px;
	margin-top: 24px;
	border-top: 1px solid var(--bs-gray-200);
}

.learning-page .learning-content .learning-options .learning-options_item .learning-options_item__title {
	font-size: 1.225em;
	font-weight: 700;
	color: var(--bs-black);
	margin-bottom: 6px;
}

.learning-page .learning-content .learning-options .learning-options_item .learning-options_item__choose {
	position: relative;
	overflow: hidden;
}

.learning-page .learning-content .learning-options .learning-options_item .learning-options_item__choose .learning-options_item__text {
	border-radius: 4px;
	overflow: hidden;
	border: 1px solid var(--bs-gray-200);
	font-weight: 600;
	color: var(--bs-dark);
	padding: 3px 12px;
	display: block;
	font-size: 1.075em;
	cursor: pointer;
	transition: var(--transition-default);
}

.learning-page .learning-content .learning-options .learning-options_item .learning-options_item__choose input:checked + .learning-options_item__text {
	border: 1px solid var(--primary-color);
	background-color: var(--primary-color);
	color: var(--bs-white);
}

.learning-page .learning-content .learning-options .learning-options_item .learning-options_item__choose input:disabled + .learning-options_item__text {
	opacity: .65;
	cursor: not-allowed;
	background-color: #ececec;
}

.learning-page .learning-sidebar .sidebar-item {
	padding: 21px 18px;
	background: #fff;
	border: 1px solid var(--bs-gray-200);
	border-radius: 12px;
}

.learning-page .learning-sidebar .sidebar-item .sidebar-title {
	margin-bottom: 18px;
	font-size: 1.3em;
	font-weight: 700;
	color: var(--primary-color);
}

.learning-page .learning-sidebar .sidebar-form {
	flex-direction: column;
	display: flex;
	gap: 24px;
}

.learning-page .learning-sidebar .sidebar-form .sidebar-form_item {
	display: flex;
	align-items: center;
	gap: 15px;
}

.learning-page .learning-sidebar .sidebar-form .sidebar-form_item .sidebar-form_item__text {
	font-size: 1.075em;
	font-weight: 700;
	color: var(--bs-black);
	width: 100px;
	flex-shrink: 0;
}

.learning-page .learning-sidebar .sidebar-form .sidebar-form_item .sidebar-form_item__wrapper {
	width: 100%;
}

.learning-page .learning-sidebar .sidebar-form .sidebar-form_item .sidebar-form_item__wrapper > .form-control,
.learning-page .learning-sidebar .sidebar-form .sidebar-form_item .sidebar-form_item__wrapper > .form-select {
	width: 100%;
	border-radius: 4px;
	font-size: 1.075em;
	min-height: 40px;
	padding: 6px 12px;
}

.learning-page .learning-sidebar .sidebar-form .sidebar-form_item .sidebar-form_item__wrapper > .form-select {
	padding-right: 35px;
}

.learning-page .learning-sidebar .sidebar-total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	padding-top: 24px;
	margin-top: 24px;
	border-top: 1px solid var(--bs-gray-200);
}

.learning-page .learning-sidebar .sidebar-total .sidebar-total_title {
	font-size: 1.3em;
	font-weight: 700;
	color: var(--bs-black);
}

.learning-page .learning-sidebar .sidebar-total .sidebar-total_value {
	font-size: 1.5em;
	font-weight: 700;
	color: var(--bs-danger);
}

.document-page .document-content .document-title {
	font-size: 1.7em;
	color: var(--bs-black);
	font-weight: 700;
	line-height: 1.3;
}

.document-page .document-content .document-title .document-word {
	color: #0C67C2;
}

.document-page .document-content .document-title .document-pdf {
	color: #C1401E;
}

.document-page .document-content .document-title .document-excel {
	color: #016E38;
}

.document-page .document-content .document-meta {
	margin-top: 24px;
}

.document-page .document-content .document-meta .document-meta_item {
	align-items: flex-start;
}

.document-page .document-content .document-meta .document-meta_item .document-meta_item__icon {
	font-size: 1.3em;
	position: relative;
}

.document-page .document-content .document-meta .document-meta_item .document-meta_item__text {
	font-size: 1.075em;
}

.document-page .document-content .document-meta .document-meta_item .document-meta_item__text > a {
	color: var(--primary-color);
	font-weight: 500;
}

.document-page .document-content .document-meta .document-meta_item .document-meta_item__text > a:hover {
	text-decoration: underline;
}

.document-page .document-content .document-price {
	margin-top: 24px;
}

.document-page .document-content .document-price .document-price_current {
	font-weight: 600;
	color: var(--bs-black);
	font-size: 1.3em;
}

.document-page .document-content .document-price .document-price_cost {
	text-decoration: line-through;
	font-weight: 500;
	color: #9ba1a8;
	font-size: 1.3em;
}

.document-page .document-content .document-price .document-price_percent {
	font-weight: 500;
	color: var(--bs-white);
	border-radius: 5px;
	background: var(--bs-danger);
	font-size: .925em;
	padding: 3px 6px;
}

.document-page .section-form {
	padding-top: 24px;
	margin-top: 24px;
	border-top: 1px solid var(--bs-gray-200);
}

.section-form .section-form_inner {
	padding: 21px 18px;
	background: #fff;
	border: 1px solid var(--bs-gray-200);
	border-radius: 12px;
}

.section-form .section-form_inner .section-form_title {
	margin-bottom: 18px;
	font-size: 1.3em;
	font-weight: 700;
	color: var(--primary-color);
}

.section-form .section-form_inner .section-form_wrapper {
	flex-direction: column;
	display: flex;
	gap: 24px;
}

.section-form .section-form_inner .section-form_wrapper .section-form_item {
	display: flex;
	align-items: center;
	gap: 15px;
}

.section-form .section-form_inner .section-form_wrapper .section-form_item .section-form_item__text {
	font-size: 1.075em;
	font-weight: 700;
	color: var(--bs-black);
	width: 100px;
	flex-shrink: 0;
}

.section-form .section-form_inner .section-form_wrapper .section-form_item .section-form_item__wrapper {
	width: 100%;
}

.section-form .section-form_inner .section-form_wrapper .section-form_item .section-form_item__wrapper > .form-control,
.section-form .section-form_inner .section-form_wrapper .section-form_item .section-form_item__wrapper > .form-select {
	width: 100%;
	border-radius: 4px;
	font-size: 1.075em;
	min-height: 40px;
	padding: 6px 12px;
}

.section-form .section-form_inner .section-form_wrapper .section-form_item .section-form_item__wrapper > .form-select {
	padding-right: 35px;
}

.section-form .section-form_inner .section-form_total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	padding-top: 24px;
	margin-top: 24px;
	border-top: 1px solid var(--bs-gray-200);
}

.section-form .section-form_inner .section-form_total__title {
	font-size: 1.3em;
	font-weight: 700;
	color: var(--bs-black);
}

.section-form .section-form_inner .section-form_total__value {
	font-size: 1.5em;
	font-weight: 700;
	color: var(--bs-danger);
}

.section-form.section-form_card .section-form_inner .section-form_wrapper {
	gap: 15px;
}

.section-form.section-form_card .section-form_inner .section-form_wrapper .section-form_item .section-form_item__text {
	width: 30%;
}

.section-table thead th,
.section-table tbody td {
	padding: 8px 10px;
	color: var(--bs-gray-900);
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
	font-size: 1.075em;
}

.section-description {
	font-size: 1.075em;
}

.section-description p,
.section-description ul,
.section-description ol {
	margin-bottom: 6px;
}

.card-cart {
	-webkit-box-shadow: 0 6px 14px -6px rgba(24, 39, 75, 0.05), 0px 10px 32px -4px rgba(24, 39, 75, 0.01);
	box-shadow: 0 6px 14px -6px rgba(24, 39, 75, 0.05), 0px 10px 32px -4px rgba(24, 39, 75, 0.01);
	border-radius: 12px;
}

.card-cart .card-header {
	padding: 10px;
}

.card-cart .card-header .card-title {
	font-weight: 700;
	font-size: 1.3em;
	color: var(--primary-color);
	line-height: 1.6;
	position: relative;
}

.card-cart .card-header .card-title span {
	height: 28px;
	width: 28px;
	border-radius: 4px;
	font-size: 16px;
	background-color: var(--primary-color);
	color: var(--bs-white);
	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;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}

.card-cart .card-body {
	padding: 10px;
}

.card-cart .card-body .item:not(:last-of-type) {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--bs-gray-200);
}

.card-cart .card-body .cart-name {
	font-size: 1.075em;
	font-weight: 700;
}

.card-cart .card-body .cart-name .cart-price {
	font-size: inherit;
	font-weight: inherit;
}

.card-cart .card-body .cart-percent {
	font-size: 90%;
}

.card-cart .card-body .cart-price {
	font-size: 1em;
	font-weight: 700;
	text-align: right;
}


.card-cart .card-body .cart-quantity {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: stretch;
	-ms-flex-pack: stretch;
	justify-content: stretch;
	position: relative;
}

.card-cart .card-body .cart-quantity .button-quantity {
	outline: none;
	cursor: pointer;
	font-size: 0.85em;
	line-height: 1;
	letter-spacing: 0;
	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;
	-webkit-transition: all 0.1s cubic-bezier(0.4, 0, 0.6, 1);
	-o-transition: all 0.1s cubic-bezier(0.4, 0, 0.6, 1);
	transition: all 0.1s cubic-bezier(0.4, 0, 0.6, 1);
	border: 1px solid rgba(0, 0, 0, 0.19);
	background: transparent;
	width: 15px;
	height: 15px;
	border-radius: 4px;
	background: var(--primary-color);
	color: var(--bs-white);
	position: absolute;
}

.card-cart .card-body .cart-quantity .button-quantity.button-quantity_up {
	top: 2.5px;
	right: 3px;
}

.card-cart .card-body .cart-quantity .button-quantity.button-quantity_down {
	bottom: 2.5px;
	right: 3px;
}

.card-cart .card-body .cart-quantity .button-quantity:disabled {
	background: #f5f6f6;
	cursor: not-allowed;
	color: var(--bs-gray-600);
}

.card-cart .card-body .cart-quantity .input-quantity {
	min-width: 55px;
	max-width: 55px;
	outline: none;
	font-size: 1em;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	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;
	-webkit-transition: all 0.1s cubic-bezier(0.4, 0, 0.6, 1);
	-o-transition: all 0.1s cubic-bezier(0.4, 0, 0.6, 1);
	transition: all 0.1s cubic-bezier(0.4, 0, 0.6, 1);
	border: 1px solid rgba(0, 0, 0, 0.19);
	background: transparent;
	color: rgba(0, 0, 0, 0.8);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	cursor: text;
	width: 100%;
	border-radius: 2px;
	height: 36px;
	padding-left: 10px;
}

.card-cart .card-body .cart-delete {
	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;
	background: var(--bs-danger);
	color: var(--bs-white);
	font-size: 0.85em;
	width: 18px;
	height: 18px;
	border-radius: 50%;
}

.card-cart .card-body .total {
	padding: 10px 0;
}

.card-cart .card-body .total .cart-total {
	font-size: 1.3em;
	color: var(--bs-gray-900);
	font-weight: 700;
}

.card-cart .card-body .total .card-total-value {
	text-align: right;
	font-weight: 700;
	color: var(--bs-danger);
	font-size: 1.3em;
}

.card-cart .card-body .section-form.section-form_card {
	margin-top: 15px;
}

.card-cart .card-body .section-form.section-form_card .section-form_inner .section-form_wrapper .section-form_item {
	align-items: flex-start;
	gap: 2px;
}

.card-cart .card-body .section-form.section-form_card .section-form_inner .section-form_wrapper {
	gap: 15px;
}

.card-cart .card-body .section-form.section-form_card .section-form_inner .section-form_wrapper .section-form_item .section-form_item__text {
	width: 100%;
	font-size: 1em;
}

.card-cart .card-body .section-form.section-form_card .section-form_inner .section-form_wrapper .section-form_item .section-form_item__wrapper > .form-control,
.card-cart .card-body .section-form.section-form_card .section-form_inner .section-form_wrapper .section-form_item .section-form_item__wrapper > .form-select {
	font-size: 1em;
}


.section-banner {
	min-height: 150px;
	background: center center/cover no-repeat;
	padding: 30px 0;
}

.section-banner:before {
	display: block;
	background: rgba(3, 28, 72, 0.9);
	pointer-events: none;
	inset: 0;
}

.section-banner.section-banner_light:before {
	display: block;
	background: rgba(3, 28, 72, 0.5);
	pointer-events: none;
	inset: 0;
}

.section-banner .banner-title {
	font-size: 2em;
	font-weight: 700;
	color: var(--bs-white);
	margin-bottom: 6px;
}

.section-banner .banner-description {
	font-size: 1.15em;
	letter-spacing: .3px;
	color: var(--bs-gray-200);
}

.section-banner .banner-description p:last-child,
.section-banner .banner-description ul:last-child {
	margin-bottom: 0;
}

.section-banner .banner-description ul {
	list-style: none;
	padding-left: 0;
}

.section-banner .banner-description ul li {
	padding: 5px 0 5px 25px;
	position: relative;
	display: inline-block;
}

.section-banner .banner-description ul li:before {
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 4px;
	background: var(--bs-white) url('../images/check-green.svg') center center/cover no-repeat;
	top: 8px;
	left: 0;
	content: "";
}

.section-banner .banner-button {
	margin-top: 25px;
}


.section-banner .banner-form {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.section-banner .banner-form .form-text {
	color: var(--bs-white);
	font-size: 2em;
	font-weight: 700;
}

.section-banner .banner-form .form-wrapper {
	max-width: 768px;
	margin: 30px 0 auto;
	width: 100%;
}

.section-banner .banner-form .form-wrapper .form-group {
	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;
	height: 54px;
	border-radius: 0;
	overflow: hidden;
	position: relative;
}

.section-banner .banner-form .form-wrapper .form-group .form-icon {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 10px;
	width: 30px;
	height: 30px;
	color: var(--bs-gray-600);
	font-size: 1.5em;
}

.section-banner .banner-form .form-wrapper .form-group .form-control {
	height: 100%;
	border-radius: 0;
	padding-left: 48px;
	padding-right: 18px;
	border: 0 !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	outline: none !important;
	font-size: 1.15em;
}

.section-banner .banner-form .form-wrapper .form-group .form-control::-webkit-input-placeholder {
	opacity: .7;
}

.section-banner .banner-form .form-wrapper .form-group .form-control::-moz-placeholder {
	opacity: .7;
}

.section-banner .banner-form .form-wrapper .form-group .form-control:-ms-input-placeholder {
	opacity: .7;
}

.section-banner .banner-form .form-wrapper .form-group .form-control::-ms-input-placeholder {
	opacity: .7;
}

.section-banner .banner-form .form-wrapper .form-group .form-control::placeholder {
	opacity: .7;
}

.section-banner .banner-form .form-wrapper .form-group .button-theme {
	border-radius: 0;
	height: 100%;
	min-width: 180px;
}

.section-heading_2 {
	text-align: center;
	max-width: 991px;
	margin: 0 auto 45px;
}

.section-heading_2 .heading-title {
	font-size: 2em;
	font-weight: 700;
	color: var(--bs-body-color);
	margin-bottom: 6px;
}

.section-page .section-heading_2 .heading-title {
	color: var(--bs-black);
}

.section-heading_2 .heading-sub {
	font-size: 1.75em;
	font-weight: 700;
	color: var(--bs-black);
	margin-bottom: 6px;
}

.section-heading_2 .heading-description {
	font-size: 1.15em;
	letter-spacing: .3px;
	color: var(--bs-gray-900);
	margin-bottom: 6px;
}

.section-heading_2 .heading-description p:last-child,
.section-heading_2 .heading-description ul:last-child {
	margin-bottom: 0;
}

.section-heading_2 .heading-description + .heading-title,
.section-heading_2 .heading-title + .heading-description {
	margin-bottom: 0;
}

.section-heading_2 .heading-description ul {
	list-style: none;
	padding-left: 0;
}

.section-heading_2 .heading-description ul li {
	position: relative;
	color: var(--bs-black);
	padding: 5px 0 5px 25px;
}

.section-heading_2 .heading-description ul li:before {
	position: absolute;
	width: 20px;
	height: 20px;
	background: url('../images/check-green.svg') center center/cover no-repeat;
	top: 5px;
	left: 0;
	content: "";
}

.section-heading_2 .heading-button {
	margin-top: 16px;
}

.card-table_price {
	height: 100%;
	border: 1px solid var(--primary-color);
	-webkit-box-shadow: none;
	box-shadow: none;
}


.card-table_price.highlight {
	border-width: 10px;
}

.card-table_price .card-header .card-value {
	background: var(--primary-hover);
	margin-top: 5px;
	color: var(--bs-white);
}

.card-table_price.highlight .card-header {
	padding-top: 15px !important;
}

.card-table_price_label {
	width: 200px;
	background: var(--secondary-color);
	position: absolute;
	top: 8px;
	left: -74px;
	text-align: center;
	line-height: 24px;
	letter-spacing: 0.01em;
	font-size: 14px;
	font-weight: 700;
	color: white;
	text-transform: uppercase;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}

.card-table_price .card-header {
	background: var(--primary-color) !important;
}

.card-table_price .card-header .card-title {
	color: var(--bs-white);
	font-weight: 600;
	font-size: 1.2em;
	padding: 5px;
}

.card-table_price .card-header .card-text {
	margin-top: 15px;
	font-size: 1.15em;
	color: var(--bs-gray-700);
	padding-left: 30px;
	padding-right: 30px;
}

.card-table_price .card-value {
	text-align: center;
	position: relative;
	z-index: 2;
}

.card-table_price .card-value .card-value_btn {
	width: 100%;
	border-radius: 4px;
	min-height: 40px;
	padding: 6px 12px;
	border: 1px solid var(--bs-gray-400);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	background-color: var(--bs-white);
	color: var(--bs-black);
	text-align: left;
}

.card-table_price .card-value .card-value_btn .limit {
	--line: 1;
	font-size: 1em;
}

.card-table_price .card-value .card-value_btn > span > span {
	font-weight: 700;
	font-size: 1.225em;
	color: var(--bs-danger);
}

.card-table_price .card-value .card-value_btn > i {
	transition: transform .3s ease-in-out;
	color: var(--bs-black);
	font-size: 1.3em;
}

.card-table_price .card-value .card-value_price span {
	font-size: 0.775em;
	font-weight: 500;
}

.card-table_price .card-value .card-value_btn[aria-expanded=true] > i {
	transform: rotate(180deg);
}

.card-table_price .card-value .dropdown-menu {
	font-size: 1em;
	width: 100%;
	border-color: var(--bs-gray-200);
	transform: unset !important;
	padding: 0 8px;
	max-height: 355px;
	overflow-y: auto;
}

.card-table_price .card-value .dropdown-menu::-webkit-scrollbar {
	width: 5px;
}

.card-table_price .card-value .dropdown-menu::-webkit-scrollbar-track {
	background: #eeeeee;
}

.card-table_price .card-value .dropdown-menu::-webkit-scrollbar-thumb {
	background: #d7d7d7;
}

.card-table_price .card-value .dropdown-menu::-webkit-scrollbar-thumb:hover {
	background: #b9b9b9;
}

.card-table_price .card-value .dropdown-menu[data-popper-placement=top-start] {
	border-radius: 4px 4px 0 0;
	bottom: calc(100%) !important;
	top: unset !important;
	border-bottom: 0 !important;
}

.card-table_price .card-value .dropdown-menu[data-popper-placement=top-start] + .sidebar-dropdown_btn {
	border-radius: 0 0 4px 4px;
}

.card-table_price .card-value .dropdown-menu[data-popper-placement=bottom-start] {
	border-radius: 0 0 4px 4px;
	top: calc(100% - 15px) !important;
	bottom: unset !important;
	border-top: 0 !important;
}

.card-table_price .card-value .dropdown-menu[data-popper-placement=bottom-start] + .sidebar-dropdown_btn {
	border-radius: 4px 4px 0 0;
}

.card-table_price .card-value .dropdown-menu .card-value_list__item {
	position: relative;
	margin-top: 12px;
}

.card-table_price .card-value .dropdown-menu .card-value_list__item:first-child {
	margin-top: 8px;
}

.card-table_price .card-value .dropdown-menu .card-value_list__item:last-child {
	padding-bottom: 12px;
}

.card-table_price .card-value .dropdown-menu .card-value_list__item .price-ratio_item > span {
	position: relative;
	font-size: 1em;
	color: var(--bs-gray-900);
	cursor: pointer;
	display: block;
	transition: var(--transition-default);
}

.card-table_price .card-value .dropdown-menu .card-value_list__item .price-ratio_item > span:before {
	display: inline-block;
	content: "";
	width: 18px;
	height: 18px;
	background-color: var(--bs-white);
	border: 1px solid var(--bs-gray-300);
	margin-right: 8px;
	position: relative;
	top: 5px;
	border-radius: 50%;
	overflow: hidden;
	background-image: url(../images/check.svg);
	background-size: 0;
	background-position: center;
	background-repeat: no-repeat;
	transition: background-size cubic-bezier(.5, 0, .5, 2) .3s, background-color .3s;
}

.card-table_price .card-value .dropdown-menu .card-value_list__item .price-ratio_item input[type=radio] + span:before {
	border-radius: 50%;
}

.card-table_price .card-value .dropdown-menu .card-value_list__item .price-ratio_item input {
	position: absolute;
	opacity: 0;
	visibility: hidden;
}

.card-table_price .card-value .dropdown-menu .card-value_list__item .price-ratio_item > span:hover {
	color: var(--bs-dark);
}

.card-table_price .card-value .dropdown-menu .card-value_list__item .price-ratio_item.active span,
.card-table_price .card-value .dropdown-menu .card-value_list__item .price-ratio_item input:checked + span {
	color: var(--primary-color);
	font-weight: 500;
}

.card-table_price .card-value .dropdown-menu .card-value_list__item .price-ratio_item.active span:before,
.card-table_price .card-value .dropdown-menu .card-value_list__item .price-ratio_item input:checked + span:before {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	background-size: 100%;
}


.card-table_price .card-body {
	padding-top: 9px;
	padding-bottom: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: relative;
	padding-left: 10px;
	padding-right: 10px;
}

.card-table_price .card-body:before {
	position: absolute;
	content: "";
	background: url('../images/bg-table-price.svg') center center/cover no-repeat;
	bottom: 0;
	right: 0;
	opacity: .4;
	width: 211px;
	height: 173px;
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.card-table_price .card-body .card-list {
	margin-bottom: 30px;
}


.card-table_price .card-body .card-list .card-list_item {
	position: relative;
	font-size: 1.075em;
	color: var(--bs-black);
	padding: 8px 0 8px 25px;
}

.card-table_price .card-body .card-list .card-list_item:before {
	position: absolute;
	width: 20px;
	height: 20px;
	background: url('../images/check-green.svg') center center/cover no-repeat;
	top: 9px;
	left: 0;
	content: "";
}

.card-table_price .card-body .card-list ul:last-child {
	margin-bottom: 0;
}

.card-table_price .card-body .card-list ul li {
	position: relative;
	font-size: 1.075em;
	color: var(--bs-black);
	padding: 8px 0 8px 25px;
	list-style: none;
}

.card-table_price .card-body .card-list ul li:before {
	position: absolute;
	width: 20px;
	height: 20px;
	background: url(../images/check-green.svg) center center/cover no-repeat;
	top: 9px;
	left: 0;
	content: "";
}

.card-table_price .card-body .card-list ul {
	padding-left: 0;
}

.card-table_price .card-body .card-button {
	margin-top: auto;
	text-align: center;
}

.card-table_price .card-body .card-button .button-theme {
	padding: 5px 12px;
	font-size: 1em;
	text-transform: uppercase;
	width: 100%;
}

.card-advantage {
	border-radius: 0;
	border: 1px solid var(--bs-gray-200) !important;
}

.card-advantage .card-body {
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 40px 30px 40px;
	border-radius: 0;
}

.card-advantage:before {
	width: 90%;
	left: 5%;
	bottom: -13px;
	height: 40px;
	background: rgba(255, 255, 255, .8);
	border-radius: 0;
	position: absolute;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
	z-index: -1;
	border: 1px solid var(--bs-gray-200) !important;
	content: none;
}

.card-advantage .card-body .card-icon {
	width: 100px;
	height: 100px;
	font-size: 3.5em;
	color: var(--primary-color);
	border-radius: 50%;
	background: rgba(var(--primary-rgb), .1);
	border: 6px solid #f4f4f4f0;
}

.card-advantage .card-body .card-image {
	width: 120px;
	height: 120px;
	font-size: 3.5em;
	color: var(--primary-color);
	border-radius: 50%;
	background: rgba(var(--primary-rgb), .1);
	border: 6px solid #f4f4f4f0;
	padding: 20px;
}

.card-advantage .card-body .card-title {
	font-size: 1.45em;
}

.card-advantage .card-body .card-text {
	font-size: 1.075em;
}

@media screen and (max-width: 991px) {
	.section-banner .banner-title {
		font-size: 1.5em;
	}

	.section-banner .banner-description {
		font-size: 1.075em;
	}

	.section-gap_large {
		padding: 35px 0;
	}

	.section-heading_2 .heading-title {
		font-size: 1.5em;
	}

	.section-heading_2 .heading-description {
		font-size: 1.075em;
	}

	.card-advantage .card-body .card-title {
		font-size: 1.3em;
	}

	.card-advantage .card-body .card-text {
		font-size: 1em;
	}
}


.topup-sidebar .sidebar-item {
	padding: 21px 18px;
	background: #fff;
	-webkit-box-shadow: 0 6px 14px -6px rgba(24, 39, 75, 0.05), 0px 10px 32px -4px rgba(24, 39, 75, 0.01);
	box-shadow: 0 6px 14px -6px rgba(24, 39, 75, 0.05), 0px 10px 32px -4px rgba(24, 39, 75, 0.01);
	border-radius: 12px;
}

.topup-sidebar .sidebar-item + .sidebar-item {
	margin-top: 1rem;
}

.topup-sidebar .sidebar-form {
	flex-direction: column;
	display: flex;
	gap: 24px;
}

.topup-sidebar .sidebar-form .sidebar-form_item {
	display: flex;
	align-items: center;
	gap: 15px;
}

.topup-sidebar .sidebar-form .sidebar-form_item .sidebar-form_item__text {
	font-size: 1em;
	font-weight: 700;
	color: var(--bs-black);
	width: 100px;
	flex-shrink: 0;
}

.topup-sidebar .sidebar-form .sidebar-form_item .sidebar-form_item__wrapper {
	width: 100%;
}

.topup-sidebar .sidebar-form .sidebar-form_item .sidebar-form_item__wrapper > .form-control,
.topup-sidebar .sidebar-form .sidebar-form_item .sidebar-form_item__wrapper > .form-select {
	width: 100%;
	border-radius: 4px;
	font-size: 1em;
	min-height: 40px;
	padding: 6px 12px;
}

.topup-sidebar .sidebar-form .sidebar-form_item .sidebar-form_item__wrapper .input-group {
	background: #f4f4f4;
	border-radius: 50px;
	width: 130px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-left: auto;
	font-size: 1em;
	min-height: 40px;
	position: relative;
	overflow: hidden;
	padding: 0 5px;
	gap: 5px;
	flex-wrap: nowrap;
}

.topup-sidebar .sidebar-form .sidebar-form_item .sidebar-form_item__wrapper .input-group .button-quantity {
	width: 40px;
	background: transparent;
	border: 0;
	box-shadow: none;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px 12px;
	flex-shrink: 0;
}

.topup-sidebar .sidebar-form .sidebar-form_item .sidebar-form_item__wrapper .input-group .form-control {
	width: calc(100% - 90px);
	text-align: center;
	background: transparent;
	border: 0;
	box-shadow: none;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px 0;
	flex-shrink: 0;
	margin: 0;
}

.topup-sidebar .sidebar-total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.topup-sidebar .sidebar-total .sidebar-total_title {
	font-size: 1.3em;
	font-weight: 700;
	color: var(--bs-black);
}

.topup-sidebar .sidebar-total .sidebar-total_value {
	font-size: 1.5em;
	font-weight: 700;
	color: var(--bs-danger);
}

.learning-page .topup-choose .topup-choose_content {
	border: 1px solid var(--bs-gray-200);
	box-shadow: none;
}

.section-sidebar .featured-card {
	border: 0;
	border-radius: 0;
}

.section-sidebar .featured-card .featured-list .featured-item {
	width: 100%;
}

.learning-page .section-sidebar .sidebar-item {
	border: 1px solid var(--bs-gray-200);
	box-shadow: none;
	overflow: hidden;
}

.learning-page .section-sidebar .sidebar-item .sidebar-title {
	font-size: 1.3em;
}

/***** Custom Tabs 01 *****/
.tabs-m1 {
	position: relative;
}

.tabs-m1 .nav-tabs {
	border-bottom: 0;
	padding-bottom: 5px;
	width: 100%;
	position: relative;
	justify-content: center;
}

.tabs-m1 .nav-tabs .nav-item {
	position: relative;
	margin-left: 6px;
}

.tabs-m1 .nav-tabs .nav-item:first-child {
	margin-left: 0;
}

.tabs-m1 .nav-tabs .nav-item .nav-link {
	margin-bottom: 0;
	text-align: center;
	width: 100%;
	position: relative;
	z-index: 1;
	font-size: 14px;
	color: var(--gray-900);
	-webkit-transition: .2s all ease;
	-o-transition: .2s all ease;
	transition: .2s all ease;
	white-space: nowrap;
	border: 0;
	border-radius: 3px;
	padding: 5px 20px;
	background: #e7e6e6;
	display: block;
	overflow: hidden;
}

.tabs-m1 .nav-tabs .nav-item .nav-link.active {
	color: #fff;
	border-color: var(--primary-color);
	background: var(--primary-color);
}

@media screen and (max-width: 1025px) {
	.tabs-m1 .nav-tabs .nav-item .nav-link {
		display: inline-flex;
		width: auto;
		padding-left: 10px;
		padding-right: 10px;
	}

	.tabs-m1 .nav-tabs .nav-item {
		margin-right: 8px;
		margin-bottom: 6px;
		margin-left: 0 !important;
	}
}

@media screen and (max-width: 991px) {
	.tabs-m1 .nav-tabs {
		justify-content: flex-start;
	}
}

/***** End Custom Tabs 01 *****/

/***** Custom Tabs 02 *****/
.tabs-m2 {
	position: relative;
}

.tabs-m2 .nav-tabs {
	border-bottom: 0;
	width: 100%;
	position: relative;
	justify-content: flex-start;
}

.tabs-m2 .nav-tabs .nav-item + .nav-item {
	margin-left: 4px;
}

.tabs-m2 .nav-tabs .nav-item .nav-link {
	margin-bottom: 0;
	text-align: center;
	position: relative;
	z-index: 1;
	font-size: 14px;
	color: var(--gray-900);
	-webkit-transition: .2s all ease;
	-o-transition: .2s all ease;
	transition: .2s all ease;
	white-space: nowrap;
	border: 1px solid var(--gray-200);
	border-bottom: 0;
	padding: 5px 20px;
	background: transparent;
	display: block;
	overflow: hidden;
	border-radius: 3px 3px 0 0;
}

.tabs-m2 .nav-tabs .nav-item .nav-link::after {
	content: "";
	background: var(--primary-color);
	height: 3px;
	position: absolute;
	width: 100%;
	left: 0;
	bottom: -1px;
	transition: all 250ms ease 0s;
	transform: scale(0);
}

.tabs-m2 .nav-tabs .nav-item:hover .nav-link::after {
	transform: scale(1);
}

.tabs-m2 .nav-tabs .nav-item:hover .nav-link {
	background-color: transparent;
}

.tabs-m2 .nav-tabs .nav-item .nav-link.active {
	background-color: var(--primary-color);
	color: var(--white);
	border-color: transparent;
}

.tabs-m2 .tab-content {
	background-color: var(--white);
	border-radius: 0 3px 3px 3px;
}

@media screen and (max-width: 991px) {
	.tabs-m2 .nav-tabs {
		justify-content: flex-start;
	}

	.tabs-m2 .nav-tabs .nav-item .nav-link {
		display: inline-flex;
		width: auto;
		padding-left: 10px;
		padding-right: 10px;
	}

	.tabs-m2 .nav-tabs .nav-item {
		margin-right: 8px;
		margin-bottom: 6px;
		margin-left: 0 !important;
	}
}

/***** End Custom Tabs 02 *****/
/***** Custom Form *****/
.form-m1 .input-group {
	margin-bottom: 0;
}

.form-m1 .form-control {
	border-radius: 3px;
	color: var(--gray-900);
}

.form-m1 .form-control:not(textarea) {
	height: 33px;
	line-height: 33px;
	padding-top: 0;
	padding-bottom: 0;
}

.form-m1 .select2-container--default .select2-search--dropdown .select2-search__field {
	display: block;
	width: 100%;
	padding: 0 0.75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	border-radius: 3px;
	color: var(--gray-900);
	height: 33px;
}

.form-m1 .select2-container.select2-container--open .select2-selection--single {
	box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%) !important;
	-webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%) !important;
	outline: none !important;
	border-color: #66afe9 !important;
}

.form-m1 .select2-container .select2-selection--single {
	height: 33px;
	border-radius: 3px;
	border: 1px solid #ced4da;
}

.form-m1 .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 1.5;
	padding: 0.375rem 0.75rem;
	color: var(--gray-900);
}

.form-m1 .form-button ~ .select2-container--default .select2-selection--single .select2-selection__rendered {
	padding-left: 30px;
}

.form-m1 .select2-container--default .select2-selection--single .select2-selection__rendered .select2-selection__placeholder {
	color: var(--gray-400);
}

.form-m1 .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 33px;
}

.form-m1 .select2-container {
	left: 0 !important;
	bottom: 0px;
	top: unset !important;
}

.form-m1 .select2-container .select2-dropdown {
	min-width: 300px !important;
	border: 1px solid #dee2ee;
}

.form-m1 .select2-container .select2-dropdown .select2-results {
	margin-top: 3px;
	border-top: 1px dotted #dee2ee;
}

.form-m1 .select2-container .select2-dropdown .select2-results > .select2-results__options {
	max-height: 450px;
	overflow-y: auto;
}

.form-m1 .select2-container .select2-dropdown .select2-results > .select2-results__options::-webkit-scrollbar {
	width: 4px;
}

.form-m1 .select2-container .select2-dropdown .select2-results > .select2-results__options::-webkit-scrollbar-track {
	border-left: .5px solid #dedede;
	border-top: .5px solid #dedede;
	border-bottom: .5px solid #dedede
}

.form-m1 .select2-container .select2-dropdown .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
	background: #dedede;
	border-radius: 4px;
}

.form-m1 .select2-container .select2-dropdown .select2-results > .select2-results__options::-webkit-scrollbar-thumb:hover {
	background: #bfbfbf
}

.form-m1 .select2-container .select2-dropdown .select2-results ul li {
	padding: 10px;
}

.form-m1 .select2-container .select2-dropdown .select2-results ul li .select2-results__option[aria-selected=true],
.form-m1 .select2-container .select2-dropdown .select2-results ul li.select2-results__option--highlighted[aria-selected] {
	background-color: #f1f2f6;
}

.form-m1 .select2-container .select2-dropdown .select2-results ul li .sel-icon {
	width: 40px;
	flex-shrink: 0;
}

.form-m1 .select2-container .select2-dropdown .select2-results ul li .sel-content {
	width: calc(100% - 100px);
	flex-shrink: 0;
}

.form-m1 .select2-container .select2-dropdown .select2-results ul li .sel-code {
	width: 60px;
	flex-shrink: 0;
}

.form-m1 .select2-container .select2-dropdown .select2-results ul li .sel-icon,
.form-m1 .select2-container .select2-dropdown .select2-results ul li .sel-subtitle,
.form-m1 .select2-container .select2-dropdown .select2-results ul li .sel-code {
	color: var(--gray-700);
}

.form-m1 .select2-container .select2-dropdown .select2-results ul li .sel-subtitle,
.form-m1 .select2-container .select2-dropdown .select2-results ul li .sel-code {
	font-size: 12px;
}

.form-m1 .select2-container .select2-dropdown .select2-results ul li .sel-title {
	font-weight: 500;
	color: var(--gray-700);
	font-size: 14px;
}

.form-m1 .select2-container .select2-dropdown .select2-results ul li:hover .sel-title {
	color: var(--gray-700);
}

.form-m1 .input-group-text {
	height: 33px;
	padding-top: 0;
	padding-bottom: 0;
	color: var(--gray-900);
}

.form-m1 .form-control::placeholder {
	color: var(--gray-400);
}

.form-m1 .form-icon .form-button {
	border: 0;
	padding: 0;
	height: 24px;
	width: 24px;
	position: absolute;
	background-color: transparent;
	color: var(--gray-500);
	font-size: 16px;
	cursor: pointer;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	transition: var(--transition-default);
	display: flex;
	align-items: center;
	justify-content: center;
}

.form-m1 .form-icon.form-icon_left .form-button {
	left: 2px;
}

.form-m1 .form-icon.form-icon_left .form-control {
	padding-left: 30px;
}

.form-m1 .form-icon.form-icon_right .form-button {
	right: 2px;
}

.form-m1 .form-icon.form-icon_right .form-control {
	padding-right: 30px;
}

.form-m1 .form-icon .form-button:hover,
.form-m1 .form-icon .form-button:active {
	color: var(--gray-700);
}

.form-m1 .row-item + .row-item {
	margin-top: 3px;
}

@media screen and (max-width: 767px) {
	.form-m1 .row-mb_nospacing {
		margin: 0 0 15px;
	}

	.form-m1 .row-mb_nospacing > [class*=col] {
		padding: 0;
	}

	.form-m1 .row-item + .row-item {
		margin-top: 15px;
	}
}

.button-social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	position: relative;
	text-align: center;
	height: 33px;
	background: #F3F8FE;
	border-radius: 3px;
	border: 1px solid var(--gray-200);
	font-size: 14px;
	font-weight: 700;
	color: var(--gray-700);
	padding-left: 10px;
}

.button-social img,
.button-social i {
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	height: 20px;
	color: var(--primary-color);
	width: 20px;
	font-size: 20px;
}

.button-social i {
	top: calc(50% + 1px);
}

/***** End Custom Form *****/
.row5 > [class*=col] {
	padding: 5px;
}

.form-m1 .form-control {
	border-radius: 3px;
	color: var(--gray-900);
}

.row5 {
	margin-top: -5px;
	margin-left: -5px;
	margin-right: -5px;
}

p {
	margin-bottom: 5px;
}

.website-card {
	border-radius: 4px;
	-webkit-box-shadow: 0 0 0.75em 0 rgba(0, 0, 0, 0.15);
	box-shadow: 0 0 0.75em 0 rgba(0, 0, 0, 0.15);
	padding: 10px;
	transition: var(--transition-default);
}

.website-card .card-header {
	overflow: hidden;
	border-radius: 4px;
	border: solid 1px #e1e1e1;
	background-color: #ccc;
	max-height: 320px;
	position: relative;
}

.website-card .card-header > img {
	-webkit-transition: all 5s ease-in-out;
	-moz-transition: all 5s ease-in-out;
	-o-transition: all 5s ease-in-out;
	-ms-transition: all 5s ease-in-out;
	transition: all 5s ease-in-out;
}

.website-card .card-body {
	display: flex;
	flex-direction: column;
}

.website-card .card-body .card-title {
	font-size: 1.075em;
	color: var(--bs-dark);
	line-height: 1.3;
	font-weight: 600;
	transition: var(--transition-default);
	margin-bottom: 6px;
}

.website-card .card-body .card-price {
	margin-bottom: 6px;
}

.website-card .card-body .card-price .price-current {
	font-weight: 600;
	color: var(--bs-danger);
	font-size: 1.15em;
}

.website-card .card-body .card-price .price-cost {
	text-decoration: line-through;
	font-weight: 500;
	color: #9ba1a8;
}

.website-card .card-body .card-tag {
	margin-bottom: 10px;
}

.website-card .card-body .card-tag > a {
	border-radius: 4px;
	border: 1px solid var(--bs-gray-200);
	margin: 0;
	font-size: 0.925em;
	padding: 4px 8px;
	font-weight: 400;
	color: var(--bs-black);
}

.website-card .card-body .card-tag > a:hover {
	border: 1px solid var(--primary-color);
	background-color: #f3fcf7;
	color: var(--primary-color);
}

.website-card .card-body .card-buttons {
	margin-top: auto;
}

.website-card:hover {
	-webkit-box-shadow: 0 0 0.75em 0 rgba(0, 0, 0, 0.35);
	box-shadow: 0 0 0.75em 0 rgba(0, 0, 0, 0.35);
}

.website-card:hover .card-header > img {
	transform: translate(0, calc(-100% + 320px));
	-webkit-transform: translate(0, calc(-100% + 320px));
}

.website-card:hover .card-body .card-title {
	color: var(--primary-color);
}

.website-page .website-images {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.website-page .website-images .website-image {
	border-radius: 4px;
}

.website-page .website-images .website-image .website-image_inner {
	overflow: hidden;
	border-radius: 4px;
	border: solid 1px #e1e1e1;
	background-color: #ccc;
	max-height: 400px;
	position: relative;
	-webkit-box-shadow: 0 0 0.75em 0 rgba(0, 0, 0, 0.15);
	box-shadow: 0 0 0.75em 0 rgba(0, 0, 0, 0.15);
}

.website-page .website-images .website-image .website-image_inner > img {
	-webkit-transition: all 5s ease-in-out;
	-moz-transition: all 5s ease-in-out;
	-o-transition: all 5s ease-in-out;
	-ms-transition: all 5s ease-in-out;
	transition: all 5s ease-in-out;
	width: 100%;
}

.website-page .website-images .website-image:hover .website-image_inner > img {
	transform: translate(0, calc(-100% + 400px));
	-webkit-transform: translate(0, calc(-100% + 400px));
}

.website-page .website-images .website-thumb .website-image {
	opacity: .7;
	transition: var(--transition-default);
	cursor: pointer;
	border: 1px solid var(--bs-gray-400);
}

.website-page .website-images .website-thumb .swiper-slide.swiper-slide-thumb-active .website-image {
	opacity: 1;
	border: 1px solid var(--primary-color);
}

.website-page .website-content .website-title {
	font-size: 1.7em;
	color: var(--bs-black);
	font-weight: 700;
	line-height: 1.3;
}

.website-page .website-content .website-meta {
	margin-top: 12px;
}

.website-page .website-content .website-meta .website-meta_item {
	align-items: flex-start;
}

.website-page .website-content .website-meta .website-meta_item .website-meta_item__icon {
	font-size: 1.3em;
	position: relative;
	width: 22px;
}

.website-page .website-content .website-meta .website-meta_item .website-meta_item__text {
	font-size: 1.075em;
}

.website-page .website-content .website-meta .website-meta_item .website-meta_item__text > a {
	color: var(--primary-color);
	font-weight: 500;
}

.website-page .website-content .website-meta .website-meta_item .website-meta_item__text > a:hover {
	text-decoration: underline;
}

.website-page .website-content .website-price {
	margin-top: 12px;
}

.website-page .website-content .website-price .website-price_current {
	font-weight: 600;
	color: var(--bs-black);
	font-size: 1.3em;
}

.website-page .website-content .website-price .website-price_cost {
	text-decoration: line-through;
	font-weight: 500;
	color: #9ba1a8;
	font-size: 1.3em;
}

.website-page .website-content .website-price .website-price_percent {
	font-weight: 500;
	color: var(--bs-white);
	border-radius: 5px;
	background: var(--bs-danger);
	font-size: .925em;
	padding: 3px 6px;
}

.website-page .website-content .website-feature {
	padding: 12px;
	border-radius: 8px;
	border: 1px solid var(--primary-color);
	background-color: #f3fcf7;
	margin-top: 15px;
}

.website-page .website-content .website-feature .website-feature_title {
	font-weight: 700;
	font-size: 1.15em;
	margin-bottom: 4px;
}

.website-page .website-content .website-feature .website-feature_list ul,
.website-page .website-content .website-feature .website-feature_list ol {
	margin-bottom: 0;
	padding-left: 0;
	font-size: 1.075em;
	list-style-type: none;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.website-page .website-content .website-feature .website-feature_list ul li:before,
.website-page .website-content .website-feature .website-feature_list ol li:before {
	display: inline-block;
	content: "";
	border-radius: 50%;
	background-color: var(--primary-color);
	width: 4px;
	height: 4px;
	margin-right: 4px;
	position: relative;
	top: -3px;
}

.theme-collapse {
	margin-bottom: 15px;
}

.theme-collapse .collapse-item .collapse-item_header {
	font-size: 1.075em;
	font-weight: 700;
	color: #232323;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.theme-collapse .collapse-item .collapse-item_header i {
	transition: 0.3s all ease;
	font-size: 1.1em;
}

.theme-collapse .collapse-item .collapse-item_header[aria-expanded="true"] {
	color: var(--primary-color);
}

.theme-collapse .collapse-item .collapse-item_header[aria-expanded="true"] i {
	transform: rotate(180deg);
}

.theme-collapse .collapse-item .collapse-item_body {
	padding-top: 8px;
}

.theme-collapse .collapse-item .collapse-item_body p:last-child {
	margin-bottom: 0;
}

.theme-collapse .collapse-item + .collapse-item {
	padding-top: 8px;
	margin-top: 8px;
	border-top: 1px solid #e9e9e9;
}

.website-sidebar .sidebar-item {
	border: 1px solid var(--bs-gray-200);
}

.section-sidebar.website-sidebar .sidebar-item .sidebar-ratio {
	position: relative;
	margin-top: 6px;
}

.section-sidebar.website-sidebar .sidebar-item .sidebar-ratio:first-child {
	margin-top: 3px;
}

.section-sidebar.website-sidebar .sidebar-item .sidebar-ratio:last-child {
	padding-bottom: 12px;
}

.cloud-card {
	text-align: center;
	height: 100%;
	position: relative;
	-webkit-transform: translate(0);
	-ms-transform: translate(0);
	transform: translate(0);
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
	border-radius: 5px;
}

.cloud-card:hover {
	-webkit-transform: translateY(-3px);
	-ms-transform: translateY(-3px);
	transform: translateY(-3px);
}

.cloud-card:hover .card-body .card-icon img {
	opacity: .8;
}

.cloud-card:hover .card-body .card-title {
	color: var(--primary-color);
}

.cloud-card .card-body {
	padding: 30px 40px 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 10px;
}

.cloud-card .card-body .card-icon img {
	width: 80px;
	height: 80px;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
}

.cloud-card .card-body .card-title {
	font-weight: 700;
	color: var(--bs-gray-900);
	font-size: 1.4em;
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
}

.cloud-card .card-body .card-text {
	color: var(--bs-gray-600);
	margin-bottom: 15px;
}

.cloud-card .card-body .card-price {
	margin-top: auto;
}

.cloud-card .card-body .card-price .card-price_text {
	font-size: 1.05em;
	margin-bottom: 5px;
}

.cloud-card .card-body .card-price .card-price_current {
	font-size: 1.05em;
}

.cloud-card .card-body .card-price .card-price_current span {
	color: #ff2727;
	font-size: 1.2em;
	font-weight: 600;
}

.cloud-card .card-body .card-link {
	position: absolute;
	bottom: 20px;
	right: 20px;
	color: var(--bs-gray-800);
	padding-bottom: 1px;
	border-bottom: 1px solid var(--bs-gray-800);
	white-space: nowrap;
}

.cloud-card_1 {
	background: #CEF0DE;
}

.card-table_domain {
	border: 1px solid rgba(var(--primary-rgb), .1);
}

.card-table_domain .card-column {
	padding: 10px 18px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.card-table_domain .card-column.card-column_one {
	width: 30%;
}

.card-table_domain .card-column.card-column_two {
	width: 35%;
	text-align: right;
}

.card-table_domain .card-column.card-column_three {
	width: 35%;
	text-align: right;
}

.card-table_domain .card-header {
	background: rgba(var(--primary-rgb), .05);
	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;
}

.card-table_domain .card-header .card-column {
	padding: 10px;
}

.card-table_domain .card-title {
	margin-bottom: 0;
	font-size: 1.225em;
	font-weight: 700;
	color: var(--primary-color);
}

.card-table_domain .card-body .card-item {
	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;
}

.card-table_domain .card-body .card-item:nth-child(even) {
	background: rgba(var(--primary-rgb), .03);
}

.card-table_domain .card-body .card-item .card-text {
	font-size: 1.15em;
	font-weight: 700;
}

.card-table_domain .card-body .card-item .card-value {
	font-size: 1em;
	color: var(--bs-gray-600);
}

.card-table_domain .card-body .card-item .card-value > span {
	font-size: 1.225em;
	color: var(--secondary-color);
	font-weight: 700;
	margin-right: 4px;
}

@media screen and (max-width: 768px) {
	.cloud-card .card-body {
		padding: 15px 15px 60px;
	}

	.cloud-card .card-body .card-title {
		font-size: 1.2em;
	}

	.cloud-card .card-body .card-price .card-price_text {
		font-size: 1em;
	}

	.cloud-card .card-body .card-price .card-price_current {
		font-size: 1em;
	}

	.cloud-card .card-body .card-price .card-price_current span {
		font-size: 1.1em;
	}

	.cloud-card .card-body .card-link {
		right: unset;
		left: 50%;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
	}
}

.card-box {
	display: flex;
	align-items: center;
	border: 1px solid var(--bs-gray-400);
	background: #f6f6f6;
	border-radius: 8px;
	padding: 12px 16px;
	position: relative;
	overflow: hidden;
	transition: var(--transition-default);
}

.card-box .card-box_image {
	width: 50px;
}

.card-box .card-box_content {
	margin-left: 15px;
}

.card-box .card-box_title {
	font-size: 1.15em;
	color: var(--bs-black);
	font-weight: 700;
	line-height: 1.4;
}

.card-box .card-box_text {
	color: #6c757d;
	font-size: 0.925em;
}

.card-box:hover {
	background: rgba(8, 103, 173, 0.1);
	color: var(--primary-color);
	border-color: var(--primary-color);
	transform: translateY(-2px);
}