body {
	font-size: 16px;
	font-weight: 400;
	color: var(--theme-black-color);
	line-height: 20px;
	width: 100%;
}
header {
	display: flex;
	align-items: center;
	background-color: var(--theme-grey-f0-color);
	transition: all 0.4s ease;
	z-index: 1000;
}
h1 {
	font-size: 1.5rem;
	margin: 0 0 1rem;
}
h3, .h3 {
	font-size: calc(1rem + 0.6vw);
	font-weight: 400;
	text-transform: uppercase;
}
@media (min-width: 1200px) {
	h3, .h3 {
		font-size: 1.375rem;
	}
}
h3.heading-title, .h3.heading-title {
	position: relative;
	margin-bottom: 2rem;
}
h3.heading-title:after, .h3.heading-title:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -1rem;
	width: 50px;
	height: 3px;
	background: var(--theme-red-color);
}
.line-title {
	position: relative;
	padding-bottom: .75rem;
	margin-bottom: 1.5rem;
}
.line-title:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 80px;
	height: 4px;
	background: var(--theme-red-color);
}

hr {
	margin: 1.5rem 0;
	color: var(--theme-grey-f0-color);
	opacity: 1;
}

.form-control {
	border: 1px solid var(--theme-grey-f0-color);
	box-shadow: none;
	/*box-shadow: 0px 4px 4px 0px rgba(29, 34, 35, 0.3);*/
}
input.form-control {
	height: 40px;
}
.form-control:focus {
	border-color: var(--theme-red-color);
	box-shadow: 0px 4px 4px 0px rgba(29, 34, 35, 0.3);
}
a {
	transition: all .2s ease-in-out;
}
#breadcrumb {
	position: relative;
	background: #fff;
	margin: 2rem 0;
}
#breadcrumb:before {
	content: '';
	position: absolute;
	height: 5px;
	width: calc(100% - 10px);
	box-shadow: 0 -5px 10px 0px var(--theme-grey-f0-color);
	z-index: -1;
}
#breadcrumb:after {
	content: '';
	position: absolute;
	height: 5px;
	width: calc(100% - 10px);
	box-shadow: 0 5px 10px 0px var(--theme-grey-f0-color);
	z-index: -1;
}
.breadcrumb {
	justify-content: center;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 100%;
	padding: 1rem 0;
	margin: auto;
}
.breadcrumb > li + li:before {
	display: inline-block;
	margin-right: 2px;
	margin-left: 2px;
	content: "/";
}
.breadcrumb > li:last-child {
	color: var(--theme-red-color);
	font-weight: 700;
}
.btn-white {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--theme-black-color);
	font-size: 16px;
	font-weight: 400;
	background: var(--bs-white);
	border: none;
	border-radius: 10px;
	transition: all .3s ease-in-out;
	box-shadow: 0px 4px 4px 0px rgba(29, 34, 35, 0.3);
	padding: 0;
	width: 40px;
	height: 40px;
	cursor: pointer;

	&:hover,
	&:active {
		color: #fff;
		/*background: linear-gradient(180deg, #df0024 0%, #ae001f 100%);*/
		background: var(--theme-red-color);
		outline: none;
	}
}

/*.btn-white.btn-lang {
	&:hover,
	&:active {
		!*background: linear-gradient(180deg, #df0024 0%, #ae001f 100%);*!
		background: var(--theme-red-color);
	}
}*/


.product-thumb .btn-white.addcart {
	padding: 0 1rem;
	box-shadow: unset;
	text-transform: none;
	color: var(--theme-red-color);
	font-weight: 600;
	&:hover,
	&:active {
		color: var(--theme-red-color);
		background: none;
	}
}
.btn-white.btn-mini-card {
	&:hover,
	&:focus,
	&:active {
		background: none;
	}
}

.btn-red {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bs-white);
	font-size: 16px;
	font-weight: 400;
	line-height: 100%;
	background: var(--theme-red-color);
	border: none;
	border-radius: 10px;
	transition: all .5s ease-in-out;
	padding: 0 2rem;
	height: 40px;
	cursor: pointer;

	&:hover,
	&:active {
		color: #fff;
		background: var(--theme-red-hover-color);
		outline: none;
	}
}
.btn-red.btn-to-home {
	margin: 60px 0;
}

.btn-grey {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--theme-black-color);
	font-size: 16px;
	font-weight: 400;
	background: var(--theme-grey-f0-color);
	border: none;
	border-radius: 10px;
	transition: all .5s ease-in-out;
	padding: 0 36px;
	height: 40px;
	cursor: pointer;

	&:hover,
	&:active {
		color: #fff;
		/*background: linear-gradient(180deg, #df0024 0%, #ae001f 100%);*/
		background: var(--theme-red-color);
		outline: none;
	}
}


#header-0 {
	position: relative;
	display: flex;
	align-items: end;
	justify-content: space-between;
}
#header-logo {
	margin: 15px 80px 15px 0;
}
#header-wrapper {
	display: flex;
	align-items: center;
	justify-content: end;
	flex-wrap: wrap;
	flex-shrink: 1;
	flex-basis: 100%;
}
#header-contact {
	order: 1;
	display: flex;
}
#header-contact > div {
	display: flex;
	flex-direction: column;

}
#header-contact > div {
	padding-right: 15px;
}
#header-contact > div:last-child {
	text-align: center;
}
#header-contact a {
	color: #1d2223;
	font-size: 16px;
	text-decoration: unset;
	line-height: 20px;
}
#header-contact .small {
	font-size: 12px;
	line-height: 20px;
}
#header-call-master {
	order: 2;
	width: 220px;
	margin-right: 15px;
}


/* search */
#search {
	position: relative;
	order: 3;
	z-index: 1001;
}
#search > div {

	position: absolute;
	top: -4px;
	right: -4px;
	width: 600px;

}
#search #btn-search {
	fill: var(--theme-black-color);
	z-index: 1000;
	position: relative;
}
#search #btn-search:hover {
	fill: #fff;
}
#search #btn-search-go {
	display: none;
	fill: var(--theme-black-color);
	z-index: 1;
	position: relative;
	background: none;
	border: none;
}
#search input {
	display: none;
	border: 1px solid var(--theme-red-color);
	padding: 6px 20px 6px 44px;
	width: 100%;
	height: 48px;
	z-index: 0;
}
#search .close-icon {
	display: none;
	position: relative;
	width: 16px;
}

#search .close-icon:before,
#search .close-icon:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background: var(--theme-black-color);
	left: 0;
	transition: all 0.5s ease 0s;
}
#search .close-icon:after {
	top: 0;
	transform: rotate(-45deg);
}
#search .close-icon:before {
	top: 0;
	transform: rotate(45deg);
}

#search.active input {
	display: block;
}
#search.active #btn-search {
	box-shadow: none;
	&:hover,
	&:focus,
	&:active {
		background: none;
	}
}
#search.active #btn-search svg {
	display: none;
}
#search.active .close-icon {
	display: block;
}
#search.active #btn-search:hover .close-icon:before,
#search.active #btn-search:hover .close-icon:after {
	background: var(--theme-red-color);
}
#search.active #btn-search-go {
	display: flex;
	position: absolute;
	top: 0;
	left: 4px;
	bottom: 0;
	margin: auto;
	box-shadow: none;
	&:hover,
	&:focus,
	&:active {
		background: none;
	}
}
#search.active #btn-search-go svg {
	fill: var(--theme-black-color);;
}
#search.active #btn-search-go:hover svg {
	fill: var(--theme-red-color);;
}

/*
button#search- svg {
	transition: fill .15s ease-in-out;
}
button#search-:hover svg, button#search-:active svg {
	fill: #fff;
}
#search.active button#search- svg {
	display: none;
}*/
/*
#search.active input {
	display: block;
}
#search.active > div {
	display: flex;
	align-items: center;
	width: calc(100% - 292px);
	height: auto;
	z-index: 0;
	opacity: 1;
}
#search .close-icon {
	display: none;
}
#search.active .close-icon {
	display: block;
	position: relative;
	width: 16px;
}
#search- .close-icon:before,
#search- .close-icon:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background: var(--theme-black-color);
	left: 0;
	transition: all 0.5s ease 0s;
}
button#search- .close-icon:after {
	top: 0;
	transform: rotate(-45deg);
}
button#search- .close-icon:before {
	top: 0;
	transform: rotate(45deg);
}
button#search-:hover .close-icon:after, button#search-:hover .close-icon:before {
	background: #fff;
}
button#search-go {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	box-shadow: none;
	&:hover,
	&:active {
		background: #fff;
	}
}
#search.active button {
	background: var(--theme-red-color);
}
#search.active button#search-go {
	display: flex;
}
button#search-go svg {
	fill: var(--theme-black-color);
}
button#search-go:hover svg {
	fill: #df0024;
}
*/

#form-language {
	z-index: 1001;
	order: 4;
	margin-left: 15px;
}
#form-language .dropdown-menu {
	width: auto;
	max-width: 40px;
	min-width: 40px;
	padding: 0;
	height: 40px;
	border: unset;
	border-radius: 10px;
}
#form-language .dropdown-item {
	padding: 0;
	text-align: center;
}
#cart {
	order: 5;
	padding-left: 15px;
}
#cart button {
	background: linear-gradient(180deg, #df0024 0%, #ae001f 100%);
}
#cart button svg {
	fill: #fff;
}

/* menu */
/*.dropdown-menu[data-bs-popper] {
	margin-top: 0;
}*/

.dropdown-item.dropdown-title:hover, .dropdown-item.dropdown-title:focus {
	color: var(--theme-black-color)!important;
}
#menu {
	order: 6;
	flex-basis: 100%;
	/*transition: all 0.4s ease;*/
	background: var(--theme-grey-f0-color);
	z-index: 1000;
	margin-top: 1rem;
	padding: 0;
}
#menu > .container {
	padding: 0;
}
#navbarMenu > .navbar-nav {
	justify-content: space-between;
	width: 100%;
}
#navbarMenu > .navbar-nav > .nav-item > a {
	color: #1d2223;
	font-size: 16px;
	font-weight: 400;
	text-transform: uppercase;
	line-height: 100%;
	padding-bottom: 15px;
}
#navbarMenu > .navbar-nav > .nav-item > a:hover {
	color: var(--theme-red-color);
}
#navbarMenu .dropdown-menu {
	font-size: 14px;
	border: none;
}


.product-quantity {
	display: flex;
}
.product-quantity button {
	width: 40px;
	min-width: 40px;
	box-shadow: none;
	border: 1px solid var(--theme-grey-f0-color);
}
.product-quantity input {
	text-align: center;
	height: 40px;
	box-shadow: none;
	border: 1px solid var(--theme-grey-f0-color);
	margin: 0 5px;
}
.product-quantity.ch-cart-quantity button {
	width: 34px;
	min-width: 34px;
	height: 34px;
}
.product-quantity.ch-cart-quantity input {
	height: 34px!important;
}

.img-responsive, .image-thumbnail {
	width: 100%;
	max-width: 100%;
	height: auto;
}

.product-images {
	visibility: hidden;
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.product-images.swiper-initialized {
	visibility: visible;
	opacity: 1;
}

.h-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.swiper-nav {
	display: flex;
	gap: 10px;
}


.swiper-button-next-custom,
.swiper-button-prev-custom {
	position: relative;
	width: 42px;
	height: 42px;
	background: #f0f0f0;
	border: none;
	border-radius: 10px;
	transition: background .5s ease-in-out;
}
.swiper-button-next-custom:hover,
.swiper-button-prev-custom:hover {
	background: #df0024;
}
.swiper-button-next-custom::after,
.swiper-button-prev-custom::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
.swiper-button-prev-custom::after,
.swiper-button-next-custom::after {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	transition: opacity .5s ease-in-out;
}
.swiper-button-prev-custom::after {
	border-right: 10px solid #fff;
}
.swiper-button-next-custom::after {
	border-left: 10px solid #fff;
}


/* featured-category */
.featured-category .swiper {
	visibility: hidden;
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.3s ease;
	margin-bottom: 60px;
}
.featured-category .swiper.swiper-initialized {
	visibility: visible;
	opacity: 1;
}
.featured-category .swiper-slide {
	margin-bottom: 44px;
}
.featured-category button.btn-white {
	position: absolute;
	right: 0;
	bottom: -38px;
	left: 0;
	margin: auto;
	width: 200px;
	height: 76px;
	padding: 0 20px;
}
.featured-category a > img {
	transition: opacity .5s ease-in-out;
}
.featured-category a:hover > img {
	opacity: 0.8;
}
.product-check-price {
	font-weight: 600;
	color: var(--theme-red-color);
}

/* carousel */
.carousel-service {
	position: relative;
	background: var(--theme-grey-f0-color);
	padding: 30px 0;
	margin-bottom: 60px;
}
.carousel-service .btn-white {
	width: 100%;
	height: 76px;
	padding: 0 10px;
	margin-bottom: 10px;
	&:hover,
	&:active {
		background: #fff;
	}
	&:hover span {
		opacity: 0.8;
	}
}
.carousel-service .btn-white span.image-svg {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	text-indent: -9999px;
	width: 100%;
	height: 100%;
	max-height: 38px;
	transition: all .5s ease-in-out;
}

.carousel-service .btn-white span.image-webp {
	background-size: auto;
	background-repeat: no-repeat;
	background-position: center;
	text-indent: -9999px;
	width: 100%;
	height: 100%;
	transition: all .5s	ease-in-out;
}

.carousel .swiper-button-next-custom,
.carousel .swiper-button-prev-custom {
	background: #fff;
}
.carousel .swiper-button-prev-custom::after {
	border-right-color: #f0f0f0;
}
.carousel .swiper-button-next-custom::after {
	border-left-color: #f0f0f0;
}
.carousel .swiper-button-next-custom:hover,
.carousel .swiper-button-prev-custom:hover {
	background: #df0024;
}
.carousel .swiper-button-prev-custom:hover::after {
	border-right-color: #fff;
}
.carousel .swiper-button-next-custom:hover::after {
	border-left-color: #fff;
}


@media (min-width: 992px) {
	#menu .dropdown-toggle-icon {
		display: none;
	}
	/*#menu .dropdown-submenu.service > .dropdown-menu {
		position: static;
		display: block;
	}*/
	/*#menu .dropdown-submenu.catalog > .dropdown-menu {
		display: none!important;
	}*/
	/*#menu .dropdown-submenu > .dropdown-menu:last-child {
		padding-bottom: 0;
	}*/
	#menu.sticky {
		position: fixed;
		top: 0;
		left: 0;
		padding: 0;
		width: 100%;
		box-shadow: 0px 4px 4px 0px rgba(29, 34, 35, 0.3);
		margin-top: 0;
	}
	#menu.sticky > .container {
		padding-right: calc(var(--bs-gutter-x) * .5);
		padding-left: calc(var(--bs-gutter-x) * .5);
	}
	#menu.sticky #navbarMenu > .navbar-nav > .nav-item > a {
		padding-bottom: 0.5rem;
	}
	/*#navbarMenu .dropdown-menu-lvl-2 {
		padding: 1rem;
		border-radius: 10px;
		border-top: 2px solid #df0024;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
		position: absolute;
		top: 30px;
		display: flex;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: all 0.5s ease 0s;
	}
	#navbarMenu .dropdown-menu-lvl-2.show {
		top: 100%;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
	*/
}
@media (min-width: 1200px) {
}
@media (max-width: 1199px) {
	#column-left {
		display: none;
	}
	#header-contact > div:first-child {
		display: none;
	}
	#header-contact .small {
		line-height: 1;
	}
	#navbarMenu > .navbar-nav > .nav-item > a {
		padding-right: 6px;
		padding-left: 6px;
	}
	/*#navbarMenu > .navbar-nav > .nav-item > a {
		font-size: 14px;
		padding-bottom: 16px;
	}*/
}
@media (max-width: 991px) {
	body.no-scroll {
		overflow: hidden;
	}
	header.sticky {
		position: sticky;
		top: 0;
		left: 0;
		width: 100%;
	}
	#header-0 {
		align-items: center;
	}
	#header-logo {
		margin: 8px 0 8px 0;
	}
	#header-logo img {
		width: auto;
		height: 50px;
	}
	#header-call-master {
		display: none;
	}
	#search > div {
		top: -2px;
		right: -2px;
		width: 480px;
	}
	#search input {
		height: 44px;
	}
	#search.active #btn-search-go {
	}


	button.navbar-toggler {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	#menu {
		position: static;
		order: 2;
		flex-basis: auto;
		padding: 0;
		margin-top: 0;
		margin-right: 15px;
	}
	#menu .menu-icon {
		position: relative;
		width: 22px;
		height: 1px;
		background: var(--theme-black-color);
	}
	#menu .menu-icon:before,
	#menu .menu-icon:after {
		content: "";
		position: absolute;
		width: 100%;
		height: 1px;
		background: var(--theme-black-color);
		left: 0;
		transition: all 0.5s ease 0s;
		-moz-transition: all 0.5s ease 0s;
		-webkit-transition: all 0.5s ease 0s;
		-o-transition: all 0.5s ease 0s;
	}
	#menu .menu-icon:after {
		top: 6px;
	}
	#menu .menu-icon:before {
		top: -6px;
	}
	#menu button[aria-expanded="true"] {
		/*background: linear-gradient(180deg, #df0024 0%, #ae001f 100%);*/
		background: var(--theme-red-color);
	}
	#menu [aria-expanded="true"] .menu-icon {
		background: transparent;
	}
	#menu [aria-expanded="true"] .menu-icon::before {
		background: var(--bs-white);
		transform: rotate(45deg);
		top: 0;
	}
	#menu [aria-expanded="true"] .menu-icon::after {
		background: var(--bs-white);
		transform: rotate(-45deg);
		top: 0;
	}
	#menu [aria-expanded="false"] {
		background: var(--bs-white);
	}











	#navbarMenu {
		position: relative;
		/*background-image: linear-gradient(white 30%, transparent), linear-gradient(transparent, white 70%), radial-gradient(farthest-side at 50% 0, rgb(0 0 0 / 10%), transparent), radial-gradient(farthest-side at 50% 100%, rgb(0 0 0 / 10%), transparent);*/
	}
	body.no-scroll #navbarMenu {
	}
	#navbarMenu > .navbar-nav {
		position: fixed;
		top: 66px;
		right: 0;
		bottom: 0;
		left: 0;
		margin: auto;
		padding: .5rem 0;
		overflow: auto;
		justify-content: flex-start;
		background-color: var(--bs-white);
		width: 100%;
		max-width: 690px;
		box-shadow: 0px 4px 4px 0px rgba(29, 34, 35, 0.3);
	}
	#navbarMenu > .navbar-nav > .nav-item {
		border-bottom: 1px solid var(--theme-grey-f0-color);
		background: #fff;
	}
	#navbarMenu > .navbar-nav > .nav-item:last-child {
		border-bottom: none;
	}


	/*#navbarMenu .dropdown-menu {
		font-size: 14px;
		border: none;
		border-radius: 0;
		box-shadow: none;
		padding: 0 0 1rem 1rem;
	}*/
	/*#navbarMenu .dropdown-menu .dropdown-menu {
		padding: 0.5rem 0;
	}*/
	/*#navbarMenu .dropdown-menu.menu-lvl-2.show {
		display: block;
	}*/
	/*#navbarMenu .dropdown-title:after {
		bottom: 0;
		left: .5rem;
	}*/



}
@media (max-width: 767px) {
	#header-logo {
		margin: 15px 0;
	}
	#header-wrapper button {
		width: 36px;
		height: 36px;
	}
	#header-contact a {
		font-size: 14px;
		line-height: 16px;
	}
	#header-contact .small {
		font-size: 10px;
	}
	#navbarMenu {
		top: 80px;
		max-width: 540px;
	}
	#search > div {
		width: 320px;
	}
	#form-language .dropdown-menu {
		height: 36px;
		max-width: 36px;
		min-width: 36px;

	}
	#cart button {
		width: 36px;
	}
	#navbarMenu > .navbar-nav {
		top: 80px;
		max-width: 510px;
	}
}
@media (max-width: 575px) {
	#header-logo {
		margin: .5rem 0;
	}
	#header-logo img {
		height: 40px;
	}
	#header-contact > div {
		padding-right: 8px;
	}
	#header-contact a {
		font-size: 12px;
		line-height: 1;
	}
	#header-contact .small {
		display: none;
	}
	#header-wrapper button {
		border-radius: 4px;
		width: 24px;
		height: 24px;
	}
	#menu {
		margin-right: 8px;
	}
	#menu .menu-icon {
		width: 10px;
	}
	#menu .menu-icon:after {
		top: 3px;
	}
	#menu .menu-icon:before {
		top: -3px;
	}
	#navbarMenu > .navbar-nav {
		top: 56px;
	}
	#search {
		position: static;
	}
	#search > div {
		top: 6px;
		right: -2px;
		left: -2px;
		width: 100%;
		width: -moz-available;
		width: -webkit-fill-available;
		width: stretch;
	}

	#search.active > div {
	}
	#search input {
		padding: 6px 40px 6px 30px;
	}
	#search.active #btn-search {
		position: absolute;
		top: 0;
		right: 10px;
		bottom: 0;
		margin: auto;
	}
	#form-language {
		margin-left: 8px;
		z-index: 1;
	}
	#form-language button {
		font-size: 12px;
	}
	#form-language .dropdown-menu {
		height: 36px;
		max-width: 24px;
		min-width: 24px;
	}
	#cart {
	padding-left: 8px;
	}
	#cart button svg {
		width: 12px;
		height: 12px;
	}

	.module-title {
		font-size: 18px;
	}
	.module-title:after {
		bottom: -4px;
		width: 140px;
		border-bottom: 2px solid #df0024;
	}
	.carousel-service .btn-white {
		height: 56px;
	}
	.carousel-service .btn-white span.image-webp {
		background-size: contain;
	}

	.swiper-button-next-custom,
	.swiper-button-prev-custom {
		width: 32px;
		height: 32px;
	}
	.swiper-button-prev-custom::after,
	.swiper-button-next-custom::after {
		border-top-width: 8px;
		border-bottom-width: 8px;
	}
	.swiper-button-prev-custom::after {
		border-right-width: 8px;
	}
	.swiper-button-next-custom::after {
		border-left-width: 8px;
	}
}



.modal-dialog {
	margin: auto;
}
.modal-content {
	border-radius: 10px;
	box-shadow: 0px 4px 4px 0px rgba(29, 34, 35, 0.3);
}
.modal-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	text-transform: uppercase;
	padding: 30px 30px 3px;
	border-bottom: none;
}
.modal-body {
	padding: 15px 30px;
}
.modal-footer {
	border-top: none;
	justify-content: space-between;
	padding: 15px 30px 30px;
}
.modal-footer>* {
	margin: 0;
}
.btn-close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	margin: 2px 0 0!important;
	padding: 0!important;
	background: none;
	border: none;
}
.icon-close {
	position: relative;
	width: 22px;
}
.icon-close:before,
.icon-close:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background: var(--theme-black-color);
	left: 0;
	transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
}
.icon-close:before {
	transform: rotate(45deg);
	top: 0;
}
.icon-close:after {
	transform: rotate(-45deg);
	top: 0;
}
.btn-close:hover .icon-close:before,
.btn-close:hover .icon-close:after {
	background: var(--theme-red-color);
}

@media (max-width: 575px){
	.modal-header {
		padding: 15px 15px 3px;
	}
	.modal-body {
		padding: 15px 15px;
	}
	.modal-footer {
		border-top: none;
		justify-content: space-between;
		padding: 15px 15px 15px;
	}
}



/* tmp */
.carousel-services {
	position: relative;
	background: var(--theme-grey-f0-color);
	padding: 30px 0;
	margin-bottom: 60px;
}
