/* IMPORTS */
@import "../../../css/theme.css";
@import "../../../css/custom.css";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

html,
body {
	background: white;
	font-family: "Lato", sans-serif;
	scroll-behavior: smooth;
}

.bg-light-solaris {
	background-color: #FEF9F9;
}

.bg-light-solaris-2 {
	background-color: #F6F5F2!important;
}

.bg-light-solaris-3 {
	background-color: rgba(205,202,197,.2);
}

.bg-primary {
	background-color: #f8f8f8!important;
}

.bg-golden {
	background-color: #e52e06!important;
}

.c-text {
	color: #444!important;
}

.text-orange-light {
	color: #e52e06;
}

.border-end-dotted {
	border-right: 1px dotted #e52e06;
}

.border-start-dotted {
	border-left: 1px dotted #e52e06;
}

.border-top-dotted {
	border-top: 1px dotted #e52e06;
}

.header-extras {
	display: flex;
	flex-direction: column;
}

@media (max-width: 576px) {
	.postal-holder {
		display: flex;
		justify-content: center;
		background: #f8f9fa;
	}
}

.btn-orange {
	background-color: #e52e06;
	font-size: 15px !important;
	border-radius: 5px!important;
}

.btn-orange:hover {
	background-color: #292828;
}

.btn-style-1 a:hover {
	color: #e52e06!important;
}

a,
button,
img,
input,
span {
	-webkit-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
}

input {
	font-family: "Lato", sans-serif;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	transition: transform 0.3s ease-in-out;
	background-color: #fff;
}

header .logo {
	max-height: 48px;
}

header nav {
	font-weight: 500;
}

header nav a,
header nav button {
	color: #121519;
	text-transform: uppercase;
	font-weight: 600;
}

header nav a:hover,
header nav button:hover {
	color: #ff5049;
}

header nav ul li a {
	text-transform: none;
	color: #7e7e7e;
}

header .dropdown-menu {
	max-height: calc(100vh - 130px);
	overflow: auto;
	width: 200px;
	z-index: 9999;
}

header .menu {
	width: 30px;
}

header .menu span {
	height: 2px;
	transition: all ease-in-out .3s;
}

header .menu.active span:first-child {
	transform: rotate(45deg);
}

header .menu.active span:nth-child(2) {
	opacity: 0;
}

header .menu.active span:last-child {
	transform: rotate(-45deg);
	margin-top: -11px;
}

header .menu span {
	background-color: #323232;
}

header.hidden {
	box-shadow: 0 -6px 10px 5px rgba(0, 0, 0, 0.5);
}

body {
	padding-top: 93px;
}

body.with-name {
	padding-top: 137px;
}

body.with-bar {
	padding-top: 119px;
}

body.with-name.with-bar {
	padding-top: 163px;
}

a,
a:hover,
button,
button:hover {
	-webkit-transition: all .3s ease-in-out 0s;
	-o-transition: all .3s ease-in-out 0s;
	transition: all .3s ease-in-out 0s;
}

#carouselBanners .carousel-indicators button {
	background-color: #D9D9D9;
	border-radius: 50%;
	height: 16px;
	opacity: 1;
	width: 16px;
}

#carouselBanners .carousel-indicators button.active {
	background-color: #FCD9B8;
}

#carouselBanners img.d-none.d-sm-block {
	height: 66vh;
	object-fit: cover;
}

#carouselBanners img.d-sm-none {
	object-fit: cover;
}

#carouselBanners .tns-nav {
	position: absolute;
	z-index: 1;
	bottom: 5vh;
	left: 50%;
	transform: translate(-50%, -50%);
}

#carouselBanners .tns-nav button {
	border-radius: 25px;
	width: 12px;
	height: 12px;
	background: #e52e06;
	border: 0;
	margin: 0px 5px;
}

.sliderCategories .tns-controls {
	top: 50%;
	margin-top: -12px;
}

.sliderCategories .item {
	transition: all 0.3s ease-in-out;
}

.sliderCategories .item h3 {
	transition: color 0.3s ease-in-out;
}

.sliderCategories .item a.btn-cat {
	z-index: 1;
}

.sliderCategories .item .bg-img {
	transition: all 0.3s ease-in-out;
	position: relative;
	overflow: hidden;
}

.sliderCategories .item .bg-img::after {
	display: none;
	content: '';
	position: absolute;
	inset: 0;
	background-color: rgba(255,80,73,0.15);
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	border-radius: inherit;
}

.sliderCategories .item:hover .bg-img::after {
	opacity: 1;
}

.sliderCategories .item .item-box {
	padding-top: 25px;
	padding-left: 30px;
	padding-bottom: 30px;
	padding-right: 30px;
	border: 1px solid #f8f8f8;
}

.img-zoom {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 1.5s cubic-bezier(0, 0, 0.2, 1);
}

.item h3 {
	transition: color 1.5s cubic-bezier(0, 0, 0.2, 1);
}

.item:hover .img-zoom {
	transform: scale(1.1);
}

.item:hover h3 {
	color: #e52e06;
}

.category-hover .category-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.75);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: all 0.3s ease-in-out;
}

.category-hover:hover .category-overlay {
	opacity: 1;
}

.product-count {
	background-color: #ff5049;
	color: white;
	font-weight: bold;
	font-size: 1rem;
	padding: 0.6rem 1.2rem;
	border-radius: 50px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.tns-controls {
	left: 0;
	position: absolute;
	top: 30%;
	width: 100%;
}

.tns-controls [data-controls="prev"],
.tns-controls [data-controls="next"] {
	background-color: transparent;
	background-position: center center;
	background-repeat: no-repeat;
	border: 0;
	height: 24px;
	padding: 0;
	position: absolute;
	width: 24px;
}

.tns-controls [data-controls="prev"] {
	background-image: url('https://emidica.com/img/icos/ico-arrow-prev.svg');
}

.tns-controls [data-controls="next"] {
	background-image: url('https://emidica.com/img/icos/ico-arrow-next.svg');
	right: 0;
}

.shipping_type.active::after,
.payment_method.active::after {
	color: var(--bs-green);
	content: '\F26A';
	display: block;
	font-family: 'bootstrap-icons';
	height: 16px;
	position: absolute;
	right: 5px;
	top: 5px;
	width: 16px;
}

.longDescription,
.short_description {
	overflow: hidden;
}

.longDescription figure img,
.longDescription p img,
.short_description figure img,
.short_description p img {
	max-width: 100%;
	height: auto;
}

.longDescription figure,
.short_description figure {
	display: block;
	margin: 20px auto;
	max-width: 100%;
}

.longDescription figure img,
.short_description figure img {
	display: block;
	margin: 20px auto;
}

.longDescription figure.image-style-side,
.short_description figure.image-style-side {
	float: right;
	margin: 20px 0 20px 20px;
}

.bg-color-category .menu-categories {
	background-color: #f8f8f8;
	padding-top: 10px;
	padding-left: 10px;
	padding-bottom: 10px;
	padding-right: 10px;
}

.menu-categories li .imgblack {
	display: block;
}

.menu-categories li .imgcolor {
	display: none;
}

.menu-categories li.active > div > a {
	color: #CB8161;
}

.menu-categories li.active > div > button .imgblack {
	display: none;
}

.menu-categories li.active > div > button .imgcolor {
	display: block;
}

.menu-categories > ul > li ul {
	list-style: none;
	padding-left: 20px;
}

.menu-categories > ul > li > ul {
	display: block !important;
}

footer {
	background-color: #f8f8f8;
	color: #444444!important;
}

footer .logo {
	max-height: 45px;
	max-width: 115px;
}

footer a {
	color: #444444;
	transition: all ease-in-out .3s;
}

footer a:hover {
	color: #e52e06;
	transition: all ease-in-out .3s;
	opacity: 0.5;
}

footer a i:hover {
	color: #e52e06;
	transition: all ease-in-out .3s;
	opacity: 0.5;
}

#thumbnail-carousel-track {
	height: 516px !important;
}

#icons-items {
	background-color: #f8f8f8;
}

#icons-items .icon-hover-flip .bi,
#icons-items .icon-hover-flip img {
	transition: transform 0.3s ease-in-out;
	transform: scaleX(1);
	color: #646363;
	font-size: 50px!important;
}

#icons-items p {
	color: #444;
	font-weight: 400;
}

#icons-items .icon-hover-flip:hover .bi,
#icons-items .icon-hover-flip:hover img {
	transform: scaleX(-1);
}

.price-offer {
	border-radius: 5px;
}

.scroll-top-btn {
	bottom: 0;
	right: 30px;
	margin-bottom: 15px;
	z-index: 999;
	border-radius: 50%;
	border: 0;
	color: white;
	transition: all ease-in-out .3s;
}

.scroll-top-btn:hover {
	background-color: #292828!important;
}

.btn-buy-add {
	margin-right: 5px;
}

.btn-buy-add button {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #292828;
	color: white;
}

.btn-buy-add .btn-buy {
	background-color: #e52e06;
}

.btn-buy-add .btn-buy:hover {
	background-color: #e2e3e5;
}

.btn-buy-add button:hover {
	box-shadow: rgba(149,157,165,0.2) 0px 8px 24px;
	transition: .3s;
	background-color: #e52e06;
	color: white!important;
}

.product-card {
	box-shadow: rgba(0,0,0,0.1) 0px 0px 10px;
	height: 100%;
}

.product-card .ratio {
	background-size: 100%;
	background-position: center;
	transition: background-size 1.5s cubic-bezier(0,0,0.2,1);
	will-change: background-size;
}

.product-card:hover .ratio {
	background-size: 110%;
}

.call-to-action {
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
	transition: background-size 1.5s cubic-bezier(0,0,0.2,1);
	will-change: background-size;
	border-radius: 5px;
}

.call-to-action:hover {
	background-size: 110%;
}

.call-to-action .btn-orange {
	border-radius: 50px!important;
}

.search form input {
	background-color: #f5f5f5;
	border-radius: 10px!important;
}

.bodyProduct {
	padding-right: inherit!important;
}

.img-review .btn {
	height: inherit;
	line-height: 30px;
	position: absolute;
	top: 0;
	right: 0;
	padding-left: 10px;
	padding-right: 10px;
}

.img-review .btn i {
	color: white;
}

.breadcrumb-item.active {
	color: #e52e06!important;
}

.breadcrumbs-head {
	background: #f4f4f4;
	padding-top: 50px;
	padding-bottom: 50px;
}

.breadcrumbs-head ol.breadcrumb {
	margin-bottom: 0px;
}

.breadcrumbs-head .d-flex {
	justify-content: start!important;
}

.product-detail .column-right .price-title {
	color: #e4573d;
}

.product-detail .div-sellfast .btn-sellfast {
	width: 100%;
	background-color: #e52e06;
	border-color: #e52e06;
	border-radius: 5px;
}

.product-detail .nav {
	background-color: #f8f8f8;
	padding-top: 20px;
	padding-bottom: 20px;
}

.product-detail .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
	background-color: transparent;
	border-color: #e52e06;
	color: #e52e06;
	border-bottom: 2px solid #e52e06;
	border-radius: 0px;
}

.btn-sellfast:hover {
	background-color: #292828!important;
	border-color: #292828!important;
}

.nav-link:hover,
.nav-link:focus {
	color: #e4573d;
}

.offer-watch {
	justify-content: start!important;
}

.watch-model-1 div {
	text-align: left!important;
}

.watch-model-1 .offer-watch .ratio {
	background-color: #f8f8f8!important;
	color: #343434!important;
}

.contact-items .col i::before {
	line-height: normal !important;
	display: block;
}

.form-control {
	border-radius: 26px!important;
	background-color: #f8f8f8;
	border-color: #f8f8f8;
}

.form-control:focus {
	border-color: #e52e06;
}

.confirmed-order .badge {
	background-color: #e4573d;
}

.btn-buy-detail {
	border-radius: 5px;
}

.btn-buy-detail:hover {
	background-color: #343434!important;
}

.btn-add-detail {
	border-radius: 5px;
	margin-left: 10px;
	background-color: #e2e3e5;
}

.btn-add-detail:hover {
	background-color: #e52e06!important;
	color: white!important;
}

.confirmed-order .form-floating .form-control {
	position: relative;
	z-index: 3;
	background: transparent;
}

.btn-deatil-buy-add .btn-buy {
	font-size: 14px !important;
	border-radius: 5px !important;
	font-weight: 600;
	background-color: #313131 !important;
}

.btn-deatil-buy-add .btn-buy:hover {
	background-color: #e52e06!important;
	opacity: 0.5;
}

.btn-deatil-buy-add .btn-add {
	font-size: 14px !important;
	border-radius: 5px !important;
	font-weight: 600;
	background-color: #f5f5f5 !important;
	color: #313131;
}

.btn-deatil-buy-add .btn-add:hover {
	background-color: #313131!important;
	color: white!important;
}

.btn-share a {
	background-color: #e52e06!important;
}

@media (max-width: 991px) {
	body {
		padding-top: 79px;
	}

	body .mobile-nav {
		left: -100%;
		padding-top: 62px;
		transition: all ease-in-out .3s;
		z-index: 6;
		max-width: 425px;
	}

	body .mobile-nav.active {
		left: 0;
		background-color: #444;
		color: white;
	}

	body.with-name {
		padding-top: 118px;
	}

	body.with-name .mobile-nav {
		padding-top: 118px;
	}

	body.with-bar {
		padding-top: 88px;
	}

	body.with-bar .mobile-nav {
		padding-top: 105px;
	}

	body.with-name.with-bar {
		padding-top: 144px;
	}

	body.with-name.with-bar .mobile-nav {
		padding-top: 144px;
	}
}

@media (max-width: 767px) {
	.border-start-dotted {
		border-left: 0;
	}

	.border-end-dotted {
		border: none;
	}

	.btn-whatsapp {
		bottom: 14px!important;
	}

	.scroll-top-btn {
		right: 21px;
	}
}

@media screen and (max-width: 576px) {
	.bg-color-category {
		background-color: transparent;
	}

	.confirmed-order .subtotal-price {
		position: absolute;
		top: 0;
		right: 0;
	}

	.btn-buy-detail,
	.btn-add-detail {
		border-radius: 0px!important;
	}

	.btn-add-detail {
		margin-left: 0px!important;
	}
}

@media (max-width: 425px) {
	#thumbnail-carousel-track {
		height: 276px !important;
	}
}

@media (max-width: 375px) {
	#thumbnail-carousel-track {
		height: 240px !important;
	}
}

@media (max-width: 320px) {
	#thumbnail-carousel-track {
		height: 198px !important;
	}
}