/********** Template CSS **********/
html{
	overflow-x: hidden;
}
:root {
	--primary: #B78D65;
	--light: #F8F8F8;
	--dark: #252525;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
	font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
	font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
	font-weight: 400 !important;
}

.back-to-top {
	position: fixed;
	display: none;
	right: 30px;
	bottom: 30px;
	z-index: 99;
}


/*** Spinner ***/
#spinner {
	opacity: 0;
	visibility: hidden;
	transition: opacity .5s ease-out, visibility 0s linear .5s;
	z-index: 99999;
}

#spinner.show {
	transition: opacity .5s ease-out, visibility 0s linear 0s;
	visibility: visible;
	opacity: 1;
}


/*** Button ***/
.btn {
	font-weight: 500;
	transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
	color: #FFFFFF;
}

.btn-square {
	width: 38px;
	height: 38px;
}

.btn-sm-square {
	width: 32px;
	height: 32px;
}

.btn-lg-square {
	width: 48px;
	height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
}

.btn-outline-body {
	color: var(--primary);
	border-color: #777777;
}

.btn-outline-body:hover {
	color: #FFFFFF;
	background: var(--primary);
	border-color: var(--primary);
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
	border: none;
	content: "\f107";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	vertical-align: middle;
	margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
	margin-right: 30px;
	padding: 30px 0;
	color: var(--dark);
	font-weight: 500;
	text-transform: uppercase;
	outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
	color: var(--primary);
}

.navbar.sticky-top {
	top: -100px;
	transition: .5s;
}

@media (max-width: 991.98px) {
	.navbar .navbar-nav .nav-link {
		margin-right: 0;
		padding: 10px 0;
	}

	.navbar .navbar-nav {
		border-top: 1px solid #EEEEEE;
	}
}

@media (min-width: 992px) {
	.navbar .nav-item .dropdown-menu {
		display: block;
		visibility: hidden;
		top: 100%;
		transform: rotateX(-75deg);
		transform-origin: 0% 0%;
		transition: .5s;
		opacity: 0;
	}

	.navbar .nav-item:hover .dropdown-menu {
		transform: rotateX(0deg);
		visibility: visible;
		transition: .5s;
		opacity: 1;
	}
}


/*** Header ***/
.owl-carousel-inner {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	background: rgba(0, 0, 0, .5);
}

@media (max-width: 768px) {
	.header-carousel .owl-carousel-item {
		position: relative;
		min-height: 500px;
	}

	.header-carousel .owl-carousel-item img {
		position: absolute;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.header-carousel .owl-carousel-item p {
		font-size: 16px !important;
	}
}

.header-carousel .owl-dots {
	position: absolute;
	width: 60px;
	height: 100%;
	top: 0;
	right: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
	position: relative;
	width: 45px;
	height: 45px;
	margin: 5px 0;
	background: var(--dark);
	transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
	width: 60px;
	height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	padding: 2px;
	transition: .5s;
	opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
	opacity: 1;
}

.page-header {
	background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
	background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
	color: var(--light);
}


/*** Section Title ***/
.section-title {
	color: var(--primary);
	font-weight: 600;
	letter-spacing: 5px;
	text-transform: uppercase;
}


/*** Facts ***/
.fact-item .fact-icon {
	width: 120px;
	height: 120px;
	margin-top: -60px;
	margin-bottom: 1.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #FFFFFF;
	border-radius: 120px;
	transition: .5s;
}

.fact-item:hover .fact-icon {
	background: var(--dark);
}

.fact-item .fact-icon i {
	color: var(--primary);
	transition: .5;
}

.fact-item:hover .fact-icon i {
	color: #FFFFFF;
}


/*** About & Feature ***/
.about-img,
.feature-img {
	position: relative;
	height: 100%;
	min-height: 400px;
}

.about-img img,
.feature-img img {
	position: absolute;
	width: 60%;
	height: 80%;
	object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
	margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
	position: absolute;
	content: "";
	width: 60%;
	height: 80%;
	top: 10%;
	left: 20%;
	border: 5px solid var(--primary);
	z-index: -1;
}


/*** Service ***/
.service-item .bg-img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.service-item .service-text {
	background: var(--light);
	transition: .5s;
}

.service-item:hover .service-text {
	background: rgba(0, 0, 0, .7);
}

.service-item * {
	transition: .5;
}

.service-item:hover * {
	color: #FFFFFF;
}

.service-item .btn {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	color: var(--dark);
	background: #FFFFFF;
	white-space: nowrap;
	overflow: hidden;
	transition: .5s;
}

.service-item:hover .btn {
	width: 140px;
}


/*** Project ***/
.project .nav .nav-link {
	background: var(--light);
	transition: .5s;
}

.project .nav .nav-link.active {
	background: var(--primary);
}

.project .nav .nav-link.active h3 {
	color: #FFFFFF !important;
}


/*** Team ***/
.team-items {
	margin: -.75rem;
}

.team-item {
	padding: .75rem;
}

.team-item::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 0;
	top: 0;
	left: 0;
	background: #FFFFFF;
	transition: .5s;
	z-index: -1;
}

.team-item:hover::after {
	height: 100%;
	background: var(--primary);
}

.team-item .team-social {
	position: absolute;
	width: 100%;
	bottom: -20px;
	left: 0;
}

.team-item .team-social .btn {
	display: inline-flex;
	margin: 0 2px;
	color: var(--primary);
	background: var(--light);
}

.team-item .team-social .btn:hover {
	color: #FFFFFF;
	background: var(--primary);
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
	top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
	border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
	font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
	padding: 10px;
	border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
	background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
	border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
	display: flex !important;
	flex-direction: column-reverse;
	max-width: 700px;
	margin: 0 auto;
}

.testimonial-carousel .owl-dots {
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
	position: relative;
	width: 60px;
	height: 60px;
	margin: 0 5px;
	transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
	width: 100px;
	height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
	position: absolute;
	width: 40px;
	height: 40px;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	content: "\f10d";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: var(--primary);
	background: #FFFFFF;
	border-radius: 40px;
	transition: .5s;
	opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
	opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
	opacity: .4;
	transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
	opacity: 1;
}


/*** Footer ***/
.footer .btn.btn-link {
	display: block;
	margin-bottom: 5px;
	padding: 0;
	text-align: left;
	color: #777777;
	font-weight: normal;
	text-transform: capitalize;
	transition: .3s;
}

.footer .btn.btn-link::before {
	position: relative;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: var(--primary);
	margin-right: 10px;
}

.footer .btn.btn-link:hover {
	color: var(--primary);
	letter-spacing: 1px;
	box-shadow: none;
}

.footer .form-control {
	border-color: #777777;
}

.footer .copyright {
	padding: 25px 0;
	font-size: 15px;
	border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
	color: var(--light);
}

.footer .copyright a:hover {
	color: var(--primary);
}




















/*
---------------------------------------------
Sección Tienda
---------------------------------------------
*/

section.upcoming-meetings {
	background-color: white !important;


	background-position: cover;
	background-repeat: no-repeat;
	padding-top: 50px;
	padding-bottom: 50px;
	z-index: -2;
}

section.upcoming-meetings .section-heading {
	text-align: center;
}

section.upcoming-meetings .categories {
	border-radius: 20px;
	padding: 40px;
	margin-right: 45px;
	border: 1px solid #B78D65; 
}

section.upcoming-meetings .categories h4 {
	font-size: 18px;
	font-weight: 600;
	color: #1f272b;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}

section.upcoming-meetings .categories ul li {
	display: inline-block;
	margin-bottom: 15px;
}

section.upcoming-meetings .categories ul li a {
	font-size: 15px;
	color: #1f272b;
	font-weight: 500;
	transition: all .3s;
}

section.upcoming-meetings .categories ul li a:hover {
	color: #33cc99;
}

section.upcoming-meetings .categories .main-button-red {
	border-top: 1px solid #eee;
	padding-top: 30px;
	margin-top: 15px;
}

section.upcoming-meetings .categories .main-button-red a {
	width: 100%;
	text-align: center;
}

.meeting-item {
	margin-bottom: 30px;
}

.meeting-item .thumb {
	position: relative;
	background-color: white;
	border-radius: 20px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;

	radius: 0;
}

.meeting-item .thumb img {
	border-top-right-radius: 20px;
	border-top-left-radius: 20px;
}

.meeting-item .thumb .price {
	position: absolute;
	left: 20px;
	top: 20px;
}

.meeting-item .thumb .price span {
	font-size: 16px;
	color: #1f272b;
	font-weight: 600;
	background-color: rgba(250, 250, 250, 0.9);
	padding: 7px 12px;
	border-radius: 10px;
}

.meeting-item .down-content {
	background-color: #fff;
	padding-top: 0;
	border-bottom-right-radius: 20px;
	border-bottom-left-radius: 20px;
	height: 100%;
	width: 100%;
}

.meeting-item .down-content .date {
	float: left;
	text-align: center;
	display: inline-block;
	margin-right: 20px;
}

.meeting-item .down-content .date h6 {
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 600;
	color: #33cc99;
}

.meeting-item .down-content .date span {
	display: block;
	color: #1f272b;
	font-size: 22px;
	margin-top: 7px;
}

.meeting-item .down-content h4 {
	font-size: 18px;
	color: #1f272b;
	font-weight: 600;
	display: inline-block;
	margin-bottom: 15px;
}

.meeting-item .down-content p {
	/*margin-left: 50px;*/
	color: #1f272b;
	font-size: 14px;
}

img.img-prod {
	width: 100%;
	overflow: hidden;
}

/**********************************/
/*********** Tela Producto **********/
/**********************************/
.telaprod {
	position: absolute;
	left: 0;
	height: 100%;
}

/**********************************/
/*********** Tela Feature **********/
/**********************************/
.telafeat {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
}



/*/////////////////////////////////////////////////*/


/**********************************/
/********* Header Slider **********/
/**********************************/
.slick-prev,
.slick-next {
	width: 40px;
	height: 40px;
	z-index: 1;
	opacity: 0;
	transition: .5s;
	background: #ffffff00;
}

.slick-prev {
	left: 55px;
}

.slick-next {
	right: 55px;
}

.slick-slider:hover .slick-prev {
	left: 15px;
	opacity: 1;
}

.slick-slider:hover .slick-next {
	right: 15px;
	opacity: 1;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	color: black;
	background: #ffffff00;
}

.slick-prev::before,
.slick-next::before {
	font-family: "FontAwesome";
	font-size: 30px;
	color: rgb(90, 90, 90);
}

.slick-prev::before {
	content: "\f104";
	color: black;
}

.slick-next::before {
	content: "\f105";
	color: black;
}

.slick-dots li button:before {
	position: 10%;
	color: #a7a7a7;
	font-size: 15px;
}

.slick-dots li.slick-active button:before {
	color: #353535;
}

.slick-dotted.slick-slider {
	margin-bottom: 0;
}

.home-slider {
	width: 100%;
	position: absolute;
	top: 30rem;

}

.home-slider .main-slider-item {
	padding: 5rem;
	height: 40rem;
}

.home-slider .slick-dots {
	bottom: 200px;
}

.home-banner {
	display: block;
	width: 100%;
}

.banner {
	height: 60rem;
	width: 100%;
	background-image: url(../img/banner-1.jpg);
	background-repeat: no-repeat;
	background-size: 100%;




}

@media (max-width: 768.98px) {
	.home-banner {
		display: none;
	}

	.home-slider {
		width: 100%;
		position: initial;

	}

	.home-slider .main-slider-item {
		width: 45rem;
		height: 40rem;
	}

	.home-slider .slick-dots {
		bottom: 20px;
	}


}

.banner-png {
	position: absolute;
	top: 10%;
	right: 0%;
	height: 10%;

}

.banner-png-img {
	height: 50rem;
}

@media (max-width: 768.98px) {
	.banner-png-img {
		height: 20rem;
	}

	.banner-png {
		display: none;

	}
}

/**********************************/
/********* Breadcrumb CSS *********/
/**********************************/
.breadcrumb-wrap {
	position: relative;
	width: 100%;
	background: #ffffff;
}

.breadcrumb-wrap .breadcrumb {
	margin: 15px 0 0 0;
	padding: 0;
	background: none;
}



/**********************************/
/********** Category CSS **********/
/**********************************/
.category {
	position: relative;
	padding: 0 7.5px;
	background: #ffffff;
}

@media (max-width: 575.98px) {
	.category {
		padding: 45px 7.5px 30px 7.5px;
	}
}

.category .col-md-4,
.category .col-md-6 {
	padding: 0 7.5px;
}

.category .category-img {
	position: relative;
	overflow: hidden;
	margin-bottom: 15px;
}

.category .category-img img {
	width: 100%;
}

.category .category-img:hover img {
	filter: blur(5px);
	-webkit-filter: blur(5px);
}

.category .category-name {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	background: rgba(26, 84, 147, 0.5);
	transition: opacity 0.5s;
	display: flex;
	align-items: center;
}

.category .category-name:hover {
	opacity: 1;
}

.category .category-name h2 {
	margin: 0 0 -50px 0;
	padding: 15px;
	width: 100%;
	text-align: center;
	color: #ffffff;
	font-size: 35px;
	font-weight: 700;
	transition: .5s;
}

.category .category-name:hover h2 {
	margin: 0;
}

/**********************************/
/*********** Tela Producto **********/
/**********************************/
.telaprod {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 30%;
}

/**********************************/
/*********** Tela Feature **********/
/**********************************/
.telafeat {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
}


/**********************************/
/******* Section Header CSS *******/
/**********************************/
.section-header {
	position: initial;
	max-width: 700px;
	margin: 0 auto 30px auto;
}

.section-header h2,
.section-header h3 {
	position: relative;
	color: #B78D65;
	font-size: 35px;
	font-weight: 700;
	text-align: center;
	padding-bottom: 15px;
}

.section-header h2::after,
.section-header h3::after {
	content: '';
	position: absolute;
	width: 50px;
	height: 5px;
	left: calc(50% - 25px);
	bottom: 0;
	background: #B78D65;
}

.section-header p {
	font-size: 20px;
	text-align: center;
	margin: 0
}



/**********************************/
/*********** Feature CSS **********/
/**********************************/
.feature {
	position: relative;
	padding: 0;
}


.feature .feature-col {
	height: inherit;
	padding: 60px 0;
}

.feature .feature-col:last-child {
	border-right: none;
}

.feature .feature-content {
	position: relative;
	width: 100%;
	padding: 0 30px;
	text-align: center;
}

.feature .feature-content i {
	color: #B78D65;
	font-size: 60px;
	margin-bottom: 10px;
}

.feature .feature-content h2 {
	color: #666666;
	font-size: 25px;
	font-weight: 700;
}

.feature .feature-content p {
	color: #666666;
	font-size: 20px;
	margin: 0;
}



/**********************************/
/******** Product Item CSS ********/
/**********************************/
.product-item {
	position: relative;
	padding-bottom: 15px;
	;
}

.product-item .product-image {
	position: relative;
	overflow: hidden;
}

.product-item .product-image a {
	display: block;
	transition: .3s;

}

.product-item:hover .product-image a {
	background: rgba(63, 105, 170, .5);
}

.product-item .product-image img {
	width: 100%;
}

.product-item:hover .product-image img {
	filter: blur(5px);
	-webkit-filter: blur(5px);
}

.product-item .product-image .product-action {
	display: block;
	position: absolute;
	width: 100%;
	height: 40px;
	left: 0;
	top: 50%;
	text-align: center;
	transition: .5s;
	opacity: 0;
}

.product-item:hover .product-image .product-action {
	top: calc(50% - 25px);
	opacity: 1;
}

.product-item .product-image .product-action a {
	display: inline-block;
	width: 40px;
	height: 40px;
	padding: 6px 0;
	margin-right: 5px;
	text-align: center;
	color: #ffffff;
	background: #B78D65;
}

.product-item .product-image .product-action a:last-child {
	margin-right: 0;
}

.product-item .product-image .product-action a:hover {
	color: #B78D65;
	background: #ffffff;
}

.product-item .product-content {
	position: relative;
	width: 100%;
	text-align: center;
}

/*
.product-item .product-content:hover {
	background-color: #0d82d3;
}*/

.product-item .product-content .title,
.product-item .product-content .ratting,
.product-item .product-content .price {
	position: relative;
	width: 100%;
}

.product-item .product-content .title {
	margin-bottom: 5px;
}

.product-item .product-content .title a {
	color: #B78D65;
	font-size: 18px;
	font-weight: 600;
}

.product-item .product-content .ratting i {
	font-size: 14px;
	color: #B78D65;
}

.product-item .product-content .price {
	font-size: 30px;
	color: #B78D65;
	font-weight: 700;
}

.product-item .product-content .price span {
	margin-left: 12px;
	text-decoration: line-through;
	font-weight: 700;
	color: #666666;
}

.product-slider.slick-slider:hover .slick-prev {
	left: 30px;
	opacity: 1;
}

.product-slider.slick-slider:hover .slick-next {
	right: 30px;
	opacity: 1;
}



/**********************************/
/******** Featured Product ********/
/**********************************/
.featured-product {
	padding: 45px 0 60px 0;
}

.recent-product {
	position: relative;
	padding: 60px 0;
}


/**********************************/
/******** Product View CSS ********/
/**********************************/
.product-view {
	position: relative;
	width: 100%;
	padding: 60px 0;
}

.product-view .product-search {
	position: relative;
	width: 100%;
	margin-bottom: 30px;
}

.product-view .product-search input {
	width: 100%;
	height: 35px;
	padding: 0 15px;
	color: #666666;
	border: 1px solid #B78D65;
}

.product-view .product-search button {
	position: absolute;
	width: 35px;
	height: 33px;
	top: 1px;
	right: 1px;
	text-align: center;
	background: #ffffff;
	color: #B78D65;
	border: none;
}

.product-view .product-search button i {
	font-size: 16px;
}

.product-view .product-search button:hover {
	background: #B78D65;
	color: #ffffff;
}

.product-view .product-short {
	position: relative;
	width: 100%;
	margin-bottom: 30px;
	text-align: right;
}

.product-view .product-short .dropdown a.dropdown-toggle {
	display: block;
	width: 100%;
	height: 35px;
	padding: 5px 10px;
	background: #ffffff;
	border: 1px solid #B78D65;
	text-align: left;
}

.product-view .product-short .dropdown a.dropdown-toggle::after {
	float: right;
	margin-top: 10px;
}

.product-view .product-short .dropdown-menu {
	margin: -2px 0 0 0;
	border-radius: 0;
}

.product-view .product-item {
	margin-bottom: 30px;
}

.product-view .pagination {
	margin: 0;
}

.product-view .pagination .page-item .page-link {
	color: #B78D65;
	background: #ffffff;
	border-color: #B78D65;
	border-radius: 0;
}

.product-view .pagination .page-item:hover .page-link,
.product-view .pagination .page-item.active .page-link {
	color: #ffffff;
	background: #B78D65;
}



/**********************************/
/******* Product Detail CSS *******/
/**********************************/
.product-detail {
	position: relative;
	width: 100%;
	padding: 60px 0 15px 0;
}

.product-detail .product-detail-top,
.product-detail .product-detail-bottom,
.product-detail .product-slider.product-slider-3 {
	margin-bottom: 45px;
}

.product-detail .product-slider-single img {
	width: 100%;
	background: #B78D65;
}

.product-detail .product-content,
.product-detail .product-content .title,
.product-detail .product-content .ratting,
.product-detail .product-content .price,
.product-detail .product-content .details,
.product-detail .product-content .quantity,
.product-detail .product-content .action {
	position: relative;
	width: 100%;
}

.product-detail .product-content .title h2 {
	color: #B78D65;
	font-size: 25px;
	font-weight: 600;
	margin-bottom: 5px;
}

.product-detail .product-content .ratting i {
	color: #B78D65;
	font-size: 18px;
}

.product-detail .product-content .price {
	color: #B78D65;
	font-size: 25px;
	font-weight: 700;
	margin-bottom: 15px;
}

.product-detail .product-content .price span {
	color: #666666;
	text-decoration: line-through;
	margin-left: 12px;
}

.product-detail .product-content .details {
	margin-bottom: 20px;
}

.product-detail .product-content .details p {
	color: #666666;
	font-size: 16px;
}

.product-detail .product-content .quantity {
	margin-bottom: 20px;
}

.product-detail .product-content .quantity h4 {
	display: inline-block;
	color: #666666;
	font-size: 18px;
	font-weight: 600;
	margin-right: 5px;
}

.product-detail .product-content .quantity .qty {
	display: inline-block;
}

.product-detail .product-content .quantity button {
	width: 30px;
	height: 30px;
	padding: 2px 0;
	text-align: center;
	color: #ffffff;
	background: #B78D65;
	border: none;
}

.product-detail .product-content .quantity input {
	width: 60px;
	height: 30px;
	color: #ffffff;
	text-align: center;
	background: rgba(63, 105, 170, .5);
	border: none;
}

.product-detail .product-content .action a {
	display: inline-block;
	width: 50px;
	height: 50px;
	padding: 7px 0;
	text-align: center;
	color: #ffffff;
	font-size: 22px;
	background: #B78D65;
	border: 1px solid #B78D65;
}

.product-detail .product-content .action a:hover {
	color: #B78D65;
	background: #ffffff;
}

.product-detail .nav.nav-pills .nav-link {
	color: #ffffff;
	background: rgba(63, 105, 170, .5);
	border-radius: 0;
}

.product-detail .nav.nav-pills .nav-link:hover,
.product-detail .nav.nav-pills .nav-link.active {
	color: #ffffff;
	background: #B78D65;
}

.product-detail .tab-content {
	background: rgba(63, 105, 170, .1);
}

.product-detail .tab-content {
	padding: 10px;
}

.product-detail .tab-content ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.product-detail .tab-content ul li {
	margin-bottom: 10px;
}

.product-detail .tab-content ul li::before {
	content: '\f061';
	font-family: 'FontAwesome';
	padding-right: 5px;
}

.product-detail .tab-content .reviews-submitted {
	position: relative;
	margin-bottom: 45px;
}

.product-detail .tab-content .reviewer {
	color: #B78D65;
	font-size: 18px;
	font-weight: 600;
}

.product-detail .tab-content .reviewer span {
	color: #666666;
	font-size: 14px;
	font-weight: 400;
}

.product-detail .tab-content .ratting {
	color: #B78D65;
	margin-bottom: 15px;
}

.product-detail .tab-content .reviews-submit .ratting {
	font-size: 24px;
}

.product-detail .tab-content .contact-form input {
	width: 100%;
	height: 35px;
	padding: 0 15px;
	color: #666666;
	background: #ffffff;
	border: none;
	margin-bottom: 15px;
}

.product-detail .tab-content .contact-form textarea {
	width: 100%;
	height: 80px;
	padding: 6px 15px;
	color: #666666;
	background: #ffffff;
	border: none;
	margin-bottom: 15px;
}

.product-detail .tab-content .contact-form button {
	display: inline-block;
	height: 35px;
	padding: 0 15px;
	color: #666666;
	background: #ffffff;
	border: none;
	margin-bottom: 15px;
}

.product-detail .tab-content .contact-form button:hover {
	color: #ffffff;
	background: #B78D65;
}



/**********************************/
/********** Sidebar CSS ***********/
/**********************************/
.sidebar-widget {
	position: relative;
	width: 100%;
	margin-bottom: 45px;
}

.sidebar-widget:last-child {
	margin-bottom: 0;
}

.sidebar-widget .title {
	position: relative;
	color: #B78D65;
	font-size: 24px;
	font-weight: 600;
	text-align: center;
	text-transform: capitalize;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.sidebar-widget .title::after {
	content: '';
	position: absolute;
	width: 50px;
	height: 3px;
	left: calc(50% - 25px);
	bottom: 0;
	background: #B78D65;
}

.sidebar-widget.brands ul,
.sidebar-widget.category ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sidebar-widget.brands ul li,
.sidebar-widget.category ul li {
	margin-bottom: 12px;
}

.sidebar-widget.brands ul li:last-child,
.sidebar-widget.category ul li:last-child {
	margin-bottom: 0;
}

.sidebar-widget.brands ul li a,
.sidebar-widget.category ul li a {
	color: #B78D65;
	font-size: 16px;
	font-weight: 400;
	white-space: nowrap;
	display: inline-block;
	line-height: 23px;
}

.sidebar-widget.brands ul li a::before,
.sidebar-widget.category ul li a::before {
	content: '\f111';
	font-family: 'FontAwesome';
	padding-right: 5px;
}

.sidebar-widget.brands ul li a:hover,
.sidebar-widget.category ul li a:hover {
	padding-left: 10px;
}

.sidebar-widget.brands ul li span,
.sidebar-widget.category ul li span {
	float: right;
	color: #666666;
	font-size: 14px;
	font-weight: 400;
}

.sidebar-widget.widget-slider {
	position: relative;
}

.sidebar-widget.image a {
	display: block;
	width: 100%;
	overflow: hidden;
}

.sidebar-widget.image img {
	max-width: 100%;
	transition: .3s;
}

.sidebar-widget.image img:hover {
	transform: scale(1.1);
	filter: blur(3px);
	-webkit-filter: blur(3px);
}

.sidebar-widget.tag a {
	display: inline-block;
	margin: 0 0 4px 0;
	padding: 3px 8px;
	font-size: 14px;
	font-weight: 400;
	color: #B78D65;
	background: #ffffff;
	border: 1px solid #B78D65;
}

.sidebar-widget.tag a:hover {
	color: #ffffff;
	background: #B78D65;
}



/**********************************/
/************ Cart CSS ************/
/**********************************/
.cart-page {
	position: relative;
	padding: 60px 0;
}

.cart-page .table {
	width: 100%;
	text-align: center;
	margin-bottom: 45px;
}

.cart-page .table .thead-dark th {
	text-align: center;
	background: #B78D65;
	border-color: #B78D65;
	vertical-align: middle;
}

.cart-page .table td {
	color: #666666;
	font-size: 16px;
	font-weight: 600;
	vertical-align: middle;
}

.cart-page .table img {
	max-width: 100px;
	max-height: 100px;
}

.cart-page .table .qty {
	display: inline-block;
}

.cart-page .table button {
	height: 30px;
	padding: 2px 10px;
	text-align: center;
	color: #ffffff;
	background: #B78D65;
	border: none;
}

.cart-page .table input {
	width: 60px;
	height: 30px;
	color: #ffffff;
	text-align: center;
	background: rgba(63, 105, 170, .5);
	border: none;
}

.cart-page .coupon {
	position: relative;
	width: 100%;
}

.cart-page .coupon input {
	width: calc(100% - 135px);
	height: 50px;
	padding: 0 15px;
	color: #666666;
	background: #ffffff;
	border: 1px solid #B78D65;
	margin-right: 10px;
}

.cart-page .coupon button {
	width: 120px;
	height: 50px;
	padding: 2px 10px;
	text-align: center;
	color: #ffffff;
	background: #B78D65;
	border: none;
}

.cart-page .cart-summary {
	position: relative;
	width: 100%;
}

.cart-page .cart-summary .cart-content {
	padding: 30px;
	background: #B78D65;
}

.cart-page .cart-summary .cart-content h3 {
	color: #ffffff;
	font-size: 25px;
	font-weight: 600;
}

.cart-page .cart-summary .cart-content p {
	color: #ffffff;
	font-size: 16px;
	font-weight: 400;
}

.cart-page .cart-summary .cart-content p span,
.cart-page .cart-summary .cart-content h4 span {
	float: right;
}

.cart-page .cart-summary .cart-content h4 {
	color: #ffffff;
	font-size: 20px;
	font-weight: 600;
	padding-top: 12px;
	border-top: 1px solid #ffffff;
	margin: 0;
}

.cart-page .cart-summary .cart-btn button {
	margin-top: 15px;
	width: calc(50% - 15px);
	height: 50px;
	padding: 2px 10px;
	text-align: center;
	color: #ffffff;
	background: #B78D65;
	border: none;
}

.cart-page .cart-summary .cart-btn button:first-child {
	margin-right: 25px;
	color: #B78D65;
	background: #ffffff;
	border: 1px solid #B78D65;
}




/**********************************/
/********** Checkout CSS **********/
/**********************************/
.checkout {
	position: relative;
	padding: 60px 0;
}

.checkout .billing-address,
.checkout .shipping-address {
	position: relative;
	width: 100%;
}

.checkout .shipping-address {
	display: none;
	margin-top: 30px;
}

.checkout .billing-address h2,
.checkout .shipping-address h2 {
	color: #666666;
	font-size: 30px;
	font-weight: 700;
}

.checkout .checkout-summary,
.checkout .checkout-payment {
	position: relative;
	width: 100%;
}

.checkout .checkout-payment {
	margin-top: 30px;
}

.checkout .checkout-summary h2,
.checkout .checkout-payment h2 {
	color: #666666;
	font-size: 30px;
	font-weight: 700;
}

.checkout .checkout-summary .checkout-content,
.checkout .checkout-payment .payment-methods {
	padding: 30px;
	background: #B78D65;
}

.checkout .checkout-summary .checkout-content h3 {
	color: #ffffff;
	font-size: 25px;
	font-weight: 600;
}

.checkout .checkout-summary .checkout-content p {
	color: #ffffff;
	font-size: 16px;
	font-weight: 400;
}

.checkout .checkout-summary .checkout-content p.sub-total,
.checkout .checkout-summary .checkout-content p.ship-cost {
	padding-top: 15px;
	border-top: 1px solid #ffffff;
}

.checkout .checkout-summary .checkout-content p span,
.checkout .checkout-summary .checkout-content h4 span {
	float: right;
}

.checkout .checkout-summary .checkout-content h4 {
	color: #ffffff;
	font-size: 20px;
	font-weight: 600;
	padding-top: 12px;
	border-top: 1px solid #ffffff;
	margin: 0;
}

.checkout .checkout-payment .payment-methods {
	color: #ffffff;
}

.checkout .checkout-payment .payment-methods .payment-content {
	display: none;
}

.checkout .checkout-payment .checkout-btn button {
	margin-top: 15px;
	width: calc(50% - 15px);
	height: 50px;
	padding: 2px 10px;
	text-align: center;
	color: #ffffff;
	background: #B78D65;
	border: none;
}



/**********************************/
/********* My Account CSS *********/
/**********************************/
.my-account {
	position: relative;
	padding: 60px 0;
}

.my-account .nav.nav-pills .nav-link {
	padding: 15px 22px;
	color: #B78D65;
	font-weight: 400;
	background: rgba(63, 105, 170, .1);
	border-radius: 0;
	border-bottom: 1px solid #ffffff;
}

.my-account .nav.nav-pills .nav-link:hover,
.my-account .nav.nav-pills .nav-link.active {
	color: #ffffff;
	background: #B78D65;
}

.my-account .tab-content {
	padding: 30px;
	background: rgba(63, 105, 170, .1);
}

.my-account .tab-content .table {
	width: 100%;
	text-align: center;
	margin-bottom: 0;
}

.my-account .tab-content .table .thead-dark th {
	text-align: center;
	background: #B78D65;
	border-color: #B78D65;
	vertical-align: middle;
}

.my-account .tab-content .table td {
	color: #666666;
	font-size: 16px;
	font-weight: 400;
	vertical-align: middle;
}

.my-account .tab-content button {
	height: 35px;
	padding: 2px 15px;
	text-align: center;
	color: #ffffff;
	background: #B78D65;
	border: none;
}

.my-account .tab-content input {
	width: 100%;
	height: 35px;
	padding: 0 15px;
	color: #666666;
	background: #ffffff;
	border: 1px solid #ffffff;
	margin-bottom: 15px;
}



/**********************************/
/********* Newsletter CSS *********/
/**********************************/
.newsletter {
	position: relative;
	padding: 60px 0;
	text-align: center;
	background: #B78D65;
}

.newsletter .section-header h2,
.newsletter .section-header h3,
.newsletter .section-header p {
	color: #ffffff;
}

.newsletter .section-header h2::after,
.newsletter .section-header h3::after {
	background: #ffffff;
}

.newsletter .contact-form {
	position: relative;
	max-width: 500px;
	margin: 0 auto;
}

.newsletter .contact-form input {
	width: 100%;
	height: 40px;
	padding: 0 15px;
	color: #666666;
	border: 1px solid #ffffff;
}

.newsletter .contact-form button {
	position: absolute;
	width: 80px;
	height: 40px;
	top: 0;
	right: 0;
	padding: 0 15px;
	border: none;
	background: #B78D65;
	color: #ffffff;
	border: 1px solid #ffffff;
}





/*
  ---------------------------------------------
  Sección Tienda END
  ---------------------------------------------
  */


/*  BOTONES FLOTANTES */







.float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 110px;
	right: 15px;
	background-color: #25d366;
	color: #FFF;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 3px #999;
	-webkit-box-shadow: 0 0 16px rgb(0 0 0 / 45%);
	-moz-box-shadow: 0 0 16px rgba(0, 0, 0, 0.45);
	box-shadow: 0 0 16px rgb(0 0 0 / 45%);
	transition: all .1s;

	z-index: 100;
}

.float:hover {
	background-color: #178440;
	color: #FFF;
}

.float:active {
	background-color: #178440;
	color: #FFF !important;
}

.my-float {
	margin-top: 16px;
}








.float2 {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 180px;
	right: 15px;
	background-color: #0048ce;
	color: #FFF;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 3px #999;
	-webkit-box-shadow: 0 0 16px rgb(0 0 0 / 45%);
	-moz-box-shadow: 0 0 16px rgba(0, 0, 0, 0.45);
	box-shadow: 0 0 16px rgb(0 0 0 / 45%);
	transition: all .1s;

	z-index: 100;
}

.float2:hover {
	background-color: #0a3b96;
	color: #FFF;
}

.float2:active {
	background-color: #0a3b96;
	color: #FFF !important;
}

.my-float2 {
	margin-top: 16px;
}



.float3 {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 220px;
	right: 15px;
	background-color: #bd4294;
	color: #FFF;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 3px #999;
	-webkit-box-shadow: 0 0 16px rgb(0 0 0 / 45%);
	-moz-box-shadow: 0 0 16px rgba(0, 0, 0, 0.45);
	box-shadow: 0 0 16px rgb(0 0 0 / 45%);
	transition: all .1s;

	z-index: 100;
}

.float3:hover {
	background-color: #ec059fc5;
	color: #FFF;
}

.float3:active {
	background-color: #ec059fc5;
	color: #FFF !important;
}

.my-float3 {
	margin-top: 16px;
}










.float-chat {
	position: fixed;
	width: 80px;
	height: 80px;
	bottom: 350px;
	right: 40px;
	text-align: center;

	transition: all .1s;

	z-index: 100;
}

.float-chat:hover {
	transform: scale(1.5);
	transition: all .5s;
}


.my-float-chat {
	margin-top: 16px;
}

.float-text-chat {
	display: none;
	transition: all .2s;
}





.float-text-chat-off {
	display: none;
	transition: all .2s;
}

.float-text-chat-on {
	display: block;
	transition: all .2s;
	position: absolute;
	left: -155px;
	top: 18px;
	transition: all .4s;
	transform: scale(3);



}

/* ########################## */









.service-item .bg-img2 {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 3;
}

.service-item:hover .bg-img2 {

	z-index: 1;
}

.service-item .service-text {
	transition: .5s;
	z-index: 2;
}

.service-item:hover .service-text {
	background: rgba(0, 0, 0, .8);
	width: 100%;
	text-align: center;
}

.logo-header{
	height: 8rem;
}

@media (max-width: 1200px) {
	.logo-header{
		height: 5rem;
	}
}

@media (max-width: 500px) {
	.logo-header{
		height: 3rem;
	}
	h3{
		font-size: calc(.8rem + .6vw) !important;
	}
}








