/*--------------------CSS Structure-------------------

1. RESET/GLOBAL
		Font Face
		Global Styles
		
2. CUSTOM ELEMENTS
		Buttons
		Inputs
		Tooltip
		Tabs
		Modal
		Show Password
		Table
		
3. LAYOUT
		Header
			Top Header
			Inner Header
				Header Logo
				Search Panel
				Navbar
		Home Content
			Home Slider
			Home Sections
			Home Categories
			Home Carousel
			Section 2
			Section 3
		Page
			QA Categories
			Search
			Product
			User
			Invite
		Footer
		User Modal

------------------------------------------------*/

/* ============================== RESET/GLOBAL =========================== */

/*------------------------- Fonts Face -------------------------*/

@font-face {
	font-family: IRANSans;
	font-style: normal;
	font-weight: bold;
	src: url('../fonts/iransans/IRANSansWeb_Bold.eot');
	src: url('../fonts/iransans/IRANSansWeb_Bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/iransans/IRANSansWeb_Bold.woff2') format('woff2'),
		url('../fonts/iransans/IRANSansWeb_Bold.woff') format('woff'),
		url('../fonts/iransans/IRANSansWeb_Bold.ttf') format('truetype');
}

@font-face {
	font-family: IRANSans;
	font-style: normal;
	font-weight: 300;
	src: url('../fonts/iransans/IRANSansWeb_Light.eot');
	src: url('../fonts/iransans/IRANSansWeb_Light.eot?#iefix') format('embedded-opentype'),
		url('../fonts/iransans/IRANSansWeb_Light.woff2') format('woff2'),
		url('../fonts/iransans/IRANSansWeb_Light.woff') format('woff'),
		url('../fonts/iransans/IRANSansWeb_Light.ttf') format('truetype');
}

@font-face {
	font-family: IRANSans;
	font-style: normal;
	font-weight: normal;
	src: url('../fonts/iransans/IRANSansWeb.eot');
	src: url('../fonts/iransans/IRANSansWeb.eot?#iefix') format('embedded-opentype'),
		url('../fonts/iransans/IRANSansWeb.woff2') format('woff2'),
		url('../fonts/iransans/IRANSansWeb.woff') format('woff'),
		url('../fonts/iransans/IRANSansWeb.ttf') format('truetype');
}


/*------------------------- Global Styles -------------------------*/

body {
	font-size: 14px;
	font-weight: normal;
	font-family: 'IRANSans', sans-serif;
}

a:hover {
	text-decoration: none;
}


/* ============================== CUSTOM ELEMENTS =========================== */

/*------------------------- Buttons -------------------------*/

.btn-orng {
	color: #fff;
	background-color: #f68c47;
	border-color: #f68c47;
}

.btn-orng:hover {
	color: #fff;
	background-color: #e27b38;
	border-color: #dc7735;
}

.btn-orng:focus,
.btn-orng.focus {
	box-shadow: 0 0 0 0.2rem rgba(246, 140, 71, 0.6);
}

.btn-orng.disabled,
.btn-orng:disabled {
	color: #fff;
	background-color: #f68c47;
	border-color: #f68c47;
}

/*------------------------- Inputs -------------------------*/

textarea.form-control {
	resize: none;
}

.form-control:focus {
	border-color: rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0);
}

.form-checkbox {
	position: relative;
	display: inline-block;
}

.form-checkbox input {
	position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.form-checkbox label {
	padding-right: 21px;
	margin-bottom: 0;
	cursor: pointer;
}

.form-checkbox label::before,
.form-checkbox label::after {
	-webkit-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
}

.form-checkbox label::before {
	content: '';
	position: absolute;
	top: 0;
  right: 0;
	bottom: 0;
	margin: auto 0;
  height: 15px;
	width: 15px;
	border: 1px solid #000;
}

.form-checkbox label::after {
	content: '';
	width: 9px;
	height: 5px;
	position: absolute;
	top: 7px;
	right: 3px;
	border: 3px solid #05445b;
	border-top: none;
	border-right: none;
	background: transparent;
	opacity: 0;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

@media only screen and (max-width: 768px) {
	.form-checkbox label::after {
		top: 16px;
	}
}


.form-checkbox:hover label::before {
  background: rgba(21, 154, 197, 0.3);
}

.form-checkbox input:checked ~ label::before {
	background: #23adde;
}

.form-checkbox input:checked ~ label::after {
	opacity: 1;
}

.form-group .req {
	margin-right: 5px;
	color: #f60000;
}

/*------------------------- Tooltip -------------------------*/

.tooltip {
	font-family: 'IRANSans', sans-serif;
	font-size: 13px;
	font-weight: 300;
}

/*------------------------- Tab List -------------------------*/

.tabs-list {
	margin: 10px 0 25px;
	padding: 0;
	list-style: none;
}

.tabs-list li {
	position: relative;
	padding: 8px 5px;
	/*font-weight: bold;
	border: 1px solid #7c7d7b;*/
	border: 1px solid #e7ece3;
	text-align: center;
	cursor: pointer;
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.tabs-list li.active {
	color: #fff;
	cursor: default;
	border: 1px solid #21293e;
	background: #21293e;
}

.tabs-list .help-btn {
	color: #f68c47;
	font-size: 18px;
	line-height: 1;
	margin-right: 2px;
	display: none;
	vertical-align: middle;
	-webkit-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;

	-webkit-animation: help-btn-pulse 2s linear infinite;
	animation: help-btn-pulse 2s linear infinite;
}

.tabs-list .help-btn:hover {
	color: #f27829;
}

/* Pulse */
@-webkit-keyframes help-btn-pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes help-btn-pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

.tabs-list li.active .help-btn {
	display: inline-block;
}

.tabs-viewer {
	position: relative;
	background: #ececec;
}

.tabs-viewer .tabs {
	display: none;
	position: relative;
}

.tabs-viewer .inner {
	padding: 15px 12px;
}

.tabs-viewer .tabs:first-child {
	display: block;
}

/*------------------------- Modal -------------------------*/

.modal-dialog {
	max-width: 520px;
}

.modal-header {
	padding: 8px 15px;
}

.modal-header .close {
	padding: 20px 15px 15px;
	outline: none;
}

.modal-body p {
	line-height: 2;
	margin-bottom: 12px;
}

.modal-body p:last-child {
	margin-bottom: 0;
}

.modal-content {
	overflow: hidden;
}

/*------------------------- Show Password -------------------------*/

.show-pass {
	font-size: 16px;
	color: #000;
	opacity: 0.6;
	-webkit-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

.show-pass.is-show {
	color: #e82f2f;
	opacity: 0.8;
}

.show-pass:hover {
	opacity: 1;
	cursor: pointer;
}

/*------------------------- Table -------------------------*/

.c-table {
	margin-bottom: 0;
}

.c-table.table-bordered {
	border-right: none;
	border-left: none;
}

.c-table.table-bordered th,
.c-table th,
.c-table td {
	border-color: #fff;
	border-width: 2px;
	text-align: center;
}

.c-table-bordered thead th {
	border-bottom-width: 3px;
}

.c-table th:first-child,
.c-table td:first-child {
	border-right: none;
}

.c-table th:last-child,
.c-table td:last-child {
	border-left: none;
}


/* ============================== LAYOUT =========================== */

/*------------------------- Header -------------------------*/

#header {
	background-color: #21293e;
}

.top-header {
	display: none;
	min-height: 36px;
	background-color: #e8eae5;
}

.top-header .menu-right {
	display: none;
}

.top-header ul {
	margin: 0;
	padding: 0;
}

.top-header li {
	line-height: 36px;
	display: inline-block;
}

.top-header a {
	color: #7c868c;
	-webkit-transition: color 300ms ease-in-out;
	transition: color 300ms ease-in-out;
}

.top-header a:hover {
	color: #21293e;
}

.top-header .menu-right li {
	margin-left: 12px;
}

.top-header .menu-left li {
	float: left;
	margin-right: 12px;
}

.top-header i {
	color: #21293e;
	margin-left: 3px;
}

.top-header .invite {
	position: relative;
	background: #21293e;
}

.top-header .invite::after {
	content: '';
	position: absolute;
	border: #21293e solid 6px;
	border-width: 0 6px;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
	-webkit-animation: -webkit-ripple-out 2500ms infinite;
	animation: ripple-out 2500ms infinite;
}
.related-advice {
	position: relative;
}

.related-advice::after {
	content: '';
	position: absolute;
	border: #7d888e solid 6px;
	border-width: 0 6px;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
	-webkit-animation: ripple-out 2500ms infinite;
	animation: ripple-out 2500ms infinite;
}

@-webkit-keyframes ripple-out {
	0% {
		-webkit-transform: scale(0.8);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(2.5);
		opacity: 0;
	}
}

@keyframes ripple-out {
	0% {
		transform: scale(0.8);
		opacity: 1;
	}
	100% {
		transform: scale(2.5);
		opacity: 0;
	}
}


@-webkit-keyframes ripple-out {

	50%,
	100% {
		right: -10px;
		left: -10px;
		opacity: 0;
	}
}

@keyframes ripple-out {

	50%,
	100% {
		right: -10px;
		left: -10px;
		opacity: 0;
	}
}

.top-header .invite a {
	position: relative;
	display: block;
	padding: 0 8px;
	color: rgba(255, 255, 255, 0.8);
	font-weight: bold;
	z-index: 1;
	-webkit-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

.top-header .invite a:hover {
	color: #fff;
}

.inner-header {
	min-height: 132px;
	position: relative;
}

.inner-header::after {
	content: '';
	position: absolute;
	top: 71px;
	width: 100%;
	height: 6px;
	z-index: 0;
	background: #fff;
}

.inner-header .container {
	position: relative;
	z-index: 10;
	background-color: #21293e;
}

.header-logo {
	width: 275px;
	height: 106px;
	margin-top: 18px;
	margin-right: -15px;
	text-indent: -9999em;
	background: url('/images/logo.png');
}

.header-logo a {
	width: 100%;
	height: 100%;
	display: block;
}

#header .navbar {
	display: none;
	padding: 0;
	padding-top: 56px;
}

.rsp-menu {
	max-height: 34px;
	margin-top: 15px;
	padding: 3px 2px 0;
	color: #fff;
	font-size: 21px;
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.2);
}

.rsp-menu:hover {
	color: #fff;
}

.search-panel {
	width: 340px;
	margin-left: 10px;
	padding-top: 56px;
	position: relative;
}

.search-panel .form-group {
	position: relative;
	margin-bottom: 0;
}

.search-panel input {
	width: 100%;
	height: 34px;
	float: right;
	padding: 0 7px;
	border: none;
	outline: none;
	font-size: 13px;
	line-height: 34px;
	color: #fff;
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.2);
}

.search-panel input::-moz-placeholder {
	color: #ddd;
	opacity: 1;
}

.search-panel input:-ms-input-placeholder {
	color: #ddd;
}

.search-panel input::-webkit-input-placeholder {
	color: #ddd;
}

.search-panel button {
	position: absolute;
	top: 5px;
	left: 3px;
	width: 27px;
	height: 27px;
	padding: 0;
	background: none;
	border: none;
	outline: none;
}

.search-panel .i-search {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
	-webkit-transition: color 300ms ease-in-out;
	transition: color 300ms ease-in-out;
}

.search-panel .i-search:hover {
	color: rgba(255, 255, 255, 1);
}

.nav-menu li {
	margin: 0 10px;
}

.nav-menu li:first-child {
	margin-right: 0;
}

.nav-menu li:last-child {
	margin-left: 0;
}

.nav-menu a {
	position: relative;
	line-height: 34px;
	display: block;
	color: rgba(255, 255, 255, 0.8);
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.nav-menu a:hover {
	color: #fff;
}

.nav-menu a::before {
	content: "";
	position: absolute;
	z-index: -1;
	left: 51%;
	right: 51%;
	bottom: 0;
	background: #fff;
	height: 2px;
	-webkit-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

.nav-menu a:hover::before {
	left: 0;
	right: 0;
}

.nav-menu a span {
	font-size: 15px;
	color: #e49666;
	margin-right: 6px;
}

.nav-menu a span i {
	margin-left: 4px;
}

/*------------------------- Home -------------------------*/

#home-slider .slide-entry {
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

#home-slider .slide-entry h2 {
	padding: 14px;
	color: #fff;
	font-size: 34px;
	background: rgba(0, 0, 0, 0.65);
}

#home-slider .slide-entry p {
	padding: 8px;
	color: #fcf7f1;
	font-size: 18px;
	background: rgba(0, 0, 0, 0.55);
}

#home-slider .slide-entry a {
	color: #fff;
}

#home-slider .owl-carousel .owl-item {
	opacity: 0;
}

#home-slider .owl-carousel .owl-item.active {
	opacity: 1;
}

#home-slider .owl-carousel .owl-nav button {
	position: absolute;
	top: 50%;
	width: 60px;
	height: 60px;
	outline: none;
	opacity: 0.8;
	color: #fff;
	font-size: 20px;
	border-radius: 100%;
	background: rgba(255, 255, 255, 0.4);
	-webkit-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

#home-slider .owl-nav button:hover {
	opacity: 1;
}

#home-slider .owl-nav i {
	padding-top: 6px;
	display: block;
}

#home-slider .owl-nav .owl-prev {
	right: 3%;
}

#home-slider .owl-nav .owl-next {
	left: 3%;
}


.home-section {
	padding: 50px 0;
}

.home-section h5 {
	font-size: 20px;
	line-height: 1.8;
	color: #262e44;
	text-align: center;
	font-weight: bold;
	margin: 0;
	margin-bottom: 50px;
	position: relative;
}

.home-section h5::after {
	content: '';
	position: absolute;
	width: 30px;
	height: 2px;
	right: 0;
	left: 0;
	bottom: -20px;
	margin: 0 auto;
	background: #ff6e4a;
}

#home-categories {
	position: relative;
	padding-bottom: 10px;
	background: url('../images/cats-bg.png') no-repeat right bottom;
	background-size: contain;
}
/*
#home-categories::after {
	content: '';
	position: absolute;
	right: 0;
	left: 0;
	bottom: -26px;
	margin: 0 auto;
	width: 0;
	height: 0;
	border-left: 30px solid transparent;
	border-right: 30px solid transparent;
	border-top: 30px solid #fff;
}
*/
#home-categories ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#home-categories ul.categories>li {
	position: relative;
	padding: 0;
	padding-bottom: 10px;
	margin-bottom: 45px;
	text-align: center;
}

#home-categories .cat-icon {
	width: 60px;
	height: 61px;
	display: block;
	margin: 0 auto 8px;
	background: url('../images/cat-icon.jpg');
	-webkit-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
}

#home-categories li:hover .cat-icon {
	-webkit-transform: translate(0, -4px);
	transform: translate(0, -4px);
}

#home-categories ul.categories a {
	-webkit-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

#home-categories ul.categories>li>a {
	color: #252b3b;
	font-weight: bold;
	display: block;
}

#home-categories ul.categories>li:hover>a {
	color: #168c03;
}

#home-categories ul.sub {
	position: absolute;
	top: 110%;
	right: 40%;
	width: auto;
	padding: 5px;
	border-radius: 3px;
	white-space: nowrap;
	background: #eab860;
	visibility: hidden;
	opacity: 0;
	z-index: 1;
	-webkit-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

#home-categories ul.categories>li:hover ul.sub {
	top: 100%;
	visibility: visible;
	opacity: 1;
}

#home-categories ul.sub::before {
	content: '';
	position: absolute;
	top: -5px;
	right: 10px;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 5px solid #eab860;
}

#home-categories ul.sub li {
	display: inline-block;
	margin-left: 3px;
	padding-left: 5px;
	border-left: 1px solid #fff;
}

#home-categories ul.sub li:last-child {
	margin-left: 0;
	padding-left: 0;
	border: none;
}

#home-categories ul.sub li a {
	color: #fff;
	font-size: 14px;
	line-height: 1;
	display: block;
	-webkit-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
}

#home-categories ul.sub:hover li a {
	opacity: 0.8;
}

#home-categories ul.sub li a:hover {
	opacity: 1;
}

.home-carousel .item {
	margin: 0 10px;
	border-radius: 5px;
	overflow: hidden;
	background: #f5f5f5;
}

.home-carousel img {
	width: 100%;
}

.home-carousel .slide-entry {
	padding: 15px 0 45px;
}

.home-carousel .slide-entry h3 {
	position: relative;
	margin: 0;
	padding: 14px 0;
	color: #262e44;
	font-size: 15px;
	font-weight: bold;
	text-align: center;
}

.home-carousel .slide-entry h3::after {
	content: '';
	position: absolute;
	width: 30px;
	height: 2px;
	right: 0;
	left: 0;
	bottom: 0;
	margin: 0 auto;
	background: #73b5cb;
}

.home-carousel .slide-entry a {
	color: #262e44;
	-webkit-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

.home-carousel .slide-entry a:hover {
	color: #000;
}

.home-carousel .owl-carousel .owl-nav button {
	position: absolute;
	top: 50%;
	width: 60px;
	height: 60px;
	margin-top: -30px;
	outline: none;
	opacity: 0.8;
	color: #fff;
	font-size: 20px;
	border-radius: 100%;
	background: #73b5cb;
	-webkit-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

.home-carousel .owl-nav button:hover {
	opacity: 1;
}

.home-carousel .owl-nav i {
	padding-top: 4px;
	display: block;
}

.home-carousel .owl-nav .owl-prev {
	right: -38px;
}

.home-carousel .owl-nav .owl-next {
	left: -38px;
}

.home-carousel.t-blue {
	background: #e8ece7;
}

.home-carousel.t-blue h5::after {
	background: #73b5cb;
}

.home-carousel.t-blue .item {
	background: #fff;
}

.home-carousel.t-green {
	background: #fff;
}

.home-carousel.t-green h5::after,
.home-carousel.t-green .slide-entry h3::after,
.home-carousel.t-green .owl-carousel .owl-nav button {
	background: #8dac4e;
}

/*------------------------- Page -------------------------*/

.page {
	padding-top: 25px;
}

.page-header h5 {
	font-size: 18px;
	line-height: 1.8;
	color: #21293e;
	text-align: center;
	font-weight: bold;
	margin: 0;
	margin-bottom: 40px;
	position: relative;
}

.page-header h5::after {
	content: '';
	position: absolute;
	width: 30px;
	height: 2px;
	right: 0;
	left: 0;
	bottom: -14px;
	margin: 0 auto;
	background: #21293e;
}

.page-header p {
	margin-bottom: 10px;
	font-weight: bold;
	line-height: 1.8;
	color: #7c868c;
}

.page-header p::before {
	content: '';
	width: 6px;
	height: 6px;
	display: inline-block;
	margin-left: 6px;
	border-radius: 100%;
	background: #7c868c;
}

.product-header h5 {
	padding: 13px 6px;
	margin-bottom: 0;
	text-align: right;
	background: var(--custom-color-user);
}

.product-header h5::after {
	width: 0;
	height: 0;
	top: 0;
	right: -15px;
	bottom: 0;
	margin: auto 0;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-left: 15px solid var(--custom-color-user);
	background: none;
}

.page .title {
	margin-bottom: 25px;
	font-size: 18px;
	color: #7c868c;
	text-align: center;
	position: relative;
}

.page .title::before {
	content: '';
	position: absolute;
	width: 30px;
	height: 2px;
	right: 0;
	left: 0;
	bottom: -12px;
	margin: 0 auto;
	background: #8dac4e;
}

.qa-categories {
	margin: 50px 0 100px;
	padding: 0;
	list-style: none;
	position: relative;
}

.qa-categories > li {
	padding: 0;
	position: unset;
	font-weight: bold;
	text-align: center;
	border: 1px solid #7c7d7b;
}

.qa-categories li a {
	display: block;
}

.qa-categories > li > a {
	padding: 8px 5px;
	color: #000;
}

.qa-categories .sub {
	position: absolute;
	width: 100%;
	top: 39px;
	right: 0;
	padding: 0;
	list-style: none;
	text-align: right;
	z-index: 1;
	background: #e68f98;

	display: none;
}

.qa-categories .sub {
	/* -webkit-transition: all 200ms ease-in-out 60ms;
	transition: all 200ms ease-in-out 60ms; */
}
.qa-categories li:hover .sub {
	/* -webkit-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out; */
}

.qa-categories li:hover > .sub {
	visibility: visible;
	opacity: 1;
}

.qa-categories .sub li {
	margin: 0 10px;
	float: right;
}

.qa-categories .sub li.menu-item-has-children > a {
	padding-right: 8px;
	padding-left: 2px;
}

.qa-categories .sub a::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -13px;
	height: 12px;
	margin: auto 0;
	pointer-events: none;
	border-right: 1px solid rgba(255, 255, 255, 0.7);
}

.qa-categories .sub li:first-child > a::before {
	display: none;
}

.qa-categories .sub li.menu-item-has-children > a::after {
	content: '';
	width: 0;
	height: 0;
	display: inline-block;
	margin: 0 4px;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	border-top: 5px solid #fff;
}

.qa-categories .sub li a {
	color: #fff;
	font-weight: normal;
	padding: 9px 0;
	position: relative;
}

.qa-categories .sub .sub {
	width: 100%;
	background: #d77f88;
}

.qa-categories .sub .sub .sub {
	background: #cc747d;
}

.qa-categories .sub .sub .sub .sub {
	background: #c56c75;
}

.qa-categories .sub li:hover > .sub {
	margin-top: 0;
}

.qa-categories > li,
.qa-categories li a,
.qa-categories .sub li.menu-item-has-children::after,
.qa-categories .sub li a::before,
.qa-categories .sub li a::after {
	-webkit-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

.selected-cats {
	margin: 50px 0 35px;
	padding: 0;
	list-style: none;
	position: relative;
}

.selected-cats::before,
.selected-cats::after {
	content: '';
	position: absolute;
	top: 3px;
	right: 0;
	width: 7px;
	height: 7px;
	background: #7c868c;
}

.selected-cats::after {
	right: inherit;
	left: 0;
}

.selected-cats li {
	display: inline-block;
	position: relative;
	text-align: center;
}

.selected-cats li::before {
	content: '';
	position: absolute;
	top: 6px;
	right: 0;
	left: 0;
	height: 2px;
	background: #7c868c;
}

.selected-cats li a {
	margin-top: 22px;
	display: inline-block;
	color: #7c868c;
	font-weight: bold;
}

.selected-cats li a::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	width: 15px;
	height: 15px;
	margin: 0 auto;
	border-radius: 100%;
	background: #7c868c;
}

.selected-cats li a,
.selected-cats li a::before {
	-webkit-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

.selected-cats li a:hover {
	color: #e68f98;
}

.selected-cats li a:hover::before {
	background: #e68f98;
}

.qa-list {
	margin-bottom: 25px;
}

.qa-list .qa {
	padding: 50px 0 20px;
}

.qa-list .qa .container {
	position: relative;
}

.qa-list .qa:nth-child(even) {
	background: #e8ece7;
}

.qa-list p {
	margin: 0;
}

.qa-list .question {
	padding-bottom: 16px;
}

.qa-list .question p {
	font-weight: bold;
}

.qa-list .question p::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 100%;
	margin-left: 5px;
	display: inline-block;
	background: #666;
}

.qa-list .answer {
	margin-bottom: 18px;
}

.qa-list .answer span {
	color: #e68f98;
	font-weight: bold;
}

.qa-list .answer p {
	line-height: 2;
	text-align: justify;
}

.qa-list .answer p::before {
	content: 'پاسخ:';
	margin-left: 4px;
	color: #e68f98;
	font-weight: bold;
}

.qa-list .actions {
	text-align: center;
}

.qa-list .actions a {
	margin: 0 5px;
	display: inline-block;
	font-size: 13px;
	color: #4a555b;
	padding: 6px 10px;
	border: 1px solid #7c868c;
	border-radius: 3px;
	-webkit-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

.qa-list .actions a:hover {
	color: #fff;
	background: #21293e
}

.qa-list .actions i {
	font-size: 14px;
	margin-left: 4px;
}


.search-cats {
	padding: 0;
	list-style: none;
}

.search-cats li {
	float: right;
	margin-left: 8px;
	padding-left: 8px;
	border-left: 1px solid #7c868c;
}

.search-cats li:last-child {
	border-left: none;
}

.search-cats li.active {
	padding-left: 0;
	border: none;
}

.search-cats li a {
	color: #7c868c;
	font-size: 15px;
	font-weight: bold;
	padding: 5px 8px;
	position: relative;
}

.search-cats li a:hover {
	color: #60676c;
}

.search-cats li.active a {
	color: #3e4346;
	border: 2px solid #f68c47;
}

.search-cats li a::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	margin: 0 auto;
	background: #f68c47;
}

.search-cats li a:hover::after {
	width: 100%;
}

.search-cats li a,
.search-cats li a::after {
	-webkit-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

.search-results .item {
	padding: 45px 0;
}

.search-results .item .container {
	position: relative;
}

.search-results .item:nth-child(odd) .container::after {
	content: '';
	position: absolute;
	right: 100px;
	bottom: -65px;
	width: 0;
	height: 0;
	z-index: 1;
	border-left: 30px solid transparent;
	border-right: 30px solid transparent;
	border-top: 30px solid #fff;
}

.search-results .item:nth-child(even) {
	background: #e8ece7;
}

.search-results h2 {
	font-size: 19px;
	line-height: 1.8;
	font-weight: bold;
	margin-bottom: 20px;
}

.search-results h2 a {
	color: #5a5e61;
}

.search-results h2 a::before {
	content: '';
	width: 14px;
	height: 14px;
	border-radius: 100%;
	margin-left: 5px;
	vertical-align: middle;
	display: inline-block;
	border: 4px solid #5a5e61;
}

.search-results .thumb {
	float: right;
	margin-left: 15px;
}

.search-results .thumb img {
	max-width: 100%;
	height: auto;
}

.search-results .desc {
	margin-bottom: 20px;
	text-align: justify;
	line-height: 1.86;
}

.search-results .desc p {
	margin-bottom: 0;
}

.search-results .code span {
	font-size: 13px;
	padding: 0 8px;
	border-radius: 10px;
	border: 1px solid #5f6468;
}

.search-results .price {
	margin-top: 10px;
}

.search-results .price span {
	padding: 5px 12px;
	display: inline-block;
	border-radius: 12px;
	color: #fff;
	font-size: 16px;
	background: #83b180;
}

.search-results .price .currency {
	font-size: 13px;
	margin-right: 4px;
}

.search-results .tools {
	margin: 0;
	padding: 0;
	list-style: none;
}

.search-results .tools li {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border: 2px solid #9fa7aa;
	-webkit-transition: all 350ms ease-in-out;
	transition: all 350ms ease-in-out;
}

.search-results .tools li:hover {
	border-color: #e4919c;
}

.search-results .tools li a {
	display: block;
	height: 100%;
	font-size: 20px;
}

.search-results .left-tools {
	margin: 4px 0 0;
	padding: 0;
	float: left;
	list-style: none;
}

.search-results .left-tools li {
	margin-bottom: 8px;
	background: #7d888e;
}

.search-results .left-tools li a {
	color: #e6e7e8;
}

.search-results .bottom-tools {
	float: left;
}

.search-results .bottom-tools.top {
	width: 100%;
	border-bottom: 2px solid #7d868b;
}

.search-results .bottom-tools li {
	float: left;
	margin: 5px 8px 8px 0;
}

.search-results .bottom-tools.top li {
	margin: 0 8px 5px 0;
}

.search-results .bottom-tools li a {
	color: #7d888e;
}

.search-results .tags ul {
	margin: 0;
	padding: 8px 0 0;
	list-style: none;
}

.search-results .tags li {
	float: right;
	margin-bottom: 3px;
}

.search-results .tags li::after {
	content: '';
	width: 1px;
	height: 12px;
	float: left;
	margin: 5px 7px 0 7px;
	background: #7d868b;
}

.search-results .tags li:last-child::after {
	display: none;
}

.search-results .tags li a {
	color: #7f8488;
	font-size: 13px;
	-webkit-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

.search-results .tags li a:hover {
	color: #3e4346;
}


.product-img {
	position: relative;
	margin-bottom: 25px;
}

.product-img img {
	width: 100%;
}

.product-img .slide-entry {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 35px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.product-img .slide-entry h2 {
	margin: 0;
	padding: 14px 0;
	color: #fff;
	font-size: 20px;

	padding: 10px 6px;
	margin-bottom: 6px;
	background: rgba(0, 0, 0, 0.65);
}

.product-img .slide-entry p {
	color: #fcf7f1;
	font-size: 16px;

	padding: 4px 6px;
	background: rgba(0, 0, 0, 0.55);
}

.product-img .slide-entry a {
	color: #fff;
	font-size: 14px;
}

.product-img .slide-entry .btn-orng:focus {
	box-shadow: none;
}

.product-page {
	position: relative;
	padding-bottom: 5px;
}

.product-page::after {
	content: '';
	position: absolute;
	right: 0;
	left: 0;
	bottom: -26px;
	margin: 0 auto;
	width: 0;
	height: 0;
	border-left: 30px solid transparent;
	border-right: 30px solid transparent;
	border-top: 30px solid #fff;
}

.main-product {
	/*display: none;*/
	margin-bottom: 25px;
}

.product-tabs-list {
	margin: 50px 0 35px;
}

.product-tabs-list li {
	border: 1px solid #d0d4cf;
}

.product-tabs-list li.active {
	background: var(--custom-color-user);
	border: 1px solid var(--custom-color-user);
}

.product-tabs-list li.active::after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	bottom: -38px;
	right: 0;
	left: 0;
	margin: 0 auto;
	border-right: 15px solid transparent;
	border-left: 15px solid transparent;
	border-bottom: 14px solid var(--custom-color-user);
}

.product-tabs-viewer {
	background: var(--custom-color-user);
}

.product-page .desc,
.sub-lessons .desc {
	margin-bottom: 70px;
}

.product-page .desc p,
.sub-lessons .desc p {
	margin-bottom: 3px;
	font-size: 16px;
	line-height: 1.7;
	color: #252b3b;
	text-align: justify;
}

.product-page .foot,
.sub-lessons .foot {
	position: absolute;
	right: 15px;
	bottom: 0;
	left: 15px;
}

.product-page .foot .row,
.sub-lessons .foot .row {
	margin: 0;
	padding-top: 8px;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	justify-content: space-between;
}

.product-page .foot .row:first-child,
.sub-lessons .foot .row:first-child {
	padding-top: 0;
	padding-bottom: 5px;
	border-bottom: 1px solid #7d868b;
}

.product-page .price,
.sub-lessons .price {
	font-size: 18px;
	line-height: 1.8;
	font-weight: bold;
}

.product-page .price span,
.sub-lessons .price span {
	font-size: 20px;
	font-weight: normal;
	display: inline-block;
}

.product-page .price .currency,
.sub-lessons .price .currency {
	margin-right: 5px;
	font-size: 16px;
}

.product-page .tools,
.sub-lessons .tools {
	margin: 0;
	padding: 0;
	list-style: none;
}

.product-page .tools li,
.sub-lessons .tools li {
	width: 40px;
	height: 40px;
	float: right;
	margin-right: 8px;
	line-height: 40px;
	text-align: center;
	border: 2px solid #9fa7aa;
	background: #7d888e;
	-webkit-transition: all 350ms ease-in-out;
	transition: all 350ms ease-in-out;
}

.product-page .tools li:hover,
.sub-lessons .tools li:hover {
	border-color: #8cbcac;
}

.product-page .tools a,
.sub-lessons .tools a {
	display: block;
	font-size: 14px;
	color: #e6e7e8;
}

.product-page .tags,
.sub-lessons .tags {
	margin: 0;
	padding: 0;
	list-style: none;
}

.product-page .tags li,
.sub-lessons .tags li {
	float: right;
}

.product-page .tags li::after,
.sub-lessons .tags li::after {
	content: '';
	width: 1px;
	height: 12px;
	float: left;
	margin: 5px 7px 0 7px;
	background: #7d868b;
}

.product-page .tags li:last-child::after,
.sub-lessons .tags li:last-child::after {
	display: none;
}

.product-page .tags a,
.sub-lessons .tags a {
	color: #56656d;
	font-size: 13px;
	-webkit-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

.product-page .tags a:hover,
.sub-lessons .tags a:hover {
	color: #404f57;
}

.product-page .code,
.sub-lessons .code {
	color: #fff;
}

.product-page .product-preview,
.sub-lessons .product-preview {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-moz-flex-direction: column;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.product-page .product-preview img,
.product-page .product-preview video,
.sub-lessons .product-preview img,
.sub-lessons .product-preview video {
	max-width: 100%;
}
.product-page .product-preview video,
.product-page .product-preview audio,
.sub-lessons .product-preview video,
.sub-lessons .product-preview audio {
	border: none;
	outline: none;
}

.product-page .product-preview audio,
.sub-lessons .product-preview audio {
	width: 100%;
}

.product-page .product-preview .thumb,
.sub-lessons .product-preview .thumb {
	max-width: 180px;
	max-height: 180px;
	border-radius: 100%;
	margin-bottom: 15px;
}

.product-page .product-preview a,
.product-page .product-preview p,
.sub-lessons .product-preview a,
.sub-lessons .product-preview p {
	margin-top: 15px;
	margin-bottom: 0;
	color: #fff;
}

.product-page .product-preview a,
.sub-lessons .product-preview a {
	padding: 6px 10px;
	color: #e6e7e8;
	border: 2px solid #9fa7aa;
	background: #7d888e;
	-webkit-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

.product-page .product-preview a:hover,
.sub-lessons .product-preview a:hover {
	border-color: #8cbcac;
}

#sub-lessons .lessons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

#sub-lessons .item {
	width: calc(33.3% - 20px);
	position: relative;
	overflow: visible;
	margin-bottom: 20px;
	cursor: pointer;
	-webkit-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

#sub-lessons .item > img {
	border-radius: 5px 5px 0 0;
}

#sub-lessons .item::after {
	content: '';
	position: absolute;
	right: 0;
	left: 0;
	bottom: -13px;
	margin: 0 auto;
	width: 0;
	height: 0;
	opacity: 0;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	border-top: 14px solid var(--custom-color-user);
	-webkit-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

#sub-lessons .item.active {
	pointer-events: none;
	background: #e68f98;
}

#sub-lessons .item.active::after {
	opacity: 1;
}

.lessons .sub-lessons {
	margin: 0 10px 25px 10px;
	padding-bottom: 15px;
	border-radius: 5px;
	background: #fff;
	width:100%;
}

.lessons .sub-lessons img {
	width: auto;
}

.lessons .sub-lessons .product-tabs-list {
	margin-top: 15px;
}

.sub-lessons .lesson {
	display: none;
}


.user-page {
	position: relative;
	padding-bottom: 50px;
}

.user-page .table i {
	font-size: 18px;
}

.user-page .table .count {
	width: 56px;
	padding: 0;
	margin: 0;
	text-align: center;
	background: #fff;
	outline: none
}

.user-page .table .delete {
	color: #000;
	-webkit-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}

.user-page .table .delete:hover {
	color: #cf0f0f;
}

.user-page .form-group .label {
	margin-left: 15px;
	font-weight: bold;
}

.user-page .d-center {
	text-align: center;
}

.user-page .btn {
	margin: 0 6px;
	color: #138293;
	border: 1px solid #138293;
	background: #defdff;
}

.user-page .btn:hover {
	background: #c2eef5;
}

.user-page .btn:focus {
	box-shadow: none;
}

.user-page .checkout-summary ul {
	padding: 0;
	margin: 5px 0 25px;
	justify-content: center;
	list-style: none;
	text-align: center;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.user-page .checkout-summary ul li {
	display: inline-block;
	margin-left: 36px;
}

.user-page .checkout-summary ul li:last-child {
	margin-left: 0;
}

.user-page .checkout-summary span {
	display: block;
	text-align: center;
}

.user-page .checkout-summary .label {
	margin-bottom: 8px;
	font-weight: bold;
	font-size: 15px;
}

.user-page .checkout-summary .value {
	font-size: 18px;
}

.user-page #orders a {
	padding-top: 5px;
}

.user-page #my-advice .row {
	margin: 0;
	border-bottom: 2px solid #fff;
}

.user-page #my-advice .row:last-child {
	border-bottom: 0;
}

.user-page #my-advice .label {
	width: 140px;
	padding: 10px;
	border-left: 2px solid #fff;
	font-weight: bold;
	font-size: 16px;
	text-align: center;
}

.user-page #my-advice .value {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	padding: 10px;
	font-weight: bold;
	white-space: pre-wrap;
}

.user-page #my-advice p {
	margin: 0;
}

.user-page #my-advice audio {
	width: 80%;
	display: block;
	margin: 18px auto 10px;
	border-radius: 50px;
	box-shadow: 0 0 10px #888;
}

.user-page #suggestion .inner {
	padding-top: 0;
	padding-bottom: 0;
}

.user-page #suggestion .row > div {
	padding-top: 10px;
	padding-bottom: 10px;
}

.user-page #suggestion .row > div:first-child {
	border-left: 2px solid #fff;
}

.user-page #suggestion label {
	font-weight: bold;
}

.user-page #change-password {
	width: 40%;
	margin: 0 auto;
}

.user-page #change-password small {
	color: #d99877;
}

/*------------------------- Comment Page -------------------------*/

.comment-page {
	padding-top: 36px;
	background: #f4f6f7;
}

.comment-page-header {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 22px;
	padding: 24px 28px;
	color: #fff;
	border-radius: 16px;
	background: linear-gradient(135deg, #21293e, #35415e);
	box-shadow: 0 12px 28px rgba(33, 41, 62, 0.14);
}

.comment-page-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	flex: 0 0 54px;
	font-size: 24px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.12);
}

.comment-page-header h2,
.comment-page-header p,
.comment-section-heading h3,
.comment-section-heading p {
	margin: 0;
}

.comment-page-header h2 {
	margin-bottom: 7px;
	font-size: 21px;
}

.comment-page-header p {
	max-width: 780px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
	line-height: 1.9;
}

.comment-page .tabs-viewer {
	background: transparent;
}

.comment-page-content {
	padding: 0 !important;
}

.comment-form-card,
.comment-history-card {
	margin-bottom: 24px;
	overflow: hidden;
	border: 1px solid #e5e9ec;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(36, 50, 70, 0.06);
}

.comment-section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	padding: 20px 24px;
	border-bottom: 1px solid #edf0f2;
}

.comment-section-heading h3 {
	margin-bottom: 5px;
	color: #273149;
	font-size: 16px;
}

.comment-section-heading p {
	color: #8b949d;
	font-size: 11px;
}

.comment-section-heading > span {
	padding: 6px 11px;
	color: #138293;
	font-size: 10px;
	white-space: nowrap;
	border-radius: 20px;
	background: #e8f7f8;
}

.comment-form-body {
	max-width: 900px;
	margin: 0 auto;
	padding: 24px;
}

.comment-page .form-group {
	margin-bottom: 18px;
}

.comment-page .form-group label {
	margin-bottom: 7px;
	color: #3c4657;
	font-size: 12px;
	font-weight: bold;
}

.comment-page .form-control {
	padding: 10px 13px;
	border: 1px solid #dce2e6;
	border-radius: 9px;
	background: #fafbfc;
	box-shadow: none;
	transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.comment-page input.form-control {
	height: 44px;
}

.comment-page textarea.form-control {
	resize: vertical;
	line-height: 1.9;
}

.comment-page .form-control:focus {
	border-color: #138293;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(19, 130, 147, 0.09);
}

.comment-form-actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.comment-page .comment-form-actions .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	min-width: 145px;
	margin: 0;
	padding: 10px 18px;
	color: #fff;
	border: 0;
	border-radius: 9px;
	background: #138293;
	box-shadow: 0 7px 16px rgba(19, 130, 147, 0.18);
}

.comment-page .comment-form-actions .btn:hover {
	color: #fff;
	background: #0f6f7d;
}

.comment-form-actions .alert {
	margin: 0;
	padding: 9px 13px;
	border: 0;
	border-radius: 8px;
	font-size: 11px;
}

.comment-form-actions .alert:empty {
	display: none;
}

.comment-table-wrap {
	padding: 8px 18px 20px;
}

.comment-table {
	min-width: 850px;
	border-collapse: separate;
	border-spacing: 0 9px;
}

.comment-table thead th {
	padding: 9px 12px;
	color: #89929d;
	font-size: 10px;
	font-weight: normal;
	border: 0 !important;
	background: transparent;
}

.comment-table tbody td {
	padding: 15px 12px;
	color: #4d5765;
	font-size: 11px;
	line-height: 1.9;
	vertical-align: middle;
	border: 0 !important;
	border-top: 1px solid #e8ecef !important;
	border-bottom: 1px solid #e8ecef !important;
	background: #fbfcfd;
}

.comment-table tbody td:first-child {
	width: 55px;
	color: #138293;
	font-weight: bold;
	border-right: 1px solid #e8ecef !important;
	border-radius: 0 10px 10px 0;
}

.comment-table tbody td:nth-child(2) {
	width: 17%;
	color: #273149;
	font-weight: bold;
}

.comment-table tbody td:nth-child(3),
.comment-table tbody td:nth-child(4) {
	width: 31%;
	text-align: right;
}

.comment-table tbody td:last-child {
	width: 105px;
	white-space: nowrap;
	border-left: 1px solid #e8ecef !important;
	border-radius: 10px 0 0 10px;
}

.comment-status {
	display: inline-flex;
	align-items: center;
	padding: 5px 10px;
	font-size: 10px;
	white-space: nowrap;
	border-radius: 20px;
}

.comment-status.pending {
	color: #976919;
	background: #fff4dd;
}

.comment-answer {
	color: #24704d;
}

.comment-table .notfound td {
	border: 1px dashed #dce3e7 !important;
	border-radius: 10px !important;
	background: #fafcfc;
}

.table-empty-state {
	padding: 24px;
	text-align: center;
}

.table-empty-state strong,
.table-empty-state span {
	display: block;
}

.table-empty-state strong {
	margin-bottom: 7px;
	color: #4a5666;
	font-size: 13px;
}

.table-empty-state span {
	color: #929ba5;
	font-size: 10px;
}

/*------------------------- Advice Page -------------------------*/

.advice-page {
	padding-top: 36px;
	background: #f4f6f7;
}

.advice-page-header {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 18px;
	padding: 24px 28px;
	color: #fff;
	border-radius: 16px;
	background: linear-gradient(135deg, #21293e, #35415e);
	box-shadow: 0 12px 28px rgba(33, 41, 62, 0.14);
}

.advice-page-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	flex: 0 0 54px;
	font-size: 24px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.12);
}

.advice-page-header h2,
.advice-page-header p,
.advice-section-heading h3,
.advice-section-heading p {
	margin: 0;
}

.advice-page-header h2 {
	margin-bottom: 7px;
	font-size: 21px;
}

.advice-page-header p {
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
	line-height: 1.9;
}

.advice-tabs {
	max-width: 620px;
	margin: 0 auto 20px;
	padding: 5px;
	border: 1px solid #e1e6e9;
	border-radius: 12px;
	background: #fff;
}

.advice-tabs li,
.advice-tabs li.active {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 8px;
	border: 0;
	border-radius: 9px;
}

.advice-tabs li {
	color: #75808c;
	background: transparent;
}

.advice-tabs li.active {
	color: #fff;
	background: #21293e;
}

.advice-tabs .help-btn,
.advice-tabs li.active .help-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 23px;
	height: 23px;
	margin: 0;
	color: #21293e;
	font-size: 14px;
	border-radius: 50%;
	background: #fff;
	animation: none;
}

.advice-page .tabs-viewer {
	background: transparent;
}

.advice-form-card,
.my-advice-panel {
	overflow: hidden;
	margin-bottom: 24px;
	padding: 0 !important;
	border: 1px solid #e5e9ec;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(36, 50, 70, 0.06);
}

.advice-section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	padding: 20px 24px;
	border-bottom: 1px solid #edf0f2;
}

.advice-section-heading h3 {
	margin-bottom: 5px;
	color: #273149;
	font-size: 16px;
}

.advice-section-heading p {
	color: #8b949d;
	font-size: 11px;
}

.advice-section-heading > span {
	padding: 6px 11px;
	color: #138293;
	font-size: 10px;
	white-space: nowrap;
	border-radius: 20px;
	background: #e8f7f8;
}

.advice-form-body {
	max-width: 900px;
	margin: 0 auto;
	padding: 24px;
}

.advice-form-body > .row {
	margin: 0;
}

.advice-page .form-group {
	margin-bottom: 18px;
}

.advice-page .form-group label {
	margin-bottom: 7px;
	color: #3c4657;
	font-size: 12px;
	font-weight: bold;
}

.advice-page .form-control {
	padding: 10px 13px;
	border: 1px solid #dce2e6;
	border-radius: 9px;
	background: #fafbfc;
	box-shadow: none;
}

.advice-page input.form-control,
.advice-page select.form-control {
	height: 44px;
}

.advice-page textarea.form-control {
	resize: vertical;
	line-height: 1.9;
}

.advice-page .form-control:focus {
	border-color: #138293;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(19, 130, 147, 0.09);
}

.advice-page .form-checkbox {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 13px 15px;
	border: 1px solid #e3e8eb;
	border-radius: 10px;
	background: #f8fafb;
}

.advice-page .form-checkbox label {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 24px;
	padding-right: 36px;
	color: #4c5765;
	font-size: 11px;
	line-height: 1.8;
}

.advice-page .form-checkbox label::before {
	top: 50%;
	right: 15px;
	bottom: auto;
	width: 22px;
	height: 22px;
	margin: 0;
	border: 1px solid #bfc9cf;
	border-radius: 6px;
	background: #fff;
	transform: translateY(-50%);
}

.advice-page .form-checkbox label::after,
.advice-page .form-checkbox:hover label::after {
	top: 50%;
	right: 21px;
	width: 10px;
	height: 6px;
	border-width: 2px;
	border-color: #fff;
	border-top: 0;
	border-right: 0;
	transform: translateY(-65%) rotate(-45deg);
}

.advice-page .form-checkbox:hover label::before {
	border-color: #138293;
	background: #eef8f9;
}

.advice-page .form-checkbox input:checked ~ label::before {
	border-color: #138293;
	background: #138293;
	box-shadow: 0 4px 10px rgba(19, 130, 147, 0.2);
}

.advice-form-actions {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 8px;
}

.advice-page .advice-form-actions .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	min-width: 155px;
	margin: 0;
	padding: 10px 18px;
	color: #fff;
	border: 0;
	border-radius: 9px;
	background: #138293;
	box-shadow: 0 7px 16px rgba(19, 130, 147, 0.18);
}

.advice-page .advice-form-actions .btn:hover {
	color: #fff;
	background: #0f6f7d;
}

.advice-form-body #frm_profile > .d-center .btn {
	min-width: 155px;
	margin: 0;
	padding: 10px 18px;
	color: #fff;
	border: 0;
	border-radius: 9px;
	background: #138293;
	box-shadow: 0 7px 16px rgba(19, 130, 147, 0.18);
}

.advice-form-actions .alert {
	margin: 0;
	padding: 9px 13px;
	border: 0;
	border-radius: 8px;
	font-size: 11px;
}

.advice-form-actions .alert:empty {
	display: none;
}

#advice-modal .modal-dialog {
	max-width: 760px;
}

#advice-modal .modal-content {
	border: 0;
	border-radius: 18px;
	box-shadow: 0 25px 75px rgba(21, 30, 48, 0.3);
}

.advice-guide-header {
	display: flex;
	align-items: center;
	gap: 14px;
	position: relative;
	padding: 22px 24px;
	color: #fff;
	background: linear-gradient(135deg, #21293e, #35415e);
}

.advice-guide-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	flex: 0 0 45px;
	font-size: 20px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.12);
}

.advice-guide-header h5,
.advice-guide-header p {
	margin: 0;
}

.advice-guide-header h5 {
	margin-bottom: 5px;
	font-size: 17px;
}

.advice-guide-header p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 10px;
}

.advice-guide-header .close {
	position: absolute;
	top: 14px;
	left: 15px;
	width: 31px;
	height: 31px;
	padding: 0;
	color: #fff;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	opacity: 1;
}

.advice-guide-body {
	max-height: 65vh;
	padding: 24px;
	overflow-y: auto;
}

.advice-guide-content {
	padding: 18px 20px;
	color: #4e5968;
	border: 1px solid #e7ebee;
	border-radius: 12px;
	background: #fafbfc;
}

.advice-guide-content p,
.advice-guide-content li {
	font-size: 12px;
	line-height: 2.1;
}

.advice-guide-confirm {
	display: block;
	min-width: 105px;
	margin: 12px auto 0;
	padding: 7px 14px;
	color: #fff;
	font-size: 11px;
	border: 0;
	border-radius: 8px;
	background: #138293;
}

.my-advice-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	min-height: 130px;
	padding: 22px;
}

.item-advice {
	overflow: hidden;
	border: 1px solid #e3e8eb;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 6px 18px rgba(40, 54, 72, 0.06);
	transition: transform 200ms ease, box-shadow 200ms ease;
}

.item-advice:hover {
	transform: translateY(-2px);
	box-shadow: 0 11px 25px rgba(40, 54, 72, 0.1);
}

.advice-card-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	padding: 17px 18px;
	border-bottom: 1px solid #edf0f2;
	background: #fafbfc;
}

.advice-card-kicker,
.advice-card-label {
	display: block;
	margin-bottom: 6px;
	color: #929ba5;
	font-size: 9px;
}

.advice-card-head h4 {
	margin: 0;
	color: #273149;
	font-size: 14px;
	line-height: 1.8;
}

.advice-card-head time {
	color: #8a949e;
	font-size: 9px;
	white-space: nowrap;
}

.advice-card-section {
	padding: 16px 18px;
	color: #586372;
	font-size: 11px;
	line-height: 2;
}

.advice-card-section.question {
	min-height: 105px;
}

.advice-card-section.answer {
	border-top: 1px solid #edf0f2;
	background: #fbfdfc;
}

.advice-card-status {
	display: none;
}

.advice-waiting {
	display: inline-flex;
	align-items: center;
	padding: 6px 11px;
	color: #a86412;
	font-size: 10px;
	font-weight: bold;
	border-radius: 20px;
	background: #fff0d9;
}

.advice-answer-content {
	color: #26704e;
}

.user-page #my-advice .advice-answer-content audio,
.user-page #my-advice .item-advice audio {
	width: 100%;
	margin: 12px 0 0;
	box-shadow: none;
}

.advice-empty-state {
	grid-column: 1 / -1;
	padding: 35px 20px;
	text-align: center;
	border: 1px dashed #dbe2e6;
	border-radius: 12px;
	background: #fafcfc;
}

.advice-empty-state strong,
.advice-empty-state span {
	display: block;
}

.advice-empty-state strong {
	margin-bottom: 8px;
	color: #4b5665;
	font-size: 13px;
}

.advice-empty-state span {
	color: #929ba5;
	font-size: 10px;
}

/*------------------------- Content Pages -------------------------*/

.content-page {
	min-height: 560px;
	padding: 36px 0 55px;
	background: #f4f6f7;
}

.content-page-header {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 22px;
	padding: 24px 28px;
	color: #fff;
	border-radius: 16px;
	background: linear-gradient(135deg, #21293e, #35415e);
	box-shadow: 0 12px 28px rgba(33, 41, 62, 0.14);
}

.content-page-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	flex: 0 0 54px;
	font-size: 23px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.12);
}

.content-page-header h1,
.content-page-header p,
.content-card-heading h2,
.content-card-heading span {
	margin: 0;
}

.content-page-header h1 {
	margin-bottom: 7px;
	font-size: 21px;
	font-weight: bold;
}

.content-page-header p {
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
	line-height: 1.9;
}

.content-page-card {
	overflow: hidden;
	border: 1px solid #e5e9ec;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(36, 50, 70, 0.06);
}

.content-card-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	padding: 20px 24px;
	border-bottom: 1px solid #edf0f2;
	background: #fbfcfd;
}

.content-card-heading span {
	display: block;
	margin-bottom: 5px;
	color: #138293;
	font-size: 9px;
}

.content-card-heading h2 {
	color: #273149;
	font-size: 16px;
}

.content-heading-mark {
	width: 36px;
	height: 5px;
	border-radius: 5px;
	background: #138293;
	box-shadow: 0 5px 12px rgba(19, 130, 147, 0.2);
}

.content-page-body {
	max-width: 980px;
	min-height: 330px;
	margin: 0 auto;
	padding: 32px 34px 40px;
	color: #525d6b;
	font-size: 13px;
	line-height: 2.2;
}

.content-page-body > *:first-child {
	margin-top: 0;
}

.content-page-body > *:last-child {
	margin-bottom: 0;
}

.content-page-body p {
	margin-bottom: 16px;
	color: #525d6b;
	line-height: 2.2;
	text-align: justify;
}

.content-page-body h1,
.content-page-body h2,
.content-page-body h3,
.content-page-body h4,
.content-page-body h5,
.content-page-body h6 {
	margin: 24px 0 12px;
	color: #273149;
	line-height: 1.8;
}

.content-page-body ul,
.content-page-body ol {
	margin: 12px 0 20px;
	padding-right: 22px;
}

.content-page-body li {
	margin-bottom: 7px;
}

.content-page-body a {
	color: #138293;
	font-weight: bold;
	transition: color 200ms ease;
}

.content-page-body a:hover {
	color: #0d6571;
}

.content-page-body img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
}

.content-page-body table {
	width: 100% !important;
	margin: 0;
	border-collapse: separate;
	border-spacing: 0 9px;
}

.content-page-body table td,
.content-page-body table th {
	padding: 13px 16px;
	color: #4e5968;
	line-height: 2;
	border: 1px solid #e6ebee;
	background: #fafbfc;
}

.content-page-body table tr td:first-child,
.content-page-body table tr th:first-child {
	border-radius: 0 9px 9px 0;
}

.content-page-body table tr td:last-child,
.content-page-body table tr th:last-child {
	border-radius: 9px 0 0 9px;
}

.contact-content-page .content-page-body table td {
	position: relative;
	padding-right: 44px;
}

.contact-content-page .content-page-body table td::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 18px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #138293;
	box-shadow: 0 0 0 5px rgba(19, 130, 147, 0.09);
	transform: translateY(-50%);
}

.about-content-page .content-page-body p:first-child::first-letter {
	color: #138293;
	font-size: 22px;
	font-weight: bold;
}


.invite-page {
	position: relative;
	padding-bottom: 50px;
}

.invite-page .tabs-viewer {
	background: transparent;
}

.invite-page h5 {
	font-size: 15px;
	font-weight: bold;
}

.invite-page .meetings,
.invite-page .inner {
	background: #f5f5f5;
}

.invite-page .meetings-labals,
.invite-page .meetings-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
  flex-wrap: wrap;
	border-bottom: 2px solid #fff;
}

.invite-page .meetings-info {
	position: relative;
	padding-right: 60px;
	padding-left: 45px;
	border-bottom: 5px solid #fff;
}

.invite-page .meetings-info .line,
.invite-page .meetings-info .actions {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
}

.invite-page .meetings-info .actions {
	right: auto;
	left: 0;
}

.invite-page .meetings-labals {
	color: #999;
}

.invite-page .meetings-labals > div,
.invite-page .meetings-info > div {
	padding: 8px 5px;
	font-weight: bold;
	text-align: center;
	border-left: 2px solid #fff;

	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.invite-page .meetings .line {
	width: 60px;
}

.invite-page .meetings-info .line {
	color: #666;
	font-size: 16px;
	background: rgba(0, 0, 0, 0.06);
}

.invite-page .meetings .date {
	width: 185px;
}

.invite-page .meetings .time {
	width: 160px;
}

.invite-page .meetings .duration {
	width: 170px;
}

.invite-page .meetings .topic {
	width: 280px;
}

.invite-page .meetings .contacts {
	width: 210px;
}

.invite-page .meetings .actions {
	width: 45px;
}

.invite-page .meetings .info {
	width: 100%;
	display: block;
	padding: 8px 0;
	text-align: right;
	font-weight: normal;
	border-top: 2px solid #fff;
}

.invite-page .meetings .info h5 {
	text-align: center;
	font-size: 14px;
	margin: 5px 0 25px;
	padding-bottom: 12px;
	border-bottom: 1px solid #fff;
}

.invite-page .meetings .form-row {
	padding: 0 10px;
}

.invite-page .meetings-info::after {
	content: '';
	display: block;
	clear: both;
}

.invite-page .meetings-info .label {
	display: none;
}

.invite-page .form-control {
	font-size: 14px;
}

.invite-page .meetings-info .time {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.invite-page .meetings-info .time span {
	margin: 0 5px;
}

.invite-page .meetings .date .form-control,
.invite-page .meetings .time .form-control,
.invite-page .meetings .duration .form-control {
	text-align: center;
}

.invite-page .meetings .time .form-control {
	padding-right: 3px;
}

.invite-page .meetings .delete {
	font-size: 18px;
	color: #000;
	-webkit-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}

.invite-page .meetings .delete:hover {
	color: #cf0f0f;
}

.invite-page .d-center {
	text-align: center;
}

.invite-page .add-meetings {
	color: #000;
	font-weight: bold;
	display: inline-block;
	padding: 8px 10px;
	border: 1px solid rgba(0, 0, 0, 0.3);
	border-radius: 3px;
	-webkit-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

.invite-page .add-meetings:hover {
	background: rgba(0, 0, 0, 0.1);
}

.invite-page .add-meetings i {
	font-size: 16px;
	vertical-align: middle;
	color: #51a803;
}

.invite-page .inner h5 {
	font-size: 14px;
	margin-bottom: 15px;
}

.invite-page .inner .form-row {
	margin: 0 20px 16px;
}

.invite-page .btn {
	padding: 0.375rem 18px;
	color: #138293;
	border: 1px solid #138293;
	background: #defdff;
}

.invite-page .btn:hover {
	background: #c2eef5;
}

.invite-page .btn:focus {
	box-shadow: none;
}

.invite-page .table {
	background: #f5f5f5;
}

.invite-page .table i {
	font-size: 18px;
}

.invite-page .table .actions {
	color: #000;
	-webkit-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}

.invite-page .table .actions:hover {
	color: #0772a8;
}

.invite-page #help p {
	font-size: 14px;
	line-height: 1.9;
	margin-bottom: 8px;
}

/*------------------------- Invite Information Page -------------------------*/

.invite-info-page {
	min-height: 560px;
	padding: 36px 0 55px;
	background: #f4f6f7;
}

.invite-page-header {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 22px;
	padding: 24px 28px;
	color: #fff;
	border-radius: 16px;
	background: linear-gradient(135deg, #21293e, #35415e);
	box-shadow: 0 12px 28px rgba(33, 41, 62, 0.14);
}

.invite-page-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	flex: 0 0 54px;
	font-size: 23px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.12);
}

.invite-page-header h1,
.invite-page-header p,
.invite-card-heading h2,
.invite-card-heading span,
.invite-guide-footer p {
	margin: 0;
}

.invite-page-header h1 {
	margin-bottom: 7px;
	font-size: 21px;
	font-weight: bold;
}

.invite-page-header p {
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
	line-height: 1.9;
}

.invite-guide-card {
	overflow: hidden;
	border: 1px solid #e5e9ec;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(36, 50, 70, 0.06);
}

.invite-card-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	padding: 20px 24px;
	border-bottom: 1px solid #edf0f2;
	background: #fbfcfd;
}

.invite-card-heading span {
	display: block;
	margin-bottom: 5px;
	color: #138293;
	font-size: 9px;
}

.invite-card-heading h2 {
	color: #273149;
	font-size: 16px;
}

.invite-heading-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	color: #138293;
	font-size: 17px;
	border-radius: 10px;
	background: #e8f7f8;
}

.invite-info-page .invite-guide-body {
	max-width: 980px;
	margin: 0 auto;
	padding: 28px 34px 34px;
	background: #fff;
}

.invite-info-page #help p {
	position: relative;
	margin: 0;
	padding: 13px 20px 13px 14px;
	color: #525d6b;
	font-size: 12px;
	line-height: 2.1;
	text-align: justify;
	border-bottom: 1px solid #edf0f2;
}

.invite-info-page #help .invite-numbered-item::before {
	content: '';
	position: absolute;
	top: 24px;
	right: 2px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #138293;
	box-shadow: 0 0 0 4px rgba(19, 130, 147, 0.09);
}

.invite-info-page #help .invite-numbered-item {
	padding-top: 17px;
	padding-bottom: 17px;
	color: #3f4b5b;
}

.invite-info-page #help {
	font-weight: bold;
}

.invite-info-page #help .invite-subitem {
	margin: 6px 28px 6px 0;
	padding: 10px 34px 10px 14px;
	color: #65707d;
	border: 0;
	border-radius: 8px;
	background: #f8f9fa;
}

.invite-info-page #help .invite-subitem::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 15px;
	width: 10px;
	height: 2px;
	border-radius: 2px;
	background: #8bbdc2;
	transform: translateY(-50%);
}

.invite-info-page #help p:last-child {
	border-bottom: 0;
}

.invite-info-page #help a {
	color: #138293;
	font-weight: bold;
}

.invite-info-page #help ul,
.invite-info-page #help ol {
	margin: 10px 0 18px;
	padding-right: 25px;
	color: #525d6b;
}

.invite-info-page #help li {
	margin-bottom: 8px;
	font-size: 12px;
	line-height: 2;
}

.invite-guide-footer {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 24px 24px;
	padding: 14px 16px;
	color: #7c5a1c;
	border: 1px solid #f0dfbf;
	border-radius: 10px;
	background: #fff8ea;
}

.invite-footer-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	flex: 0 0 32px;
	font-size: 15px;
	border-radius: 9px;
	background: #ffedc9;
}

.invite-guide-footer p {
	font-size: 10px;
	line-height: 1.9;
}



/*------------------------- Footer -------------------------*/

#footer {
	bottom: 0;
	width: 100%;
	padding: 50px 0 10px;
	background: #21293e;
}

#footer .contact p {
	margin: 0;
	margin-bottom: 4px;
	color: #fff;
}

#footer .about p {
	margin: 0;
	color: #fff;
	font-size: 13px;
	line-height: 1.8;
	text-align: justify;
}

#footer .shahedan {
	color: #fff;
	text-align: center;
}

#footer .logo p {
	margin: 0;
	margin-top: 4px;
	color: #fff;
	font-size: 13px;
}

#footer .copyright {
	margin-top: 6px;
	font-size: 13px;
}

#footer .footer-menu {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 18px 0;
	padding: 5px 12px;
	list-style: none;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.06);
}

#footer .footer-menu li {
	position: relative;
	padding: 4px 16px;
}

#footer .footer-menu li + li::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 1px;
	height: 16px;
	background: rgba(255, 255, 255, 0.22);
	transform: translateY(-50%);
}

#footer .footer-menu a {
	color: rgba(255, 255, 255, 0.82);
	font-size: 13px;
	transition: color 200ms ease-in-out;
}

#footer .footer-menu a:hover {
	color: #fff;
}

#footer .social-media {
	margin: 0;
	padding: 0;
	list-style: none;
}

#footer .social-media li {
	width: 46px;
	height: 46px;
	margin: 0 3px;
	display: inline-block;
	border: 1px solid #fff;
	-webkit-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

#footer .social-media li:hover {
	background: rgba(0, 0, 0, 0.4);
}

#footer .social-media a {
	display: block;
}

#footer .social-media i {
	height: 30px;
	margin: 7px 0;
	display: inline-block;
	vertical-align: middle;
	background: url('../images/sprite.png');
}

#footer .social-media .i-telegram {
	width: 29px;
	background-position: -15px -15px;
}

#footer .social-media .i-sorosh {
	width: 30px;
	background-position: -64px -15px;
}

#footer .social-media .i-bale {
	width: 28px;
	background-position: -114px -15px;
}

#footer .social-media .i-instagram {
	width: 27px;
	background-position: -162px -15px;
}

#footer .social-media .i-gplus {
	width: 32px;
	background-position: -209px -15px;
}


#footer .social-media .i-aparat {
	width: 32px;
	background-position: -254px -15px;
}

#footer .social-media .i-eitaa {
	width: 32px;
	background-position: -302px -15px;
}

#footer .social-media .i-youtube {
	width: 32px;
	background-position: -353px -15px;
}
#footer .scroll-top {
	margin-top: 15px;
	display: inline-block;
	color: #fff;
	font-size: 18px;
	-webkit-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

#footer .scroll-top:hover {
	-webkit-transform: translate(0, -4px);
	transform: translate(0, -4px);
	-webkit-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}



/*------------------------- User Modal -------------------------*/

.user-modal { z-index: 1065; }
.modal-backdrop { z-index: 1040; }
.user-modal .tabs-list {
	margin: 0 0 24px;
	border: 0;
}

.user-modal .tabs-list li {
	border: none;
	padding: 10px 5px;
	position: relative;
	border-radius: 9px;
	background: #edf1f4;
}

.user-modal .tabs-list li.active {
	color: #fff;
	background: #21293e;
}

.user-modal .modal-dialog {
	max-width: 460px;
}

.user-modal .modal-content {
	border: 0;
	border-radius: 18px;
	box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
}

.user-modal .modal-body {
	padding: 26px 30px 30px !important;
}

.user-modal-close {
	position: absolute;
	top: 12px;
	left: 14px;
	z-index: 2;
	width: 32px;
	height: 32px;
	padding: 0 !important;
	line-height: 30px;
	color: #78838d;
	border-radius: 50%;
	background: #f1f3f5 !important;
	opacity: 1;
}

.user-modal-brand {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: -26px -30px 24px;
	padding: 26px 30px 22px;
	color: #fff;
	background: linear-gradient(135deg, #21293e 0%, #35415e 100%);
}

.user-modal-brand img {
	width: 56px;
	height: 56px;
	padding: 8px;
	object-fit: contain;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.1);
}

.user-modal-brand strong,
.user-modal-brand span {
	display: block;
}

.user-modal-brand strong {
	margin-bottom: 6px;
	font-size: 18px;
}

.user-modal-brand span {
	color: rgba(255, 255, 255, 0.72);
	font-size: 11px;
	line-height: 1.8;
}

.user-modal .tabs-viewer {
	background: transparent;
}

.user-modal .form-group {
	margin-bottom: 20px;
}

.user-modal label {
	margin-bottom: 5px;
	font-size: 12px;
	font-weight: bold;
}

.user-modal .form-control {
	height: 46px;
	padding: 8px 14px;
	border: 1px solid #dce2e7;
	border-radius: 9px;
	background: #f8fafb;
	box-shadow: none;
}

.user-modal .form-control:focus {
	border-color: #138293;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(19, 130, 147, 0.1);
}

.user-modal small {
	color: #d99877;
}

.user-modal .btn {
	width: 100%;
	display: block;
	padding: 11px 5px;
	color: #fff;
	border: 0;
	border-radius: 9px;
	background: #138293;
	box-shadow: 0 7px 18px rgba(19, 130, 147, 0.2);
}

.user-modal .btn:hover {
	color: #fff;
	background: #0f6e7c;
}

.user-modal .btn:focus {
	box-shadow: none;
}

.user-modal .alert_result:not(:empty) {
	margin: 18px 0 0 !important;
	padding: 11px 14px;
	border: 0;
	border-radius: 9px;
	font-size: 12px;
	line-height: 1.8;
}

.user-modal .alert_result.alert-success {
	color: #176b45;
	background: #e8f7ef;
}

.user-modal .alert_result.alert-danger {
	color: #9b3030;
	background: #fff0f0;
}

.user-modal .note.center {
	text-align: center;
}

.user-modal .note p,
.user-modal .note a {
	font-weight: bold;
	font-size: 12px;
	line-height: 1.8;
	margin-bottom: 6px;
}

.user-modal .note a {
	color: #138293;
	-webkit-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

.user-modal .note a:hover {
	color: #033840;
}

.user-modal .note span {
	color: red;
}

.user-modal .lostpass-form {
	display: none;
}
.user-modal .plogin-form {
	display: none;
}

.jssorl-009-spin img {
	animation-name: jssorl-009-spin;
	animation-duration: 1.6s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

@keyframes jssorl-009-spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}
.jssorb031 {position:absolute;}
.jssorb031 .i {position:absolute;cursor:pointer;}
.jssorb031 .i .b {fill:#000;fill-opacity:0.5;stroke:#fff;stroke-width:1200;stroke-miterlimit:10;stroke-opacity:0.3;}
.jssorb031 .i:hover .b {fill:#fff;fill-opacity:.7;stroke:#000;stroke-opacity:.5;}
.jssorb031 .iav .b {fill:#fff;stroke:#000;fill-opacity:1;}
.jssorb031 .i.idn {opacity:.3;}

.jssora051 {display:block;position:absolute;cursor:pointer;}
.jssora051 .a {fill:none;stroke:#fff;stroke-width:360;stroke-miterlimit:10;}
.jssora051:hover {opacity:.8;}
.jssora051.jssora051dn {opacity:.5;}
.jssora051.jssora051ds {opacity:.3;pointer-events:none;}

.owl-next1{
	position: absolute;
	top: 50%;
	width: 60px;
	height: 60px;
	outline: none;
	opacity: 0.8;
	color:#fff;
	font-size: 20px;
	border-radius: 100%;
	background:rgba(255, 255, 255, 0.4);
	-webkit-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
	border:none;
}
.owl-prev1{
	position: absolute;
	top: 50%;
	width: 60px;
	height: 60px;
	outline: none;
	opacity: 0.8;
	color:#fff;
	font-size: 20px;
	border-radius: 100%;
	background:rgba(255, 255, 255, 0.4);
	-webkit-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
	border:none;
}


.sk-circle {
	margin: auto;
	width: 40px;
	height: 40px;
	position: relative;
}
.sk-circle .sk-child {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
.sk-circle .sk-child:before {
	content: '';
	display: block;
	margin: 0 auto;
	width: 15%;
	height: 15%;
	background-color: #333;
	border-radius: 100%;
	-webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
	animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}
.sk-circle .sk-circle2 {
	-webkit-transform: rotate(30deg);
	-ms-transform: rotate(30deg);
	transform: rotate(30deg); }
.sk-circle .sk-circle3 {
	-webkit-transform: rotate(60deg);
	-ms-transform: rotate(60deg);
	transform: rotate(60deg); }
.sk-circle .sk-circle4 {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg); }
.sk-circle .sk-circle5 {
	-webkit-transform: rotate(120deg);
	-ms-transform: rotate(120deg);
	transform: rotate(120deg); }
.sk-circle .sk-circle6 {
	-webkit-transform: rotate(150deg);
	-ms-transform: rotate(150deg);
	transform: rotate(150deg); }
.sk-circle .sk-circle7 {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg); }
.sk-circle .sk-circle8 {
	-webkit-transform: rotate(210deg);
	-ms-transform: rotate(210deg);
	transform: rotate(210deg); }
.sk-circle .sk-circle9 {
	-webkit-transform: rotate(240deg);
	-ms-transform: rotate(240deg);
	transform: rotate(240deg); }
.sk-circle .sk-circle10 {
	-webkit-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	transform: rotate(270deg); }
.sk-circle .sk-circle11 {
	-webkit-transform: rotate(300deg);
	-ms-transform: rotate(300deg);
	transform: rotate(300deg); }
.sk-circle .sk-circle12 {
	-webkit-transform: rotate(330deg);
	-ms-transform: rotate(330deg);
	transform: rotate(330deg); }
.sk-circle .sk-circle2:before {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s; }
.sk-circle .sk-circle3:before {
	-webkit-animation-delay: -1s;
	animation-delay: -1s; }
.sk-circle .sk-circle4:before {
	-webkit-animation-delay: -0.9s;
	animation-delay: -0.9s; }
.sk-circle .sk-circle5:before {
	-webkit-animation-delay: -0.8s;
	animation-delay: -0.8s; }
.sk-circle .sk-circle6:before {
	-webkit-animation-delay: -0.7s;
	animation-delay: -0.7s; }
.sk-circle .sk-circle7:before {
	-webkit-animation-delay: -0.6s;
	animation-delay: -0.6s; }
.sk-circle .sk-circle8:before {
	-webkit-animation-delay: -0.5s;
	animation-delay: -0.5s; }
.sk-circle .sk-circle9:before {
	-webkit-animation-delay: -0.4s;
	animation-delay: -0.4s; }
.sk-circle .sk-circle10:before {
	-webkit-animation-delay: -0.3s;
	animation-delay: -0.3s; }
.sk-circle .sk-circle11:before {
	-webkit-animation-delay: -0.2s;
	animation-delay: -0.2s; }
.sk-circle .sk-circle12:before {
	-webkit-animation-delay: -0.1s;
	animation-delay: -0.1s; }

@-webkit-keyframes sk-circleBounceDelay {
	0%, 80%, 100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	} 40% {
		  -webkit-transform: scale(1);
		  transform: scale(1);
	  }
}

@keyframes sk-circleBounceDelay {
	0%, 80%, 100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	} 40% {
		  -webkit-transform: scale(1);
		  transform: scale(1);
	  }
}


.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
	color: #a94442;
}
.has-error .form-control {
	border-color: #a94442;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.help-block {
	display: block;
	margin-top: 5px;
	margin-bottom: 10px;
	color: #737373;
}
.add_to_cart,
.pointer{
	cursor:pointer;
}

.multiline {
	white-space: pre-wrap;
}

.check-icon {
	position: relative;
	display: inline-block;
}

.check-icon::before {
	content: "\2713"; /* کد Unicode برای تیک */
	position: absolute;
	top: 0%;
	left: 0%;
	transform: translate(-50%, -50%);
	color: white; /* رنگ سفید */
	font-size: 10px; /* اندازه فونت */
	z-index: 1; /* زمینه عملکرد */
}

.check-icon::after {
	content: "";
	position: absolute;
	top: 0%;
	left: 0%;
	transform: translate(-50%, -50%);
	width: 20px; /* قطر دایره */
	height: 20px; /* قطر دایره */
	background-color: #83b180; /* رنگ دایره */
	border-radius: 50%; /* شکل گرد دایره */
	z-index: 0; /* زمینه عملکرد */
}

.no-link {
	cursor: pointer;
}
.hide{
	display: none;
}

#amzshyar-share-bg{position:fixed;top:0;left:0;right:0;bottom:0;background:#000;z-index:999;opacity:.5}#amzshyar-share-container{position:fixed;z-index:1000;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center}#amzshyar-share-container.show{animation:amzshyarAlert-show .2s ease-in-out 0s forwards}#amzshyar-share-box{background:#ffffff;width:98%;max-width:336px;border-radius:6px;box-shadow:0 36px 98px rgb(0 0 0 / 9%);padding-top:4px;overflow:hidden}#amzshyar-share-title{border-bottom:solid 1px #f1f1f1;display:flex;flex-direction:row;padding:13px 18px;margin-bottom:3px}#amzshyar-share-title-container{flex:1;font-size:17px;font-weight:900;color:#3d3e42;user-select:none}#amzshyar-share-close{cursor:pointer;width:24px;height:24px;display:flex;justify-content:center;align-items:center;border-radius:50%;transition:all 0.2s ease}#amzshyar-share-close svg{width:20px;height:20px;display:block;padding-left:0}#amzshyar-share-close:hover svg path{fill:#7a7a7a}#amzshyar-share-contents{display:flex;flex-direction:column}#amzshyar-share-contents-socials{display:flex;flex-direction:row;padding:15px 10px 4px;justify-content:center;align-items:center;flex-wrap:wrap}.amzshyar-share-contents-socials-item{width:42px;height:42px;background:none;margin:0 4px;border-radius:100%;transition:all .2s ease;display:flex;justify-content:center;align-items:center;box-shadow:0 0 0 2px #ffffff}.amzshyar-share-contents-socials-item:hover{background:#334155}.amzshyar-share-contents-socials-item svg{width:25px}.amzshyar-share-contents-socials-item svg path{fill:#334155;transition:all .2s ease}.amzshyar-share-contents-socials-item:hover svg path{fill:#ffffff}#amzshyar-share-contents-shorturl-wrapper{display:flex;flex-direction:row;justify-content:center;align-items:center;padding:11px 18px 13px;background:#ffffff;margin:15px 0 0 0;border-radius:0;border-top:solid 1px #f3f3f3}#amzshyar-share-contents-shorturl-label{width:72px;font-size:14px;white-space:nowrap;user-select:none;color:#6a6e72;text-align:center}#amzshyar-share-contents-shorturl-address{flex:1}#amzshyar-share-contents-shorturl-address input{width:100%;display:block;direction:ltr;text-align:center;font-size:15px;color:#747474;border:none;background:none;outline:none;box-shadow:none;font-weight:normal;letter-spacing:-0.5px;padding:0;margin:0;overflow:hidden}#amzshyar-share-contents-shorturl-copy{width:29px}#amzshyar-share-contents-shorturl-copy svg{width:17px;display:block;margin:auto;cursor:pointer}#amzshyar-share-contents-shorturl-copy svg path{fill:#9E9E9E}
#my-advice .item-advice:nth-child(odd) .row{
	background-color: #f4f4f4;
}

#my-advice .item-advice:nth-child(even) .row{
	background-color: #c4c4c4;
}
.answer audio{
	width: 80%;
	display: block;
	margin: 18px auto 10px;
	border-radius: 50px;
	box-shadow: 0 0 10px #888;
}

.amzshyar-login-link.disabled, .amzshyar-login-form.disabled .amzshyar-login-link {
	pointer-events: none;
	color: #b7b7b7;
}
.amzshyar-login-link {
	border: none;
	background: none;
	color: #2096f5;
	cursor: pointer;
	font-size: 13px;
	word-spacing: -2px;
	position: relative;
	display: inline-block;
	margin: 10px 0;
	font-weight: 400;
	outline: none;
	box-shadow: none;
	text-decoration: none;
	padding: 0 3px;
}

.tabs-list-jk li.active::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom: -30px;
  right: 0;
  left: 0;
  margin: 0 auto;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-bottom: 14px solid #ececec;
}


.pagination-container {
	text-align: center;
	margin-top: 20px;
}
.pagination-advice{
	display: inline-flex;
	padding-left: 0;
	list-style: none;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	padding-bottom: 10px;
}
.page-link {
	padding: 5px 10px;
	text-decoration: none;
	border: 1px solid #ddd;
	margin: 0 2px;
	color: #333;
}
.current-page {
	background-color: #007bff;
	color: white;
	cursor: default;
}
.page-link:hover:not(.current-page):not(.disabled) {
	background-color: #ddd;
}
.pagination-container {
	text-align: center;
	margin-top: 20px; /* فاصله از محتوای بالا */
}
.pagination {
	display: inline-block;
}
.disabled {
	cursor: default;
	color: #999;
}
.disabled:hover {
	background-color: transparent;
}
#loading{
	text-align: center;
}
.loader {
	width: 50px;
	aspect-ratio: 1;
	display: grid;
}
.loader::before,
.loader::after {
	content:"";
	grid-area: 1/1;
	--c:no-repeat radial-gradient(farthest-side,#25b09b 92%,#0000);
	background:
			var(--c) 50%  0,
			var(--c) 50%  100%,
			var(--c) 100% 50%,
			var(--c) 0    50%;
	background-size: 12px 12px;
	animation: l12 1s infinite;
}
.loader::before {
	margin: 4px;
	filter: hue-rotate(45deg);
	background-size: 8px 8px;
	animation-timing-function: linear
}

@keyframes l12 {
	100%{transform: rotate(.5turn)}
}

/* Cart */
.cart-page { padding-top: 28px; padding-bottom: 55px; background: #f7f9fc; }
.cart-page .container { max-width: 1240px; }
.cart-page-header { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; padding: 25px 28px; color: #fff; border-radius: 22px; background: linear-gradient(135deg, #174d69 0%, #247b86 100%); box-shadow: 0 16px 38px rgba(22, 76, 102, .18); }
.cart-page-header h1 { margin: 0 0 7px; color: inherit; font-size: 24px; font-weight: 800; }
.cart-page-header p { margin: 0; color: rgba(255,255,255,.82); font-size: 14px; }
.cart-page-icon { display: inline-flex; flex: 0 0 56px; width: 56px; height: 56px; align-items: center; justify-content: center; border-radius: 18px; background: rgba(255,255,255,.15); font-size: 25px; }
.cart-tabs { overflow: hidden; margin: 0 0 20px; padding: 6px; border: 1px solid #e5ebf0; border-radius: 16px; background: #fff; box-shadow: 0 8px 25px rgba(24, 59, 78, .06); }
.cart-tabs li { display: flex; min-height: 46px; align-items: center; justify-content: center; gap: 7px; margin: 0; border: 0 !important; border-radius: 12px; color: #647985; cursor: pointer; transition: .2s ease; }
.cart-tabs li.active { color: #fff; background: #1d7180; box-shadow: 0 7px 16px rgba(29,113,128,.22); }
.cart-tabs-viewer, .cart-tabs-viewer .tabs { border: 0; background: transparent; }
.cart-panel, .checkout-card, .cart-summary-card, .cart-guide-card { overflow: hidden; border: 1px solid #e5ebf0; border-radius: 20px; background: #fff; box-shadow: 0 10px 30px rgba(24,59,78,.07); }
.cart-section-heading { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 22px 25px; border-bottom: 1px solid #edf1f4; }
.cart-section-heading h2, .checkout-card-heading h2, .cart-summary-card h2 { margin: 0 0 6px; color: #173d50; font-size: 18px; font-weight: 800; }
.cart-section-heading p, .checkout-card-heading p { margin: 0; color: #7b8c96; font-size: 13px; }
.cart-count-badge { padding: 7px 13px; color: #1d7180; border-radius: 20px; background: #eaf6f7; font-size: 12px; font-weight: 700; white-space: nowrap; }
.cart-table-wrap { padding: 0 16px 12px; }
.cart-table { margin: 0; color: #425c69; }
.cart-table thead th { padding: 15px 8px; color: #76909c; border: 0; border-bottom: 1px solid #e8eef1; background: transparent; font-size: 11px; font-weight: 800; white-space: nowrap; }
.cart-table tbody td { padding: 15px 8px; vertical-align: middle; border: 0; border-bottom: 1px solid #edf1f4; font-size: 12px; }
.cart-table tbody tr:last-child td { border-bottom: 0; }
.cart-col-code { width: 70px; }
.cart-col-subject { width: 150px; }
.cart-col-title { min-width: 230px; }
.cart-col-type { width: 105px; }
.cart-col-meta { width: 105px; }
.cart-col-count { width: 70px; }
.cart-col-price { width: 110px; }
.cart-col-delete { width: 54px; text-align: center; }
.cart-product-code { display: inline-block; padding: 5px 9px; color: #315866; border-radius: 8px; background: #f0f3f5; font-size: 11px; font-weight: 800; white-space: nowrap; }
.cart-product-title { display: -webkit-box; overflow: hidden; color: #244957; font-size: 13px; line-height: 1.8; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.cart-subject-text { display: -webkit-box; overflow: hidden; color: #536f7a; line-height: 1.8; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.cart-item-price { color: #173d50; font-weight: 800; white-space: nowrap; }
.cart-media-type,.cart-meta-chip,.cart-quantity-badge { display: inline-flex; min-height: 28px; align-items: center; justify-content: center; gap: 5px; padding: 5px 8px; border-radius: 9px; white-space: nowrap; font-size: 11px; font-weight: 800; }
.cart-media-type { color: #1d7180; background: #eaf6f7; }
.cart-meta-chip { color: #6d7d35; background: #f3f7e8; }
.cart-quantity-badge { min-width: 34px; color: #df7d2a; background: #fff1e4; }
.cart-delete-button { display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; padding: 0; color: #d85e62; border: 0; border-radius: 10px; background: #fff0f0; cursor: pointer; transition: .2s ease; }
.cart-delete-button:hover { color: #fff; background: #d85e62; transform: translateY(-2px); }
.cart-checkout-grid { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(260px, .75fr); gap: 20px; margin-top: 20px; align-items: start; }
.checkout-card { padding-bottom: 24px; }
.checkout-card-heading { display: flex; align-items: center; gap: 14px; padding: 22px 25px; border-bottom: 1px solid #edf1f4; }
.checkout-card-heading > span { display: inline-flex; flex: 0 0 44px; width: 44px; height: 44px; align-items: center; justify-content: center; color: #1d7180; border-radius: 13px; background: #eaf6f7; font-size: 19px; }
.checkout-card form { padding: 22px 25px 0; }
.delivery-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.delivery-option { position: relative; display: flex; min-height: 88px; align-items: flex-start; gap: 10px; margin: 0; padding: 16px 14px; border: 1px solid #dfe7eb; border-radius: 14px; background: #fbfcfd; cursor: pointer; transition: .2s ease; }
.delivery-option:hover { border-color: #91c3c9; background: #f5fbfb; }
.delivery-option input { position: absolute; opacity: 0; }
.delivery-radio { flex: 0 0 18px; width: 18px; height: 18px; margin-top: 2px; border: 2px solid #adbdc4; border-radius: 50%; background: #fff; box-shadow: inset 0 0 0 4px #fff; transition: .2s ease; }
.delivery-option input:checked + .delivery-radio { border-color: #1d7180; background: #1d7180; }
.delivery-option:has(input:checked) { border-color: #1d7180; background: #f1fafa; box-shadow: 0 5px 16px rgba(29,113,128,.1); }
.delivery-option strong, .delivery-option small { display: block; }
.delivery-option strong { margin-bottom: 5px; color: #274957; font-size: 13px; }
.delivery-option small { color: #83949c; font-size: 11px; line-height: 1.7; }
.cart-address-box { margin-top: 16px; padding: 16px; border: 1px solid #e1ebef; border-radius: 16px; background: linear-gradient(180deg,#fbfdfd,#f6fbfb); }
.cart-address-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.cart-address-head strong { color: #214757; font-size: 15px; font-weight: 800; }
.cart-address-head small { color: #7e929b; font-size: 11px; }
.cart-address-option { position: relative; display: flex; gap: 10px; margin: 0 0 10px; padding: 13px 14px; border: 1px solid #e2eaee; border-radius: 14px; background: #fff; cursor: pointer; transition: .2s ease; }
.cart-address-option:hover { border-color: #9fcbd0; transform: translateY(-1px); }
.cart-address-option input { flex: 0 0 18px; width: 18px; height: 18px; margin-top: 3px; accent-color: #2b7c88; }
.cart-address-option span { display: block; width: 100%; }
.cart-address-option strong, .cart-address-option small, .cart-address-option em { display: block; }
.cart-address-option strong { color: #274957; font-size: 13px; font-style: normal; }
.cart-address-option small { margin-top: 3px; color: #80929b; font-size: 11px; }
.cart-address-option em { margin-top: 7px; color: #526b76; font-size: 12px; font-style: normal; line-height: 1.9; }
.cart-address-option:has(input:checked) { border-color: #2b7c88; background: #eefafa; box-shadow: 0 8px 20px rgba(43,124,136,.09); }
.cart-inline-profile-fields { margin: 14px 0 16px; padding: 14px 14px 2px; border: 1px solid #e6eef1; border-radius: 16px; background: #fbfdfd; }
.cart-new-address-fields { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; margin-top: 10px; }
.cart-new-address-fields .form-control { min-height: 42px; border-color: #dfe9ee; border-radius: 12px; box-shadow: none; }
.cart-new-address-fields textarea.form-control { grid-column: 1 / -1; resize: vertical; }
.cart-new-address-fields .delivery-first-name,.cart-new-address-fields .delivery-last-name { grid-column: span 1; }
.cart-download-only-card { display: flex; gap: 14px; align-items: flex-start; padding: 18px; border: 1px solid #cfe6ea; border-radius: 16px; background: linear-gradient(135deg,#effbfb,#fff); }
.cart-download-only-card > span { display: inline-flex; flex: 0 0 46px; width: 46px; height: 46px; align-items: center; justify-content: center; color: #2b7c88; border-radius: 14px; background: #ddf3f5; font-size: 22px; }
.cart-download-only-card strong { display: block; margin-bottom: 7px; color: #214757; font-size: 15px; font-weight: 800; }
.cart-download-only-card p { margin: 0; color: #6e858f; font-size: 12px; line-height: 2; }
.cart-profile-required-alert { margin-bottom: 14px; padding: 13px 15px; border: 1px solid #ffd5a6; border-radius: 14px; background: #fff8ef; color: #9a5a18; }
.cart-profile-required-alert strong, .cart-profile-required-alert span { display: block; }
.cart-profile-required-alert strong { margin-bottom: 4px; font-size: 13px; font-weight: 800; }
.cart-profile-required-alert span { font-size: 12px; line-height: 1.8; }
.cart-profile-form { padding: 22px 25px 25px; }
.cart-profile-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 14px; }
.cart-profile-actions .alert { min-width: 220px; margin: 0; padding: 9px 12px; border-radius: 10px; font-size: 12px; }
.searchable-select-native { position: absolute!important; width: 1px!important; height: 1px!important; opacity: 0!important; pointer-events: none!important; }
.searchable-select-ui { position: relative; width: 100%; }
.searchable-select-toggle { display: flex; width: 100%; min-height: 42px; align-items: center; justify-content: space-between; padding: 9px 13px; color: #4d6570; border: 1px solid #dfe9ee; border-radius: 12px; background: #fff; text-align: right; cursor: pointer; }
.searchable-select-toggle::after { content: "⌄"; color: #83949c; font-size: 14px; }
.searchable-select-panel { position: absolute; z-index: 70; right: 0; left: 0; display: none; margin-top: 6px; padding: 8px; border: 1px solid #dfe9ee; border-radius: 14px; background: #fff; box-shadow: 0 16px 34px rgba(22,55,68,.16); }
.searchable-select-ui.open .searchable-select-panel { display: block; }
.searchable-select-search { width: 100%; height: 38px; margin-bottom: 7px; padding: 7px 11px; border: 1px solid #dfe9ee; border-radius: 10px; outline: 0; font-size: 12px; }
.searchable-select-options { max-height: 190px; overflow: auto; }
.searchable-select-option { display: block; width: 100%; padding: 8px 10px; color: #516b76; border: 0; border-radius: 9px; background: transparent; text-align: right; cursor: pointer; font-size: 12px; }
.searchable-select-option:hover,.searchable-select-option.selected { color: #fff; background: #2b7c88; }
.cart-address-edit-btn { padding: 6px 11px; color: #fff; border: 0; border-radius: 9px; background: #2b7c88; font-size: 11px; }
.cart-address-edit-btn:hover { color: #fff; background: #236a74; }

.search-modern-page { padding: 36px 0 60px; background: linear-gradient(180deg,#f7fbfb 0,#fff 260px); }
.search-modern-hero { display: grid; grid-template-columns: 72px minmax(0,1fr) 110px; gap: 16px; align-items: center; margin-bottom: 18px; padding: 24px 26px; border: 1px solid #dbeaec; border-radius: 24px; background: radial-gradient(circle at top left,rgba(43,124,136,.14),transparent 34%), #fff; box-shadow: 0 16px 40px rgba(28,84,94,.08); }
.search-modern-icon { display: inline-flex; width: 64px; height: 64px; align-items: center; justify-content: center; color: #2b7c88; border-radius: 22px; background: #e4f5f6; font-size: 30px; }
.search-modern-hero h1 { margin: 0 0 8px; color: #183f4c; font-size: 25px; font-weight: 900; }
.search-modern-hero p { margin: 0; color: #6c848e; font-size: 13px; line-height: 2; }
.search-modern-count { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 82px; color: #2b7c88; border-radius: 20px; background: #f0fafb; }
.search-modern-count strong { font-size: 26px; font-weight: 900; line-height: 1; }
.search-modern-count span { margin-top: 7px; color: #718992; font-size: 12px; }
.search-modern-form { position: relative; display: grid; grid-template-columns: 42px minmax(0,1fr) 120px; gap: 8px; align-items: center; margin-bottom: 16px; padding: 10px; border: 1px solid #dfecee; border-radius: 18px; background: #fff; box-shadow: 0 10px 26px rgba(34,86,96,.07); }
.search-modern-form i { display: flex; align-items: center; justify-content: center; color: #8aa0a8; font-size: 20px; }
.search-modern-form input { width: 100%; height: 46px; padding: 0 6px; color: #244854; border: 0; outline: 0; background: transparent; font-size: 13px; }
.search-modern-form button { height: 46px; color: #fff; border: 0; border-radius: 14px; background: #2b7c88; font-size: 13px; font-weight: 800; cursor: pointer; transition: .2s ease; }
.search-modern-form button:hover { background: #236a74; transform: translateY(-1px); }
.search-modern-tabs.search-cats { display: flex; gap: 10px; margin: 0 0 22px; padding: 0; border: 0; }
.search-modern-tabs.search-cats li { float: none; width: auto; margin: 0; border: 0; }
.search-modern-tabs.search-cats li a { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 16px; color: #5f7780; border: 1px solid #dfe9ec; border-radius: 999px; background: #fff; font-size: 13px; font-weight: 800; cursor: pointer; }
.search-modern-tabs.search-cats li a::after { display: none; }
.search-modern-tabs.search-cats li.active a,.search-modern-tabs.search-cats li a:hover { color: #fff; border-color: #2b7c88; background: #2b7c88; }
.search-modern-tabs.search-cats li a span { display: inline-flex; min-width: 24px; height: 24px; align-items: center; justify-content: center; border-radius: 999px; background: rgba(43,124,136,.1); font-size: 12px; }
.search-modern-tabs.search-cats li.active a span,.search-modern-tabs.search-cats li a:hover span { color: #2b7c88; background: #fff; }
.search-modern-results.search-results .item { padding: 0; border: 0; background: transparent; }
.search-product-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.search-product-card { display: grid; grid-template-columns: 190px minmax(0,1fr); gap: 18px; min-height: 220px; padding: 16px; border: 1px solid #e1ebee; border-radius: 22px; background: #fff; box-shadow: 0 14px 34px rgba(30,79,90,.07); transition: .2s ease; }
.search-product-card:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(30,79,90,.11); }
.search-product-thumb { position: relative; display: block; overflow: hidden; min-height: 188px; border-radius: 18px; background: linear-gradient(135deg,#edf7f8,#f7fbfb); }
.search-product-thumb img { width: 100%; height: 100%; object-fit: cover; transition: .25s ease; }
.search-product-card:hover .search-product-thumb img { transform: scale(1.04); }
.search-product-placeholder { display: flex; width: 100%; height: 100%; min-height: 188px; align-items: center; justify-content: center; color: #2b7c88; background: radial-gradient(circle,rgba(43,124,136,.14),transparent 58%), linear-gradient(135deg,#eff8f9,#fff); font-size: 54px; }
.search-product-thumb span { position: absolute; top: 12px; right: 12px; padding: 5px 10px; color: #fff; border-radius: 999px; background: rgba(43,124,136,.92); font-size: 11px; font-weight: 800; }
.search-product-body { display: flex; min-width: 0; flex-direction: column; }
.search-product-meta { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 8px; }
.search-product-meta span { padding: 4px 9px; color: #66808a; border-radius: 999px; background: #f0f6f7; font-size: 11px; }
.search-product-body h2 { margin: 0 0 9px; font-size: 17px; font-weight: 900; line-height: 1.8; }
.search-product-body h2 a { color: #183f4c; }
.search-product-body h2 a:hover { color: #2b7c88; }
.search-product-body p { margin: 0 0 12px; color: #667d86; font-size: 12px; line-height: 2; }
.search-product-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 12px; border-top: 1px solid #edf3f4; }
.search-product-footer strong { color: #2b7c88; font-size: 15px; font-weight: 900; white-space: nowrap; }
.search-product-footer strong small { font-size: 11px; font-weight: 500; }
.search-product-footer > div { display: flex; gap: 7px; align-items: center; }
.search-view-link,.search-cart-btn,.search-share-btn,.search-download-btn { display: inline-flex; height: 38px; align-items: center; justify-content: center; border: 0; border-radius: 12px; cursor: pointer; transition: .2s ease; }
.search-view-link { padding: 0 14px; color: #fff; background: #2b7c88; font-size: 12px; font-weight: 800; }
.search-download-btn { gap: 6px; padding: 0 13px; color: #fff; background: #9abb67; font-size: 12px; font-weight: 800; }
.search-cart-btn,.search-share-btn { width: 38px; color: #2b7c88; background: #e8f5f6; font-size: 16px; }
.search-view-link:hover,.search-cart-btn:hover,.search-share-btn:hover,.search-download-btn:hover { color: #fff; background: #236a74; transform: translateY(-1px); }
.search-product-tags { display: flex; gap: 6px; flex-wrap: wrap; margin: 12px 0 0; padding: 0; list-style: none; }
.search-product-tags a { display: inline-flex; padding: 4px 9px; color: #78909a; border-radius: 999px; background: #f7fafb; font-size: 11px; }
.search-product-tags a:hover { color: #fff; background: #9abb67; }
.search-empty-card { max-width: 560px; margin: 24px auto; padding: 32px 24px; text-align: center; border: 1px solid #e2ecef; border-radius: 24px; background: #fff; box-shadow: 0 12px 32px rgba(30,79,90,.06); }
.search-empty-card span { display: inline-flex; width: 62px; height: 62px; align-items: center; justify-content: center; color: #2b7c88; border-radius: 20px; background: #e8f5f6; font-size: 28px; }
.search-empty-card h2 { margin: 14px 0 8px; color: #183f4c; font-size: 19px; font-weight: 900; }
.search-empty-card p { margin: 0; color: #7a929b; font-size: 13px; line-height: 2; }
.search-advice-list { display: grid; min-width: 0; gap: 14px; }
.search-advice-card { min-width: 0; overflow: hidden; padding: 20px 22px; border: 1px solid #e1ebee; border-radius: 20px; background: #fff; box-shadow: 0 12px 30px rgba(30,79,90,.06); }
.search-advice-badge { display: inline-flex; margin-bottom: 10px; padding: 5px 10px; color: #2b7c88; border-radius: 999px; background: #e8f5f6; font-size: 11px; font-weight: 800; }
.search-advice-card h2 { min-width: 0; margin: 0 0 10px; color: #183f4c; font-size: 16px; font-weight: 900; line-height: 1.9; white-space: normal; overflow-wrap: anywhere; word-break: break-word; }
.search-advice-card p { min-width: 0; margin: 0; color: #667d86; font-size: 13px; line-height: 2.1; white-space: normal; overflow-wrap: anywhere; word-break: break-word; }
.category-modern-hero { background: radial-gradient(circle at top right,rgba(154,187,103,.16),transparent 36%), radial-gradient(circle at bottom left,rgba(43,124,136,.13),transparent 34%), #fff; }
.category-modern-page .search-modern-results { min-width: 0; overflow-x: hidden; }
.category-advice-audio { margin-top: 14px; padding: 12px; border-radius: 14px; background: #f3f8f9; }
.category-advice-audio audio { display: block; width: 100%; max-width: 100%; height: 38px; }
.cart-address-locked,.cart-download-badge { display: inline-flex; align-items: center; justify-content: center; min-height: 26px; padding: 4px 9px; border-radius: 999px; font-size: 11px; white-space: nowrap; }
.cart-address-locked { color: #7b8790; background: #eef2f4; }
.cart-download-badge { color: #2b7c88; background: #e8f7f8; }
.cart-rules { display: flex; align-items: center; gap: 9px; margin: 20px 0; color: #536b76; font-size: 13px; cursor: pointer; }
.cart-rules input { position: absolute; opacity: 0; }
.cart-rules-check { display: inline-flex; flex: 0 0 21px; width: 21px; height: 21px; align-items: center; justify-content: center; color: transparent; border: 2px solid #b8c6cc; border-radius: 7px; background: #fff; font-size: 13px; transition: .2s ease; }
.cart-rules input:checked + .cart-rules-check { color: #fff; border-color: #1d7180; background: #1d7180; }
.cart-continue-button { display: inline-flex; min-width: 155px; align-items: center; justify-content: center; gap: 9px; padding: 11px 22px; border-radius: 11px; background: #ee8b38; box-shadow: 0 8px 18px rgba(238,139,56,.22); }
.cart-summary-card { position: sticky; top: 20px; padding: 24px; }
.cart-summary-card h2 { padding-bottom: 17px; border-bottom: 1px solid #edf1f4; }
.cart-summary-row { display: flex; justify-content: space-between; padding: 18px 0; color: #71858f; font-size: 13px; }
.cart-summary-row strong { color: #3d5b69; }
.cart-delivery-fee-row { border-top: 1px dashed #dfe8ec; }
.cart-delivery-fee-row strong { color: #ee8b38; }
.cart-summary-total { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 17px; border-radius: 13px; background: #edf8f8; color: #315866; font-size: 13px; }
.cart-summary-total strong { color: #176b78; font-size: 18px; white-space: nowrap; }
.cart-summary-total small { font-size: 11px; }
.cart-summary-card > p { margin: 17px 0 0; color: #84969e; font-size: 11px; line-height: 1.9; }
.cart-empty-state { padding: 60px 20px; text-align: center; border: 1px solid #e5ebf0; border-radius: 20px; background: #fff; box-shadow: 0 10px 30px rgba(24,59,78,.07); }
.cart-empty-icon { display: inline-flex; width: 76px; height: 76px; align-items: center; justify-content: center; margin-bottom: 18px; color: #1d7180; border-radius: 24px; background: #eaf6f7; font-size: 32px; }
.cart-empty-state h2 { margin: 0 0 9px; color: #214757; font-size: 20px; font-weight: 800; }
.cart-empty-state p { margin-bottom: 22px; color: #83949c; }
.cart-empty-state .btn { padding: 10px 23px; border-radius: 11px; }
.cart-guide-content { padding: 24px 25px; color: #526b76; line-height: 2.1; }
.cart-guide-content p:last-child { margin-bottom: 0; }
.cart-rules-modal .modal-content { overflow: hidden; border: 0; border-radius: 18px; box-shadow: 0 20px 60px rgba(18,52,68,.22); }
.cart-rules-modal .modal-header { align-items: center; padding: 19px 22px; color: #fff; border: 0; background: linear-gradient(135deg,#174d69,#247b86); }
.cart-rules-modal .modal-title { color: inherit; font-weight: 800; }
.cart-rules-modal .close { margin: 0 auto 0 0; padding: 0; color: #fff; text-shadow: none; opacity: .85; }
.cart-rules-modal .modal-body { padding: 24px; color: #526b76; line-height: 2; }

/* Thematic answers */
.subject-page { padding: 28px 0 60px; background: #f7f9fc; }
.subject-page > .container { max-width: 1180px; }
.subject-page-header { display: flex; align-items: center; gap: 18px; padding: 27px 30px; color: #fff; border-radius: 22px; background: linear-gradient(135deg, #174d69 0%, #247b86 100%); box-shadow: 0 16px 38px rgba(22,76,102,.18); }
.subject-page-header h1 { margin: 0 0 8px; color: inherit; font-size: 25px; font-weight: 800; }
.subject-page-header p { max-width: 820px; margin: 0; color: rgba(255,255,255,.83); font-size: 13px; line-height: 2; }
.subject-page-icon { display: inline-flex; flex: 0 0 58px; width: 58px; height: 58px; align-items: center; justify-content: center; border-radius: 18px; background: rgba(255,255,255,.15); font-size: 25px; }
.subject-info-card { display: flex; align-items: center; gap: 13px; margin: 18px 0; padding: 15px 20px; color: #55707c; border: 1px solid #dcebed; border-radius: 14px; background: #f0f9fa; }
.subject-info-card > i { color: #1d7180; font-size: 18px; }
.subject-info-card p { margin: 0; font-size: 12px; line-height: 1.9; }
.subject-category-card, .subject-results-section { border: 1px solid #e5ebf0; border-radius: 20px; background: #fff; box-shadow: 0 10px 30px rgba(24,59,78,.07); }
.subject-section-heading { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 22px 25px; border-bottom: 1px solid #edf1f4; }
.subject-section-heading h2, .subject-results-heading h2 { margin: 0 0 6px; color: #173d50; font-size: 18px; font-weight: 800; }
.subject-section-heading p { margin: 0; color: #7b8c96; font-size: 12px; }
.subject-section-heading > span { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; color: #1d7180; border-radius: 13px; background: #eaf6f7; font-size: 18px; }
.subject-page .qa-categories { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); align-items: start; gap: 11px; margin: 0; padding: 22px 25px 28px; position: relative; }
.subject-page .qa-categories > li { align-self: start; max-width: none; min-width: 0; padding: 0; position: relative; border: 1px solid #dfe7eb; border-radius: 12px; background: #fbfcfd; font-weight: 700; transition: .2s ease; }
.subject-page .qa-categories .category-link { cursor: pointer; }
.subject-page .qa-categories > li > a { padding: 12px 8px; color: #46616d; text-decoration: none; }
.subject-page .qa-categories > li:hover, .subject-page .qa-categories > li.active { border-color: #1d7180; background: #1d7180; box-shadow: 0 7px 16px rgba(29,113,128,.18); }
.subject-page .qa-categories > li:hover > a, .subject-page .qa-categories > li.active > a { color: #fff; }
.subject-page .qa-categories .sub { position: static; width: auto; overflow: hidden; margin: 0 8px 8px; padding: 7px; border-radius: 10px; background: #eaf6f7; box-shadow: none; }
.subject-page .qa-categories .sub::before,
.subject-page .qa-categories .sub li::before,
.subject-page .qa-categories .sub li::after,
.subject-page .qa-categories .sub a::before,
.subject-page .qa-categories .sub a::after { display: none !important; content: none !important; border: 0 !important; }
.subject-page .qa-categories .sub li { float: none; margin: 0; }
.subject-page .qa-categories .sub li + li { margin-top: 4px; }
.subject-page .qa-categories .sub li a { padding: 8px 7px; color: #3f6470; border-radius: 8px; text-decoration: none; }
.subject-page .qa-categories .sub li a:hover { color: #173d50; background: #d6ecee; }
.subject-page .qa-categories .sub li a.selected { color: #fff; background: #2b7c88; font-weight: 800; box-shadow: 0 4px 10px rgba(43,124,136,.2); }
.subject-page .qa-categories .sub li a:hover, .subject-page .qa-categories .sub li.active > a { color: #fff; background: #2b7c88; }
.subject-page .qa-categories .sub .sub { width: auto; margin: 4px 8px 5px; padding: 6px; border: 0; background: #d9edef; }
.subject-page .qa-categories .sub .sub .sub { background: #cae5e8; }
.subject-page .qa-categories .sub li.menu-item-has-children.active > a { color: #fff; background: #2b7c88; }
.subject-page .qa-categories .sub .sub li > a,
.subject-page .qa-categories .sub .sub .sub li > a { color: #294f5b; background: transparent; }
.subject-page .qa-categories .sub .sub li > a:hover,
.subject-page .qa-categories .sub .sub .sub li > a:hover,
.subject-page .qa-categories .sub .sub .sub li > a:hover { color: #173d50; background: #c4e3e6; }
.subject-page .qa-categories .sub .sub li > a.selected,
.subject-page .qa-categories .sub .sub .sub li > a.selected { color: #214b57; background: #a9d6db; box-shadow: 0 4px 10px rgba(43,124,136,.16); }
.subject-results-section { overflow: hidden; margin-top: 20px; }
.subject-results-heading { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 22px 25px; border-bottom: 1px solid #edf1f4; }
.subject-results-eyebrow { display: block; margin-bottom: 5px; color: #e98738; font-size: 11px; font-weight: 800; }
.subject-result-count { padding: 7px 13px; color: #1d7180; border-radius: 20px; background: #eaf6f7; font-size: 12px; font-weight: 700; white-space: nowrap; }
.subject-result-count:empty { display: none; }
.subject-page .qa-list { display: grid; gap: 15px; margin: 0; padding: 20px 25px 25px; }
.subject-page .qa-list .qa { overflow: hidden; padding: 0; border: 1px solid #e4eaee; border-radius: 16px; background: #fff; box-shadow: 0 6px 18px rgba(23,61,80,.05); }
.subject-page .qa-list .qa:nth-child(even) { background: #fff; }
.subject-page .qa-list .question, .subject-page .qa-list .answer { display: grid; grid-template-columns: 62px minmax(0,1fr); align-items: start; gap: 14px; margin: 0; padding: 18px 20px; }
.subject-page .qa-list .question { border-bottom: 1px solid #edf1f4; background: #fbfcfd; }
.subject-page .qa-list .answer { padding-top: 20px; padding-bottom: 20px; }
.subject-page .qa-list .question p, .subject-page .qa-list .answer p { min-width: 0; margin: 0; color: #415d69; font-size: 13px; line-height: 2.05; text-align: justify; overflow-wrap: anywhere; word-break: break-word; }
.subject-page .qa-list .question p { color: #244957; font-weight: 800; }
.subject-page .qa-list .question p::before, .subject-page .qa-list .answer p::before { display: none; }
.subject-answer-label { display: inline-flex; align-items: center; justify-content: center; padding: 5px 8px; border-radius: 8px; font-size: 11px; font-weight: 800; }
.question-label { color: #1d7180; background: #e6f4f5; }
.answer-label { color: #dc7727; background: #fff1e5; }
.subject-audio { display: flex; align-items: center; gap: 15px; margin: 0 20px 20px; padding: 13px 15px; border-radius: 12px; background: #f4f7f8; }
.subject-audio > span { flex: 0 0 auto; color: #56717c; font-size: 11px; font-weight: 700; }
.subject-audio audio { max-width: 100%; height: 36px; }
.subject-empty-state { margin: 25px; padding: 38px 20px; text-align: center; border: 1px dashed #e2b078; border-radius: 16px; background: #fffaf4; }
.subject-empty-state > span { display: inline-flex; width: 54px; height: 54px; align-items: center; justify-content: center; margin-bottom: 12px; color: #df812f; border-radius: 17px; background: #ffeedc; font-size: 21px; }
.subject-empty-state h3 { margin: 0 0 7px; color: #704e31; font-size: 16px; font-weight: 800; }
.subject-empty-state p { margin: 0; color: #9a7b62; font-size: 12px; }
.subject-loading { align-items: center; justify-content: center; gap: 12px; padding: 35px; color: #66808b; font-size: 12px; }
.subject-loading .loader { width: 34px; }
.subject-page .pagination-container { margin: 0; padding: 0 25px 24px; }
.subject-page .pagination-advice { gap: 5px; margin: 0; padding: 0; }
.subject-page .page-link { display: inline-flex; min-width: 34px; height: 34px; align-items: center; justify-content: center; padding: 4px 9px; color: #57717c; border: 1px solid #dfe7eb; border-radius: 9px; background: #fff; }
.subject-page .current-page { color: #fff; border-color: #1d7180; background: #1d7180; }

/* Responsive image/video hero slider */
#home-slider.home-media-slider { position: relative; overflow: hidden; background: #102c3a; }
#home-slider .home-media-slide { position: relative; height: clamp(360px, 52vw, 650px); overflow: hidden; background: #102c3a; }
#home-slider .home-slide-media, #home-slider .home-slide-media img, #home-slider .home-slide-media video { width: 100%; height: 100%; }
#home-slider .home-slide-media img, #home-slider .home-slide-media video { display: block; object-fit: cover; object-position: center; }
#home-slider .home-slide-shade { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(5,25,34,.08) 20%, rgba(5,25,34,.2) 55%, rgba(5,25,34,.52) 100%); }
#home-slider .home-slide-caption-wrap { position: absolute; z-index: 3; right: 0; bottom: 10%; left: 0; pointer-events: none; }
#home-slider .home-slide-caption { width: min(520px, 52%); padding: 22px 24px; color: #fff; border: 1px solid rgba(255,255,255,.2); border-radius: 20px; background: rgba(11,42,54,.48); box-shadow: 0 14px 38px rgba(0,0,0,.18); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); pointer-events: auto; }
#home-slider .home-slide-caption h2 { margin: 0 0 9px; color: #fff; font-size: clamp(19px,2.2vw,30px); font-weight: 800; line-height: 1.6; }
#home-slider .home-slide-description { color: rgba(255,255,255,.88); font-size: 13px; line-height: 2; overflow-wrap: anywhere; }
#home-slider .home-slide-description p { margin: 0; padding: 0; color: inherit; font-size: inherit; background: transparent; }
#home-slider .home-slide-description.is-collapsible:not(.is-expanded) { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
#home-slider .home-slide-more { margin-top: 7px; padding: 2px 0; color: #ffd1ac; border: 0; border-bottom: 1px dashed currentColor; background: transparent; font-size: 11px; cursor: pointer; }
#home-slider .home-slide-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 13px; padding: 8px 13px; color: #fff; border-radius: 9px; background: #e98738; font-size: 12px; }
#home-slider .home-slide-tools { position: absolute; z-index: 5; top: 18px; left: 22px; display: flex; gap: 7px; }
#home-slider .home-slide-tools a, #home-slider .home-slide-tools button { display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; padding: 0; color: #fff; border: 1px solid rgba(255,255,255,.32); border-radius: 10px; background: rgba(9,37,49,.48); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); cursor: pointer; transition: .2s ease; }
#home-slider .home-slide-tools a:hover, #home-slider .home-slide-tools button:hover, #home-slider .home-slide-tools button.is-copied { color: #fff; background: #2b7c88; transform: translateY(-2px); }
#home-slider .owl-carousel .owl-item { opacity: 1; }
#home-slider .owl-carousel .owl-nav button { z-index: 6; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.28); background: rgba(8,34,45,.4); backdrop-filter: blur(8px); }

/* Header education category menu */
.inner-header, .inner-header .container, #header .navbar { overflow: visible; }
.nav-menu .header-education-menu { position: relative; }
.nav-menu .header-education-menu > a > i { margin-right: 4px; font-size: 9px; }
.nav-menu .header-category-menu, .nav-menu .header-category-menu ul { position: absolute; z-index: 100; display: none; min-width: 225px; margin: 0; padding: 7px; list-style: none; border: 1px solid rgba(255,255,255,.1); border-radius: 13px; background: rgba(18,42,57,.97); box-shadow: 0 16px 35px rgba(6,25,35,.3); }
.nav-menu .header-category-menu { top: 100%; right: 0; }
.nav-menu .header-category-menu ul { top: -7px; right: 100%; }
.nav-menu .header-education-menu:hover > .header-category-menu, .nav-menu .header-category-menu li:hover > ul { display: block; }
.nav-menu .header-category-menu li { position: relative; margin: 0; padding: 0; }
.nav-menu .header-category-menu li + li { margin-top: 3px; }
.nav-menu .header-category-menu a { display: flex; min-height: 38px; align-items: center; justify-content: space-between; gap: 12px; padding: 7px 10px; color: rgba(255,255,255,.82); border-radius: 8px; line-height: 1.7; font-size: 12px; white-space: nowrap; }
.nav-menu .header-category-menu a::before { display: none; }
.nav-menu .header-category-menu a:hover { color: #fff; background: #2b7c88; }
.nav-menu .header-category-menu a i { margin: 0; color: rgba(255,255,255,.55); font-size: 9px; }
.nav-menu .header-category-menu li.open-to-right > ul { right: auto; left: 100%; }
#header { position: relative; z-index: 50; }
html.mm-opened #header { z-index: 1; }
html.mm-front #mm-blocker { z-index: 999; }
html.mm-front .mm-menu.mm-offcanvas { z-index: 1000; }

/* Latest products */
.latest-products-section { padding: 46px 0 56px; background: #f7f9fc; }
.latest-products-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 22px; }
.latest-products-heading span { display: block; margin-bottom: 5px; color: #e98738; font-size: 11px; font-weight: 800; }
.latest-products-heading h2 { margin: 0; color: #173d50; font-size: 22px; font-weight: 800; }
.latest-products-section .latest-product-card { overflow: hidden; width: 100%; height: 304px; margin: 0; border: 1px solid #e2e9ed; border-radius: 17px; background: #fff; box-shadow: 0 8px 24px rgba(24,59,78,.07); transition: transform .2s ease, box-shadow .2s ease; }
.latest-products-section .latest-product-card:hover { transform: translateY(-5px); box-shadow: 0 14px 30px rgba(24,59,78,.13); }
.latest-products-section .latest-product-card > a { display: flex; height: 100%; flex-direction: column; color: inherit; }
.latest-product-image { position: relative; display: flex; overflow: hidden; flex: 0 0 194px; width: 100%; height: 194px; align-items: center; justify-content: center; background: linear-gradient(135deg,#edf2f4,#e2eaed); }
.latest-product-image::before { content: 'بدون تصویر'; position: absolute; color: #91a2a9; font-size: 11px; }
.latest-product-image img { position: relative; z-index: 1; display: block; width: 100%; height: 100%; object-fit: cover; background: #edf2f4; transition: transform .35s ease; }
.latest-product-image img.is-missing { display: none; }
.latest-product-card:hover .latest-product-image img { transform: scale(1.04); }
.latest-product-info { display: flex; overflow: hidden; flex: 0 0 110px; height: 110px; flex-direction: column; justify-content: space-between; padding: 15px 16px 16px; }
.latest-product-info strong { display: -webkit-box; overflow: hidden; color: #234957; font-size: 14px; line-height: 1.8; font-weight: 800; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.latest-product-info small { margin-top: 10px; color: #81939c; font-size: 11px; }
.latest-product-info small b { color: #2b7c88; font-weight: 800; }
.latest-products-section .owl-stage { display: flex; }
.latest-products-section .owl-item { display: flex; }
.latest-products-section .owl-carousel .owl-nav button { top: 50%; width: 46px; height: 46px; margin-top: -23px; color: #2b7c88; border: 1px solid #b9d7db; border-radius: 14px; background: rgba(255,255,255,.96); box-shadow: 0 10px 24px rgba(24,59,78,.16), 0 0 0 5px rgba(255,255,255,.55); transition: .2s ease; }
.latest-products-section .owl-nav button:hover { color: #fff; border-color: #2b7c88; background: #2b7c88; box-shadow: 0 12px 26px rgba(43,124,136,.28), 0 0 0 5px rgba(43,124,136,.1); transform: translateY(-2px); }
.latest-products-section .owl-nav button i { display: block; padding: 0; font-size: 15px; }
.latest-products-section .owl-nav .owl-prev { right: -20px; }
.latest-products-section .owl-nav .owl-next { left: -20px; }
.latest-products-section .owl-nav button.disabled { opacity: .35; }

/* Product groups with angled flag headings */
.product-group-section { position: relative; overflow: hidden; padding: 58px 0 60px; }
.product-group-section.group-tone-light { background: #fff; }
.product-group-section.group-tone-soft { background: #f1f5f6; }
.product-group-heading { position: relative; display: flex; justify-content: center; margin: -20px auto 32px; }
.product-group-heading h2 { position: relative; min-width: 270px; max-width: min(620px,70vw); margin: 0; padding: 12px 45px; color: #fff; text-align: center; font-size: 19px; font-weight: 800; line-height: 1.7; background: #2b7c88; clip-path: polygon(20px 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 20px 100%, 0 50%); box-shadow: 0 9px 20px rgba(43,124,136,.2); }
.product-group-heading::after { content: ''; position: absolute; bottom: -10px; width: 42px; height: 3px; border-radius: 3px; background: #e98738; }
.product-group-section .latest-product-card { overflow: hidden; width: 100%; height: 304px; margin: 0; border: 1px solid #e2e9ed; border-radius: 17px; background: #fff; box-shadow: 0 8px 24px rgba(24,59,78,.07); transition: transform .2s ease, box-shadow .2s ease; }
.product-group-section .latest-product-card:hover { transform: translateY(-5px); box-shadow: 0 14px 30px rgba(24,59,78,.13); }
.product-group-section .latest-product-card > a { display: flex; height: 100%; flex-direction: column; color: inherit; }
.product-group-section .owl-stage { display: flex; }
.product-group-section .owl-item { display: flex; }
.product-group-section .owl-carousel .owl-nav button { top: 50%; width: 46px; height: 46px; margin-top: -23px; color: #2b7c88; border: 1px solid #b9d7db; border-radius: 14px; background: rgba(255,255,255,.96); box-shadow: 0 10px 24px rgba(24,59,78,.16), 0 0 0 5px rgba(255,255,255,.55); transition: .2s ease; }
.product-group-section .owl-nav button:hover { color: #fff; border-color: #2b7c88; background: #2b7c88; box-shadow: 0 12px 26px rgba(43,124,136,.28), 0 0 0 5px rgba(43,124,136,.1); transform: translateY(-2px); }
.product-group-section .owl-nav button i { display: block; padding: 0; font-size: 15px; }
.product-group-section .owl-nav .owl-prev { right: -20px; }
.product-group-section .owl-nav .owl-next { left: -20px; }
.product-group-section .owl-nav button.disabled { opacity: .35; }

/* Modern movie/book product details */
.product-detail-page { padding: 46px 0 64px; background: linear-gradient(180deg,#eef6f7 0,#fff 62%); }
.product-detail-hero { display: grid; direction: ltr; grid-template-columns: minmax(270px,.78fr) minmax(0,1.45fr) minmax(310px,.95fr); grid-template-areas: "purchase intro preview"; align-items: start; gap: 24px; }
.product-detail-preview,.product-detail-intro,.product-purchase-box { direction: rtl; }
.product-detail-preview { position: relative; display: flex; overflow: hidden; width: 100%; min-height: 0; padding: 18px; aspect-ratio: 4 / 5; border: 1px solid rgba(43,124,136,.18); border-radius: 18px; background: linear-gradient(145deg,#153b47 0,#0f2d37 54%,#244f59 100%); box-shadow: 0 18px 46px rgba(24,59,78,.16); align-items: stretch; justify-content: center; grid-area: preview; }
.product-detail-preview::before { content: ''; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; pointer-events: none; }
.product-detail-preview::after { content: ''; position: absolute; right: -34%; bottom: -18%; width: 80%; height: 42%; background: rgba(233,135,56,.16); transform: rotate(-14deg); pointer-events: none; }
.product-preview-head { position: absolute; z-index: 2; top: 18px; right: 18px; left: 18px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-preview-head span,.product-preview-head small { display: inline-flex; min-height: 32px; padding: 6px 11px; color: #fff; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(8,34,45,.58); backdrop-filter: blur(8px); align-items: center; gap: 6px; font-size: 11px; font-weight: 800; }
.product-preview-head small { color: #d9f1f4; font-weight: 700; }
.product-media-frame { position: relative; z-index: 1; display: flex; overflow: hidden; width: 100%; height: 100%; padding: 42px 8px 44px; border-radius: 14px; background: rgba(255,255,255,.96); box-shadow: inset 0 0 0 1px rgba(255,255,255,.65), 0 16px 34px rgba(5,27,34,.22); align-items: center; justify-content: center; }
.product-detail-preview img,.product-detail-preview video { display: block; width: 100%; height: 100%; object-fit: contain; background: transparent; }
.product-detail-preview video { object-fit: contain; }
.product-preview-label { position: absolute; z-index: 2; right: 28px; bottom: 26px; padding: 8px 13px; color: #fff; border: 1px solid rgba(255,255,255,.2); border-radius: 10px; background: rgba(5,27,34,.68); backdrop-filter: blur(7px); font-size: 12px; }
.product-preview-label i { margin-left: 5px; }
.product-preview-placeholder { display: flex; color: #2b7c88; flex-direction: column; align-items: center; gap: 14px; }
.product-preview-placeholder i { font-size: 68px; opacity: .72; }
.product-preview-placeholder span { font-size: 17px; }
.product-detail-intro { display: flex; min-height: 100%; padding: 4px 0 0; flex-direction: column; align-items: flex-start; justify-content: flex-start; grid-area: intro; }
.product-detail-kicker { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; }
.product-type-badge,.product-category-pill { display: inline-flex; min-height: 34px; padding: 7px 14px; color: #2b7c88; border: 1px solid #bcdce0; border-radius: 999px; background: #edf7f8; align-items: center; justify-content: center; gap: 6px; font-size: 12px; font-weight: 800; }
.product-category-pill { color: #6f7f35; border-color: #d7e2ba; background: #f6faed; }
.product-detail-intro h1 { margin: 18px 0 18px; color: #173d50; font-size: 30px; font-weight: 900; line-height: 1.65; letter-spacing: 0; }
.product-detail-description { width: 100%; margin: 0 0 18px; padding: 18px 20px; color: #60747b; border: 1px solid #e0ebee; border-radius: 14px; background: rgba(255,255,255,.82); box-shadow: 0 10px 24px rgba(24,59,78,.06); font-size: 14px; line-height: 2.15; }
.product-detail-description h2 { margin: 0 0 12px; color: #244852; font-size: 16px; font-weight: 800; }
.product-detail-description p { margin: 0 0 10px; color: inherit; font-size: inherit; line-height: inherit; }
.product-facts { display: grid; width: 100%; margin-top: 0; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.product-fact { display: grid; min-height: 88px; padding: 14px 15px; border: 1px solid #e0e9ec; border-radius: 12px; background: #fff; box-shadow: 0 8px 18px rgba(24,59,78,.05); grid-template-columns: 34px minmax(0,1fr); grid-template-rows: auto auto; align-items: center; column-gap: 10px; }
.product-fact i { display: inline-flex; width: 34px; height: 34px; color: #2b7c88; border-radius: 10px; background: #edf7f8; align-items: center; justify-content: center; grid-row: 1 / span 2; font-size: 15px; }
.product-fact span { color: #839399; font-size: 11px; }
.product-fact strong { overflow: hidden; color: #25464f; font-size: 13px; font-weight: 800; line-height: 1.7; text-overflow: ellipsis; }
.product-purchase-box { position: sticky; top: 110px; display: flex; padding: 22px; border: 1px solid #d6e5e8; border-radius: 16px; background: #fff; box-shadow: 0 16px 40px rgba(24,59,78,.12); flex-direction: column; align-items: stretch; gap: 17px; grid-area: purchase; }
.purchase-box-title { display: flex; padding-bottom: 15px; color: #294a54; border-bottom: 1px solid #e5ebed; align-items: center; justify-content: space-between; gap: 10px; font-size: 15px; font-weight: 900; }
.purchase-box-title small { display: inline-flex; padding: 5px 9px; color: #6f7f35; border-radius: 999px; background: #f4f8e8; font-size: 10px !important; font-weight: 800 !important; }
.product-price { display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.product-price > span { color: #72878d; font-size: 12px; }
.product-price > strong { color: #193b45; font-size: 23px; font-weight: 800; }
.product-purchase-box small { font-size: 12px; font-weight: 600; }
.product-purchase-action { width: 100%; }
.product-buy-button { display: inline-flex; width: 100%; min-height: 48px; padding: 11px 18px; color: #fff; border: 0; border-radius: 11px; background: #2b7c88; box-shadow: 0 9px 20px rgba(43,124,136,.24); align-items: center; justify-content: center; gap: 9px; font-family: inherit; font-size: 13px; font-weight: 700; cursor: pointer; transition: .2s ease; }
.product-buy-button:hover,.product-buy-button:focus { color: #fff; background: #226875; box-shadow: 0 12px 24px rgba(43,124,136,.3); transform: translateY(-2px); }
.product-buy-button.is-in-cart { background: #e78b31; box-shadow: 0 9px 20px rgba(231,139,49,.24); }
.product-buy-button[disabled] { color: #89989c; background: #e7edef; box-shadow: none; cursor: not-allowed; transform: none; }
.product-cart-actions { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 13px; }
.product-cart-copy { display: flex; min-width: 0; flex: 1 1 auto; flex-direction: column; align-items: flex-start; gap: 4px; }
.product-cart-copy strong { color: #244852; font-size: 13px; font-weight: 800; line-height: 1.5; }
.product-cart-copy a { color: #2b7c88; font-size: 11px; font-weight: 700; line-height: 1.5; }
.product-cart-copy a:hover,.product-cart-copy a:focus { color: #226875; }
.product-cart-stepper { display: grid; overflow: hidden; flex: 0 0 auto; min-width: 104px; height: 46px; padding: 0 2px; border: 1px solid #dce8eb; border-radius: 11px; background: #fff; box-shadow: 0 8px 22px rgba(24,59,78,.12); grid-template-columns: 32px 34px 32px; align-items: center; justify-content: center; }
.product-cart-actions:not(.has-add-more) .product-cart-stepper { min-width: 72px; grid-template-columns: 34px 34px; }
.product-cart-step { display: inline-flex; width: 32px; height: 36px; padding: 0; color: #e78b31; border: 0; border-radius: 9px; background: transparent; align-items: center; justify-content: center; font-family: inherit; font-size: 18px; font-weight: 900; line-height: 1; cursor: pointer; transition: .2s ease; }
.product-cart-step:hover,.product-cart-step:focus { color: #fff; background: #2b7c88; }
.product-cart-decrease { color: #df6b45; }
.product-cart-decrease i { font-size: 15px; }
.product-cart-add-more { color: #e78b31; }
.product-cart-add-more span,.product-cart-decrease span { display: block; transform: translateY(-1px); }
.product-cart-qty { display: inline-flex; min-width: 30px; height: 36px; color: #2b7c88; align-items: center; justify-content: center; font-size: 14px !important; font-weight: 900 !important; line-height: 1; }
.purchase-help { color: #8a999e; font-size: 10px !important; font-weight: 400 !important; line-height: 1.9; }
.product-purchase-benefits { display: grid; gap: 9px; padding-top: 2px; }
.product-purchase-benefits span { display: flex; color: #60747b; align-items: center; gap: 8px; font-size: 11px; line-height: 1.8; }
.product-purchase-benefits i { display: inline-flex; width: 26px; height: 26px; color: #2b7c88; border-radius: 8px; background: #edf7f8; align-items: center; justify-content: center; font-size: 12px; }
.product-related-section { padding: 50px 0 66px; background: #f7f9fc; }
.product-related-heading { margin-bottom: 25px; text-align: center; }
.product-related-heading span { display: block; margin-bottom: 6px; color: #2b7c88; font-size: 11px; font-weight: 700; }
.product-related-heading h2 { margin: 0; color: #193b45; font-size: 22px; font-weight: 800; }
.product-related-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.product-related-card { overflow: hidden; min-height: 348px; border: 1px solid #e1ebee; border-radius: 22px; background: #fff; box-shadow: 0 12px 30px rgba(30,79,90,.07); transition: .22s ease; }
.product-related-card:hover { transform: translateY(-5px); box-shadow: 0 18px 42px rgba(30,79,90,.13); }
.product-related-card > a { display: flex; height: 100%; color: inherit; flex-direction: column; }
.product-related-image { position: relative; display: block; overflow: hidden; height: 205px; margin: 12px 12px 0; border-radius: 18px; background: linear-gradient(135deg,#edf7f8,#fff); }
.product-related-image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: .25s ease; }
.product-related-card:hover .product-related-image img { transform: scale(1.05); }
.product-related-image em { position: absolute; top: 11px; right: 11px; padding: 5px 10px; color: #fff; border-radius: 999px; background: rgba(43,124,136,.93); font-size: 11px; font-style: normal; font-weight: 800; }
.product-related-info { display: flex; min-height: 128px; flex: 1; flex-direction: column; padding: 14px 15px 15px; }
.product-related-info > small { display: inline-flex; width: max-content; max-width: 100%; margin-bottom: 8px; padding: 4px 9px; color: #6a838d; border-radius: 999px; background: #f1f7f8; font-size: 11px; }
.product-related-info > small b { margin-right: 4px; color: #2b7c88; }
.product-related-info > strong { display: -webkit-box; overflow: hidden; min-height: 52px; color: #173d50; font-size: 14px; font-weight: 900; line-height: 1.85; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.product-related-bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 12px; border-top: 1px solid #edf3f4; }
.product-related-bottom b { color: #2b7c88; font-size: 13px; font-weight: 900; white-space: nowrap; }
.product-related-bottom i { display: inline-flex; min-height: 34px; align-items: center; padding: 0 12px; color: #fff; border-radius: 12px; background: #2b7c88; font-size: 11px; font-style: normal; font-weight: 800; transition: .2s ease; }
.product-related-card:hover .product-related-bottom i { background: #236a74; }
.related-image-placeholder { display: flex; width: 100%; height: 100%; color: #2b7c88; background: radial-gradient(circle,rgba(43,124,136,.14),transparent 58%), linear-gradient(135deg,#eef8f9,#fff); align-items: center; justify-content: center; }
.related-image-placeholder i { font-size: 46px; opacity: .75; }
