

  #map iframe{
	width: 100%;
	height: 400px;
  }
 
/*product images*/


.gallery-container {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: space-between;
	overflow: hidden;
	background-color: #fff;
  }
  
  .gallery-main {
	width: 80%;
	height: 550px;
	border: 1px solid #e9e9e9;
}
/* .gallery-main .swiper-button-prev, .gallery-main .swiper-button-next {
	position: absolute;
	bottom: 0;
	right: 0;
	top: auto;
	left: auto;
	height: 75px;
	width: 40px;
	color: #e9e9e9;
	background: #1e1e1e;
} */

.gallery-main .swiper-button-prev, .gallery-main .swiper-button-next{
    position: absolute;
    bottom:10px;
    right: 15px;
    z-index: 3;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
	color:black;
	font-weight: 600;
}

.gallery-main .swiper-button-prev::after, .gallery-main .swiper-button-next::after {
	font-size: 12px;
}

.gallery-main .swiper-button-prev {
	right: 70px;
	left: auto;
	border-right: 1px solid #e9e9e9;
}
.gallery-title {
	position: absolute;
	top: 15px;
	right: 15px;
	font-family: "Epilogue", sans-serif;
	font-size: 50px;
	font-weight: 700;
	text-align: right;
	text-transform: uppercase;
	text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
	color: #fff;
	
}
.swiper-slide-active .gallery-title {
	animation: slide-in 0.3s ease-in both;
}
.gallery-thumbs {
	order: -1;
	width: 20%;
	height: 550px;
	overflow: hidden;
	margin-right: 15px;
	padding-left: 15px;
}
.gallery-thumbs .swiper-slide img {
	transition: 0.3s;
}
.gallery-thumbs .swiper-slide-active {
	opacity: 0.9;
}
.gallery-thumbs .swiper-slide-thumb-active {
	opacity: 1;
}

@keyframes slide-in {
	from {
		opacity: 0;
		right: -50%;
   }
}

/*end images*/

ul li{
    text-decoration: none;
}
.product-color-wrapper, .product-size-wrapper {
    margin-bottom: 15px;
}

.product-color-wrapper .product-color-title, .product-size-wrapper .product-size-title  {
    font-size: 16px;
    font-weight: 600;
    color: #131313;
    margin-bottom: 8px;
}

.product-colors, .product-sizes {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    list-style-type: none;
    padding-left: 0;
}

.product-colors li, .product-size li {
    display: inline-block;
}

.product-colors li label .color-image-wrapper {
    display: inline-block;
    position: relative;
    padding: 5px;
	width: 40px;
	height: 40px;
}
.product-colors li label .color-image-wrapper img {
	width: 100%;
	height: 100%;
}
.product-sizes li.outofstock:before {
    content: "/";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    opacity: 0.5;
}

.os {
    position: absolute;
    right: 0%;
    /* transform: translateX(-50%); */
    width: 200px;
    text-align: center;
    padding: 5px 5px;
    background-color: #7c7c7c;
    color: #fff;
    font-weight: 300;
    line-height: 1;
    border-radius: 4px;
    display: none;
}
.product-sizes li.outofstock label span {
    border-color: rgba(0, 0, 0, 0.5);
    opacity: 0.25;
}
.product-sizes li label .size-image-wrapper {
    display: inline-block;
    position: relative;
    padding: 5px;
    min-width: 40px;
    height: 35px;
    text-align: center;
    line-height: 24px;
    border: 1px solid var(--customred);
	color: black;
}

.product-colors li label .color-image-wrapper i, .product-sizes li label .size-image-wrapper i {
    position: absolute;
    top: 7px;
    right: 7px;
    font-size: 12px;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    color: #fff;
}
.product-sizes li label .size-image-wrapper i {
    top: 3px;
    color: var(--customred);
    right: 5px;
}
.product-colors li label input:checked ~ .color-image-wrapper i, .product-sizes li label input:checked ~ .size-image-wrapper i {
    opacity: 1;
    visibility: visible;
}
.product-colors li label .color-image-wrapper:before, .product-sizes li label .size-image-wrapper:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    transform: translate(-50%, -50%);
}

.product-colors li label input:checked ~ .color-image-wrapper:before, .product-sizes li label input:checked ~ .size-image-wrapper:before {
    border: 2px solid var(--customred);
}

.shoe-size-box {
	display: inline-block;
	border-radius: 1px solid #000;
	color: #000;
}



/*********************************
5. Single Product Section
*********************************/
#quantity_value{
	background: transparent;
	width: 40px;
	border: none;
	outline: none;
	-moz-appearance: textfield;
}
.text-dark{
	color: #000;
}
.quantity_selector input[type="number"]::-webkit-inner-spin-button,
.quantity_selector input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity_selector input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.single_product_container
{
	margin-top: 50px;
	padding-bottom: 80px;
	border-bottom: solid 1px #ebebeb;
}
.single_product_thumbnails
{
	height: 527px;
}
.single_product_thumbnails ul li
{
	position: relative;
	height: 136px;
	margin-bottom: 30px;
	cursor: pointer;
}
.single_product_thumbnails ul li::after
{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: solid 1px #e87210;
	content: '';
	visibility: hidden;
}
.single_product_thumbnails ul li.active::after,
.single_product_thumbnails ul li:hover::after
{
	visibility: visible;
}
.single_product_thumbnails ul li img
{
	width: 100%;
}
.image_col
{
	padding-right: 30px;
}
.single_product_image
{
	width: 100%;
	height: 527px;
}
.single_product_image_background
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

/*********************************
6. Product Details
*********************************/

.product_details
{
	width: 100%;
}
.product_details_title
{
	font-weight: 500px;
	line-height: 30px;
}
.product_details_title p
{
	margin-top: 12px;
}
.free_delivery
{
	background: #f5f5f5;
	margin-top: 53px;
}
.free_delivery i
{
	display: inline-block;
}
.free_delivery span:last-child
{
	display: inline-block;
	height: 40px;
	line-height: 40px;
	text-transform: uppercase;
}
.free_delivery span:first-child
{
	display: inline-block;
	margin-right: 19px;
	font-size: 16px;
	-webkit-transform: translateY(-1px);
	-moz-transform: translateY(-1px);
	-ms-transform: translateY(-1px);
	-o-transform: translateY(-1px);
	transform: translateY(-1px);
}
.original_price
{
	font-weight: 500;
	color: #b9b4c7;
	text-decoration: line-through;
	line-height: 30px;
	margin-top: 21px;
}
.product_price
{
	display: inline-block;
	font-size: 24px;
	color: #e87210;
	font-weight: 500;
	line-height: 30px;
	margin-top: 2px;
}
.star_rating
{
	display: inline-block;
	margin-left: 33px;
}
.star_rating li
{
	display: inline-block;
	margin-right: -2px;
	cursor: pointer;
}
.star_rating li i
{
	color: #fac451;
}
.product_color
{
	margin-top: 27px;
}
.product_color ul
{
	display: inline-block;
	margin-left: 26px;
}
.product_color ul li
{
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	margin-right: 29px;
	cursor: pointer;
}
.quantity
{
	width: 100%;
	height: 50px;
	margin-top: 23px;
}
.quantity_selector
{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 132px;
	height: 50px;
	border: solid 1px #e5e5e5;
}
.quantity_selector span
{
	font-weight: 500;
	color: #232530;
	display: inline-block;
	line-height: 45px;
}
.heart_content{
	border: 1px solid #232530;
	border-radius: 8px;
	padding: 10px 15px;
	margin-left: 20px;
	cursor: pointer;
	transition: all ease-in-out 0.35s;
}

.sticky-container {
	position: sticky;
	top: 75px;
}
.heart_content i{
	font-size: 24px;
	color:black;
	transition: all ease-in-out 0.35s;
}

.heart_content.active-heart {
	background-color: #e87210;
	border-color: #e87210;
	transition: all ease-in-out 0.35s;

}
.heart_content.active-heart i {
	color: #fff;
	transition: all ease-in-out 0.35s;
}


.plus,
.minus
{
	padding-left: 14px;
	padding-right: 14px;
	cursor: pointer;
}
.plus:hover,
.minus:hover
{
	color: #b5aec4;
}
.add_to_cart_button
{
	/* width: 160px; */
	margin-right: 12px;
	font-size: 12px !important;
}
#product .product-images {
	position: sticky;
	top: 120px;
  }
.product_favorite
{
	width: 40px;
	height: 100%;
	margin-left: 22px;
	border: solid 1px #e5e5e5;
	border-radius: 2px;
	cursor: pointer;
}
.product_favorite svg:hover::after
{
	color: #e87210;
}
/* .product_favorite::after
{
	font-family: 'FontAwesome';
	content:'\f08a';
	font-size: 14px;
}
.product_favorite.active::after
{
	content:'\f004';
	color: #e87210;
} */

/*********************************
7. Tabs
*********************************/

.tabs_section_container
{
	width: 100%;
	padding-bottom: 80px;
	border-bottom: solid 1px #ebebeb;
}
.tabs_container {
	margin-bottom: 20px;
}
.tab
{
	margin-right: 50px;
	cursor: pointer;
}
.tab:last-child
{
	margin-right: 0px;
}
.tab span
{
	line-height: 40px;
	font-size: 24px;
	font-weight: 500;
	color: #1e1e27;
}
.tab:hover span
{
	color: #b5aec4;
}
.tab.active span
{
	color: #e87210;
}
.tab_container
{
	width: 100%;
	display: none;
}
.tab_container.active
{
	display: block;
}

/*********************************
7.1 Description
*********************************/

.tab_title
{
	margin-bottom: 98px;
}
.tab_title h4
{
	display: inline-block;
	color: #e87210;
	border-bottom: solid 1px #e87210;
}
.tab_text_block
{
	margin-bottom: 133px;
}
.tab_text_block p
{
	font-weight: 400;
	margin-top: 10px;
}
.tab_image
{
	width: 100%;
	margin-bottom: 131px;
}
.tab_image img
{
	width: 100%;
}
.desc_last
{
	margin-bottom: 0px;
}

/*********************************
7.2. Additional Info
*********************************/

.additional_info_col p span
{
	margin-left: 22px;
}
.additional_info_title
{
	margin-bottom: 48px;
}

/*********************************
7.3 Reviews
*********************************/

.reviews_title
{
	margin-bottom: 58px;
}
.user_review_container
{
	width: 100%;
	margin-bottom: 10px;
}
.reviews_col {
	padding-right: 30px;
	/* height: 500px;
	overflow-y: scroll; */
  }
  
  /* .reviews_col::-webkit-scrollbar {
	width: 8px;
  }
  
  .reviews_col::-webkit-scrollbar-track {
	background-color: #e4e4e4;
	border-radius: 100px;
  }
  
  .reviews_col::-webkit-scrollbar-thumb {
	background-color: var(--customred);
	border-radius: 100px;
  } */
.user_pic img
{
	width: 70px;
	height: 70px;
	background: #ebebeb;
	border-radius: 50%;
}

.review
{
	padding-left: 30px;
}
.review_date
{
	color: #e87210;
	margin-top: -4px;
}
.user_name
{
	font-size: 16px;
	font-weight: 500;
	
	color:#131313;
}
.review p
{
	font-weight: 400;
}

/*********************************
8. Add Review
*********************************/

.add_review
{
	/* margin-top: 94px; */
	border: 1px solid black;
	padding: 30px;
}


#review_form div:nth-child(2) h1
{
	display: inline-block;
}
#review_form div:nth-child(2)
{
	margin-bottom: 20px;
}
#review_form > div:last-child
{
	margin-bottom: 0px;
}
.add_review h1
{
	font-size: 18px;
	font-weight: 500;
}
.form_input
{
	display: block;
	width: 100%;
	height: 50px;
	border: solid 1px #e5e5e5;
	padding-left: 20px;
}
.input_name
{
	margin-bottom: 12px;
	margin-top: 12px;
}
.input_email{
	margin-bottom: 12px;
}
.input_review
{
	display: block;
	width: 100%;
	border: solid 1px #e5e5e5;
	margin-top: 6px;
	padding-left: 20px;
	padding-top: 13px;
}

.review_submit_btn
{
	width: 170px;
	border: none;
	color: #FFFFFF;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
}

/*********************************
9. Benefit
*********************************/

.benefit
{
	margin-top: 74px;
}
.benefit_row
{
	padding-left: 15px;
	padding-right: 15px;
}
.benefit_col
{
	padding-left: 0px;
	padding-right: 0px;
}
.benefit_item
{
	height: 100px;
	background: #f3f3f3;
	border-right: solid 1px #FFFFFF;
	padding-left: 25px;
}
.benefit_col:last-child .benefit_item
{
	border-right: none;
}
.benefit_icon i
{
	font-size: 30px;
	color: #e87210;
}
.benefit_content
{
	padding-left: 22px;
}
.benefit_content h6
{
	text-transform: uppercase;
	line-height: 18px;
	font-weight: 500;
	margin-bottom: 0px;
}
.benefit_content p
{
	font-size: 12px;
	line-height: 18px;
	margin-bottom: 0px;
	color: #51545f;
}

.swiper-button-next, .swiper-button-prev {
	bottom: 0;
	top: auto;
}

.filter-btn .btn {
	line-height: 1;
	margin-left: 15px;
}


.filter-btn, .close-icon  {
	display: none;
}

@media only screen and (max-width: 992px) {
	.filter-btn {
		display: inline-block;
	}

	.shop-filter {
		position: fixed;
		width: 325px;
		height: 100vh;
		top: 0;
		left: 0;
		background-color: #fff;
		z-index: 999;
		box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
		padding: 25px;
		transform: translateX(-100%);
		transition: all ease-in-out 0.35s;
		overflow-y: scroll;
	}

	.shop-filter-heading {
		padding-bottom: 10px;
		border-bottom: 1px solid #ddd;
		margin-bottom: 20px;
		font-size: 24px;
		color: #131313;
		font-weight: 700;
		display: block;
	}

	.close-icon {
		float: right;
		cursor: pointer;
	}


	.shop-filter.show-filter {
		transform: translateX(0%);
		transition: all ease-in-out 0.35s;
	}
	.page-heading, .page-heading>.container-fluid>.row {
		height: 40vh;
	}

}


/* NEW CSS */

.shop-filter {
	background-color: #f8f9fa;
	padding: 25px 8px;
}

.product-sizes {
	margin-bottom: 0;
}

.shop-filter-heading {
	padding-bottom: 8px;
	border-bottom: 2px solid #ddd;
	margin-bottom: 25px;
	color: #000;
	font-size: 26px;
	margin-left: 16px;
}
.nav-tabs .nav-link {
	border: none;
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover, .nav-tabs .nav-link:visited, .nav-tabs .nav-link:focus-visible, .nav-tabs .nav-link:focus-within,
.nav-item .nav-link:focus, .nav-item .nav-link:hover, .nav-item .nav-link:visited, .nav-item .nav-link:focus-visible, .nav-item .nav-link:focus-within  {
	border: none !important;
	box-shadow: none;
	outline-offset: 0;
	outline: none;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
	background-color: transparent;
	border: none !important;

}
.tab.active span {
	color: #131313;
}
#gallery_images img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.tab-title-link {
	position: relative;
	display: block;
	transition: all ease-in-out 0.35s;

}

.tab-title-link::before {
	content: '';
	position: absolute;
	width: 12px;
	height: 12px;
	top: 15px;
	left: 0;
	background-color: #e87210;
	border-radius: 50%;
	opacity: 0;
	visibility: hidden;
	transition: all ease-in-out 0.35s;
}

.tab-title-link:hover {
	padding-left: 25px;
	transition: all ease-in-out 0.35s;

}

.tab-title-link:hover::before {
	opacity: 1;
	visibility: visible;
	transition: all ease-in-out 0.35s;
}

.nav-pills .nav-link.active .tab-title-link {
	padding-left: 25px;
}

.nav-pills .nav-link.active .tab-title-link::before {
	opacity: 1;
	visibility: visible;
}

.nav-link {
	padding: 22px;
}

.second-div {
	display: flex;
	gap: 4px;
	align-items: flex-end;
	margin-left: 15px;
}

.quantity {
	margin-top: 35px;
}

.heart_content:hover {
	background-color: red;
	border-color: red;
}

.heart_content.active-heart i {
	color: red;
}


.heart_content:hover i, .heart_content.active-heart i {
	color: #fff;
}

@media only screen and (max-width: 992px) {
	.product_details {
		margin-top: 35px;
	}

	.second-div {
		margin-left: 0;
	}
}


@media only screen and (max-width: 700px) {
	.gallery-container {
		flex-direction: column-reverse;
	}

	.gallery-main {
		height: auto;
		width: 100%;
	}

	.gallery-thumbs {
		height: auto;
		width: 100%;
		margin-top: 15px;
		padding-left: 0;
	}

	.gallery-thumbs .swiper-slide img {
		margin-right: 8px;
	}

	.quantity {
		align-items: flex-start !important;
		gap: 15px;
		margin-top: 18px;
	}

	.tabs_section_container {
		margin-top: 30px;
	}

	.nav-link {
		padding: 11px 22px;
	}

	.single_product_container {
		border-bottom: none;
	}

	.tab_text_block, .tab_image {
		margin-bottom: 25px;
	}

}


/* NEW CSS */


.category-wrapper {
	height: 80vh;
}

.large-wrapper {
	position: relative;
}


.large-image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.large-content {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #000;
	padding-left: 20px;
	margin-bottom: 20px;
}

.category-title {
	font-size: 32px;
	line-height: 1.5;
}

.content-subtitle {
	line-height: 1;
	letter-spacing: 2px;
}

.h-100 {
	height: 100%;
}

.h-50 {
	height: calc(50% - 15px) !important;
}

.mt-15 {
	margin-top: 15px;
}

.bg-gray {
	/* background-color: #fcf3ec; */
	background-color: #fafafa;
}

.landing-banner {
	padding: 65px 0;
}

@media only screen and (max-width: 992px) {	
	.category-wrapper {
		height: 65vh;
	}

	.h-md-65 {
		height: 60% !important;
	}

	.h-md-35 {
		height: 40% !important;
	}

	.mt-md-25 {
		margin-top: 25px;
	}

	.h-md-100 {
		height: 100% !important;
	}

	.pl-0 {
		padding-left: 15px !important;
	}

	.large-image.large-divide {
		background-position: right center;
	}


	.h-md-100.mt-15 {
		margin-top: 0 !important;
	}

}

@media only screen and (max-width: 700px) {
	.h-md-100 {
		height: 50% !important;
	}
	.h-md-65 {
		height: 33.33% !important;
	}

	.h-md-35 {
		height: 66.66% !important;
	}
	.h-md-100.mt-15 {
		margin-top: 15px !important;
	}

	.category-title {
		font-size: 22px;
	}

	.search-form .ri-search-line {
		display: none;
	}

	.large-image {
		background-position: top center;
	}
}

.full-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}