/* ==================== 
1. resets & defaults
2. base styles
3. layout
4. components
5. content by pages
==================== */


:root{
	--font-family-base: 'Mersad', sans-serif;
	--font-family-base-uppercase: 'Mersad Up', sans-serif;

	--color-base: #3B3B3B;
	--color-base-dark-rgb: 18,18,18;
	--color-base-dark: #121212;

	--color-primary-rgb: 6,117,255;
	--color-primary: #0675FF;
	--color-primary-hover: #4E9DFF;
	--color-primary-active: #0153B9;
	--color-primary-disabled: #E9E9E9;

	--color-secondary: #E9E9E9;
	--color-secondary-hover: #F2F2F2;
	--color-secondary-active: #E1E1E1;
	--color-secondary-disabled: #f5f5f5;

	--color-info-rgb: 6,117,255;
	--color-info: rgba(var(--color-info-rgb),0.12);
	--color-info-hover: rgba(var(--color-info-rgb),0.06);
	--color-info-active: rgba(var(--color-info-rgb),0.24);
	--color-info-disabled: #E9E9E9;

	--color-gray-lighter: #C1C0C0;
	--color-gray-light: #A9A9A9;
	--color-gray: #252525;

	--color-muted: #5E5E5E;


	--bg-base: #EAEAEA;

	--bg-lighter: #f5f5f5;
	--bg-light: #f2f2f2;

	--bg-dark: #E4E4E4;
	--bg-darker: #221F1F;

	--bs-font-sans-serif: var(--font-family-base);
	--bs-primary-rgb: var(--color-primary-rgb);
	--bs-link-color: var(--color-primary);
	--bs-link-hover-color: var(--color-primary-active);


	--app-header-height: 90px;

	--app-page-pt: 36px;
	--app-page-pb: 60px;

	--content-px: 20px;

	--container-size-1: 400px;
	--container-size-2: 640px;
	--container-size-3: 860px;
	--container-size-4: 1200px;
	--container-size-5: 1488px;


	--btn-size: var(--btn-size-md);
	--btn-size-xs: 36px;
	--btn-size-sm: 44px;
	--btn-size-md: 48px;


	--fs-h1: 28px;
	--fs-h2: 24px;
	--fs-h3: 20px;
	--fs-h4: 16px;
	--fs-h5: 16px;
	--fs-h6: 14px;

	--fs-text: var(--fs-text3);
	--fs-text1: 16px;
	--fs-text2: 15px;
	--fs-text3: 14px;
	--fs-text4: 13px;
	--fs-text5: 12px;


	--border-radius-sm: 6px;
	--border-radius-md: 10px;
	--border-radius-lg: 15px;
}

@media (min-width: 768px) {
	:root{
		--app-page-pb: 90px;

		--content-px: 32px;

		--fs-h4: 20px;
		/*--fs-h5: 18px;*/
		--fs-h6: 16px;

		--fs-text1: 18px;
		--fs-text2: 16px;
		--fs-text3: 15px;
	}
}
@media (min-width: 992px) {
	:root{
		--app-header-height: 132px;

		--content-px: 64px;

		--fs-h1: 32px;
		--fs-h2: 28px;
		--fs-h3: 24px;

		--btn-size-md: 52px;
	}
}
@media (min-width: 1200px) {
	:root{
		--app-header-height: 144px;

		--fs-h1: 40px;
	}
}



/* ==================== 1. resets & defaults ==================== */
html,body,
h1,h2,h3,h4,h5,h6,
ul,ol,p,figure,
form,fieldset,input,textarea{
	margin: 0;
	padding: 0;
}

header,nav,main,article,section,aside,footer,figure{
	display: block;
}

*{box-sizing: border-box; -webkit-tap-highlight-color: transparent;}

/* ----- */

html,body{
	width: 100%;
	height: 100%;
}

nav ul,.nav ul{list-style: none;}
a img,fieldset{border:0;}

.logo-wrap img{display: block;}
.img-container img,
.thumb img,
figure img{
	display: block;
	max-width: 100%;
}

button,
input[type=button],
input[type=submit]{
	cursor: pointer;
	outline: none !important;
}

a,a:hover,a:focus{text-decoration: none;}
a.is-active{cursor: default;}

.disabled{opacity: 0.5; pointer-events: none;}
.disabled-click{pointer-events: none;}

/* ----- */

.no-scroll,
.no-scroll body{
	height: 100% !important;
	overflow: hidden;
}

.item-fade{opacity: 0; visibility: hidden; -webkit-transition: opacity 0.3s linear; transition: opacity 0.3s linear; z-index: -1;}
.item-fade.fade-in{opacity: 1; visibility: visible; z-index: 1;}

/* ----- */

.text-nocase{text-transform: none !important;}

.highlight {background-color: #ffff00;}

b{font-weight: 500}
strong{font-weight: 700}

.fw-extrabold{
	font-weight: 800 !important;
}

/* ----- */

body{
	background: var(--bg-base) url(../../images/bg_dot.svg) 4px 15px;
	background-size: 26px auto;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;

	color: var(--color-base);
	font-size: 14px;
	font-weight: 500;
}



/* ==================== 2. base styles ==================== */


/* ----------- fonts ----------- */
body,input,textarea,button{
	font-family: var(--font-family-base);
}
.text-uppercase{
	font-family: var(--font-family-base-uppercase);
}
/* ----------- /fonts ----------- */


/* ----------- container ----------- */
.container,
.container-xxs,
.container-xs,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-fluid{
	width: 100%;
	padding-left: var(--content-px);
	padding-right: var(--content-px);
	margin: 0 auto;
}

.container .container-xxs,
.container .container-xs,
.container .container-sm,
.container .container-md,
.container .container-lg{
	padding-left: 0;
	padding-right: 0;
}

.container,
.container-lg,
.t63-section[data-content-size="lg"] .container{
	max-width: calc(var(--container-size-5) + var(--content-px) * 2);
}
.container .container-lg{
	max-width: var(--container-size-5);
}

.container-xxs,
.t63-section[data-content-size="xxs"] .container{
	max-width: calc(var(--container-size-1) + var(--content-px) * 2);
}
.container .container-xxs{
	max-width: var(--container-size-1);
}

.container-xs,
.t63-section[data-content-size="xs"] .container{
	max-width: calc(var(--container-size-2) + var(--content-px) * 2);
}
.container .container-xs{
	max-width: var(--container-size-2);
}

.container-sm,
.t63-section[data-content-size="sm"] .container{
	max-width: calc(var(--container-size-3) + var(--content-px) * 2);
}
.container .container-sm{
	max-width: var(--container-size-3);
}

.container-md,
.t63-section[data-content-size="md"] .container{
	max-width: calc(var(--container-size-4) + var(--content-px) * 2);
}
.container .container-md{
	max-width: var(--container-size-4);
}


.container-fluid,
.t63-section[data-content-size="fluid"] .container{
	max-width: 100%;
}
/* ----------- /container ----------- */


/* ----------- row ----------- */
.row-with-separator{
	--bs-gutter-x: 48px;
	--bs-gutter-y: 24px;

	margin-left: 0;
	margin-right: 0;
}
.row-with-separator > div{
	border-left: 1px solid #454343;
}
/* ----------- /row ----------- */


/* ----------- icons ----------- */
/*i.icon{
	display: inline-block;
	width: 16px;
	position: relative;
}
i.icon::before{
	content: "";
	display: block;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	padding-top: 100%;
}

.i-lg{
	width: 20px;
}*/
/* ----------- /icons ----------- */


/* ----------- rotate ----------- */
.r-0::before{
	transform: rotate(0deg);
}
.r-45::before{
	transform: rotate(45deg);
}
.r-90::before{
	transform: rotate(90deg);
}
.r-180::before{
	transform: rotate(180deg);
}
.r-270::before{
	transform: rotate(270deg);
}
.r-360::before{
	transform: rotate(360deg);
}
/* ----------- /rotate ----------- */


/* ----------- radius ----------- */
.border-radius-sm{
	border-radius: var(--border-radius-sm);
}
.border-radius{
	border-radius: var(--border-radius-md);
}
.border-radius-lg{
	border-radius: var(--border-radius-lg);
}
/* ----------- /radius ----------- */


/* ----------- colors ----------- */
.text-white{
	color: #fff !important;
}

.text-base{
	color: var(--color-base) !important;
}
.text-base-dark{
	color: var(--color-base-dark) !important;
}

.text-primary{
	color: var(--color-primary) !important;
}
.text-secondary{
	color: var(--color-secondary) !important;
}
.text-info{
	color: var(--color-info-active) !important;
}
.text-muted{
	color: var(--color-muted) !important;
}

.bg-base{
	background-color: var(--bg-base) !important;
}
.bg-lighter{
	background-color: var(--bg-lighter) !important;
}
.bg-light{
	background-color: var(--bg-light) !important;
}
.bg-dark{
	background-color: var(--bg-dark) !important;
}
.bg-darker{
	--title-color: #f6f6f6;
	--text-color: var(--color-gray-lighter);
	background-color: var(--bg-darker) !important;
}


.link-primary {
	color: var(--color-primary) !important;
}
.link-primary:focus,
.link-primary:hover {
	color: var(--color-primary-hover) !important;
}


.bg-darker .title,
.bg-darker h1,
.bg-darker h2,
.bg-darker h3,
.bg-darker h4,
.bg-darker h5,
.bg-darker h6{
	color: var(--title-color);
}
.bg-darker,
.bg-darker a:not(.btn),
.bg-darker .text,
.bg-darker .text-wrap{
	color: var(--text-color);
}
/* ----------- /colors ----------- */



/* ==================== 3. layout ==================== */


.app{
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 100%;
}


/* ---------- header ---------- */
.app-header{
	position: relative;
	z-index: 300;
}

.app-header .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--app-header-height);
}

.app-header .logo-wrap{
	position: relative;
	z-index: 5;
}
.app-header .logo-wrap img{
	flex-shrink: 0;
	width: 124px;
}

.app-header nav a{
	color: var(--color-base-dark);
	font-family: var(--font-family-base-uppercase);
	font-size: 17px;
	font-weight: 500;
	text-transform: uppercase;
}
.app-header nav a:hover,
.app-header nav a.active{
	color: rgba(var(--color-base-dark-rgb),0.5);
}

@media (min-width: 992px) {
	.app-header .hamburger,
	.app-header .social-media-row{
		display: none !important;
	}
	.app-header .nav-wrap{
		display: block !important;
	}

	.app-header .logo-wrap img{
		width: 148px;
	}

	.app-header nav ul{
		display: flex;
	}
	.app-header nav li{
		padding: 0 18px;
	}
	.app-header nav a{
		font-size: 14px;
	}
}
@media (min-width: 1200px) {
	.app-header nav li{
		padding: 0 20px;
	}
	.app-header nav a{
		font-size: 15px;
	}
}

@media (max-width: 1199px) {
	.app-header .btn{
		--bs-btn-padding-x: 1rem;
	}
}
@media (max-width: 991px) {
	.app-header .nav-wrap,
	.app-header .h-btn{
		display: none;
	}
	.lang-wrap {
		margin-right:0px;
	}
	.app-header .nav-wrap{
		background: var(--bg-base) url(../../images/bg_dot.svg) 4px 15px;
		background-size: 26px auto;
		width: 100%;
		height: 100vh;
		padding: var(--app-header-height) var(--content-px) 64px;
		position: fixed;
		top: 0;
		left: 0;
	}
	.app-header nav{
		text-align: center;
	}
	.app-header nav li{
		margin-top: 40px;
	}
	.app-header .nav-wrap .social-media-row{
		justify-content: center;
		width: 100%;
		margin: 0;
		position: absolute;
		left: 0;
		bottom: 64px;
	}
}
@media (max-height: 499px) {
	.app-header nav li{
		margin-top: 20px;
	}
}
@media (max-height: 399px) {
	.app-header .nav-wrap .social-media-row{
		display: none !important;
	}
}
/* ---------- /header ---------- */


/* ---------- page ---------- */
.app-page{
	flex-grow: 1;
	width: 100%;
	position: relative;
}

.app-page-pt,
.app-page-py{
	padding-top: var(--app-page-pt);
}
.app-page-pb,
.app-page-py{
	padding-bottom: var(--app-page-pb);
}

.title.page-title{
	margin-bottom: 22px;

	font-size: var(--fs-h1);
	font-weight: 800;
}

/* --- section --- */
.section{
	--section-spacing-y: 72px;

	padding: calc(var(--section-spacing-y) * 0.5) 0;
}

.section-head,
.title.section-title{
	margin-bottom: 26px;
}

.section-title{
	max-width: 360px;
	font-size: var(--fs-h4);
}
.section-head .section-title{
	margin-bottom: 6px;
}

.section.bg-darker{
	background-image: url(../../images/bg_dot_dark.svg);
	background-position: 4px 15px;
	background-size: 26px auto;
	position: relative;
}
.section.bg-darker .container:after{
	content: "";
	display: block;
	width: 100%;
	/*max-width: var(--container-size-5);*/
	border-top: 1px solid #2D2A2A;
	transform: translateY(calc(var(--section-spacing-y) * 0.5));
	/*position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);*/
}

@media (min-width: 992px) {
	.title.page-title {
		margin-bottom: 26px;
	}
}
@media (min-width: 1200px) {
	.title.page-title {
		margin-bottom: 33px;
	}

	.section{
		--section-spacing-y: 160px;
	}
	.section-head,
	.section-title{
		margin-bottom: 42px;
	}
}
/* ---------- /page ---------- */


/* ---------- footer ---------- */
.app-footer{
	flex-shrink: 0;
	background-color: var(--bg-darker);
	/*min-height: 377px;*/
	padding: 34px 0 150px;
	position: relative;

	color: var(--color-gray-light);
	line-height: 1.6;
}

.app-footer .logo-wrap{
	display: flex;
	margin: 10px 0 24px;
}
.app-footer .logo-wrap img{
	flex-shrink: 0;
	width: 124px;
}

.app-footer .col-center{
	margin: 0 auto;
	color: #f6f6f6;
}
.app-footer .col-center a{
	color: inherit;
}

.app-footer nav li,
.app-footer .contact-info-wrap > *{
	margin-bottom: 32px;
}

.app-footer nav{
	min-width: 180px;
}
.app-footer nav a{
	font-family: var(--font-family-base-uppercase);
	text-transform: uppercase;
}
.app-footer nav a:hover,
.app-footer nav a.active{
	opacity: 0.5;
}

.app-footer .bottom-bar{
	padding: 20px 0;
	margin-top: 50px;
}

.app-footer .createdby{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.app-footer .createdby > span{
	margin-right: 10px;
}
.app-footer .createdby img{
	display: block;
	height: 13px;
}

@media (min-width: 576px) {
	.app-footer{
		padding-bottom: 0;
	}
}
@media (min-width: 992px) {
	.app-footer .logo-wrap{
		margin-bottom: 44px;
	}
	.app-footer .logo-wrap img{
		width: 148px;
	}

	.app-footer .social-media-row{
		margin-top: 8px;
	}
}

@media (max-width: 991px) {
	.app-footer .col-center{
		margin: 40px 0 20px;
	}

	.app-footer .bottom-bar .createdby{
		justify-content: center;
		margin-top: 10px;
	}
}
@media (max-width: 767px) {
	.app-footer{
		/*padding: 44px 0 70px;*/
		text-align: center;
	}
	.app-footer .logo-wrap,
	.app-footer .social-media-row{
		justify-content: center;
	}
	.app-footer .contact-info-wrap{
		margin-top: 20px;
	}
}
/* ---------- /footer ---------- */


/* ---------- bottom bar ---------- */
.app-bottom-bar{
	width: 100%;
	background-color: #fff;
	padding: 16px 0 26px;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 150;
}
.app-bottom-bar .row{
	--bs-gutter-x: 8px;
}
.app-bottom-bar .btn{
	width: 100%;
}
@media (min-width: 576px) {
	.app-bottom-bar{
		display: none;
	}
}
/* ---------- /bottom bar ---------- */



/* ==================== 4. components ==================== */


/* ---------- scroll ---------- */
.scrollable-container{
	overflow: hidden;
}
.mobile .scrollable-container,
.tablet .scrollable-container{
	overflow: scroll;
	-webkit-overflow-scrolling: touch;
}

.os-scrollbar{
	width: 8px !important;
	padding: 2px !important;
}
.os-scrollbar-handle{
	background-color: var(--bg-base) !important;
	border-radius: 3px !important;
}
.os-scrollbar-horizontal{
	display: none !important;
}

/*@media (min-width: 1200px) {
	.os-scrollbar{
		width: 6px !important;
	}
}*/
/* ---------- /scroll ---------- */


/* ----------- hamburger ----------- */
.hamburger,
.hamburger span,
.hamburger span::before,
.hamburger span::after{
	width: 18px;
}

.hamburger{
	flex-shrink: 0;
	display: block;
	height: 14px;
	background-color: transparent;
	border: 0;
	padding: 0;
	overflow: visible;
	position: relative;
	z-index: 50;
}
.hamburger:before{
	content: "";
	position: absolute;
	top: -12px;
	bottom: -12px;
	left: -12px;
	right: -12px;
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
	display: block;
	height: 1px;
	background-color: #000;
	position: absolute;
	transition: transform 0.15s ease;
}
.hamburger span{
	top: 0;
}
.hamburger span::before,
.hamburger span::after {
	content: "";
	display: block;
}
.hamburger span::before {
	width: 100%;
	top: 6px;
	transition-property: transform, opacity;
}
.hamburger span::after {
	top: 12px;
}

.hamburger.is-active span,
.nav-is-open .hamburger span{
	transform: translate3d(-1px, 7px, 0) rotate(45deg);
}
.hamburger.is-active span::before,
.nav-is-open .hamburger span::before {
	transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
	opacity: 0;
}
.hamburger.is-active span::after,
.nav-is-open .hamburger span::after {
	transform: translate3d(0, -12px, 0) rotate(-90deg);
}
.hamburger.is-active span,
.hamburger.is-active span::before,
.hamburger.is-active span::after,
.nav-is-open .hamburger span,
.nav-is-open .hamburger span::before,
.nav-is-open .hamburger span::after{
	width: 21px;
}
/* ----------- /hamburger ----------- */


/* ---------- title,text ---------- */
h1,h2,h3,h4,h5,h6,
.h1,.h2,.h3,.h4,.h5,.h6,
.title {
	display: block;
	margin-bottom: 0;
	color: var(--color-base-dark);
	font-weight: bold;
	line-height: 1.5;
}

.title,
.text-wrap h1,
.text-wrap h2,
.text-wrap h3,
.text-wrap h4,
.text-wrap h5,
.text-wrap h6{
	font-family: var(--font-family-base-uppercase);
	text-transform: uppercase;
	line-height: 1.25;
}

.title *{
	font-weight: inherit;
	line-height: inherit;
}

.title:not(.slide-title):not(.full-featured) *:not(.h1):not(.h2):not(.h3):not(.h4):not(.h5):not(.h6):not([class*="display-"]) {
	font-size: inherit;
}

.title a{
	color: inherit;
}

h1,.h1{
	font-size: var(--fs-h1);
	font-weight: 800;
}
h2,.h2{
	font-size: var(--fs-h2);
}
h3,.h3{
	font-size: var(--fs-h3);
}
h4,.h4{
	font-size: var(--fs-h4);
}
h5,.h5{
	font-size: var(--fs-h5);
}
h6,.h6{
	font-size: var(--fs-h6);
}

.text,
.text-wrap{
	color: var(--color-base);
	font-size: var(--fs-text);
	font-weight: 500;
	line-height: 1.6;
}

.fs-1{
	font-size: var(--fs-text1) !important;
}
.fs-2{
	font-size: var(--fs-text2) !important;
}
.fs-3{
	font-size: var(--fs-text3) !important;
}
.fs-4{
	font-size: var(--fs-text4) !important;
}
.fs-5{
	font-size: var(--fs-text5) !important;
}

.lh-base{
	line-height: 1.6;
}

html{
	font-size: 14px;
}

@media (min-width: 768px){
	html{
		font-size: 16px;
	}
}

.text-wrap:before,
.text-wrap:after {
	display: table;
	content: " ";
}
.text-wrap:after{
	clear:both;
}

.text-wrap > *{margin-bottom:20px;}
.text-wrap > *:last-child{margin-bottom:0;}
.text-wrap ul,.text-wrap ol{padding-left:40px;}
.text-wrap li + li,.text-wrap li ul,.text-wrap li ol{margin-top:10px;}

.text-wrap img{
	max-width: 100%;
	height: auto;
	border-radius: var(--border-radius-md);
	margin-bottom: 5px;
}
.text-wrap img[style*="float: left"]{
	margin-right: 15px;
}
.text-wrap img[style*="float: right"]{
	margin-left: 15px;
}

.text-wrap hr{
	margin: 35px 0;
}
.text-wrap hr + img,
.text-wrap hr + * img{
	margin-top: 8px;
}

.link,
.link:hover,
.text-wrap a:not(.btn),
.text-wrap a:not(.btn):hover{
	color: var(--color-base);
}
.link,
.text-wrap a:not(.btn){
	text-decoration: underline;
}
.link:hover,
.text-wrap a:not(.btn):hover{
	text-decoration: none;
}

button.link{
	background: none;
	border: 0;
	padding: 0;
}

.text-wrap audio,
.text-wrap video{
	display: block;
	width: 100%;
	outline: none;
}
.text-wrap video{
	height: auto;
}

.text-wrap iframe{
	display: block;
	max-width: 100%;
}

.text-wrap table {
	width: 100%;
	border: 1px solid #dee2e6;
	color: inherit;
}
.text-wrap table th,
.text-wrap table td {
	border: 1px solid #dee2e6;
	padding: 0.75rem;
	vertical-align: top;
}
.text-wrap table thead th {
	border-bottom: 2px solid #dee2e6;
	vertical-align: bottom;
}
.text-wrap table tbody + tbody {
	border-top: 2px solid #dee2e6;
}

.text-wrap .table-plain {
	border: 0;
}
.text-wrap .table-plain th,
.text-wrap .table-plain td {
	border: 0;
	border-top: 1px solid #dee2e6;
}
/* ---------- /title,text ---------- */


/* ---------- buttons ---------- */
.btn{
	--bs-btn-padding-x: 1.5rem;
	--bs-btn-padding-y: 0.375rem;
	--bs-btn-font-family: var(--font-family-base-uppercase);
	--bs-btn-font-size: 14px;
	--bs-btn-font-weight: 600;
	--bs-btn-line-height: 1.5;
	--bs-btn-border-radius: 6px;
	--bs-btn-box-shadow: none;
	--bs-btn-disabled-opacity: 1;
	--bs-btn-focus-box-shadow: none;

	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: var(--btn-size);
	min-height: var(--btn-size);
	height: auto;
	text-transform: uppercase;
}


.btn-xs{
	--btn-size: var(--btn-size-xs);
	--bs-btn-padding-x: 1rem;
}
.btn-sm{
	--btn-size: var(--btn-size-sm);
	--bs-btn-padding-x: 1.125rem;
}

.btn img{
	flex-shrink: 0;
	width: 20px;
}
.btn img + span,
.btn span + img{
	margin-left: 12px;
}

/* white */
.btn-white{
	background-color: rgba(255,255,255,0.5);
	border-color: rgba(255,255,255,0.5);
}
.btn-white:hover{
	background-color: rgba(255,255,255,0.7);
}
.btn.btn-outline-white{
	border-color: #fff;
	color: #fff !important;
}
.btn.btn-outline-white:hover{
	background-color: #fff;
	border-color: #fff;
}

/* primary */
.btn-primary {
	--bs-btn-color: #fff;
	--bs-btn-bg: var(--color-primary);
	--bs-btn-border-color: var(--color-primary);
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: var(--color-primary-hover);
	--bs-btn-hover-border-color: var(--color-primary-hover);
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: var(--color-primary-active);
	--bs-btn-active-border-color: var(--color-primary-active);
	--bs-btn-disabled-color: #B2B2B2;
	--bs-btn-disabled-bg: var(--color-primary-disabled);
	--bs-btn-disabled-border-color: var(--color-primary-disabled);
}

/* secondary */
.btn-secondary {
	--bs-btn-color: #2F2F2F;
	--bs-btn-bg: var(--color-secondary);
	--bs-btn-border-color: var(--color-secondary);
	--bs-btn-hover-color: #2F2F2F;
	--bs-btn-hover-bg: var(--color-secondary-hover);
	--bs-btn-hover-border-color: var(--color-secondary-hover);
	--bs-btn-active-color: #2F2F2F;
	--bs-btn-active-bg: var(--color-secondary-active);
	--bs-btn-active-border-color: var(--color-secondary-active);
	--bs-btn-disabled-color: #B2B2B2;
	--bs-btn-disabled-bg: var(--color-secondary-disabled);
	--bs-btn-disabled-border-color: var(--color-secondary-disabled);
}

/* info */
.btn-info {
	--bs-btn-color: var(--color-primary);
	--bs-btn-bg: var(--color-info);
	--bs-btn-border-color: transparent;
	--bs-btn-hover-color: var(--color-primary);
	--bs-btn-hover-bg: var(--color-info-hover);
	--bs-btn-hover-border-color: transparent;
	--bs-btn-active-color: var(--color-primary);
	--bs-btn-active-bg: var(--color-info-active);
	--bs-btn-active-border-color: transparent;
	--bs-btn-disabled-color: #B2B2B2;
	--bs-btn-disabled-bg: var(--color-info-disabled);
	--bs-btn-disabled-border-color: var(--color-info-disabled);
}

/* social media */
.social-media-row img{
	flex-shrink: 0;
	width: 40px;
	height:40px;
}

/* is loading */
.btn.is-loading{
	background-image: url("../../images/icons/spinner_white.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 28px 28px;
	pointer-events: none;
}
.btn.is-loading > *{
	opacity: 0;
}

/* btn-row */
/*.app-page .btn-row{
	margin: 20px 0;
}
.app-page .btn-row:last-child{
	margin-bottom: 0;
}
.app-page .btn-row > div{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	padding-left: -6px;
	padding-right: -6px;
}
.app-page .btn-row > div .btn{
	margin: 6px;
}*/
/* ---------- /buttons ---------- */


/* ---------- form ---------- */
.form-group{
	margin-bottom: 20px;
}

.form-label{
	margin-bottom: 12px;

	color: var(--color-base-dark);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.25;
}

.form-control,
.virtual-select .vscomp-toggle-button,
.virtual-select .vscomp-wrapper{
	font-family: var(--font-family-base);
}

.form-control,
.form-select,
.virtual-select .vscomp-toggle-button{
	height: var(--btn-size);
	border-radius: var(--border-radius-sm);
	padding: .375rem 1.25rem;

	transition: all 0.2s ease;

	color: var(--color-base-dark);
	font-size: 13px;
	font-weight: 500;
}
textarea.form-control{
	height: auto !important;
	padding-top: 1rem;
	padding-bottom: 1rem;
	resize: none;
}
@media (min-width: 1200px) {
	.form-control,
	.form-select,
	.virtual-select .vscomp-toggle-button{
		font-size: 15px;
	}
}

.form-control,
.form-control:focus,
.form-select,
.form-select:focus,
.virtual-select .vscomp-toggle-button,
.desktop .virtual-select .vscomp-wrapper:hover .vscomp-toggle-button,
.virtual-select .vscomp-wrapper.focused .vscomp-toggle-button,
.virtual-select.pop-comp-active .vscomp-wrapper:focus .vscomp-toggle-button{
	background-color: var(--bg-lighter);
	border-color: var(--bg-lighter);
	box-shadow: none;
}
.virtual-select .vscomp-wrapper:not(.has-value) .vscomp-value{
	color: var(--color-base-dark);
	opacity: 0.5;
}

.form-control::placeholder{
	color: var(--color-base-dark);
	opacity: 0.5;
}


.form-select,
.virtual-select .vscomp-arrow::after{
	background-image: url(../../images/icons/chevron.svg);
	background-repeat: no-repeat;
	background-size: 20px auto;
}

.form-select{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-position: right 16px center;
}
.form-select,
.virtual-select .vscomp-toggle-button{
	padding-right: 36px !important;
}

.app .virtual-select,
.modal .virtual-select{
	display: block;
	width: 100%;
	max-width: none;
}
.virtual-select.pop-comp-active{
	position: relative;
	z-index: 10;
}
.vscomp-wrapper.show-as-popup .vscomp-dropbox-container{
	z-index: 150 !important;
}
.virtual-select .vscomp-toggle-button{
	padding-top: 0;
	padding-bottom: 0;
}
.virtual-select .vscomp-value {
	height: 28px;
	line-height: 27px;
}
.virtual-select .vscomp-arrow{
	justify-content: flex-start;
	width: 36px;
}
.virtual-select .vscomp-arrow::after{
	width: 20px;
	height: 20px;
	background-position: center;
	border: 0;
	margin: 0;
	transform: rotate(0deg);
	transition: transform 0.1s ease-in-out;
}
.virtual-select.pop-comp-active .vscomp-arrow::after{
	transform: rotate(-180deg);
}

.virtual-select .vscomp-wrapper.focused .vscomp-toggle-button,
.virtual-select .vscomp-wrapper:focus .vscomp-toggle-button{
	box-shadow: none;
}

/* dropdown select */
.dropdown-combo .form-select{
	text-align: left;
}
.dropdown-combo:not(.has-value) .form-select{
	color: rgba(var(--color-base-dark-rgb),0.5);
}
.dropdown-combo .form-select .value-wrap{
	display: block;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
}
.dropdown-combo .form-select .value-wrap > span:not(:last-child)::after{
	content: ",";
	margin-right: 3px;
}

.dropdown-combo .dropdown-menu{
	--bs-dropdown-min-width: auto;
	--bs-dropdown-padding-x: 22px;
	--bs-dropdown-padding-y: 6px;
	--bs-dropdown-border-color: #E6E6E6;
	--bs-dropdown-border-radius: 6px;
	--bs-dropdown-box-shadow: 0 2px 4px 1px rgba(123, 123, 123, 0.16);
	--bs-dropdown-spacer: 4px;

	--bs-dropdown-font-size: 15px;
	--bs-dropdown-color: var(--color-base-dark);

	width: 100%;
	padding: 0;
}

.dropdown-combo .dropdown-menu .scrollable-container{
	max-height: 360px;
	padding: var(--bs-dropdown-padding-y) 0;
	/*margin-left: calc(var(--bs-dropdown-padding-x) * -1);
	margin-right: calc(var(--bs-dropdown-padding-x) * -1);*/
}

.dropdown-combo .dropdown-menu ul{
	list-style: none;
}
.dropdown-combo .dropdown-menu li{
	border-bottom: 1px solid #F1F1F1;
	padding: 0 var(--bs-dropdown-padding-x);
	position: relative;
	z-index: 1;
}
.dropdown-combo .dropdown-menu li:last-child{
	border-bottom: none;
}
.dropdown-combo .dropdown-menu li:hover{
	background-color: #f9f9f9;
}
.dropdown-combo .dropdown-menu .form-check{
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 52px;
	padding: 10px 0;

	color: inherit;
	font-size: inherit;
	font-weight: 500;
	cursor: pointer;
}
.dropdown-combo .dropdown-menu .form-check input{
	margin: 0 12px 0 0;
}
.dropdown-combo .dropdown-menu .form-check img{
	flex-shrink: 0;
	width: auto;
	height: 25px;
	margin-left: auto;
}
.dropdown-combo .dropdown-menu .form-check::before{
	content: "";
	width: 100%;
	height: 100%;
	background-color: #f9f9f9;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.dropdown-combo .dropdown-menu .form-check:hover::before{
	opacity: 1;
}


/* checkbox, radio */
.form-check{
	display: inline-flex;
	min-height: 16px;
	padding: 0;
}
.form-check input{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;

	width: 18px;
	height: 18px;
	background-color: #eee;
	background-position: center -50px;
	background-repeat: no-repeat;
	border: 1px solid #DBDBDB;
	margin: 2px 8px 0 0;
}
.form-check input[type='checkbox']{
	background-image: url(../../images/icons/tick_white.svg);
	background-size: 10px auto;
	border-radius: 4px;
}
.form-check input[type='radio']{
	background-image: url(../../images/icons/radio_white.svg);
	background-size: 12px auto;
	border-radius: 50%;
}
.form-check input:focus{
	box-shadow: none;
}
.form-check input:checked{
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	background-position: center;
}
.form-check-reverse{
	flex-direction: row-reverse;
}
.form-check-reverse input{
	margin-right: 0;
	margin-left: 8px;
}


/* toggler */
.form-toggler{
	display: inline-flex;
	position: relative;
	overflow: hidden;
	margin: 0;
}
.form-toggler input{
	opacity: 0;
	position: absolute;
	left: -100%;
}
.form-toggler > i{
	flex-shrink: 0;
	display: flex;
	width: 56px;
	height: 32px;
	background-color: #D4D7D9;
	border-radius: 16px;
	position: relative;
	padding: 4px;
}
.form-toggler > i::before{
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	background-color: #fff;
	border-radius: 50%;
	position: relative;
}
.form-toggler > i,
.form-toggler > i::before{
	transition: all 0.3s ease;
}
.form-toggler input:checked + i{
	background-color: var(--color-primary);
}
.form-toggler input:checked + i::before{
	transform: translateX(24px);
}

.form-toggler > i + span{
	margin: auto 0 auto 12px;
	font-size: 14px;
}
.form-group .form-toggler{
	margin: 9px 0;
}


/* error */
.error-text,
.invalid-feedback{
	display: none;
	padding: 2px 0 0 5px;
	font-size: 12px;
}
.has-error .error-text,
.has-error .invalid-feedback{
	display: block;
}
.form-control.is-invalid,
.has-error .form-control,
.form-select.is-invalid,
.has-error .form-select{
	border-color: #dc3545;
}
/* ---------- /form ---------- */


/* ---------- bg-img ---------- */
.bg-img{
	display: block;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	z-index: 1;
}
.bg-img:not(.ratio)::before{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.bg-img--cover{
	background-size: cover;
}
.bg-img--contain{
	background-size: contain;
}
.bg-img.fit-container{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
/* ---------- /bg-img ---------- */


/* ---------- ratio, fit ---------- */
.ratio{
	overflow: hidden;
}
.ratio img,
.ratio video,
.object-fit-cover{
	object-fit: cover;
}
.object-fit-contain{
	object-fit: contain;
}

.ratio-1::before{
	height: 280px;
}
@media (min-width: 768px) {
	.ratio-1::before{
		height: 400px;
	}
}
/* ---------- /ratio, fit ---------- */


/* ---------- slider ---------- */
.swiper:not(.swiper-initialized){
	opacity: 0;
}

.swiper-btn{
	--bs-btn-padding-x: 0;
	--bs-btn-padding-y: 0;
	--bs-btn-border-radius: 50%;

	--bs-btn-bg: var(--color-info);
	--bs-btn-hover-bg: var(--color-info-hover);
	--bs-btn-active-bg: var(--color-info-active);
	--bs-btn-disabled-bg: var(--color-info-disabled);

	display: flex;
	min-width: 36px;
	min-height: 36px;
	background-repeat: no-repeat;
	background-size: 20px auto;
	border: none;
	overflow: hidden;
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
}

.swiper-btn-prev{
	background-position: 7px center;
	background-image: url(../../images/icons/chevron_left_primary.svg);
	left: 0;
}
.swiper-btn-next{
	background-position: 9px center;
	background-image: url(../../images/icons/chevron_right_primary.svg);
	right: 0;
}

/*.swiper-button-disabled{
	pointer-events: none;
}*/
.swiper:not(.swiper-initialized) .swiper-btn{
	display: none;
}

.swiper-pagination{
	--swiper-pagination-bullet-width: 6px;
	--swiper-pagination-bullet-height: 6px;
	--swiper-pagination-bullet-horizontal-gap: 4px;
	--swiper-pagination-bullet-inactive-color: #CDCDCD;
	--swiper-pagination-bullet-inactive-opacity: 1;
	--swiper-pagination-bullet-active-color: var(--color-primary);
	--swiper-pagination-bottom: 24px;

	display: flex;
	justify-content: center;
}

.swiper.carousel{
	margin-top: -20px;
	margin-bottom: -20px;
}

.swiper.carousel .swiper-slide{
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	height: auto;
	padding: 20px 0;
}
.swiper.carousel .swiper-slide > *{
	flex-grow: 1;
}

@media (min-width: 1200px) {
	.swiper-pagination{
		display: none !important;
	}

	.swiper.slider{
		padding-left: var(--content-px);
		padding-right: var(--content-px);
		margin-left: calc(var(--content-px) * -0.5);
		margin-right: calc(var(--content-px) * -0.5);
	}

	.swiper.carousel{
		padding-left: 44px;
		padding-right: 44px;
		margin-left: -44px;
		margin-right: -44px;
	}
	/*.swiper.carousel .swiper-btn-prev{
		left: 0;
	}
	.swiper.carousel .swiper-btn-next{
		right: 0;
	}*/
	.swiper.carousel::before,
	.swiper.carousel::after{
		content: "";
		width: 26px;
		background-color: var(--bg-dark);
		position: absolute;
		top: 0;
		bottom: 0;
		z-index: 2;
	}
	.swiper.carousel::before{
		left: 0;
	}
	.swiper.carousel::after{
		right: 0;
	}
}
@media (min-width: 1680px) {
	.swiper.slider{
		padding-left: 80px;
		padding-right: 80px;
		margin-left: -80px;
		margin-right: -80px;
	}
}

@media (max-width: 1199px) {
	.swiper-btn{
		display: none !important;
	}

	.swiper.carousel {
		padding-left: var(--content-px);
		padding-right: var(--content-px);
		margin-left: calc(var(--content-px) * -1);
		margin-right: calc(var(--content-px) * -1);
	}
}

/*.slick-slide{
	outline: none;
}
.slick-arrow{
	display: block;
	width: 32px;
	height: 32px;
	background-color: transparent;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 32px auto;
	border: 0;
	outline: 0;
	overflow: hidden;
	text-indent: -9999px;

	position: absolute;
	top: 50%;
	z-index: 10;

	transform: translateY(-50%);
}
.slick-prev{
	background-image: url(../images/icons/arrow_left_white.svg);
	left: 10px;
}
.slick-next{
	background-image: url(../images/icons/arrow_right_white.svg);
	right: 10px;
}

.slick-slider .slick-dots{
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0;
	position: absolute;
	bottom: 20px;
	left: 0;
}
.slick-slider .slick-dots li{
	margin: 0 4px;
}
.slick-slider .slick-dots button{
	display: block;
	width: 8px;
	height: 8px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 50%;
	outline: none !important;
	padding:0;
	overflow:hidden;
	text-indent:-9999px;
}
.slick-slider .slick-dots button:hover,
.slick-slider .slick-dots .slick-active button{
	background-color: var(--color-primary) !important;
	border-color: var(--color-primary) !important;
}*/
/* ---------- /slider ---------- */


/* ---------- /item with icon ---------- */
.item-with-icon{
	display: inline-flex;
	align-items: center;
}
.item-with-icon img{
	flex-shrink: 0;
	width: 20px;
}
.item-with-icon img + span,
.item-with-icon span + img{
	margin-left: 9px;
}
@media (min-width: 992px) {
	.item-with-icon{
		font-size: 15px;
	}
}
/* ---------- /item with icon ---------- */


/* ---------- card ---------- */
.card{
	--bs-card-spacer-y: 1rem;
	--bs-card-spacer-x: 1rem;
	--bs-card-bg: var(--bg-light);
	--bs-card-border-radius: 10px;

	border: none;
}

.card .card{
	--bs-card-bg: var(--bg-base);
}

.card-title{
	font-size: var(--fs-h6);
}

@media (min-width: 768px) {
	.card{
		--bs-card-spacer-y: 1.5rem;
		--bs-card-spacer-x: 1.5rem;
	}
}
/* ---------- /card ---------- */


/* ---------- tabs ---------- */
.tab-nav {
	border-bottom: 1px solid #e8e9ea;
}

.tab-nav li {
	position: relative;
}

.tab-nav a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	border: 1px solid #e8e9ea;
	border-bottom: 0;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	padding: 10px 18px;
	color: #000;
	font-size: 16px;
	line-height: 24px;
}
.tab-nav a.active {
	background-color: #e3e6ec;
}

.tab-content {
	padding-top: 20px;
}
/* ---------- /tabs ---------- */


/* ---------- accordion ---------- */
.accordion-items-wrap{
	counter-reset: accordion-items-counter;
}

.accordion-item{
	counter-increment: accordion-items-counter;

	--bs-accordion-bg: var(--bg-base);
	--bs-accordion-border-radius: 12px;

	border-radius: var(--bs-accordion-border-radius);
	margin-bottom: 4px;
	cursor:pointer;
}
.accordion-item-head,
.accordion-item-body{
	padding: 1.5rem;
}

.accordion-item-head{
	display: flex;
	align-items: center;
}

.accordion-item-head > div{
	flex-grow: 1;
	padding-right: 1rem;
}
.accordion-item-head > div::before{
	content: counters(accordion-items-counter, ".", decimal-leading-zero);

	display: block;
	margin-bottom: 8px;

	color: var(--bs-primary);
	font-size: 14px;
	font-weight: bold;
	line-height: 1;
}
.accordion-item-title{
	font-size: 14px;
	font-weight: bold;
	line-height: 1.6;
}
.accordion-item-toggle-btn {
	flex-shrink: 0;
	width: 20px;
	position: relative;
	cursor: pointer;
	transition: transform 0.3s ease;
}
.js-accordion-item-toggle-btn.rotate {
	transform: rotate(180deg);
}
.accordion-item-toggle-btn::before{
	content: "";
	position: absolute;
	top: -10px;
	bottom: -10px;
	left: -10px;
	right: -10px;
}
.accordion-item-toggle-btn::after{
	content: "";
	display: block;
	width: 100%;
	background: url(../../images/icons/chevron.svg) center no-repeat;
	background-size: 20px auto;
	padding-top: 100%;
	position: relative;
}

.accordion-item-body{
	padding-top: 0;
}

/*@media (min-width: 768px) {
	.accordion-item-head > div::before{
		{
			margin-bottom: 6px;
		}
	}
	.accordion-item-title{
		font-size: 16px;
	}
}*/
@media (min-width: 768px) {
	.accordion-item-head > div::before {
		margin-bottom: 6px; /* Corrected the curly brace issue */
	}

	.accordion-item-title {
		font-size: 16px;
	}
}
/* ---------- /accordion ---------- */


/* ---------- grid ---------- */
.items-grid{
	--bs-gutter-x: 16px;
	--bs-gutter-y: 16px;
}

.items-grid > div{
	display: flex;
	flex-direction: column;
}
.items-grid > div > *{
	flex-grow: 1;
}

.grid-item{
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 180px;
	background-color: var(--bg-base);
	border-radius: var(--border-radius-sm);
	transition: box-shadow 0.15s ease-in-out;
}
.grid-item .title{
	margin-top: auto;
	font-size: 14px;
	text-align: center;
}

.grid-item .logo-wrap{
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: calc(180px + 18px * 2);
	height: 80px;
	padding: 0 18px;
	margin-top: 30px;
}
.grid-item .logo-wrap img{
	object-fit: contain;
	max-width: 100%;
	max-height: 80px;
}

.grid-item .logo-wrap ~ .title{
	/*max-width: 154px;*/
	padding: 18px 10px;
}

.grid-item .img-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
}
.grid-item .img-wrap img{
	object-fit: contain;
}

.grid-item.bg-dots{
	background-image: url(../../images/bg_dot_sm.svg);
	background-position: -1px -1px;
	background-size: 26px auto;
}
.scaleable:hover{
	transform:scale(1.1);
}

@media (min-width: 360px) and (max-width: 374px) {
	.items-grid .items-grid{
		--bs-gutter-x: 12px;
		--bs-gutter-y: 12px;
	}

	.items-grid .grid-item .title{
		font-size: 12px;
	}
}
@media (min-width: 768px) {
	.items-grid{
		--bs-gutter-x: 20px;
		--bs-gutter-y: 20px;
	}

	.grid-item .title{
		font-size: 16px;
	}
}

@media (max-width: 359px) {
	.items-grid > div{
		width: 100%;
	}
}
/* ---------- /grid ---------- */


/* ---------- brands ---------- */
.brands-grid-item{
	background-color: var(--color-secondary-hover);
	cursor: pointer;
}
.desktop .brands-grid-item:hover{
	box-shadow: 0 4px 20px 0 rgba(149, 149, 149, 0.2);
}

@media (max-width: 1199px) {
	.brands-carousel .swiper-slide{
		width: 231px;
	}
}
@media (max-width: 575px) {
	.brands-carousel .swiper-slide{
		width: 180px;
	}
}
/* ---------- /brands ---------- */


/* ---------- image grid ---------- */
.images-grid-item{
	align-items: flex-start;
	background-color: transparent;
	border-radius: 0;
	cursor: pointer;
}
.images-grid-item .img-wrap{
	width: 100%;
	background-color: var(--bg-base);
	border-radius: var(--border-radius-sm);
	padding: 24px;
}
.images-grid-item .ratio::before{
	padding-top: 60%;
}

.images-grid-item .title{
	padding: 14px 0;
	text-align: left;
}

.desktop .images-grid-item:hover .img-wrap{
	box-shadow: 0 4px 20px 0 rgba(149, 149, 149, 0.2);
}

@media (max-width: 1199px) {
	.images-carousel .swiper-slide{
		width: 362px;
	}
}
@media (max-width: 575px) {
	.images-carousel .swiper-slide{
		width: 264px;
	}
}
/* ---------- /image grid ---------- */


/* ---------- products ---------- */
.products-grid-item{
	min-height: auto;
	padding: 20px 10px 18px;
	cursor: pointer;
}
.products-grid-item .img-wrap{
	max-width: 220px;
	height: 72px;
	margin-bottom: 20px;
}
.products-grid-item .img-wrap img{
	object-fit: contain;
	max-width: 100%;
	max-height: 100%;
}

.products-grid-item:hover{
	box-shadow: 0 4px 20px 0 rgba(149, 149, 149, 0.2);
}


@media (min-width: 768px) {
	.products-grid-item{
		min-height: 200px;
		padding: 24px 16px 18px;
	}
	.products-grid-item .img-wrap{
		height: 90px;
		margin-bottom: 24px;
	}
}
@media (min-width: 992px) {
	.products-grid-item{
		min-height: 268px;
		padding: 24px 16px 18px;
	}
	.products-grid-item .img-wrap{
		height: 160px;
	}
}
/* ---------- /products ---------- */


/* ---------- key value ---------- */
.key-value-list > *{
	margin-bottom: 1.5rem;
}
.key-value-list > *:last-child{
	margin-bottom: 0;
}
.key-value-list .key{
	display: block;
	color: var(--color-gray-light);
	font-size: 13px;
}
.key-value-list .value{
	display: block;
	margin-top: 4px;
	color: #fff;
	font-size: 14px;
	font-weight: 800;
}
.key-value-list .value a{
	color: inherit;
}
/* ---------- /key value ---------- */


/* ---------- map ---------- */
.map-container{
	position: relative;
	overflow: hidden;
	border-radius: var(--border-radius-md);
}
.map-container::before{
	content: "";
	display: block;
	height: 184px;
}
.map-container > *{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
@media (min-width: 768px) {
	.map-container::before{
		height: 400px;
	}
}
/* ---------- /map ---------- */


/* ---------- page with aside ---------- */
.page-with-aside{
	--min-height: 328px;

	padding-top: 36px;
}

.page-with-aside .main-row,
.page-with-aside .map-container::before{
	min-height: var(--min-height);
}

@media (min-width: 768px) {
	.page-with-aside{
		display: flex;
		flex-direction: column;
		padding: 24px 0 60px;
	}
	.page-with-aside .main-container,
	.page-with-aside .col-main,
	.page-with-aside .col-aside{
		flex-grow: 1;
		display: flex;
		flex-direction: column;
	}
	.page-with-aside .main-row,
	.page-with-aside .col-main > *,
	.page-with-aside .col-aside > *{
		flex-grow: 1;
	}


	.page-with-aside .col-aside .scrollable-container .os-scrollbar{
		width: 6px !important;
		padding: 0 !important;
	}
	.page-with-aside .col-aside .scrollable-container .os-scrollbar-handle{
		background-color: #AFAFAF !important;
	}

	.page-with-aside .col-aside .scrollable-container{
		width: 100%;
		position: absolute;
		top: var(--bs-card-spacer-y);
		bottom: var(--bs-card-spacer-y);
		left: 0;

		padding: 0 var(--bs-card-spacer-x);
	}
}

@media (min-width: 768px) and (min-height: 600px) {
	.page-with-aside{
		--min-height: 480px;
	}
}
@media (min-height: 800px) {
	.page-with-aside{
		--min-height: 600px;

		padding-bottom: 90px;
	}
}

@media (max-width: 767px) {
	.page-with-aside .col-aside{
		margin-top: 24px;
	}
	.page-with-aside .col-aside .card:last-child{
		margin-bottom: 0 !important;
	}
}
/* ---------- /page with aside ---------- */


/* ---------- modal ---------- */
.modal-backdrop{
	--bs-backdrop-opacity: 0.32;
}
.modal{
	padding: 16px 10px;
}
.modal-dialog{
	--bs-modal-width: 484px;
	--bs-modal-padding: 16px;
	--bs-modal-header-padding: var(--bs-modal-padding);
	--bs-modal-footer-border-color: #ECECEC;

	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.modal-sm{
	--bs-modal-width: 350px;
}
.modal-lg{
	--bs-modal-width: 984px;
}

.modal-close-btn{
	--bs-btn-padding-x: 0;
	--bs-btn-padding-y: 0;
	--bs-btn-border-radius: 50%;
	--btn-size: 36px;

	--bs-btn-bg: #F4F4F4;
	--bs-btn-hover-bg: #F9F9F9;
	--bs-btn-active-bg: #F1F1F1;

	display: flex;
	border: none;
}
.modal-close-btn img{
	flex-shrink: 0;
	width: 20px;
}

.modal-close-btn.outline{
	outline: 12px solid var(--bs-modal-bg) !important;
}

.modal-content > .modal-close-btn{
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 5;
}

.modal-header{
	border: none;
}

.modal-title{
	font-size: 16px;
	font-weight: 800;
}

.modal-header + .modal-body{
	padding-top: 0;
}
.modal-close-btn:not(.outline) + .modal-body{
	padding-top: 64px;
}

.modal-footer{
	display: block;
}
.modal-footer > *{
	margin: 0;
}

@media (min-width: 768px) {
	.modal-dialog{
		--bs-modal-padding: 24px;
	}

	.modal-content > .modal-close-btn{
		top: 16px;
		right: 16px;
	}

	.modal-title{
		font-size: 18px;
	}
}
@media (min-width: 1200px) {
	.modal-lg{
		--bs-modal-padding: 32px;
	}
}
/* ---------- /modal ---------- */


/* ---------- modal content 2col ---------- */
.modal .row-2col .content-wrap{
	max-width: 334px;
	margin: 0 auto;
}

.modal .row-2col .content-wrap .form-group:last-child{
	margin-bottom: 0;
}

@media (min-width: 768px) {
	.modal .row-2col > div:first-child{
		border-right: 1px solid #ECECEC;
	}
}
@media (max-width: 767px) {
	.modal .row-2col > div:first-child .content-wrap{
		border-bottom: 1px solid #ECECEC;
		padding-bottom: 32px;
		margin-bottom: 28px;
	}
}
/* ---------- /modal content 2col ---------- */


/* ---------- pdf modal ---------- */
.pdf-modal{
	padding: 20px;
}
.pdf-modal .modal-dialog{
	display: flex;
	flex-direction: column;
	max-width: 100%;
	min-height: 100%;
	margin: auto;
}
.pdf-modal .modal-content{
	flex-grow: 1;
}
.pdf-modal .modal-close-btn{
	top: -14px;
	right: -14px;
}
.pdf-modal .modal-body{
	display: flex;
	padding: 0;
}
.pdf-modal iframe{
	flex-grow: 1;
	width: 100%;
}
/* ---------- /pdf modal ---------- */



/* ==================== 5. content by pages ==================== */


/* ---------- home ---------- */
.section-slider,
.section-slider .swiper-slide{
	background-color: #f4f4f4;
}
.section-slider .img-wrap{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.section-slider .img-wrap img{
	object-fit: contain;
}
.section-slider .slide-content{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	min-height: 300px;
	padding: 40px 0;
	position: relative;
	z-index: 2;
}

.section-slider .slide-content .title{
	font-size: 16px;
}
.section-slider .slide-content .text{
	font-size: 12px;
	margin-top: 12px;
}

@media (min-width: 768px) {
	.section-slider .slide-content{
		width: 42%;
		min-height: 428px;
	}
	.section-slider .slide-content .title{
		font-size: var(--fs-h1);
	}
	.section-slider .slide-content .text{
		font-size: 15px;
	}
	.section-slider .slide-content .text,
	.section-slider .slide-content .btn{
		margin-top: 24px;
	}
}
@media (min-width: 1200px) {
	.section-slider .slide-content{
		justify-content: flex-start;
		min-height: 594px;
		padding: 100px 0;
	}
}

@media (max-width: 767px) {
	.section-slider .img-wrap{
		height: calc(100% - 100px);
		min-height: 200px;
	}

	.section-slider .slide-content{
		padding-bottom: 120px;
	}
	.section-slider .slide-content .title,
	.section-slider .slide-content .text{
		width: 50%;
	}
	.section-slider .slide-content .btn{
		width: 100%;
		position: absolute;
		bottom: 48px;
		left: 0;
	}
}
/* ---------- /home ---------- */


/* ---------- brand details ---------- */
/*.brand-details-modal .modal-body{
	padding-top: var(--bs-modal-padding);
}*/

.brand-details-modal .modal-dialog{
	min-height: 100%;
	margin: auto;
}
.brand-details-modal .modal-body{
	max-height: calc(100vh - 60px);
}

.brand-details-modal .os-scrollbar {
	padding: 50px 2px 10px !important;
}

.brand-details-container .logo-wrap{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 198px;
	background-color: #F8F8F8;
	border-radius: 12px;
	padding: 20px;
}
.brand-details-container .logo-wrap > div{
	display: flex;
	max-width: 220px;
	max-height: 100px;
}
.brand-details-container .logo-wrap img{
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.brand-details-container .text-wrap{
	margin-top: 16px;
}

.brand-details-container .products-wrap{
	margin-top: 30px;
}
.brand-details-container .products-wrap .title{
	/*max-width: 250px;*/
	margin-bottom: 20px;

	font-size: 15px;
	line-height: 1.6;
}
.brand-details-container .products-wrap .row{
	--bs-gutter-x: 10px;
	--bs-gutter-y: 10px;
}
.brand-details-container .products-wrap .item{
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 30px;
	padding: 10px 20px;

	font-size: 14px;
	line-height: 20px;
}

.brand-details-container > *:last-child{
	margin-bottom: 24px;
}

@media (min-width: 768px) {
	.brand-details-container .logo-wrap{
		height: 160px;
		padding: 20px;
	}

	.brand-details-container .text-wrap{
		margin-top: 24px;
	}

	.brand-details-container .products-wrap .title{
		font-size: 16px;
	}
}
/* ---------- /brand details ---------- */


/* ---------- section ---------- */
/* ---------- /section ---------- */
