:root {
	--first-font: 'Poppins', sans-serif;
	--second-font: 'Inter', sans-serif;
	--theme-color: #6F5FA7;
	--second-color: #FFD593;
	--grey-color: #8A94A6;
	--border-color: #8A94A6;
	--gradient-color: linear-gradient(93.2deg, rgba(111, 95, 167, 0.5) 5.03%, rgba(111, 95, 167, 0.5) 97.65%);
	--black: #252429;
	--white: #ffffff;
	--on-theme-color: #ffffff;
	--on-second-color: #252429;
	--h1: normal 700 51px/1.2 var(--second-font);
	--h2: normal 700 42px/1.2 var(--second-font);
	--h3: normal 700 32px/1.2 var(--second-font);
	--h4: normal 700 22px/1.2 var(--second-font);
	--h5: normal 500 20px/1.2 var(--second-font);
	--h6: normal 500 18px/1.2 var(--second-font);
	--common-text: normal 400 14px/1.4 var(--first-font);
}

*,
:after,
:before {
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
	text-decoration: inherit;
	vertical-align: inherit;
}

html {
	outline: none;
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}

svg,
img {
	max-width: 100%;
	display: block;
}

a,
.btn,
button {
	text-decoration: none;
	outline: none;
	color: inherit;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
	transition: all ease-in-out 0.3s;
	display: inline-block;
	cursor: pointer;
}

a,
a:hover,
a:focus,
a:active,
button,
button:hover,
button:focus,
input,
input:hover,
input:focus,
select,
select:hover,
select:focus,
textarea,
textarea:hover,
textarea:focus,
.btn,
.btn:hover,
.btn:focus,
.btn:active:focus,
.btn:active.focus,
.btn.active:focus,
.btn.active.focus {
	text-decoration: none;
	-webkit-text-decoration-skip: objects;
	outline: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-ms-box-shadow: none;
	-o-box-shadow: none;
	box-shadow: none;
	font-family: var(--first-font);
}

.form-control:focus,
[type="text"]:focus,
[type="email"]:focus,
[type="checkbox"]:focus,
[type="password"]:focus,
[type="file"]:focus,
[type="radio"]:focus,
[type="submit"]:focus,
[type="date"]:focus,
[type="time"]:focus,
[type="tel"]:focus,
[type="search"]:focus,
[type="button"]:focus,
[type="number"]:focus,
textarea:focus,
select:focus {
	outline: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-ms-box-shadow: none;
	-o-box-shadow: none;
	box-shadow: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	--webkit-appearance: none;
	margin: 0;
}

input[type=number] {
	-moz-appearance: textfield;
}

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

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

::placeholder {
	color: var(--placeholder-color);
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	font-size: 100%;
	list-style: none;
	vertical-align: baseline;
}

body {
	font: var(--common-text);
	margin: 0;
	padding: 0 !important;
	height: 100%;
	width: 100%;
	overflow-x: hidden;
	background: var(--white);
	color: var(--black);
}

p,
li,
ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
	font: var(--common-text);
}

h1,
.h1 {
	font: var(--h1);
}

h2,
.h2 {
	font: var(--h2);
}

h3,
.h3 {
	font: var(--h3);
}

h4,
.h4 {
	font: var(--h4);
}

h5,
.h5 {
	font: var(--h5);
}

h6,
.h6 {
	font: var(--h6);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
}

h1 b,
h2 b,
h3 b,
h4 b,
h5 b,
h6 b,
.product-title b {
	font-weight: 400;
}

.uppercase {
	text-transform: uppercase;
}

.text-center {
	text-align: center !important;
}

.text-left {
	text-align: left !important;
}

.text-right {
	text-align: right !important;
}

b {
	font-weight: bold;
	display: inline-block;
}

p:not(:last-of-type) {
	margin-bottom: 15px;
}

.container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 15px;
}

.row {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}

.no-gutters {
	margin: 0 !important;
}

.row [class*="col-"] {
	padding: 0 15px;
}

.no-gutters [class*="col-"] {
	padding: 0;
}

.w-100 {
	width: 100%;
}

.h-100 {
	height: 100%;
}

.d-flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	box-sizing: border-box;
}

.align-items-start {
	-ms-flex-align: start;
	align-items: flex-start;
}

.align-items-end {
	-ms-flex-align: end;
	align-items: flex-end;
}

.align-items-center {
	-ms-flex-align: center;
	align-items: center;
}

.justify-content-around {
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

.justify-content-between {
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.justify-content-start {
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.justify-content-center {
	-ms-flex-pack: center;
	justify-content: center;
}

.justify-content-end {
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.direction-column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.no-wrap {
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.desk-only {
	display: none !important;
}

.mobile-only {
	display: block !important;
}

.col-auto {
	flex: 0 0 auto;
	width: auto;
}

.col-1 {
	flex: 0 0 auto;
	width: 8.33333333%;
}

.col-2 {
	flex: 0 0 auto;
	width: 16.66666667%;
}

.col-3 {
	flex: 0 0 auto;
	width: 25%;
}

.col-4 {
	flex: 0 0 auto;
	width: 33.33333333%;
}

.col-5 {
	flex: 0 0 auto;
	width: 41.66666667%;
}

.col-6 {
	flex: 0 0 auto;
	width: 50%;
}

.col-7 {
	flex: 0 0 auto;
	width: 58.33333333%;
}

.col-8 {
	flex: 0 0 auto;
	width: 66.66666667%;
}

.col-9 {
	flex: 0 0 auto;
	width: 75%;
}

.col-10 {
	flex: 0 0 auto;
	width: 83.33333333%;
}

.col-11 {
	flex: 0 0 auto;
	width: 91.66666667%;
}

.col-12 {
	flex: 0 0 auto;
	width: 100%;
}

.offset-1 {
	margin-left: 8.33333333%;
}

.offset-2 {
	margin-left: 16.66666667%;
}

.offset-3 {
	margin-left: 25%;
}

.offset-4 {
	margin-left: 33.33333333%;
}

.offset-5 {
	margin-left: 41.66666667%;
}

.offset-6 {
	margin-left: 50%;
}

.offset-7 {
	margin-left: 58.33333333%;
}

.offset-8 {
	margin-left: 66.66666667%;
}

.offset-9 {
	margin-left: 75%;
}

.offset-10 {
	margin-left: 83.33333333%;
}

.offset-11 {
	margin-left: 91.66666667%;
}

@media (min-width: 576px) {
	.col-sm {
		flex: 1 0 0%;
	}

	.col-sm-auto {
		flex: 0 0 auto;
		width: auto;
	}

	.col-sm-1 {
		flex: 0 0 auto;
		width: 8.33333333%;
	}

	.col-sm-2 {
		flex: 0 0 auto;
		width: 16.66666667%;
	}

	.col-sm-3 {
		flex: 0 0 auto;
		width: 25%;
	}

	.col-sm-4 {
		flex: 0 0 auto;
		width: 33.33333333%;
	}

	.col-sm-5 {
		flex: 0 0 auto;
		width: 41.66666667%;
	}

	.col-sm-6 {
		flex: 0 0 auto;
		width: 50%;
	}

	.col-sm-7 {
		flex: 0 0 auto;
		width: 58.33333333%;
	}

	.col-sm-8 {
		flex: 0 0 auto;
		width: 66.66666667%;
	}

	.col-sm-9 {
		flex: 0 0 auto;
		width: 75%;
	}

	.col-sm-10 {
		flex: 0 0 auto;
		width: 83.33333333%;
	}

	.col-sm-11 {
		flex: 0 0 auto;
		width: 91.66666667%;
	}

	.col-sm-12 {
		flex: 0 0 auto;
		width: 100%;
	}

	.offset-sm-0 {
		margin-left: 0;
	}

	.offset-sm-1 {
		margin-left: 8.33333333%;
	}

	.offset-sm-2 {
		margin-left: 16.66666667%;
	}

	.offset-sm-3 {
		margin-left: 25%;
	}

	.offset-sm-4 {
		margin-left: 33.33333333%;
	}

	.offset-sm-5 {
		margin-left: 41.66666667%;
	}

	.offset-sm-6 {
		margin-left: 50%;
	}

	.offset-sm-7 {
		margin-left: 58.33333333%;
	}

	.offset-sm-8 {
		margin-left: 66.66666667%;
	}

	.offset-sm-9 {
		margin-left: 75%;
	}

	.offset-sm-10 {
		margin-left: 83.33333333%;
	}

	.offset-sm-11 {
		margin-left: 91.66666667%;
	}
}

@media (min-width: 768px) {
	.col-md {
		flex: 1 0 0%;
	}

	.col-md-auto {
		flex: 0 0 auto;
		width: auto;
	}

	.col-md-1 {
		flex: 0 0 auto;
		width: 8.33333333%;
	}

	.col-md-2 {
		flex: 0 0 auto;
		width: 16.66666667%;
	}

	.col-md-3 {
		flex: 0 0 auto;
		width: 25%;
	}

	.col-md-4 {
		flex: 0 0 auto;
		width: 33.33333333%;
	}

	.col-md-5 {
		flex: 0 0 auto;
		width: 41.66666667%;
	}

	.col-md-6 {
		flex: 0 0 auto;
		width: 50%;
	}

	.col-md-7 {
		flex: 0 0 auto;
		width: 58.33333333%;
	}

	.col-md-8 {
		flex: 0 0 auto;
		width: 66.66666667%;
	}

	.col-md-9 {
		flex: 0 0 auto;
		width: 75%;
	}

	.col-md-10 {
		flex: 0 0 auto;
		width: 83.33333333%;
	}

	.col-md-11 {
		flex: 0 0 auto;
		width: 91.66666667%;
	}

	.col-md-12 {
		flex: 0 0 auto;
		width: 100%;
	}

	.offset-md-0 {
		margin-left: 0;
	}

	.offset-md-1 {
		margin-left: 8.33333333%;
	}

	.offset-md-2 {
		margin-left: 16.66666667%;
	}

	.offset-md-3 {
		margin-left: 25%;
	}

	.offset-md-4 {
		margin-left: 33.33333333%;
	}

	.offset-md-5 {
		margin-left: 41.66666667%;
	}

	.offset-md-6 {
		margin-left: 50%;
	}

	.offset-md-7 {
		margin-left: 58.33333333%;
	}

	.offset-md-8 {
		margin-left: 66.66666667%;
	}

	.offset-md-9 {
		margin-left: 75%;
	}

	.offset-md-10 {
		margin-left: 83.33333333%;
	}

	.offset-md-11 {
		margin-left: 91.66666667%;
	}
}

@media (min-width: 992px) {
	.col-lg {
		flex: 1 0 0%;
	}

	.col-lg-auto {
		flex: 0 0 auto;
		width: auto;
	}

	.col-lg-1 {
		flex: 0 0 auto;
		width: 8.33333333%;
	}

	.col-lg-2 {
		flex: 0 0 auto;
		width: 16.66666667%;
	}

	.col-lg-3 {
		flex: 0 0 auto;
		width: 25%;
	}

	.col-lg-4 {
		flex: 0 0 auto;
		width: 33.33333333%;
	}

	.col-lg-5 {
		flex: 0 0 auto;
		width: 41.66666667%;
	}

	.col-lg-6 {
		flex: 0 0 auto;
		width: 50%;
	}

	.col-lg-7 {
		flex: 0 0 auto;
		width: 58.33333333%;
	}

	.col-lg-8 {
		flex: 0 0 auto;
		width: 66.66666667%;
	}

	.col-lg-9 {
		flex: 0 0 auto;
		width: 75%;
	}

	.col-lg-10 {
		flex: 0 0 auto;
		width: 83.33333333%;
	}

	.col-lg-11 {
		flex: 0 0 auto;
		width: 91.66666667%;
	}

	.col-lg-12 {
		flex: 0 0 auto;
		width: 100%;
	}

	.offset-lg-0 {
		margin-left: 0;
	}

	.offset-lg-1 {
		margin-left: 8.33333333%;
	}

	.offset-lg-2 {
		margin-left: 16.66666667%;
	}

	.offset-lg-3 {
		margin-left: 25%;
	}

	.offset-lg-4 {
		margin-left: 33.33333333%;
	}

	.offset-lg-5 {
		margin-left: 41.66666667%;
	}

	.offset-lg-6 {
		margin-left: 50%;
	}

	.offset-lg-7 {
		margin-left: 58.33333333%;
	}

	.offset-lg-8 {
		margin-left: 66.66666667%;
	}

	.offset-lg-9 {
		margin-left: 75%;
	}

	.offset-lg-10 {
		margin-left: 83.33333333%;
	}

	.offset-lg-11 {
		margin-left: 91.66666667%;
	}
}

@media (min-width: 1200px) {
	.col-xl {
		flex: 1 0 0%;
	}

	.col-xl-auto {
		flex: 0 0 auto;
		width: auto;
	}

	.col-xl-1 {
		flex: 0 0 auto;
		width: 8.33333333%;
	}

	.col-xl-2 {
		flex: 0 0 auto;
		width: 16.66666667%;
	}

	.col-xl-3 {
		flex: 0 0 auto;
		width: 25%;
	}

	.col-xl-4 {
		flex: 0 0 auto;
		width: 33.33333333%;
	}

	.col-xl-5 {
		flex: 0 0 auto;
		width: 41.66666667%;
	}

	.col-xl-6 {
		flex: 0 0 auto;
		width: 50%;
	}

	.col-xl-7 {
		flex: 0 0 auto;
		width: 58.33333333%;
	}

	.col-xl-8 {
		flex: 0 0 auto;
		width: 66.66666667%;
	}

	.col-xl-9 {
		flex: 0 0 auto;
		width: 75%;
	}

	.col-xl-10 {
		flex: 0 0 auto;
		width: 83.33333333%;
	}

	.col-xl-11 {
		flex: 0 0 auto;
		width: 91.66666667%;
	}

	.col-xl-12 {
		flex: 0 0 auto;
		width: 100%;
	}

	.offset-xl-0 {
		margin-left: 0;
	}

	.offset-xl-1 {
		margin-left: 8.33333333%;
	}

	.offset-xl-2 {
		margin-left: 16.66666667%;
	}

	.offset-xl-3 {
		margin-left: 25%;
	}

	.offset-xl-4 {
		margin-left: 33.33333333%;
	}

	.offset-xl-5 {
		margin-left: 41.66666667%;
	}

	.offset-xl-6 {
		margin-left: 50%;
	}

	.offset-xl-7 {
		margin-left: 58.33333333%;
	}

	.offset-xl-8 {
		margin-left: 66.66666667%;
	}

	.offset-xl-9 {
		margin-left: 75%;
	}

	.offset-xl-10 {
		margin-left: 83.33333333%;
	}

	.offset-xl-11 {
		margin-left: 91.66666667%;
	}
}

@media (min-width: 1400px) {
	.col-xxl {
		flex: 1 0 0%;
	}

	.col-xxl-auto {
		flex: 0 0 auto;
		width: auto;
	}

	.col-xxl-1 {
		flex: 0 0 auto;
		width: 8.33333333%;
	}

	.col-xxl-2 {
		flex: 0 0 auto;
		width: 16.66666667%;
	}

	.col-xxl-3 {
		flex: 0 0 auto;
		width: 25%;
	}

	.col-xxl-4 {
		flex: 0 0 auto;
		width: 33.33333333%;
	}

	.col-xxl-5 {
		flex: 0 0 auto;
		width: 41.66666667%;
	}

	.col-xxl-6 {
		flex: 0 0 auto;
		width: 50%;
	}

	.col-xxl-7 {
		flex: 0 0 auto;
		width: 58.33333333%;
	}

	.col-xxl-8 {
		flex: 0 0 auto;
		width: 66.66666667%;
	}

	.col-xxl-9 {
		flex: 0 0 auto;
		width: 75%;
	}

	.col-xxl-10 {
		flex: 0 0 auto;
		width: 83.33333333%;
	}

	.col-xxl-11 {
		flex: 0 0 auto;
		width: 91.66666667%;
	}

	.col-xxl-12 {
		flex: 0 0 auto;
		width: 100%;
	}

	.offset-xxl-0 {
		margin-left: 0;
	}

	.offset-xxl-1 {
		margin-left: 8.33333333%;
	}

	.offset-xxl-2 {
		margin-left: 16.66666667%;
	}

	.offset-xxl-3 {
		margin-left: 25%;
	}

	.offset-xxl-4 {
		margin-left: 33.33333333%;
	}

	.offset-xxl-5 {
		margin-left: 41.66666667%;
	}

	.offset-xxl-6 {
		margin-left: 50%;
	}

	.offset-xxl-7 {
		margin-left: 58.33333333%;
	}

	.offset-xxl-8 {
		margin-left: 66.66666667%;
	}

	.offset-xxl-9 {
		margin-left: 75%;
	}

	.offset-xxl-10 {
		margin-left: 83.33333333%;
	}

	.offset-xxl-11 {
		margin-left: 91.66666667%;
	}
}

.nice-select {
	-webkit-tap-highlight-color: transparent;
	background-color: transparent;
	border: solid 1px var(--theme-color);
	cursor: pointer;
	display: block;
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	outline: none;
	position: relative;
	text-align: left !important;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	padding: 10px 35px 10px 15px;
	width: 100%;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}

.nice-select:after {
	content: '';
	border-bottom: 2px solid var(--theme-color);
	border-right: 2px solid var(--theme-color);
	display: block;
	height: 8px;
	width: 8px;
	margin-top: -5px;
	pointer-events: none;
	position: absolute;
	right: 14px;
	top: 50%;
	-webkit-transform-origin: 66% 66%;
	-ms-transform-origin: 66% 66%;
	transform-origin: 66% 66%;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}

.nice-select.open:after {
	-webkit-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.nice-select.open .list {
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: scale(1) translateY(0);
	-ms-transform: scale(1) translateY(0);
	transform: scale(1) translateY(0);
	-moz-transform: scale(1) translateY(0);
	-o-transform: scale(1) translateY(0);
}

.nice-select.disabled {
	border-color: var(--border-color);
	color: var(--border-color);
	pointer-events: none;
}

.nice-select.disabled:after {
	border-color: #cccccc;
}

.nice-select.wide {
	width: 100%;
}

.nice-select.wide .list {
	left: 0 !important;
	right: 0 !important;
}

.nice-select.right {
	float: right;
}

.nice-select.right .list {
	left: auto;
	right: 0;
}

.nice-select.small {
	font-size: 12px;
	height: 36px;
	line-height: 34px;
}

.nice-select.small:after {
	height: 4px;
	width: 4px;
}

.nice-select.small .option {
	line-height: 34px;
	min-height: 34px;
}

.nice-select .list {
	background-color: var(--white);
	box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.7);
	box-sizing: border-box;
	margin-top: 0;
	opacity: 0;
	overflow: hidden;
	padding: 0;
	pointer-events: none;
	position: absolute;
	top: 100%;
	left: 0;
	-webkit-transform-origin: 50% 0;
	-ms-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transform: scale(0.75) translateY(-21px);
	-ms-transform: scale(0.75) translateY(-21px);
	transform: scale(0.75) translateY(-21px);
	-webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	z-index: 2;
	width: 100%;
	-moz-transform: scale(0.75) translateY(-21px);
	-o-transform: scale(0.75) translateY(-21px);
	-moz-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	-ms-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	-o-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}

.nice-select .list:hover .option:not(:hover) {
	background-color: transparent !important;
}

.nice-select .option {
	cursor: pointer;
	font-weight: 500;
	list-style: none;
	outline: none;
	padding-left: 14px;
	padding-right: 14px;
	text-align: left;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	font-size: 12px;
	letter-spacing: 0.5px;
	padding: 10px 15px;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	margin: 0 !important;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
	background-color: #eae9e9;
}

.nice-select .option.selected {
	font-weight: bold;
}

.nice-select .option.disabled {
	background-color: transparent;
	color: #999;
	cursor: default;
}

.no-csspointerevents .nice-select .list {
	display: none;
}

.no-csspointerevents .nice-select.open .list {
	display: block;
}

.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
}

.slick-track:before,
.slick-track:after {
	display: table;
	content: "";
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}

[dir="rtl"] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
	outline: none;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
}

.slick-arrow.slick-hidden {
	display: none;
}

.slick-dots {
	display: flex !important;
	align-items: center;
	justify-content: center;
	z-index: 1;
	position: absolute;
	bottom: 20px;
}

.slick-dots li:not(:last-child) {
	margin-right: 9px;
}

.slick-dots li {
	display: flex;
	height: 5px;
	width: 5px;
	background: var(--theme-color);
	border-radius: 100%;
	border: 0;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	position: relative;
	transition: all ease-in-out 0.5s;
	-webkit-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	-ms-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
}

.slick-dots li:before {
	content: '';
	position: absolute;
	height: 13px;
	width: 13px;
	border: 1px solid var(--black);
	top: -4px;
	left: -4px;
	right: 0;
	bottom: 0;
	border-radius: 100px;
	transition: all ease-in-out 0.5s;
	-webkit-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	-ms-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
	opacity: 0;
}

.slick-dots li.slick-active:before {
	opacity: 1;
}

.slick-dots li button {
	display: none;
}

.slick-slider .slick-next,
.slick-slider .slick-prev {
	display: inline-block;
	vertical-align: middle;
}

.slick-slider .slick-next::before,
.slick-slider .slick-prev::before {
	display: none;
}

.slick-slider .slick-arrow {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	font-size: 0;
	border: 0;
	outline: none;
	z-index: 1;
	border-radius: 0;
	padding: 0;
	background-color: var(--second-color);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
}

.slick-arrow span {
	display: block;
	height: 100%;
	width: 100%;
}

.slick-arrow svg {
	height: 100%;
	width: 100%;
	fill: var(--on-second-color);
}

.slick-arrow svg path {
	fill: var(--on-second-color);
}

.slick-slider .slick-prev {
	left: 0;
	transform: translateY(-50%) scale(-1);
	-webkit-transform: translateY(-50%) scale(-1);
	-moz-transform: translateY(-50%) scale(-1);
	-ms-transform: translateY(-50%) scale(-1);
	-o-transform: translateY(-50%) scale(-1);
}

.slick-slider .slick-next {
	right: 0;
}

.slick-slider .slick-arrow:hover,
.slick-slider .slick-arrow:focus {
	background: var(--theme-color);
}

.slick-slider .slick-arrow:hover svg,
.slick-slider .slick-arrow:focus svg {
	fill: var(--on-theme-color);
}

.slick-slider .slick-arrow:hover svg path,
.slick-slider .slick-arrow:focus svg path {
	fill: var(--on-theme-color);
}

.slick-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
	background: var(--theme-color);
	-webkit-transition: opacity 0.5s ease;
	transition: opacity 0.5s ease;
	-moz-transition: opacity 0.5s ease;
	-ms-transition: opacity 0.5s ease;
	-o-transition: opacity 0.5s ease;
}

.slick-lightbox .slick-loading .slick-list {
	background-color: transparent;
}

.slick-lightbox .slick-prev {
	left: 15px;
}

.slick-lightbox .slick-next {
	right: 15px;
}

.slick-lightbox-inner .slick-arrow {
	background: var(--white) url(../images/right-arrow.png);
	background-repeat: no-repeat;
	background-position: 50% 50%;
}

.slick-lightbox-hide {
	opacity: 0;
}

.slick-lightbox-hide-init {
	position: absolute;
	top: -9999px;
	opacity: 0;
}

.slick-lightbox-inner {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.slick-lightbox-slick-item {
	text-align: center;
	overflow: hidden;
}

.slick-lightbox-slick-item:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	margin-right: -0.25em;
}

.slick-caption-bottom .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: center;
	width: 100%;
	margin-bottom: 20px;
}

.slick-caption-dynamic .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
	display: block;
	text-align: center;
}

.slick-lightbox-slick-item-inner {
	display: inline-block;
	vertical-align: middle;
	max-width: 90%;
	max-height: 90%;
}

.slick-lightbox-slick-img {
	margin: 0 auto;
	display: block;
	max-width: 90%;
	max-height: 90%;
}

.slick-lightbox-slick-caption {
	margin: 10px 0 0;
	display: block;
	color: var(--white);
}

.slick-lightbox-close {
	position: absolute;
	top: 15px;
	right: 15px;
	display: block;
	height: 20px;
	width: 20px;
	line-height: 0;
	font-size: 0;
	cursor: pointer;
	background: transparent;
	color: transparent;
	padding: 0;
	border: none;
}

.slick-lightbox .close svg {
	height: 100%;
	width: 100%;
}

.slick-lightbox .close {
	position: absolute;
	top: 20px;
	right: 20px;
	color: var(--white);
	opacity: 1;
	background: transparent;
	border: none;
	height: 27px;
	width: 27px;
	padding: 0;
}

.open-lightbox {
	height: 50px;
	width: 50px;
	background: rgba(32, 30, 30, 0.49);
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.slick-lightbox .slick-arrow.slick-prev {
	-webkit-transform: translateY(-50%) scale(-1);
	-moz-transform: translateY(-50%) scale(-1);
	-ms-transform: translateY(-50%) scale(-1);
	-o-transform: translateY(-50%) scale(-1);
	transform: translateY(-50%) scale(-1);
}

.slick-lightbox .slick-arrow:hover,
.slick-lightbox .slick-arrow:focus {
	background-color: var(--white);
}

.slick-slide .nice-select .list {
	max-height: 60px;
	overflow: auto;
	scrollbar-width: none;
}

.slick-slide .nice-select .option {
	padding: 5px 15px;
}

.slick-slide .nice-select .list::-webkit-scrollbar {
	display: none;
}

.slick-slide .nice-select .list::-moz-scrollbar {
	display: none;
}

.btn {
	text-align: center;
	padding: 13px 25px;
	font-family: var(--first-font);
	color: var(--on-second-color);
	background-color: var(--second-color);
	box-shadow: none;
	appearance: none;
	outline: none;
	border: 1px solid var(--second-color);
	position: relative;
	border-radius: 0;
	font-weight: 600;
	font-size: 14px;
	line-height: 1;
	border-radius: 5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	-webkit-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	-ms-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
	transition: all ease-in-out 0.5s;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: relative;
	z-index: 1;
}

.btn svg {
	width: 20px;
	margin-left: 8px;
	height: 18px;
}

.btn svg path {
	fill: var(--on-second-color);
	-webkit-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	-ms-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
	transition: all ease-in-out 0.5s;
}

.btn:hover,
.btn:focus {
	background-color: var(--theme-color);
	color: var(--on-theme-color);
	border-color: var(--theme-color);
}

.btn:focus svg path,
.btn:hover svg path {
	fill: var(--on-theme-color);
}

.btn.white-btn {
	color: var(--theme-color);
	background-color: var(--white);
}

.btn.white-btn svg path {
	fill: var(--theme-color);
}

.btn.white-btn:hover,
.btn.white-btn:focus {
	color: var(--white);
	border-color: var(--second-color);
	background-color: var(--second-color);
}

.btn.white-btn:hover svg path,
.btn.white-btn:focus svg path {
	fill: var(--white);
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--theme-color);
	background: var(--theme-color);
	color: var(--on-theme-color);
	justify-content: center;
	line-height: 1;
	font-weight: 600;
	transition: all ease-in-out 0.4s;
	-webkit-transition: all ease-in-out 0.4s;
	-moz-transition: all ease-in-out 0.4s;
	-ms-transition: all ease-in-out 0.4s;
	-o-transition: all ease-in-out 0.4s;
	text-transform: uppercase;
}

.btn-ic {
	height: 30px;
	width: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--theme-color);
	margin-left: 10px;
	transition: all ease-in-out 0.4s;
	-webkit-transition: all ease-in-out 0.4s;
	-moz-transition: all ease-in-out 0.4s;
	-ms-transition: all ease-in-out 0.4s;
	-o-transition: all ease-in-out 0.4s;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}

.btn-secondary svg {
	width: 12px;
	height: 12px;
}

.btn-secondary svg path {
	transition: all ease-in-out 0.4s;
	-webkit-transition: all ease-in-out 0.4s;
	-moz-transition: all ease-in-out 0.4s;
	-ms-transition: all ease-in-out 0.4s;
	-o-transition: all ease-in-out 0.4s;
	fill: var(--on-theme-color);
}

.btn-secondary:hover {
	background: var(--theme-color);
	color: var(--on-theme-color);
}

.btn-secondary.white-btn .btn-ic {
	background: var(--white);
}

.btn-secondary:hover svg path {
	fill: var(--theme-color);
}

.btn-secondary.white-btn {
	border: 1px solid var(--white);
	color: var(--white);
}

.btn-secondary.white-btn:hover .btn-ic {
	background: var(--theme-color);
}

.btn-secondary.white-btn svg path {
	fill: var(--theme-color);
}

.btn-secondary.white-btn:hover {
	border: 1px solid var(--white);
	color: var(--theme-color);
	background: var(--white);
}

.btn-secondary:hover .btn-ic {
	background: var(--white);
}

.btn-secondary.white-btn:hover svg path {
	fill: var(--white);
}

.link-btn {
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
	text-align: center;
	position: relative;
	padding-bottom: 5px;
}

.link-btn:before {
	content: '';
	height: 1px;
	width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--white);
}

.form-control,
input:not([type="submit"]),
input:not([type="checkbox"]),
input:not([type="radio"]),
select,
textarea {
	position: relative;
	border: 1px solid var(--border-color);
	display: block;
	width: 100%;
	padding: 15px 20px;
	background: transparent;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	color: var(--theme-color);
}

textarea {
	resize: none;
}

form .row {
	margin: 0 -8px;
}

form .row [class*="col-"] {
	padding: 0 10px;
}

.form-group {
	margin-bottom: 15px;
}

.form-group label {
	display: inline-block;
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: 500;
}

.form-group .nice-select .list,
.form-group .form-control {
	border-radius: 0;
}

sup {
	top: -0.5em;
}

sub,
sup {
	position: relative;
	font-size: 15px;
	line-height: 1;
	font-weight: 500;
	margin-left: 5px;
}

.form-group label sup {
	color: red;
	font-size: 10px;
	line-height: 0;
	margin-right: 3px;
}

.checkbox-custom input {
	padding: 0;
	height: initial;
	width: initial;
	margin-bottom: 0;
	display: none;
	cursor: pointer;
}

.checkbox-custom label {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	font-size: 14px;
	line-height: 1.1;
	margin: 0;
	padding: 0 0 0 30px;
}

.checkbox-custom label:before {
	content: '';
	--webkit-appearance: none;
	background-color: transparent;
	border: 1px solid var(--theme-color);
	padding: 8px;
	display: inline-block;
	position: absolute;
	vertical-align: middle;
	cursor: pointer;
	margin-right: 15px;
	left: 0;
	top: 54%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.checkbox-custom input:checked+label:before {
	background-color: var(--checkbox-color);
	border-color: var(--checkbox-color);
}

.checkbox-custom input:checked+label:after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 7px;
	width: 4px;
	height: 8px;
	border: solid var(--white);
	border-width: 0px 1px 1px 0;
	transform: translateY(-50%) rotate(45deg);
	-moz-transform: translateY(-50%) rotate(45deg);
	-ms-transform: translateY(-50%) rotate(45deg);
	-o-transform: translateY(-50%) rotate(45deg);
	-webkit-transform: translateY(-50%) rotate(45deg);
}

.checkbox-custom label a {
	text-decoration: underline;
	font-weight: 600;
}

.radio-group input[type="radio"] {
	display: none;
	padding: 0;
	border: 0;
	background: transparent;
}

.radio-group label {
	cursor: pointer;
	position: relative;
	font-size: 12px;
	padding-left: 24px;
	color: var(--second-color);
	margin: 0;
	vertical-align: bottom;
}

.radio-group label::before {
	content: "";
	position: absolute;
	width: 15px;
	height: 15px;
	background-color: transparent;
	border: 2px solid var(--second-color);
	border-radius: 50%;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	transition: border-color 400ms ease;
	-webkit-transition: border-color 400ms ease;
	-moz-transition: border-color 400ms ease;
	-ms-transition: border-color 400ms ease;
	-o-transition: border-color 400ms ease;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.radio-group label::after {
	content: "";
	position: absolute;
	width: 13px;
	height: 13px;
	background-color: var(--second-color);
	border: 2px solid var(--second-color);
	border-radius: 50%;
	top: 50%;
	left: 1px;
	right: auto;
	transform: translateY(-50%) scale(0);
	-webkit-transform: translateY(-50%) scale(0);
	-moz-transform: translateY(-50%) scale(0);
	-ms-transform: translateY(-50%) scale(0);
	-o-transform: translateY(-50%) scale(0);
	transition: transform 400ms ease;
	-webkit-transition: transform 400ms ease;
	-moz-transition: transform 400ms ease;
	-ms-transition: transform 400ms ease;
	-o-transition: transform 400ms ease;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.radio-group input[type="radio"]:checked+label::before {
	border-color: var(--second-color);
}

.radio-group input[type="radio"]:checked+label::after {
	transform: translateY(-50%) scale(0.55);
	-webkit-transform: translateY(-50%) scale(0.55);
	-moz-transform: translateY(-50%) scale(0.55);
	-ms-transform: translateY(-50%) scale(0.55);
	-o-transform: translateY(-50%) scale(0.55);
}

body.active-menu,
body.no-scroll {
	overflow: hidden;
	position: relative;
}

.right-gliter {
	bottom: 0;
	right: 0;
}

.gliter-img {
	position: absolute;
	z-index: -1;
}

.padding-top {
	padding-top: 80px;
}

.padding-bottom {
	padding-bottom: 80px;
}

.section-title {
	margin-bottom: 40px;
}

.subtitle {
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.08em;
	margin-bottom: 20px;
}

.header-style-one {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 5;
	-webkit-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	-ms-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
	transition: all ease-in-out 0.5s;
	color: var(--theme-color);
	background: var(--white);
	box-shadow: 0px 4px 55px rgb(24 58 64 / 12%);
}

.header-style-one .logo-col {
	max-width: 150px;
	width: 100%;
}

.header-style-one .main-navigationbar .logo-col a {
	display: block;
}

.header-style-one .main-navigationbar .menu-items-col {
	flex: 1;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.header-style-one .main-navigationbar .menu-items-col .main-nav>li>a {
	color: var(--theme-color);

	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
	transition: all ease-in-out 0.3s;
	padding: 0;
	position: relative;
	display: inline-flex;
	font-size: 16px;
	align-items: center;
}

.header-style-one .main-navigationbar .menu-items-col .main-nav>li>a:hover,
.header-style-one .main-navigationbar .menu-items-col .main-nav>li>a.active {
	color: var(--black);
}

.header-style-one .main-navigationbar .menu-items-col .main-nav>li:not(:last-of-type) {
	padding-right: 30px;
}

.header-style-one .main-navigationbar .menu-items-col .main-nav {
	flex: 1;
}

.header-style-one .menu-right>li.search-header a,
.header-style-one .menu-right>li.wishlist-header a,
.header-style-one .menu-right>li.cart-header a {
	height: 35px;
	width: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--theme-color);
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	position: relative;
}

.header-style-one li a svg {
	width: 17px;
	height: 17px;
}

.header-style-one li a svg path {
	fill: var(--theme-color);
}

.header-style-one .menu-right li:not(:last-of-type) {
	margin-right: 20px;
}

.header-style-one .main-navigationbar .menu-items-col .main-nav {
	padding: 0 65px;
}

.header-style-one .mobile-menu-bottom li a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.header-style-one .mobile-menu-bottom li a svg {
	margin-right: 10px;
}

.profile-header .pf-user-img {
	max-width: 35px;
	width: 100%;
	height: 35px;
}

.profile-header .pf-user-img img {
	width: 100%;
	object-fit: cover;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.header-style-one .count {
	position: absolute;
	top: -9px;
	right: -7px;
	height: 20px;
	width: 19px;
	background: var(--theme-color);
	color: var(--white);
	font-size: 10px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	border: 1.36364px solid var(--theme-color);
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.header-style-one .main-navigationbar .has-item>a {
	position: relative;
	padding-right: 20px;
}

.header-style-one .main-navigationbar .has-item>a:after {
	border-bottom: 2px solid var(--checkbox-color);
	border-right: 2px solid var(--checkbox-color);
	content: '';
	display: block;
	height: 8px;
	width: 8px;
	margin-top: -5px;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform-origin: 66% 66%;
	-ms-transform-origin: 66% 66%;
	transform-origin: 66% 66%;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	-ms-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
	transition: all ease-in-out 0.5s;
}

.header-style-one .has-item:hover>a:after {
	transform: rotate(-136deg);
	-webkit-transform: rotate(-136deg);
	-moz-transform: rotate(-136deg);
	-ms-transform: rotate(-136deg);
	-o-transform: rotate(-136deg);
}

.header-style-one .menu-dropdown {
	position: absolute;
	top: 100%;
	background-color: var(--white);
	transform-origin: top;
	box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.05);
	opacity: 0;
	visibility: hidden;
	min-width: 262px;
	z-index: 2;
	left: auto;
	right: 0;
	padding: 20px;
	border-top: 1px solid var(--border-color);
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
	transition: all ease-in-out 0.3s;
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
}

.header-style-one .menu-dropdown ul>li:not(:last-of-type) {
	margin-bottom: 10px;
	margin-right: 0;
}

.header-style-one .menu-right li .menu-dropdown ul>li a {
	width: auto;
	height: auto;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	border: 0;
	justify-content: flex-start;
	padding: 0;
	background: transparent;
	display: flex;
	align-items: center;
}

.header-style-one .menu-right li .menu-dropdown ul>li a svg {
	margin-right: 10px;
}


.header-style-one .main-navigationbar .menu-items-col .main-nav>li:hover .menu-dropdown,
.header-style-one .main-navigationbar ul>li:hover .menu-dropdown {
	opacity: 1;
	visibility: visible;
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	transform: scaleY(1);
}

.header-style-one .main-navigationbar li.profile-header>a,
.header-style-one .main-navigationbar li.language-header>a {
	padding: 6px 15px;
	border: 1px solid var(--theme-color);
	border-radius: 5px;
	display: block;
	background: transparent !important;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.header-style-one .main-navigationbar .language-header a svg {
	margin-right: 12px;
	width: 20px;
	height: 20px;
}

.header-style-one .main-navigationbar .language-header a svg path {
	fill: var(--theme-color) !important;
}

.header-style-one .main-navigationbar .profile-header.has-item>a,
.header-style-one .main-navigationbar .language-header.has-item a {
	padding-right: 30px;
}

.header-style-one .main-navigationbar .profile-header.has-item>a::after,
.header-style-one .main-navigationbar .language-header.has-item>a::after {
	right: 12px;
}

/* Corrigir alinhamento da seta do botão "Minha Conta" */
.header-style-one .main-navigationbar .profile-header.has-item>a .login-text:not([style*="display: none"]),
.header-style-one .main-navigationbar .language-header.has-item>a .login-text:not([style*="display: none"]) {
	display: inline-block !important;
	margin-right: 15px;
}

.header-style-one .main-navigationbar .menu-right>li {
	padding: 25px 0;
	position: relative;
}

.language-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;

}

.language-header .nice-select {
	border: 1px solid var(--theme-color);
	padding-left: 47px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}



.dropdown-user-dtl .user-image {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid #f2f3f5;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	overflow: hidden;
}

.dropdown-user-dtl .user-image img {
	width: 100%;
	object-fit: cover;
}

.dropdown-user-dtl .user-details {
	font-size: 14px;
	padding-left: 15px;
	color: var(--black);
}

.header-style-one .menu-dropdown .dropdown-user-dtl {
	margin-bottom: 20px !important;
}

.header-style-one .mobile-menu {
	display: none;
	position: relative;
	z-index: 1;
	width: 22px;
	height: 22px;
	margin: 0 0 0 20px;
}

.header-style-one .mobile-menu .mobile-menu-button {
	cursor: pointer;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	padding: 0;
	text-align: center;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: transparent;
	border: none;
	-moz-transform: translate(0%, -50%);
	-ms-transform: translate(0%, -50%);
	-o-transform: translate(0%, -50%);
	-webkit-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
}

.header-style-one .mobile-menu .mobile-menu-button div {
	width: 100%;
	height: 2px;
	margin: 4px 0;
	backface-visibility: hidden;
	background: var(--header-icon-color);
}

.header-style-one .mobile-menu-bottom {
	display: none;
}

.header-style-one .mobile-menu-bottom>ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.main-home-first-section .container {
	max-width: calc((100% - 1200px)/2 + 1200px);
	margin-left: auto;
	margin-right: 0;
}


.mobile-menu-wrapper {
	position: fixed;
	z-index: 5;
	background: var(--white);
	top: 0;
	height: 100%;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-transform: translate(100%, 0px);
	-moz-transform: translate(100%, 0px);
	-ms-transform: translate(100%, 0px);
	-o-transform: translate(100%, 0px);
	transform: translate(100%, 0px);
	right: 0;
	width: 100%;
	max-width: 400px;
}

.mobile-menu-wrapper.active-menu {
	transform: translate(0%, 0px);
	-webkit-transform: translate(0%, 0px);
	-moz-transform: translate(0%, 0px);
	-ms-transform: translate(0%, 0px);
	-o-transform: translate(0%, 0px);
}

.mobile-menu-wrapper .menu-close-icon {
	text-align: right;
	padding: 15px 20px;
	background: var(--theme-color);
}

.mobile-menu-wrapper .mobile-menu-bar>ul {
	height: calc(100vh - 48px);
	overflow: auto;
	padding: 10px 20px;
}

.mobile-menu-wrapper .mobile-menu-bar>ul>li {
	margin-top: 12px;
}

.mobile-menu-wrapper .menu-close-icon svg path {
	fill: var(--menu-close-icon-color);
}

.close-filter svg path {
	fill: var(--menu-close-icon-color);
}

/* Ensure modal appears above mobile menu */
.modal.edit-profile {
	z-index: 9999 !important;
}

.modal-backdrop {
	z-index: 9998 !important;
}

.main-home-first-section .h1 {
	margin-bottom: 40px;
}

.main-home-first-section .h1 b {
	color: var(--theme-color);
	font-weight: inherit;
}

.search-form {
	margin-top: 30px;
}

.search-form .input-wrapper {
	position: relative;
}

.search-form .input-wrapper input {
	padding-right: 60px;
}

.search-form .btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: auto;
	right: 7px;
	height: 40px;
	width: 40px;
	border-radius: 5px;
	background: var(--second-color);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.search-form .btn svg {
	width: 20px;
	height: 20px;
	margin: auto;
}

.search-form .btn svg path {
	fill: var(--on-second-color);
}

.main-home-first-section .banner-left-side {
	padding-right: 0;
	position: relative;
}

.main-home-first-section .banner-image-left {
	position: relative;
	padding-top: 91%;
}

.main-home-first-section .banner-image-left img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	z-index: -1;
}

.main-home-first-section {
	padding-top: 30px;
	position: relative;
}

.home-banner-content {
	max-width: 570px;
}

.report-box .svg-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	background: var(--theme-color);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.report-box {
	background: var(--second-color);
	color: var(--on-second-color);
	padding: 25px 30px;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	z-index: 1;
	border-radius: 180px 180px 0 180px;
	position: relative;
	-webkit-border-radius: 180px 180px 0 180px;
	-moz-border-radius: 180px 180px 0 180px;
	-ms-border-radius: 180px 180px 0 180px;
	-o-border-radius: 180px 180px 0 180px;
}

.report-box .inner-report {
	text-align: right;
	margin-left: 15px;
}

.report-box .svg-icon svg {
	width: 30px;
	height: 30px;
	margin: auto;
}

.report-box .svg-icon svg path {
	fill: var(--on-theme-color);
}

.second-style {
	background: var(--theme-color);
	color: var(--on-theme-color);
}

.second-style .svg-icon {
	background: var(--second-color);
}

.second-style .svg-icon svg path {
	fill: var(--on-second-color);
}


.main-home-first-section .report-box.courses-reports {
	position: absolute;
	top: 24%;
	left: 50px;
	transform: rotate(-22deg);
}

.main-home-first-section .maths-courses.report-box {
	position: absolute;
	top: 20px;
	left: auto;
	right: 15%;
	transform: rotate(13deg);
}

.scroll-down {
	text-align: center;
	position: absolute;
	top: auto;
	bottom: 0;
	left: 0;
	right: 0;
}

.scroll-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	margin-top: 30px;
	flex-direction: column;
	color: var(--grey-color);
}

.scroll-link .scroll-icon {
	display: block;
	width: 28px;
	height: 40px;
	margin-bottom: 10px;
	border: 1px solid var(--border-color);
	border-radius: 60px;
	position: relative;
	-webkit-border-radius: 60px;
	-moz-border-radius: 60px;
	-ms-border-radius: 60px;
	-o-border-radius: 60px;
	position: relative;
}

.scroll-link .scroll-icon::before {
	content: "";
	width: 3px;
	height: 9px;
	position: absolute;
	top: 5px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--theme-color);
	border-radius: 60px;
	opacity: 1;
	animation: wheel 2s infinite;
	-webkit-animation: wheel 2s infinite;
}

@keyframes wheel {
	to {
		opacity: 0;
		top: 30px;
	}
}

@-webkit-keyframes wheel {
	to {
		opacity: 0;
		top: 30px;
	}
}

.outer-arrow .slick-prev {
	left: -55px;
}

.outer-arrow .slick-next {
	right: -55px;
}

.client-logo-item a {
	display: inline-block;
	text-align: center;
}

.client-logo-item {
	display: flex !important;
	justify-content: center;
	padding: 0 20px;
}

.course-widget-inner {
	background: #FFFFFF;
	position: relative;
	border: 1px solid var(--border-color);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.course-media {
	position: relative;
}

.course-widget-inner .course-media a {
	display: block;
	padding-top: 56.25%;
	position: relative;
	background: var(--second-color);
}

.course-widget-inner .course-media a img {
	position: absolute;
	top: auto;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.course-caption {
	padding: 17px 17px 17px;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.course-caption h6 {
	flex: 1;
}

.slick-track {
	display: flex;
}

.course-widget {
	display: flex !important;
	flex-direction: column;
	height: auto;
}

.course-caption h6 {
	flex: 1;
}

.blog-caption h6 {
	margin-bottom: 11px;
}

.badge {
	text-align: center;
	font-weight: 600;
	font-size: 11px;
	padding: 5px 8px;
	background: var(--white);
	color: var(--black);
	line-height: 1;
	letter-spacing: 1px;
	display: inline-block;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.course-widget-inner .badge+.badge.sale {
	left: 129px;
}

.course-widget-inner .badge.sale {
	background: #d12525;
	color: var(--white);
}

.course-caption-top .wishlist-btn {
	margin-left: auto;
}

.course-caption-top {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	padding: 10px 17px;
}

.course-caption-top .badge:not(:last-of-type) {
	margin-right: 10px;
}

.wishlist-btn {
	width: 35px;
	height: 35px;
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}

.wishlist-btn svg {
	width: 20px;
	height: 20px;
}


.wishlist-btn svg path {
	fill: var(--black);
}

.review-star {
	margin-top: 15px;
}

.review-star i {
	color: var(--second-color);
	font-size: 16px;
	font-weight: 900;
}

.review-star i.text-warning {
	color: #eb8a2f;
}

.review-star .star-icon {
	display: block;
}

.review-star .star-icon svg {
	width: 15px;
	height: 15px;
}

.review-star .star-icon svg path {
	fill: var(--second-color);
}

.review-star .star-icon:not(:last-of-type) {
	margin-right: 2px !important;
}

.course-widget-inner .course-bottom .course-detail {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 0;
	padding-bottom: 5px;
	border-bottom: 1px solid var(--border-color);
	color: var(--grey-color);
	margin-left: -10px;
	margin-right: -10px;
}

.course-widget-inner .course-bottom .course-detail p {
	margin-bottom: 0;
	display: flex;
	align-items: center;
	padding: 0px 10px 5px;
}

.course-widget-inner .course-bottom .course-detail p svg {
	width: 14px;
	height: 14px;
	margin-right: 10px;
}

.price {
	display: flex;
	font-size: 20px;
	flex-wrap: wrap;
	font-weight: 600;
	color: var(--theme-color);
}

.price-addtocart {
	margin-top: 20px;
}

.course-bottom {
	margin: 20px 0 0 0;
}

.slider-comman {
	margin: 0 -10px;
}

.slider-comman .course-widget {
	padding: 0 10px;
}

.section-title b {
	color: var(--theme-color);
	display: inline;
	font-weight: inherit;
}

.section-title .left-side {
	flex: 0 0 50%;
}

.section-title .right-side {
	flex: 0 0 50%;
}

.section-title .right-side .btn {
	margin-top: 20px;
}

.knowledge-section {
	background: var(--second-color);
	margin-bottom: 100px;
}

.knowledge-section .section-title {
	color: var(--on-second-color);
}

.knowledge-card-inner {
	padding: 17px 17px 17px;
	background: #FFFFFF;
	box-shadow: 0px 18px 32px rgba(0, 0, 0, 0.02);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: flex-end;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.knowledge-icon {
	width: 70px;
	margin-bottom: 25px;
}

.knowledge-top-content {
	margin-bottom: 25px;
	flex: 1;
}



.row-gap {
	margin-top: -30px;
}

.row-gap [class*="col-"] {
	margin-top: 30px;
}

.knowledge-section .knowledge-cards-row {
	margin-bottom: -180px;
}

.on-sale-section .price {
	color: #d12525;
}

del {
	color: var(--grey-color);
	text-decoration: line-through;
	font-size: 13px;
	margin-left: 10px;
	line-height: 1;
}

.newsletter-content-wrap {
	background: var(--second-color);
	padding: 40px 30px;
	color: var(--on-second-color);
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
}

.newsletter-form {
	margin-top: 40px;
}

.newsletter-form input {
	background: var(--white);
	color: var(--black);
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border: 0;
}

.newsletter-form .input-wrapper {
	display: flex;
	margin-bottom: 15px;
}

.newsletter-form .input-wrapper .btn {
	margin-left: 20px;
}

/* Hover em fundos coloridos usa tom mais escuro para visibilidade */
.newsletter-content-wrap .btn:hover,
.newsletter-content-wrap .btn:focus {
	background-color: var(--second-color-hover);
	color: var(--on-second-color-hover);
	border-color: var(--second-color-hover);
}

.newsletter-content-wrap .btn:hover svg path,
.newsletter-content-wrap .btn:focus svg path {
	fill: var(--on-second-color-hover);
}

/* Títulos em fundos coloridos herdam cor do pai (branco) */
.newsletter-content-wrap .section-title b {
	color: inherit;
}

/* Regra genérica: qualquer seção com fundo secundário */
[style*="background"][style*="--second-color"] .btn:hover,
[style*="background"][style*="#004"] .btn:hover,
.bg-secondary .btn:hover,
.secondary-bg .btn:hover {
	background-color: var(--second-color-hover) !important;
	color: var(--on-second-color-hover) !important;
	border-color: var(--second-color-hover) !important;
}

[style*="background"][style*="--second-color"] .btn:hover svg path,
[style*="background"][style*="#004"] .btn:hover svg path,
.bg-secondary .btn:hover svg path,
.secondary-bg .btn:hover svg path {
	fill: var(--on-second-color-hover) !important;
}

/* Seção de categorias com fundo azul */
.knowledge-section .btn.btn-secondary:hover,
.knowledge-section .btn.btn-secondary:focus {
	background-color: var(--second-color-hover) !important;
	color: var(--on-second-color-hover) !important;
	border-color: var(--second-color-hover) !important;
}

.newsletter-content-wrap .newsletter-image {
	max-width: 450px;
	width: 100%;
	margin-left: auto;
	margin-top: -110px;
	margin-bottom: -50px;
}

.newsletter-section {
	margin-top: 70px;
}

.site-footer {
	padding-bottom: 30px;
}

.footer-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.footer-row .footer-col {
	width: 100%;
	flex: 1;
}

.footer-row .footer-col:not(:first-of-type) {
	padding-left: 96px;
}

.footer-logo {
	max-width: 200px;
	width: 100%;
}

.footer-widget ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.footer-widget ul li:not(:last-of-type) {
	margin-right: 30px;
}

.footer-widget ul li a {
	color: var(--theme-color);
}

.footer-widget .share-links {
	justify-content: flex-end;
}

.footer-widget .share-links li:not(:last-of-type) {
	margin-right: 15px;
}

.footer-widget .share-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	background: var(--theme-color);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	color: var(--footer-icon-color-if-light) !important;
}

.footer-widget .share-links svg {
	width: 15px;
	height: 15px;
}

.footer-widget .share-links svg path {
	fill: var(--footer-icon-color-if-light);
}

.footer-bottom {
	padding-top: 30px;
	color: var(--grey-color);
}

.search-popup {
	position: fixed;
	background: rgb(42 42 42 / 79%);
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	z-index: 5;
	padding: 0 30px;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	transition: all ease-in-out 0.5s;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	-ms-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
}

.search-popup.active {
	opacity: 1;
	visibility: visible;
}

.search-popup .close-search {
	position: absolute;
	right: 50px;
	top: 50px;
	cursor: pointer;
	width: 30px;
	height: 30px;
}

.search-popup .close-search svg {
	height: 100%;
	width: 100%;
}

.search-form-wrapper {
	max-width: 1000px;
	width: 100%;
}

.search-form-wrapper form {
	width: 100%;
}

.search-form-wrapper .form-inputs {
	width: 100%;
	position: relative;
}

.search-form-wrapper input {
	padding: 15px 60px 15px 20px;
	background: var(--white);
}

.search-form-wrapper .btn {
	position: absolute;
	right: 5px;
	top: 50%;
	width: 45px;
	padding: 0;
	height: calc(100% - 10px);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.search-form-wrapper .btn svg {
	width: 20px;
	height: 20px;
	margin: 0 auto;
	fill: var(--search-icon-color) !important;
}

.search-form-wrapper .btn svg path {
	fill: var(--search-icon-color) !important;
}

.common-banner-section {
	padding: 70px 0;
	background: #F9F9F9;
	color: var(--black);
	position: relative;
	z-index: 1;
}

.back-btn {
	display: inline-flex;
	align-items: center;
	font-size: 13px;
	font-weight: 500;
}

.back-btn span {
	width: 34px;
	height: 34px;
	display: flex;
	vertical-align: middle;
	border: 1px solid var(--black);
	border-radius: 100%;
	text-align: center;
	padding: 4px 0;
	margin-right: 10px;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
}

.common-banner-content .back-btn {
	margin-bottom: 26px;
}

.common-banner-content .back-btn span svg path {
	fill: var(--black);
}

.banner-image {
	position: absolute;
	top: 1px;
	left: auto;
	right: 0;
	bottom: 0;
	height: 100%;
	z-index: -1;
}

.banner-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.aboutus-content h4 {
	margin-bottom: 20px;
}

.aboutus-content p {
	margin-bottom: 15px;
}

.blog-widget-inner {
	background: #FFFFFF;
	border: 1px solid var(--theme-color);
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.blog-media {
	position: relative;
}

.blog-widget-inner .blog-media a {
	display: block;
	padding-top: 55%;
	position: relative;
	background: var(--second-color);
}

.blog-widget-inner .blog-media a img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	object-fit: contain;
}

.blog-caption {
	padding: 17px 17px 17px;
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.blog-caption h4 {
	margin-bottom: 11px;
	flex: 1;
}

.blog-caption .blog-btn {
	width: 100%;
	margin-top: 15px;
}

.blog-widget-inner .badge {
	background: var(--grey-color);
	color: var(--white);
}

.blog-caption .captio-top {
	margin-bottom: 15px;
}

.blog-grid-row .blog-widget {
	margin-bottom: 30px;
}

.blog-grid-row {
	margin-bottom: -30px;
}

.tutor-featured-course .badge,
.common-banner-section .badge {
	background: var(--theme-color);
	color: var(--badge-text-if-light) !important;
	margin-left: 15px;
}

.pdp-main-media {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.pdp-main-media.chapter-video {
	padding-top: 59%;
}

.pdp-main-media.chapter-video iframe {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	object-fit: contain;
	object-position: center;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.pdp-main-media iframe {
	border-radius: 0px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	-ms-border-radius: 0px;
	-o-border-radius: 0px;
}

.pdp-tabs {
	padding: 15px 30px;
	border: 1px solid var(--border-color);
	background: var(--pdp-tabs-bg) !important;
	border-radius: 15px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-ms-border-radius: 15px;
	-o-border-radius: 15px;
	margin-bottom: 40px;
}

.tabs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.tabs li {
	line-height: 1;
}

.tabs li a {
	display: inline-flex;
	align-items: center;
	line-height: 1;
}

.tabs li:not(:last-of-type) {
	margin-right: 30px;
}

.tabs li a svg {
	width: 16px;
	height: 16px;
	margin-right: 15px;
}

.tabs li a svg path {
	fill: var(--grey-color);
}

.tabs li.active a {
	color: var(--pdp-active-text) !important;
}

.tabs li.active a svg path,
.tabs li.active a svg rect {
	fill: var(--pdp-active-text) !important;
}

.tabs li.active a svg circle {
	fill: var(--pdp-active-text) !important;
}

.tabs li.active a svg circle[stroke] {
	fill: none !important;
	stroke: var(--pdp-active-text) !important;
}

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
}

.set {
	border: 1px solid var(--border-color);
}

.set:not(:last-of-type) {
	margin-bottom: 20px;
}

.set .acnav-label {
	padding: 15px 35px 15px 15px;
	position: relative;
	font-size: 14px;
	font-weight: 600;
	width: 100%;
}

.acnav-list {
	display: none;
	padding: 0 0 10px 0;
}

.set .acnav-label:after {
	content: '';
	position: absolute;
	height: 12px;
	width: 12px;
	background-image: url('../imgs/menu-dropdown.png');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: 50% 50%;
	top: 50%;
	transform: translateY(-50%);
	right: 15px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transition: all ease-in-out 0.5s;
	-webkit-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	-ms-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
}

.set.is-open .acnav-label::after {
	transform: translateY(-50%) rotate(180deg);
	-webkit-transform: translateY(-50%) rotate(180deg);
	-moz-transform: translateY(-50%) rotate(180deg);
	-ms-transform: translateY(-50%) rotate(180deg);
	-o-transform: translateY(-50%) rotate(180deg);
}

.set .acnav-list {
	padding: 15px;
	border-top: 1px solid var(--border-color);
}

.chapter-links li a {
	display: inline-flex;
	align-items: center;
}

.chapter-links li a .link-icon {
	display: flex;
	width: 30px;
	height: 30px;
	position: relative;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	z-index: 1;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

.chapter-links li a .link-icon svg {
	width: 20px;
	height: 20px;
	stroke: var(--black);
}

.chapter-links li a .link-icon svg path {
	fill: var(--theme-color);
}

.chapter-links li a .link-icon::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	z-index: -1;
	opacity: 0.4;
	background: var(--gradient-color);
}

.chapter-links li:not(:last-of-type) {
	margin-bottom: 15px;
}

.chapter-description:not(:last-of-type) {
	padding-bottom: 20px;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--border-color);
}

.abt-user {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.abt-user .abt-usr-image {
	width: 50px;
	height: 50px;
	margin-right: 20px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.abt-user .abt-usr-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.abt-user .user-info .review-rating {
	margin-top: 10px;
	display: flex;
	align-items: center;
	line-height: 1;
}

.abt-user .user-info .review-rating .review-star {
	margin-top: 0;
	margin-left: 15px;
	margin-right: 10px;
}

.abt-user .review-rating {
	color: var(--theme-color);
}

.abt-user h4 {
	font-size: 16px;
}

.product-review ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	border: 1px solid var(--border-color);
	padding: 15px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}

.product-review ul li {
	display: flex;
	align-items: center;
	line-height: 1;
}

.product-review ul li:not(:last-of-type) {
	margin-right: 15px;
	padding-right: 10px;
	border-right: 1px solid var(--border-color);
}

.product-review ul li svg {
	width: 15px;
	height: 15px;
	margin-right: 15px;
}

.product-review ul li svg path {
	fill: #8A94A6;
}

.user-review-content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.review-rating.add-rating {
	display: flex;
	align-items: center;
	line-height: 1;
}

.review-rating.add-rating .review-star {
	margin-top: 0;
	margin-left: 15px;
}

.review-rating.add-rating span:not(:last-of-type) {
	margin-right: 10px;
}

.pdp-summery {
	border: 1px solid var(--border-color);
	padding: 20px 0;
	border-radius: 15px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-ms-border-radius: 15px;
	-o-border-radius: 15px;
}

.pdp-summery .badge {
	background: var(--theme-color);
	color: var(--badge-text-if-light) !important;
}

.pdp-summery .wishlist-btn {
	background: var(--theme-color);
	height: 42px;
	width: 42px;
	margin-left: 15px;
}

.pdp-summery .wishlist-btn.active {
	background: var(--second-color);
}

.pdp-summery .wishlist-btn svg path {
	fill: var(--white);
}

.pdp-top-content {
	margin-top: -10px;
	margin-bottom: 20px;
}

.pdp-top-content>* {
	margin-top: 10px;
}

.pdp-summery-top {
	padding: 0 15px;

}

.pdp-summery .abt-user {
	margin: 20px 0 20px;
}

.course-benefits li {
	display: flex;
	align-items: center;
	color: var(--grey-color);
}

.course-benefits li:not(:last-of-type) {
	margin-bottom: 10px;
}

.course-benefits li svg {
	width: 20px;
	height: 20px;
	margin-right: 15px;
}

.pdp-summery-center {
	border-top: 1px solid var(--border-color);
	padding: 20px 15px 0;
	margin-bottom: 20px;
}

.pdp-summery-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid var(--border-color);
	padding: 20px 15px 0;
}


.aticle-content .aticle-media {
	margin-bottom: 40px;
}

.aticle-content p+.subtitle {
	margin-top: 20px;
}

.subtitle {
	margin-bottom: 26px;
}

.aticle-content .row {
	margin-bottom: 50px;
}

.modal {
	position: fixed;
	background: rgb(42 42 42 / 79%);
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	z-index: 5;
	padding: 30px 30px !important;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	overflow: auto;
	transition: all ease-in-out 0.5s;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	-ms-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
}

.modal.show,
.modal.in {
	opacity: 1;
	visibility: visible;
}

.modal-content {
	background: var(--white);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.modal-header {
	padding: 15px 45px 15px 15px;
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 20px;
	position: relative;
}

.modal-dialog-inner {
	max-width: 800px;
	width: 100%;
}

.modal-dialog-inner.lg-dialog {
	max-width: 1200px;
}

.modal-body {
	padding: 15px;
}

.modal-body form label {
	margin-bottom: 10px;
	display: block;
}

.modal-body form .input-wrapper:not(:last-of-type) {
	margin-bottom: 20px;
}

.modal-body form .form-footer {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.modal .close {
	position: absolute;
	top: 20px;
	left: auto;
	right: 15px;
	border: 0;
	background: transparent;
}

.modal .close svg {
	width: 20px;
	height: 20px;
	cursor: pointer;
}

.modal .close svg path {
	fill: var(--black);
}

.rate {
	display: inline-flex;
	align-items: center;
	flex-direction: row-reverse;
}

.rate input {
	position: absolute;
	opacity: 0;
	visibility: hidden;
	display: none;
}

.rate label {
	width: 1.125rem;
	height: 1.125rem;
	position: relative;
	cursor: pointer;
	transition: .3s;
}

.rate label:not(:first-child) {
	margin-right: .375rem;
	margin-bottom: 0;
}

.rate label::before {
	position: absolute;
	content: url("data:image/svg+xml,%3Csvg t='1584099080940' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='9773' width='18px' height='18px' fill='%23A9B1BC' %3E%3Cpath d='M686.153143 573.732571l174.884571-169.691429-241.152-35.401143-108.032-218.258286-108.032 218.258286-241.152 35.401143 174.884571 169.691429-41.691429 240.566857 215.990857-113.737143 215.405714 113.737143zM987.282286 369.737143q0 12.580571-14.848 27.428571l-207.433143 202.313143 49.152 285.696q0.585143 4.022857 0.585143 11.410286 0 28.598857-23.405714 28.598857-10.825143 0-22.820571-6.875429l-256.585143-134.875429-256.585143 134.875429q-12.580571 6.875429-22.820571 6.875429-11.995429 0-17.993143-8.265143t-5.997714-20.260571q0-3.437714 1.170286-11.410286l49.152-285.696-208.018286-202.313143q-14.262857-15.433143-14.262857-27.428571 0-21.138286 32.036571-26.258286l286.866286-41.691429 128.585143-260.022857q10.825143-23.405714 28.013714-23.405714t28.013714 23.405714l128.585143 260.022857 286.866286 41.691429q32.036571 5.12 32.036571 26.258286z' p-id='9774' %3E%3C/path%3E%3C/svg %3E");
	transition: .3s;
}

.rate label::after {
	position: absolute;
	z-index: 1;
	content: url("data:image/svg+xml,%3Csvg t='1584099189586' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='10117' fill='%23fcbb42' width='18px' height='18px'%3E%3Cpath d='M987.282286 369.737143q0 12.580571-14.848 27.428571l-207.433143 202.313143 49.152 285.696q0.585143 4.022857 0.585143 11.410286 0 11.995429-5.997714 20.260571t-17.408 8.265143q-10.825143 0-22.820571-6.875429l-256.585143-134.875429-256.585143 134.875429q-12.580571 6.875429-22.820571 6.875429-11.995429 0-17.993143-8.265143t-5.997714-20.260571q0-3.437714 1.170286-11.410286l49.152-285.696-208.018286-202.313143q-14.262857-15.433143-14.262857-27.428571 0-21.138286 32.036571-26.258286l286.866286-41.691429 128.585143-260.022857q10.825143-23.405714 28.013714-23.405714t28.013714 23.405714l128.585143 260.022857 286.866286 41.691429q32.036571 5.12 32.036571 26.258286z' p-id='10118'%3E%3C/path%3E%3C/svg%3E");
	opacity: 0;
	transition: .3s;
}

.rate input:checked~label::after {
	opacity: 1;
}

.rate input:checked~label::before {
	opacity: 0;
}


.chapter-topics {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.chapter-topics .checkbox-custom {
	flex: 1;
	padding-right: 10px;
}

.chapter-topics:not(:last-of-type) {
	margin-bottom: 10px;
}

.chapter-head {
	padding: 15px 0;
	background: #F9F9F9;
	margin-bottom: 60px;
}

.chapter-head .back-btn span svg path {
	fill: var(--black);
}

.chapter-head-content {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
}

.chapter-head-content .chapter-title b {
	font-weight: bold;
}


.progress {
	height: 10px;
	overflow: hidden;
	background-color: #eeee;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
}

.progress-bar {
	float: left;
	width: 0;
	height: 100%;
	font-size: 12px;
	line-height: 20px;
	color: #fff;
	text-align: center;
	background-color: var(--theme-color);
	-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
	box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
	-webkit-transition: width .6s ease;
	-o-transition: width .6s ease;
	transition: width .6s ease;
}

.course-progress {
	max-width: 23%;
	width: 100%;
}

.chapter-head-content .chapter-head-block.pagination {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.chapter-head-content .chapter-head-block .download-btn .btn {
	padding: 10px 15px;
	margin-right: 15px;
}

.progress-labels {
	margin-bottom: 10px;
}

.chapter-head-content .chapter-head-block {
	padding: 0 15px;
	margin-bottom: 15px;
}

.chapter-head-content {
	margin: 0 -15px -15px;
}

.chapter-pagination ul {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.chapter-pagination ul li a {
	display: flex;
	align-items: center;
}

.chapter-pagination ul li:not(:last-of-type) {
	padding-right: 10px;
	border-right: 1px solid var(--border-color);
	margin-right: 10px;
}

.chapter-pagination ul li svg {
	width: 17px;
	height: 17px;
}

.chapter-pagination ul li .previous-course svg {
	margin-right: 15px;
}

.chapter-pagination ul li .next-course svg {
	transform: rotate(180deg);
	margin-left: 15px;
}

.user-profile {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.user-profile .user-image {
	width: 100px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	overflow: hidden;
}

.user-profile .user-image img {
	width: 100%;
	object-fit: cover;
}

.user-profile .user-info-main {
	margin-left: 20px;
}

.user-tags {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 15px;
	color: var(--grey-color);
}

.user-tags li:not(:last-of-type) {
	margin-right: 15px;
}

.tutor-info-wrap {
	padding: 20px;
	background: var(--white);
	box-shadow: 0px 18px 42px rgb(171 171 171 / 13%);
	border-radius: 12px;
	margin-top: -50px;
	position: relative;
	z-index: 1;
}

.review-rating {
	display: flex;
	align-items: center;
	line-height: 1;
}

.review-rating .review-star {
	margin-top: 0;
	margin-left: 15px;
}

.tutor-info-wrap ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
	justify-content: space-between;
}

.tutor-info-wrap li {
	padding: 0 15px;
	text-align: center;
}

.tutor-info-wrap li h4 {
	margin-bottom: 15px;
}

.tutor-info-wrap .review-rating {
	justify-content: center;
}

.tutor-info-wrap .review-rating .review-star {
	margin-right: 10px;
}

.common-banner-section.tutor-banner {
	padding-bottom: 100px;
}

.featured-courses {
	border: 1px solid var(--border-color);
	border-radius: 12px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	-ms-border-radius: 12px;
	-o-border-radius: 12px;
}

.box-title {
	padding: 15px;
	border-bottom: 1px solid var(--border-color);
	margin-bottom: 15px;
}

.featured-courses .course-list {
	padding: 0 15px 15px;
}

.featured-courses .course-list .course-widget-inner {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	height: auto;
}

.featured-courses .course-list .course-media {
	width: 150px;
}

.featured-courses .course-list .course-caption {
	width: calc(100% - 150px);
	padding: 14px;
	height: auto;
}

.featured-courses .course-list .course-widget-inner .course-media a {
	padding-top: 100%;
}

.featured-courses .course-list .price-addtocart {
	margin-top: 10px;
}

.featured-courses .course-list .course-caption h6 {
	font-size: 16px;
}

.featured-courses .course-list .course-caption .review-rating {
	margin-top: 15px;
}

.featured-courses .course-list .review-rating .review-star {
	margin-right: 10px;
}

.course-media .badge {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 1;
}

.course-list .row {
	margin-bottom: -15px;
}

.course-list .course-widget {
	margin-bottom: 15px;
}

.wishlist-btn.active,
.wishlist-btn.remove_from_wishlist {
	background: var(--theme-color);
}

.wishlist-btn.active svg path,
.wishlist-btn.remove_from_wishlist svg path {
	fill: var(--white);
}

.product-search-drop-dwn .select {
	-webkit-tap-highlight-color: transparent;
	background-color: transparent;
	border: solid 1px var(--border-color);
	cursor: pointer;
	display: block;
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	outline: none;
	position: relative;
	text-align: left !important;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	padding: 14px 35px 14px 15px;
	width: 100%;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
}

.product-search-drop-dwn .select::after {
	content: '';
	border-bottom: 2px solid var(--theme-color);
	border-right: 2px solid var(--theme-color);
	display: block;
	height: 8px;
	width: 8px;
	margin-top: -5px;
	pointer-events: none;
	position: absolute;
	right: 14px;
	top: 50%;
	-webkit-transform-origin: 66% 66%;
	-ms-transform-origin: 66% 66%;
	transform-origin: 66% 66%;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}

.product-search-drop-dwn .select.active::after {
	-webkit-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.product-search-drop-dwn .search-tags {
	background-color: var(--white);
	box-shadow: 0 0 0 1px rgb(68 68 68 / 11%);
	box-sizing: border-box;
	margin-top: 4px;
	padding: 0;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 9999999;
	width: 100% !important;
	display: none;
}

.product-search-drop-dwn .search-tags li {
	font-size: 13px;
	line-height: 1;
	padding: 10px 15px;

}

.product-search-drop-dwn {
	position: relative;
	width: 100%;
}

.product-search-bar form .row {
	margin-top: -15px;
}

.product-search-bar form .row [class*="col-"] {
	margin-top: 15px;
}

.product-search-bar .input-wrapper>label {
	display: block;
	margin-bottom: 15px;
}

.product-search-bar input[type="search"] {
	padding: 10px 15px;
	color: var(--black);

}

.product-search-bar input[type="search"]::placeholder {
	color: var(--black);
	opacity: 1;

}

.product-search-bar input[type="search"]:-moz-placeholder {
	color: var(--black);
}

.product-search-bar input[type="search"]::-webkit-input-placeholder {
	color: var(--black);
}

.product-search-bar form .btn {
	height: 100%;
	width: 44px;
	padding: 0;
	margin-left: 20px;
}

.product-search-bar form .btn svg {
	width: 20px;
	height: 20px;
	margin: auto;
}

.product-search-bar {
	padding: 20px;
	background: var(--white);
	box-shadow: 0px 18px 42px rgb(171 171 171 / 13%);
	border-radius: 12px;
	margin-top: -60px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	-ms-border-radius: 12px;
	-o-border-radius: 12px;
	position: relative;
	z-index: 1;
}

.product-widget>.pro-itm>.acnav-label {
	font-weight: 600;
	padding: 12px 12px;
	text-transform: uppercase;
	display: flex;
	border-bottom: 1px solid var(--border-color);
	justify-content: space-between;
	align-items: center;
}

.product-widget>.pro-itm {
	border: 1px solid var(--border-color);
}

.product-widget>.pro-itm>.pro-itm-inner {
	padding: 12px 12px;
}

.product-widget>.pro-itm>.pro-itm-inner li:not(:last-of-type) {
	margin-bottom: 10px;
}

.product-widget:not(:last-of-type) {
	margin-bottom: 20px;
}

.product-list-row {
	margin-top: 50px;
}

.product-filter-right-column .row {
	margin: 0 -10px;
}

.product-filter-right-column .course-widget {
	padding: 0 10px 20px;
}

.product-filter-right-column .course-widget-inner .course-bottom .course-detail p {
	font-size: 10px;
}

.flex-input-wrap {
	display: flex;
}

table {
	border: 0;
	border-collapse: collapse;
	margin: 0;
	padding: 0;
	width: 100%;
	table-layout: auto;
}

table tr {
	padding: 20px 0 0;
	border-bottom: 1px solid var(--border-color);
	display: block;
}

table tr:last-of-type {
	border-bottom: 0;
}

table tr th,
table tr td {
	text-align: left;
	padding-left: 10px;
	padding-right: 10px;
	font-size: 14px;
	font-weight: 500;
}

table tr th {
	padding-top: 0;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--border-color);
	font-weight: 700;
	text-transform: uppercase;
}

table tr th:first-child,
table tr td:first-child {
	padding-left: 0;
}

table tr td:first-child a {
	vertical-align: middle;
}

table tr td {
	display: block;
	text-align: center;
	padding: 0 0 20px;
}

.order-history-tbl tr td[data-label="Name"] {
	max-width: 140px;
}

.order-history-tbl tr td[data-label="Product"] {
	max-width: 90px;
}

.order-history-tbl tr td[data-label="quantity"] {
	width: 113px;
	padding: 0;
}

@media (min-width: 992px) {

	.cart-tble tr th:first-child,
	.cart-tble tr td:first-child {
		width: 90px;
	}

	.cart-tble tr th:nth-child(2),
	.cart-tble tr td:nth-child(2) {
		width: 485px;
	}

	.cart-tble tr th:nth-child(4),
	.cart-tble tr td:nth-child(4) {
		width: 116px;
		padding-right: 9px;
	}
}

@media (max-width: 767px) {
	table tr td::before {
		content: attr(data-label);
		display: block;
		text-align: center;
		padding-bottom: 10px;
		font-weight: 600;
		text-transform: uppercase;
		font-size: 14px;
	}

	table thead {
		border: none;
		clip: rect(0 0 0 0);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
		width: 1px;
		display: none;
	}

	.product-option {
		justify-content: center;
	}

	table .qty-spinner {
		justify-content: center;
		margin: 0 auto;
	}

	.remove-btn {
		height: 14px;
		width: 14px;
	}

	.order-history-tbl tr td[data-label="quantity"],
	.order-history-tbl tr td[data-label="Name"],
	.order-history-tbl tr td[data-label="Product"] {
		max-width: 100%;
		width: 100%;
	}
}



@media (min-width: 768px) {
	table tr:first-child {
		border-top: none;
	}

	table tr {
		padding: 0;
		display: table-row;
	}

	table tr td {
		padding: 20px 10px 20px;
		display: table-cell;
		text-align: left;
	}

	table tr th:last-child,
	table tr td:last-child {
		text-align: right;
		padding-right: 0;
	}

	table tr th:nth-child(5),
	table tr td:nth-child(5) {
		text-align: right;
	}
}

.cart-tble-list .cart-item .cart-item-inner {
	border: 1px solid #DADADA;
	background: var(--white);
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	display: flex;
}

.cart-tble-list .cart-item:not(:last-of-type) {
	margin-bottom: 20px;
}

.cart-item-inner .product-image {
	max-width: 150px;
	width: 100%;
	background: var(--second-color);
	padding: 15px 10px 0;
	display: flex;
	align-items: flex-end;
	border-radius: 5px 0px 0px 5px;
	-webkit-border-radius: 5px 0px 0px 5px;
	-moz-border-radius: 5px 0px 0px 5px;
	-ms-border-radius: 5px 0px 0px 5px;
	-o-border-radius: 5px 0px 0px 5px;
}

.cart-item-inner .product-image a {
	display: block;
}

.product-cart-summry {
	padding: 15px 20px;
	flex: 1;
	display: flex;
	align-items: center;
	color: var(--black);
}

.product-cart-summry .name {
	flex: 1;
}

.product-cart-summry>div:not(:first-of-type) {
	padding-left: 15px;
}

.product-cart-summry .delete-icon {
	vertical-align: middle;
	max-width: 20px;
	width: 20px;
	height: 20px;
	display: inline-block;
}

.product-cart-summry .delete-icon svg {
	max-width: 20px;
	width: 100%;
	height: 20px;
}

.product-cart-summry .delete-icon svg path {
	fill: #d12525;
}

.product-cart-summry .cart-price {
	font-size: 16px;
}

.cart-summery {
	border: 1px solid #DADADA;
	padding: 20px;
}

.cart-summery ul li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.cart-summery .btn {
	padding: 15px 10px;
	display: block;
	width: 100%;
	margin-top: 20px;

}

.register-page .section-title {
	margin-bottom: 50px;
}

.register-page .form-wrapper form {
	border: 1px solid var(--border-color);
}

.form-container {
	padding: 20px;
	border-bottom: 1px solid var(--border-color);
}

.login-form .form-heading h4 {
	margin-bottom: 0;
	font-weight: 600;
}

.login-form .submit-btn {
	margin: 0 0 0 15px;
}

.forgot-pass {
	color: red;
	text-decoration: underline;
	font-size: 14px;
}

.reg-lbl {
	font-size: 14px;
	margin-right: 10px;
}

.form-container:last-child {
	border-bottom: 0;
}

.file-upload.btn {
	width: 100%;
	display: flex;
	margin-bottom: 0;
	height: 53px;
}

.file-upload.btn svg {
	margin-right: 15px;
	margin-left: 0;
}

.upload-btn-wrapper {
	position: relative;
	display: inline-block;
}

.upload-btn-wrapper input[type=file] {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	bottom: 0;
}

.modal-body .upload-btn-wrapper {
	display: block;
}

.moda-form-container:not(:last-of-type) {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--border-color);
}

.form-container-title {
	margin-bottom: 26px;
}

.moovie_controls input[type=range] {
	border: 0;
	padding: 0;
}

.moovie_controls {
	align-items: center;
}

.moovie_controls {
	background-color: var(--theme-color) !important;
}

.poster_button {
	background-color: var(--theme-color) !important;
}

button.player__button:hover {
	background-color: transparent !important;
}

.moovie_controls input[type=range]::-webkit-slider-thumb {
	background: var(--second-color) !important;
}

.moovie_controls input[type=range]::-moz-range-thumb {
	background: var(--second-color) !important;
}

.poster_center {
	opacity: 1 !important;
}

.payment-method {
	padding: 20px 30px;
	box-shadow: 1px 0px 15.4815px rgb(0 0 0 / 8%);
	border-radius: 10px;
	position: relative;
}

.payment-method:not(:last-of-type) {
	margin-bottom: 30px;
}

.payment-title {
	margin-bottom: 20px;
}

.payment-image {
	flex: 1;
	justify-content: flex-end;
}

.payment-image img {
	max-width: 50px;
	width: 100%;
}

.payment-image img:not(:last-of-type) {
	margin-right: 5px;
}

.payment-method-form .form-group:last-child {
	margin-bottom: 0;
}

.payment-method-form {
	margin-top: 30px;
}

.payment-method .payment-image.extra-size img {
	max-width: 90px;
}

.mini-cart-header {
	margin-bottom: 15px;
}

.mini-cart-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	border: 1px solid var(--border-color);
	background: var(--white);
}

.mini-cart-item:not(:last-of-type) {
	margin-bottom: 15px;
}

.mini-cart-image {
	width: 80px;
	background: var(--second-color);
}

.mini-cart-image a {
	display: block;
	position: relative;
	padding-top: 88%;
}

.mini-cart-image a img {
	top: 0;
	width: 100%;
	object-fit: scale-down;
	position: absolute;
	left: 0;
	right: 0;
	height: 100%;
}

.mini-cart-details {
	flex: 1;
	width: 100%;
	padding: 10px 10px 10px 15px;
}

.mini-cart-title {
	margin-bottom: 8px;
	font-weight: 600;
}

.checkout-page .pvarprice {
	margin-top: 10px;
}

.mini-cart-footer {
	padding: 20px 0 0;
}

.mini-cart-footer-total-row {
	font-size: 16px;
	line-height: 1.2;
	margin: 0 0 15px;
	background: #ECECEC;
	padding: 15px 0;
}

.mini-cart-footer .u-save {
	font-weight: 500;
	font-size: 17px;
	line-height: 22px;
	display: flex;
	color: var(--theme-color);
	margin-bottom: 30px;
}

.mini-cart-footer .checkout-btn {
	width: 100%;
	max-width: 300px;
	margin: 0 auto 20px;
	display: flex;
	padding: 12px 30px;
}

.mini-cart-title a {
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.remove_item svg {
	width: 15px;
	height: 15px;
}

.remove_item svg path {
	fill: #d12525;
}

.mini-cart-footer-total-row div {
	padding: 0 10px;
}

.mini-cart-header h4,
.coupon-form h4 {
	font-weight: normal;
}

.mini-cart {
	border: 1px solid var(--border-color);
}

.mini-cart .mini-cart-has-item {
	padding: 0 15px 0;
}

.mini-cart .mini-cart-header {
	border-bottom: 1px solid var(--border-color);
	padding: 10px;
}

.checkout-cartcount {
	font-size: 13px;
	margin-left: 10px;
}

.coupon-form {
	border: 1px solid var(--border-color);
	margin-bottom: 30px;
}

.coupon-form .coupon-header {
	border-bottom: 1px solid var(--border-color);
	padding: 10px;
}

.coupon-body {
	padding: 15px;
}

.coupon-body form .btn-wrapper {
	margin-top: 15px;
	text-align: right;
}

.offer-announcement {
	padding: 15px;
	background: var(--second-color);
	color: var(--on-second-color);
	border-radius: 15px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-ms-border-radius: 15px;
	-o-border-radius: 15px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.offer-badge {
	background: var(--theme-color);
	padding: 15px;
	color: var(--on-theme-color);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	display: inline-block;
}

.offer-desk {
	flex: 1;
	padding-left: 15px;
}

.offer-desk p a {
	text-decoration: underline;
	font-weight: bold;
	color: inherit;
}


.modal.custom_fire_modal {
	position: fixed;
	background: rgb(42 42 42 / 79%);
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	z-index: 5;
	padding: 30px 30px !important;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	overflow: auto;
	transition: all ease-in-out 0.5s;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	-ms-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
}

.modal.custom_fire_modal.in {
	opacity: 1;
	visibility: visible;
}

.modal.custom_fire_modal .modal-content {
	background: var(--white);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.modal-header {
	padding: 15px 45px 15px 15px;
	border-bottom: 1px solid #e5e5e5;
	position: relative;
}

.modal-header .btn-close {
	position: absolute;
	top: 50%;
	left: auto;
	right: 15px;
	transform: translateY(-50%);
	background: transparent;
	border: 0;
	font-size: 25px;
}

.modal-dialog {
	position: relative;
}

.modal-dialog-centered {
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-header .close svg {
	width: 20px;
	height: 20px;
	cursor: pointer;
}

.modal-header .close svg path {
	fill: var(--black);
}

.modal-footer {
	display: flex;
	flex-wrap: wrap;
	flex-shrink: 0;
	align-items: center;
	justify-content: flex-end;
	padding: .75rem;
	border-top: 1px solid #dee2e6;
	border-bottom-right-radius: calc(.3rem - 1px);
	border-bottom-left-radius: calc(.3rem - 1px);
}

.firemodal_btn {
	text-align: center;
	padding: 13px 25px;
	font-family: var(--first-font);
	color: var(--black);
	background-color: var(--second-color);
	box-shadow: none;
	appearance: none;
	outline: none;
	border: 1px solid var(--second-color);
	position: relative;
	border-radius: 0;

	font-weight: 600;
	font-size: 14px;
	line-height: 1;
	border-radius: 5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	-webkit-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	-ms-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
	transition: all ease-in-out 0.5s;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: relative;
	z-index: 1;
}

.firemodal_btn.btn-danger {
	background: var(--theme-color);
	border-color: var(--theme-color);
	color: var(--badge-text-if-light) !important;
}

.firemodal_btn.btn-primary {
	color: var(--badge-text-if-light) !important;
}

.modal-footer .firemodal_btn:not(:last-of-type) {
	margin-right: 15px;
}

body.modal-open {
	overflow: hidden;
}


.alert-notify {
	display: flex !important;
	max-width: 400px;
	width: auto;
	padding: 15px 45px 15px 15px;
	box-shadow: 0 1rem 3rem rgba(31, 45, 61, 0.125);
	border-radius: 10px;
}

.alert-notify .close {
	top: 50% !important;
	transform: translateY(-50%);
	background: transparent;
	border: 0;
	font-size: 20px;
}

.alert-notify.alert-success {
	color: #155724;
	background-color: #d4edda;
	border-color: #c3e6cb;
}

.alert-notify.alert-danger {
	color: #721c24;
	background-color: #f8d7da;
	border-color: #f5c6cb;
}

.alert-content {
	margin-right: 15px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.d-none {
	display: none !important;
}

.wishlist-btn.wishlist_btn.custom_wish {
	background: var(--second-color);
}

.wishlist-btn.wishlist_btn {
	background: var(--theme-color);
}

.wishlist-btn.wishlist_btn svg path {
	fill: var(--white);
}

.course-download-card {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	padding: 15px;
	border: 1px solid var(--border-color);
	border-radius: 5px;
}

.course-download-card .corse-caption {
	flex: 1;
	padding-left: 25px;
}

.fil-title {
	border: 1px solid var(--border-color);
}

.corse-caption-top {
	border-bottom: 1px solid var(--border-color);
	margin-bottom: 15px;
	display: flex;
	padding: 10px;
	align-items: center;
}

.corse-caption-top img {
	margin-right: 15px;
}

.fil-title .inner-cards {
	padding: 0 15px 15px;
}

.course-download-card:not(:last-of-type) {
	margin-bottom: 15px;
}

.course-review-main {
	border: 1px solid var(--border-color);
	box-sizing: border-box;
	border-radius: 12px;
	padding: 30px 15px;
	margin-top: 20px;
}

.course-review-profile {
	display: flex;
	align-items: center;
}

.course-review-profile .course-review-profile-img {
	max-width: 50px;
	width: 100%;
}

.course-reviews {
	padding: 15px;
	border: 1px solid var(--border-color);
}

.course-reviews-wrap {
	margin-top: 25px;
}

.course-reviews-wrap .course-reviews:not(:last-of-type) {
	margin-bottom: 25px;
}

.course-review-profile {
	display: flex;
	align-items: center;
	margin-top: 25px;
}

.course-review-profile .course-review-profile-img {
	max-width: 60px;
	width: 100%;
}

.course-review-profile .user-info {
	flex: 1;
	padding-left: 15px;
}

.course-review-profile .user-info h4 {
	margin-bottom: 10px;
}

.courser-top-content {
	margin-bottom: 25px;
}

.courser-top-content .review-star .star-icon svg path {
	fill: var(--white);
}

.courser-top-content .course-review-star i {
	color: var(--grey-color);
}

.courser-top-content .course-review-star i.text-warning {
	color: #eb8a2f;
}

.course-review-profile .user-info span {
	font-size: 13px;
}

.no-data p {
	font-size: 20px;
	font-weight: 600;
}

#card-element {
	padding: 15px 20px;
	border: 1px solid var(--border-color);
	margin-bottom: 15px;
}

.tab-content h6 {
	margin: 0 !important;
}

.tab-content h6 ul {
	padding: 0 !important;
}

.tab-content h6 ul li {
	padding: 0 !important;
}

.tab-content h6 ul li:not(:last-of-type) {
	margin-bottom: 10px;
}

.empty-image {
	max-width: 250px;
	width: 100%;
	margin: 0 auto 40px;
}

.empty-detail-wrap {
	text-align: center;
}

.empty-content .section-title {
	margin-bottom: 26px;
}

.empty-content .btn {
	margin-top: 26px;
}

.active-language.active {
	color: var(--black);
}

.more-from-tutor .section-title h2 br {
	display: none;
}

.more-from-tutor .section-title h2 {
	max-width: 600px;
}

@media (hover: hover) {
	.header-style-one .menu-right li a:hover {
		background: var(--theme-color);
	}

	.header-style-one .menu-right li a:hover svg path {
		fill: var(--icon-hover-if-light) !important;
	}

	.header-style-one .menu-right li .menu-dropdown ul>li a:hover {
		color: var(--black);
	}

	.header-style-one .menu-right li .menu-dropdown ul>li a:hover svg path {
		fill: var(--black);
	}

	.search-form .btn:hover {
		background: var(--theme-color);
		border-color: var(--theme-color);
	}

	.search-form .btn:hover svg path {
		fill: var(--on-theme-color);
	}

	.wishlist-btn:hover {
		background: var(--theme-color);
	}

	.wishlist-btn:hover svg path {
		fill: var(--white);
	}


	.footer-widget .share-links a:hover {
		background: var(--second-color);
	}

	ul.share-links li a i {
		color: var(--footer-icon-color-if-light) !important;
	}

	.footer-widget .share-links a:hover svg path {
		fill: var(--black);
	}

	.search-form-wrapper .btn:hover svg path {
		fill: var(--search-icon-color) !important;
	}

	.rate label:hover::after {
		transform: scale(1.2);
	}

	.modal .close-button:hover svg path {
		fill: var(--theme-color);
	}

	.btn-secondary:hover,
	.btn-secondary:focus {
		background: transparent;
		color: var(--black);
	}

	.pdp-summery .wishlist-btn:hover,
	.pdp-summery .wishlist-btn:focus {
		background: var(--second-color);
	}

	.chapter-pagination ul li a:hover {
		color: var(--theme-color);
	}

	.chapter-pagination ul li a:hover svg path {
		fill: var(--theme-color);
	}

}

.description {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Header condicional: cores claras = fundo colorido; cores escuras = fundo branco */
.site-header {
	background-color: var(--header-bg) !important;
}

/* Links do menu com cor condicional */
.main-navigationbar a,
.main-navigationbar .menu-lnk a,
.main-navigationbar .menu-items-col a {
	color: var(--header-text-color) !important;
}

.main-navigationbar a:hover,
.main-navigationbar .menu-lnk a:hover,
.main-navigationbar .menu-items-col a:hover {
	color: var(--theme-color-hover) !important;
}

/* Ícones do header também com cor condicional */
.site-header svg,
.site-header i,
.header-action-icon,
.site-header .badge {
	color: var(--header-icon-color) !important;
}

/* Ícones SVG do header (apenas na barra de navegação, não no overlay) */
.site-header .main-navigationbar svg path,
.site-header .main-navigationbar svg circle {
	fill: var(--header-icon-color) !important;
}

/* Bordas nos botões de ação do header */
/* Lupa e Carrinho: circulares + borda fina */
.site-header .search-header>a,
.site-header .cart-header>a {
	border: 1px solid var(--border-color-if-light) !important;
	border-radius: 50% !important;
	padding: 8px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
}

/* Entrar e Português: retangulares + borda normal */
.site-header .profile-header>a,
.site-header .language-header>a {
	border: 1px solid var(--border-color-if-light) !important;
	border-radius: 8px !important;
	padding: 8px 12px !important;
	display: inline-flex !important;
	align-items: center !important;
	gap: 6px !important;
}

/* Hover nos ícones da lupa e carrinho: escurecer */
.site-header .search-header>a:hover svg path,
.site-header .search-header>a:hover svg circle,
.site-header .cart-header>a:hover svg path,
.site-header .cart-header>a:hover svg circle {
	fill: var(--icon-hover-if-light) !important;
}

/* Sombra ESCURA em textos CLAROS específicos (apenas se cor primária for clara) */
.price {
	text-shadow: var(--text-shadow-if-light) !important;
}

/* Bordas condicionais (cinza se cor clara) */
.site-header {
	border-bottom: 1px solid var(--border-color-if-light) !important;
}

/* Badges com texto condicional (preto se cor clara) */
.site-header .badge,
.cart-count-badge,
.badge-primary,
.category-badge,
.course-category-badge,
.badge.bg-primary {
	color: var(--badge-text-if-light) !important;
}

/* Contador do carrinho: cinza em cores claras */
.header-style-one .count {
	background: var(--icon-dark-if-light) !important;
	border-color: var(--icon-dark-if-light) !important;
}

/* Tabs/Pills com sombra condicional */
.nav-tabs .nav-link,
.nav-pills .nav-link,
.course-nav-tab,
.nav-tabs .nav-link.active,
.nav-pills .nav-link.active {
	text-shadow: var(--text-shadow-if-light) !important;
}

/* Ícones de tabs também com sombra */
.nav-tabs .nav-link svg,
.nav-pills .nav-link svg,
.course-nav-tab svg {
	filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.4));
}

/* Wishlist icon condicional (escuro se cor clara) */
.wishlist-icon,
.wishlist-btn svg,
.add-to-wishlist svg,
.wishlist-heart {
	color: var(--icon-dark-if-light) !important;
	fill: var(--icon-dark-if-light) !important;
}

/* Títulos de seção coloridos com sombra */
.register-page .section-title h2 b,
.home-banner-content-inner h2 b,
.knowledge-section h2 b,
.more-from-tutor h2 b {
	text-shadow: var(--text-shadow-if-light) !important;
}

/* Inputs de formulário com cor de texto escurecida */
.form-control,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="date"],
textarea,
select {
	color: var(--input-text-color) !important;
}

/* Mobile menu user section */
.mobile-user-section {
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	padding-top: 20px !important;
	padding-bottom: 20px !important;
	margin-top: 15px !important;
	margin-bottom: 20px !important;
	list-style: none;
}

.mobile-user-header {
	display: flex;
	align-items: center;
	padding: 15px;
}

.mobile-user-header .user-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
	flex-shrink: 0;
}

.mobile-user-header .user-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mobile-user-header .user-info {
	display: flex;
	flex-direction: column;
}

.mobile-user-header .user-info strong {
	font-size: 16px;
	color: var(--heading-color);
	margin-bottom: 5px;
	font-weight: 600;
}

.mobile-user-header .user-info span {
	font-size: 13px;
	color: var(--paragraph-color);
	opacity: 0.7;
}

/* Mobile menu icons */
.mobile-menu-bar .menu-lnk a {
	display: flex;
	align-items: center;
}

/* Mobile user section nested links */
.mobile-user-section ul li {
	list-style: none;
}

.mobile-user-section ul li a {
	padding: 12px 15px;
	display: flex;
	align-items: center;
}

/* Mobile menu icons */
.mobile-menu-bar .menu-lnk a svg {
	width: 18px;
	height: 18px;
	margin-right: 10px;
	vertical-align: middle;
}

/* Override checkbox color for light themes */
.checkbox-custom label:before {
	border: 1px solid var(--checkbox-color) !important;
}

.checkbox-custom input:checked+label:before {
	background-color: var(--checkbox-color) !important;
	border-color: var(--checkbox-color) !important;
}

/* Tutor Card Layout Styles - Theme 1 */
.tutor-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tutor-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    display: flex; /* Flex layout */
    gap: 30px;
    /* box-shadow removed for flatter look */
}

/* Left Sidebar: Avatar + Name */
.tutor-left-col {
    flex: 0 0 200px; /* Fixed width */
    max-width: 200px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Right Content: Stats + Divider + Bio */
.tutor-right-col {
    flex: 1;
    min-width: 0; /* Prevent flex overflow */
    display: flex;
    flex-direction: column;
}

.tutor-card-header {
    /* Not used in new structure but kept for safety */
    margin-bottom: 20px;
}

.tutor-avatar {
    margin-bottom: 15px;
}

.tutor-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 15px; /* Rounded square */
    object-fit: cover;
    border: 2px solid var(--theme-color);
}

.tutor-info-header h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--black);
    line-height: 1.3;
}

.tutor-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-bottom: 25px; /* Space for divider */
    margin-bottom: 25px; /* Space after divider */
    border-bottom: 1px solid #eee; /* Divider */
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    /* Removed background and border for cleaner look */
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    background: transparent;
    color: var(--theme-color);
}

.stat-icon svg, .stat-icon i {
    width: 20px;
    height: 20px;
    font-size: 20px;
}

.stat-content {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.stat-value {
    font-weight: 700;
    font-size: 16px;
    color: var(--black);
}

.stat-label {
    font-size: 12px;
    color: var(--grey-color);
}

.tutor-full-bio p {
    font-size: 15px;
    color: var(--grey-color);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 767px) {
    .tutor-card {
        padding: 20px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .tutor-left-col {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
    }
    
    .tutor-right-col {
        display: block;
    }

    .tutor-stats {
        justify-content: center;
        border-bottom: none; /* Already separated by left-col border */
        padding-bottom: 0;
        margin-bottom: 20px;
        gap: 20px;
        flex-wrap: wrap;
    }

    .tutor-full-bio p {
        text-align: center;
    }
}