/*General style*/

/*Colors*/

/*=================*/


/*products loeader*/

.products-slider-loader-wrapper{
	position: absolute;
	left:0;
	top: 0;
	z-index: 1000;
	display: block;
	width: 100%;
	min-height: 385px;
	background-color: #f0f0ed;
}

.products-slider-loader{
	min-height: 385px;
	position: relative;
}

.products-slider-loader-content{
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 32px;
  height: 32px;
  margin: 8px;
  border: 4px solid #fa929c;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fa929c transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/*===============*/


body{
	font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.body-cover-wrapper{
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.25);
}

.body-cover-wrapper-show{
	display: block;
}	


.shop-cover-wrapper{
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.25);
}

.shop-cover-wrapper-show{
	display: block;
}

.loading-wrapper{
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background: #ffffff;
	z-index: 3000;
	overflow: hidden;
}

.loading-wrapper > img{
	width: 300px;
	height: 300px;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
}

.custom-breadcrumb{
	padding: 30px 0px;
	background-color: #f7f7f7;
}

.custom-breadcrumb a{
	color: #fa929c;
}


.custom-breadcrumb .breadcrumb{
	background-color: transparent;
	padding: 0;
	text-transform: uppercase;
}

@media screen and (max-width: 768px){
	.custom-breadcrumb .breadcrumb{
		justify-content: center;
	}
}

/*block sections*/
.block-section{
	padding: 50px 0px 0px 0px;
}

.block-section-pre-header{
	font-family: 'Dancing Script', cursive !important;
	font-size: 26px;
	line-height: 32px;
	color: #fa929c;
	text-align: center;
	font-weight: 400;
	text-transform: capitalize;
}

.block-section-header{
	text-align: center;
	margin-bottom: 30px;
	position: relative;
	text-transform: uppercase;
}

.block-section-header:before{
	content: '';
	display: block;
	width: 60%;
	height: 2px;
	background-color: #fa929c;
	position: absolute;
	top: 50%;
	left: 20%;
	z-index: -2;
}

.block-section-header span{
	padding: 5px 30px;
	background-color: #ffffff
}
@media screen and (max-width: 568px){
	.block-section-header span{
		padding: 5px 10px;
		background-color: #ffffff
	}
}
/**/

h1,h2,h3,h4,h5,h6{
	font-family: Lato;
	color: #222529;
	font-weight: 700;
}

hr{
	background: #ffffff;
}

a{
	font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
	text-decoration: none !important;
	
}
.main-text-color{
	color: #fa929c;
}

.submit-btn{
	border-radius: 5px;
	background-color: #fa929c;
	color: #ffffff;
	font-size: 13px;
	text-transform: uppercase;
	border:1px solid #fa929c;
	font-weight: 550;

}

.submit-btn:hover{
	background-color: #fff;
	color: #fa929c;
	border:1px solid #fa929c;
}

.cancel-btn{
	border-radius: 5px;
	background-color: #dddddd;
	color: #1b4b73;
	font-size: 13px;
	text-transform: uppercase;
	border:1px solid #dddddd;
	font-weight: 550;

}


.cancel-btn:hover{
	background: #cccccc;
	color: #1b4b73;
}


button{
	text-transform: capitalize;
}
input[type=checkbox]{
	margin-right: 10px;
}

input[type=email], input[type=text], input[type=tel],input[type=password],select{
	border-radius: 5px ;

}


.form-control:focus{
	box-shadow: none;
	border:1px solid #fa929c;
	border-radius: 5px;
}

.input-wrapper{
	position: relative;
}

.success-input-icon , .error-input-icon{
	position: absolute;
	right: 10px;
	top: 40px;
}

.error-input{
	border: 1px #ff3333 solid !important;
}

.error-input-icon{
	color: #ff3333;
}

.success-input{
	border: 1px #33cc33 solid !important;
}

.success-input-icon{
	color: #33cc33;
}

.input-message-content{
	color: #ff3333;
	font-size: 14px;
}

.fa-spinner{
	animation-name: spinnerAnimation;
	animation-duration: 1s;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	-o-animation-timing-function: linear;
	animation-timing-function: linear;
}

@keyframes spinnerAnimation{
	100% {
		transform: rotate(360deg);
	}
}


.back-to-top-btn{
	z-index: 2000;
	position: fixed;
	bottom: 70px;
	right: 30px;
	background: #fa929c;
	border: solid 1px #fa929c;
	border-radius: 50%;
	outline: none;
	cursor: pointer;
	color:#ffffff;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
}

.back-to-top-btn:hover{
	background: #fa929c;
	color: #ffffff;
}

.back-to-top-btn:focus{
	outline: none;
}

.body-cover{
	background: rgba(0,0,0,0.4);
	top: 0;
	left: 0;
	position: fixed;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 2100;
	-webkit-transition: ease-in-out 0.3s all;
	-moz-transition: ease-in-out 0.3s all;
	-o-transition: ease-in-out 0.3s all;
	transition: ease-in-out 0.3s all; 
}


	/*custom checkbox*/
.custom-style-checkbox {
	display: block;
	position: relative;
	padding-left: 35px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.custom-style-checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
	text-align: center;
}

.checkbox-checkmark {
	position: absolute;
	top: 5px;
	left: 5px;
	height: 16px;
	width: 16px;
	background-color: #cccccc;

}

.custom-style-checkbox input:checked ~ .checkbox-checkmark {
	background-color: #fa929c;
}

.checkbox-checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.custom-style-checkbox input:checked ~ .checkbox-checkmark:after {
	display: block;
}

.custom-style-checkbox .checkbox-checkmark:after {
	left: 6px;
	top: 3px;
	width: 5px;
	height: 10px;
	border: solid #ffffff;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

	/*end of the custom checkbox*/

	/*Custom radion button*/

.custom-style-radio {
	display: block;
	position: relative;
	padding-left: 35px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}


.custom-style-radio input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom radio button */
.radio-checkmark {
	position: absolute;
	top: 5px;
	left: 5px;
	height: 16px;
	width: 16px;
	background-color: #ccc;
	border-radius: 50%;
}


.custom-style-radio input:checked ~ .radio-checkmark {
	background-color: #fa929c;
}


.radio-checkmark:after {
	content: "";
	position: absolute;
	display: none;
}


.custom-style-radio input:checked ~ .radio-checkmark:after {
	display: block;
}

.custom-style-radio .radio-checkmark:after {
	top: 4px;
	left: 4px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}
	/*end of the custom radio button*/

/*rating*/

.rating-stars{
	color: #cccccc;
	font-weight: 900;
    font-size: 11px;
    cursor: pointer;
}

.ratingstar-select
{
	color: #f90;
}
.ratingstar-hover{
	color: #f90;
}
/*end of the rating*/


/*Custom Notification System*/

.notification-wrapper{
	padding: 8px 15px 8px 15px;
	border:0;
	transition: all linear 0.5s;
	background: #ffffff;
	width: 350px;
	height: 120px;
	position: fixed;
	top: -250px;
	right:0;
	box-shadow: 0px 3px 10px rgba(0,0,0,0.17);
	
}

@media screen and (max-width: 768px){
	.notification-wrapper{
		width: 300px;
	}
}

@media screen and (max-width: 576px){
	.notification-wrapper{
		width: 250px;
	}
}

.notification-header{
	font-size: 14px;
	font-weight: 600;
	text-transform: capitalize;
}

.notification-body{
	color:#454545;
	font-size: 13px;
	font-weight: 500;
	line-height: 17px;
}

.notification-wrapper-success > .notification-header > span{
	color: #2dde98;
}


.notification-wrapper-warning > .notification-header > span{
	color: #ff6600;
}


.notification-wrapper-text > .notification-header > span{
	color: #808080;
}

.notification-dismiss{
	position: absolute;
	right: 10px;
	top: 10px;
	background-color: transparent;
}

.notification-dismiss:hover{
	background-color: transparent;
	color: #90a4ae;
}


/*End of the Custom Notification System*/

/*Editable Content*/
.editable-area{
	border:solid 3px #4993e4;
	box-shadow: 0px 1px 1px #4993e4;
	padding: 15px;
	z-index: 9999;
	position: fixed;
	top: 50%;
	transform:scale3d(1.1,1.1,1.1);
	-webkit-transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
	transition: all ease-in-out 0.5s;
	background: #ffffff;
}

/*End of the editable content*/


.dropdown:hover>.dropdown-menu {
  display: block;
}

/*end of the general styles*/

/*-----------------------*/

/*The Home page*/

.top-navigation-bar{
	background: #f7f7f7 !important;
	font-size: 14px;
	font-weight: 400;
	line-height: 15px;
}

.topmenu_text_color{
	color: #6c757d;
}

.topmenu_text_color:hover{
	color: #fa929c;
}

.call-us-block{
	font-size: 14px;
	padding-left: 0px;
}

.call-us-block i{
	color:#fa929c;
}


@media screen and (max-width:768px ){
	.call-us-block a{
		padding-right: 0px;
	}


	.top-navigation-bar-1{
		width: 100%;
	}
	.top-navigation-bar-1 .call-us-block{
		margin-left: auto !important;
	}

	.top-navigation-bar-2{
		width: 100%;
	}

	.top-navigation-bar-2 .top-navbar-dropdown{
		margin-left: auto !important;
	}


}


@media screen and (min-width:992px ){
	.top-menu-text-link{
		display: inline-block;
	}
}


.top-menu-icon-link{
	display: inline-block;
}

@media screen and (min-width:992px ){
	.top-menu-icon-link{
		display: none;
	}
}


.top-navigation-bar div > ul > li > a{
	color: #999999 !important;
	-webkit-transition: ease-in-out 0.2s all;
	-moz-transition: ease-in-out 0.2s all;
	-o-transition: ease-in-out 0.2s all;
	transition: ease-in-out 0.2s all;
}

.top-navigation-bar > div > ul > li > a:hover{
	text-decoration: underline !important;
}

.social-media-menu i{
	color: #fa929c;
}

.facebook-icon{
	color: #4267b2 !important;
}

.instagram-icon{
	color: #f8514b !important;
}

.twitter-icon{
	color: #1da1f2 !important;
}

.pinterest-icon{
	color: #e60023 !important;
}

/*top navbar dropdown*/

.top-navbar-dropdown .dropdown-menu{
	-webkit-animation-name: fadeInUp;
  	animation-name: fadeInUp;
  	animation-duration: 0.25s;
  	-webkit-animation-timing-function: ease-in-out;
  	-moz-animation-timing-function: ease-in-out;
  	-o-animation-timing-function: ease-in-out;
  	animation-timing-function: ease-in-out;
  	position: relative;
  	margin-top: 0px;
  	border:1px solid #ffffff;
  	padding-top: 0px;
  	padding-bottom: 0px;
  	box-shadow: 0px 1px 3px rgba(0,0,0,0.2);
  	border-top-right-radius: 0px;
  	border-top-left-radius: 0px;
  	position: absolute !important;
  	left: unset;
  	right: 0;
}

.top-navbar-dropdown .dropdown-menu:before{
	content: '';
	position: absolute;
	display: block;
	width: 20px;
	height: 20px;
	border-top: solid 10px transparent;
	border-left: solid 10px transparent;
	border-right: solid 10px transparent;
	border-bottom: solid 10px #ffffff;
	top: -20px;
	right: 10px;
}

.top-navbar-dropdown > a > i{
	color: #fa929c;
}

.top-navbar-dropdown .dropdown-menu li.dropdown-item{
	padding: 0px;
}

.top-navbar-dropdown .dropdown-menu li.dropdown-item a{
	padding: 10px 20px;
	width: 100%;
	font-size: 14px;
	line-height: 15px;
	text-transform: capitalize;
	color:#6c757d;
}

.top-navbar-dropdown .dropdown-menu li.dropdown-item a i{
	color:#fa929c;
}

.top-navbar-dropdown .dropdown-menu li.dropdown-item a:hover{
	color: #fa929c;
}

.top-navbar-dropdown .dropdown-menu li.dropdown-item a:focus{
	background-color: #f8f8f8;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}


/*==============*/

.shopping-cart-dropdown .dropdown-menu{
	-webkit-animation-name: fadeInUp;
  	animation-name: fadeInUp;
  	animation-duration: 0.25s;
  	-webkit-animation-timing-function: ease-in-out;
  	-moz-animation-timing-function: ease-in-out;
  	-o-animation-timing-function: ease-in-out;
  	animation-timing-function: ease-in-out;
  	position: relative;
  	margin-top: 0px;
  	border:1px solid #ffffff;
  	padding-top: 0px;
  	padding-bottom: 0px;
  	box-shadow: 0px 1px 3px rgba(0,0,0,0.2);
  	border-radius: 10px;
  	border-top-right-radius: 0px;
  	border-top-left-radius: 0px;
  	z-index: 1001;
    width: 300px;
    padding: 0px; 
    position: absolute;
    right: 0;
    left: unset;
}

.shopping-cart-dropdown .dropdown-menu:before{
	content: '';
	position: absolute;
	display: block;
	width: 20px;
	height: 20px;
	border-top: solid 10px transparent;
	border-left: solid 10px transparent;
	border-right: solid 10px transparent;
	border-bottom: solid 10px #ffffff;
	top: -20px;
	right: 10px;
}

.shopping-cart-dropdown .items-inCart-list{
	max-height: 260px;
	overflow-y: auto;
	padding: 15px;
}

.shopping-cart-dropdown .items-inCart-list .cart-item:hover{
	background-color: #f7f7f7;
}

.shopping-cart-dropdown .items-inCart-list .img-wrapper img{
	width: 60px;
	height: 60px;
}

.shopping-cart-dropdown .items-inCart-list .product-name{
	font-size: 14px;
	font-weight: 600;
	text-transform: capitalize;
	color: #333333;
}

.shopping-cart-dropdown .items-inCart-list .product-name:hover{
	color: #fa929c;
}

.shopping-cart-dropdown .items-inCart-list .current-price{
	font-size: 16px;
	font-weight: 600;
	margin-right: 10px;
}

.shopping-cart-dropdown .remove-from-cart-btn{
	position: absolute;
	left: -10px;
	top: -5px;
	width: 20px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	border-radius: 50%;
	color: #fff;
	background-color: #dddddd;
	cursor: pointer;
	font-size: 12px;
}

.shopping-cart-dropdown .remove-from-cart-btn{
	background-color: #cccccc;
}

.shopping-cart-dropdown .items-inCart-list .old-price{
	font-size: 12px;
	font-weight: 600;
	text-decoration:line-through;
	color: #777777;
}

.shopping-cart-dropdown .cart-total{
	padding: 0px 15px 0px 15px;
	
}

.shopping-cart-dropdown .cart-total .cart-total-items{
	text-transform: capitalize;
	font-size: 12px;
	line-height: 13px;
	font-weight: 500;
	color: #777777;
}

.shopping-cart-dropdown .cart-total .cart-total-price{
	text-transform: uppercase;
	font-size: 14px;
	line-height: 15px;
	font-weight: 700;
	color: #333333;
}

.shopping-cart{
	position: relative;
}

.shopping-cart img{
	height: 28px;
	vertical-align: bottom;
}

.shopping-cart > a >i{
	font-size: 26px;
	vertical-align: bottom;
	color: #1b4b73;
}

.shopping-cart > a{ 
	display: block;
	height: 40px;
	width: 40px;
	padding: 0px !important;
	line-height: 40px;
	text-align: center;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
	transition: all ease-in-out 0.3s;
}

.cart-counter{
	position:absolute;
	background: #fa929c;
	width: 24px;
	height: 24px;
	font-size: 12px;
	text-align: center;
	line-height: 24px;
	border-radius: 50%;
	color: #ffffff;
	top:-4px;
	right: -14px;
}
/*-----------------------*/
	/*social media menu*/
ul.social-media-menu > li > a{
	display: block ;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: transparent;
	border: none;
	position: relative ;
	color:#ffffff;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
	transition: all ease-in-out 0.3s;
}


.top-navigation-bar .navbar-nav {
	-webkit-flex-direction:row !important;
	-moz-flex-direction:row !important;
	-ms-flex-direction:row !important;
	flex-direction:row !important;
}


@media screen and (max-width: 350px){
	.top-navigation-bar {
		padding: 8px 5px 8px 5px ;
	}
}



@media screen and (max-width: 768px){
	.custom-navbar-nav{
		height: 30px;
		width: 100%;
	}
	
	.custom-navbar-nav .nav-item{
		margin-right: 5px;
		margin-left: 5px;
	}

	.custom-navbar-nav .profile{
		width: 40px;
	}

	
	.custom-navbar-nav .profile  .dropdown-menu{
		margin-left: -50px;
	}

}


.navbar-toggler{
	color:#fa929c !important;
}

.navbar-toggler-icon{
	font-size: 16px;
	vertical-align: inherit;
}

.navbar-toggler:focus{
	outline: none;
}

.search-sm-toggler a{
	color: #fa929c !important;
	font-size: 16px;
}

ul.social-media-menu > li > a:hover{
	text-decoration: underline !important;
	border: none;
}




.custom-dropdown-top-menu > .dropdown-menu{
	-webkit-animation-name: fadeInUp;
  	animation-name: fadeInUp;
  	animation-duration: 0.25s;
  	-webkit-animation-timing-function: ease-in-out;
  	-moz-animation-timing-function: ease-in-out;
  	-o-animation-timing-function: ease-in-out;
  	animation-timing-function: ease-in-out;
  	position: relative;
  	margin-top: 0px;
  	border:1px solid #ffffff;
  	padding-top: 0px;
  	padding-bottom: 0px;
  	box-shadow: 0px -2px 7px rgba(0,0,0,0.2);
  	border-top-right-radius: 0px;
  	border-top-left-radius: 0px;
  	min-width: 240px;
	
}

.custom-dropdown-top-menu .dropdown-menu:before{
	content: '\f0d8';
	font-family: "Font Awesome 5 Free";
    font-weight: 900;
	position: absolute;
	display: block;
	font-size: 22px;
	color: #ffffff;
	top: -20px;
	left: 10px;
}


.custom-dropdown-top-menu > .dropdown-menu > li:hover > a{
	color: #fa929c;
	
}

.custom-dropdown-top-menu > .dropdown-menu > li > .dropdown-submenu{
	padding: 0px 0px 0px 0px;
	font-family: inherit;
	width: 220px;
	position: absolute;
	right:-20px;
	top: 0px;
	margin-left: calc(100% + 5px);
	background: #ffffff;
	-webkit-animation-name: fadeInUp;
  	animation-name: fadeInUp;
  	animation-duration: 0.25s;
  	-webkit-animation-timing-function: ease-in-out;
  	-moz-animation-timing-function: ease-in-out;
  	-o-animation-timing-function: ease-in-out;
  	animation-timing-function: ease-in-out;
}

.custom-dropdown-top-menu .dropdown-submenu:before{
	content: '\f0d9';
	font-family: "Font Awesome 5 Free";
    font-weight: 900;
	position: absolute;
	display: block;
	font-size: 22px;
	color: #ffffff;
	top: 0px;
	left: -8px;
}

.custom-dropdown-top-menu > .dropdown-submenu > li:hover{
	background: #f4f4f4;
}

.custom-dropdown-top-menu > .dropdown-menu > li > .dropdown-submenu > li{
	padding: 0px !important;
	width: 100%;
	position: relative;
}

.custom-dropdown-top-menu > .dropdown-menu > li >.dropdown-submenu{
	padding-left: 0px !important;
}

.custom-dropdown-top-menu > .dropdown-menu > li >.dropdown-submenu > li> a{
	display: block;
	width: 100% !important;
	color:#474747;
	padding: 8px 13px;
} 

.custom-dropdown-top-menu > .dropdown-menu > li >.dropdown-submenu >  li:hover > a{
	color: #fa929c;
}

/* submenu 2 */

.custom-dropdown-top-menu .dropdown-submenu2{
	min-width: min-content;
	padding: 0px 0px 0px 0px;
	font-family: inherit;
	width: 220px;
	position: absolute;
	right:-20px;
	top: 0px;
	margin-left: calc(100% + 5px);
	background: #ffffff;
	-webkit-animation-name: fadeInUp;
  	animation-name: fadeInUp;
  	animation-duration: 0.25s;
  	-webkit-animation-timing-function: ease-in-out;
  	-moz-animation-timing-function: ease-in-out;
  	-o-animation-timing-function: ease-in-out;
  	animation-timing-function: ease-in-out;
}

.custom-dropdown-top-menu .dropdown-submenu2:before{
	content: '\f0d9';
	font-family: "Font Awesome 5 Free";
    font-weight: 900;
	position: absolute;
	display: block;
	font-size: 22px;
	color: #ffffff;
	top: 0px;
	left: -8px;
}

.custom-dropdown-top-menu .dropdown-submenu2 > li:hover{
	background: #f4f4f4;
}

.custom-dropdown-top-menu .dropdown-submenu2 > li{
	padding: 0px !important;
	width: 100%;
	position: relative;
}

.custom-dropdown-top-menu .dropdown-submenu2{
	padding-left: 0px !important;
}


.custom-dropdown-top-menu .dropdown-submenu2 >  li > a{
	display: block;
	width: 100% !important;
	color:#474747;
	padding: 8px 13px;
} 

.custom-dropdown-top-menu .dropdown-submenu2 >  li:hover > a{
	color: #fa929c;
}

@media screen and (max-width: 768px){
	.custom-dropdown-top-menu > .dropdown-menu{
		width: 200px;
	}
	
}

.custom-dropdown-top-menu > .dropdown-menu > li{
	padding: 0px !important;
	width: 100%;
	position: relative;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
	transition: all ease-in-out 0.3s;
}

.custom-dropdown-top-menu > .dropdown-menu > li:hover{
	background: #f4f4f4;
}

.custom-dropdown-top-menu > .dropdown-menu > li >a{
	display: block;
	width: 100% !important;
	color:#333333;
	padding: 8px 20px;
	font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
} 

.custom-dropdown-top-menu i.submenu-toggler{
	vertical-align: middle;
    position: absolute;
    right: 10px;
    top: 11px;
}

	/*end of the social media menu*/
/*-----------------------*/


	/*top navigation bar 2*/
.top-navigation-bar2{
	z-index: 100 !important;
	background-color:#ffffff;
}


.top-navigation-bar-call-center{
	font-size: 30px;
}

@media screen and (max-width: 768px){
	
	.top-navigation-bar2{
	z-index: 100 !important;
	}
	.navbar-brand{
		height: 60px;
		width: auto;
		max-width: 220px;
		overflow: hidden;
	}

	.navbar-brand > img{
		height: 100%;
		width: 100%;
	}

	.navbar-nav{
		flex-direction: row;
	}
}



	/*end of the top navigation bar 2*/
/*-----------------------*/
	/*the main menu*/
.main-navigation-bar{
	height: 50px;
	background: #ffffff;
	border:none;
	font-weight: 500;
}

.navbar-brand{
	height: 80px;
	width: auto;
	max-width: 220px;
	overflow: hidden;
}

.navbar-brand > img{
	height: 100%;
	width: auto;
}

.main-navigation-bar > .main-menu-links > ul{
	padding-left: 0px;
}

.main-navigation-bar > .main-menu-links > ul > li{
	position: relative;
	-webkit-transition: ease-in-out 0.2s all;
	-moz-transition: ease-in-out 0.2s all;
	-o-transition: ease-in-out 0.2s all;
	transition: ease-in-out 0.2s all;
}


.main-navigation-bar > .main-menu-links > ul > li > a{
	display: block;
	width: 100%;
	height: 100%;
	padding: 15px 30px 15px 30px !important;
	color: #333333;
	font-size: 14px;
	text-transform: uppercase;

}

.main-navigation-bar > .main-menu-links > ul > li > a:after{
	content: '';
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 0px;
	height: 2px;
	background-color: #fa929c;
	margin-left: 30px;
	margin-right: 30px;
	display: block;
	-webkit-transition: width 0.2s linear;
	-moz-transition: width 0.2s linear;
	-o-transition: width 0.2s linear;
	transition: width 0.2s linear;

}

.main-navigation-bar > .main-menu-links > ul > li > a:hover:after{
	width: calc(100% - 60px); 
}

.main-navigation-bar > .main-menu-links > ul > li.active > a:after{
	width: calc(100% - 60px);
}

@media screen and (max-width: 995px){
	.main-menu-links{
		display: none !important;
	}

	.side-main-menu{
		display: inline !important;
	}
}

.side-main-menu{
	width: 280px;
	height: 100vh;
	position: fixed;
	top:0;
	margin-left: -280px;
	z-index: 2500;
	background: #ffffff;
	transition: all ease-in-out 0.2s;
	display: none;
}

.side-main-menu > ul{
	list-style: none;
	padding: 0px !important;
	margin: 0px;
	border-radius: 0px !important;
}

.side-main-menu > ul > li{
	border-radius: 0px !important;
	position: relative;
	border-bottom: 1px solid #efefef ;
}

.side-main-menu > ul > li:hover{
	background: #fa929c;	
}

.side-main-menu > ul > li:hover a{
	color:#ffffff;
}

.side-main-menu > ul > li > a{
	display: block;
	width: 100%;
	color: #777777;
}

.side-main-menu > ul > li > a > span>i{
	margin-right: 7px;
	color: #fa929c;
	font-size: 20px;
	transition: all ease-in-out 0.2s;
}

.side-main-menu > ul > li:hover > a > span>i{
	color: #ffffff;
}

.side-main-menu-show{
	overflow:scroll;
	margin-left: 0px !important;
}

.categories-collapse-menu{
	margin-left: -3px;
}

.categories-collapse-menu > li{
	padding: 1px;
}

.categories-collapse-menu > li > span > a{
	color:#777777;
}

.categories-collapse-menu > li > span > i{
	color:#777777;
	cursor: pointer;
}

.sub-categories-collapse-menu{
	margin-left: -22px;
}

.sub-categories-collapse-menu > li{
	padding: 3px;
}

.sub-categories-collapse-menu > li > span > a{
	color:#fa929c;
}

.main-search-bar .categories-selector{
	align-items: center;
	background-color: #ffffff;
	color:#777777;
	border:0px;
	padding: 0px 10px 0px 20px;
	height: 40px;
	font-size: 13px;
	line-height: 40px;
	border-top-left-radius:50px; 
	border-bottom-left-radius:50px; 
	vertical-align: center;
	text-transform: capitalize;
	padding-bottom: 2px;
	position: relative;
	border-top:1px solid #fa929c;
	border-bottom:1px solid #fa929c;
	border-left:1px solid #fa929c;
	border-right:2px solid #fa929c;
}


.main-search-bar .categories-selector:focus{
	outline: 0px;
}


.main-search-bar input{
	align-items: center;
	background-color: #ffffff;
	color:#777777;
	border-top:1px solid #fa929c;
	border-bottom:1px solid #fa929c;
	border-left:1px solid #ffffff;
	border-right:1px solid #ffffff;
	padding: 0px 10px 0px 20px;
	height: 40px;
	font-size: 13px;
	line-height: 40px;
	vertical-align: center;
	padding-bottom: 2px;
	position: relative;
	width: 240px;
}


.main-search-bar input:focus{
	border-top:1px solid #fa929c;
	border-bottom:1px solid #fa929c;
	border-left:1px solid #ffffff;
	border-right:1px solid #ffffff;
	outline: 0px;
}

.main-search-bar .search-btn{
	display: block;
	align-items: center;
	background-color: #fa929c;
	color:#ffffff;
	border:0px;
	border-top-right-radius:50px; 
	border-bottom-right-radius:50px; 
	padding: 0px 15px 0px 15px;
	height: 40px;
	font-size: 13px;
	font-weight: 550;
	line-height: 40px;
	vertical-align: center;
	text-transform:capitalize;
	padding-bottom: 2px;
	position: relative;
}


.main-search-bar-wrapper-sm{
	display: none;
	position: absolute;
	left: 0px;
	height: 50px;
	top:0px;
	width: 100%;
	background-color: #ffffff;
	padding-left: 10px;
	padding-top: 5px;
	border-bottom: 1px solid #e0e0e0;
	box-shadow: 0px 2px 5px rgba(0,0,0,0.17);
	text-align: center;
}

.main-search-bar-sm{
	text-align: center;
}

.main-search-bar-sm .categories-selector{
	align-items: center;
	background-color: #eeeeee;
	color:#777777;
	border:0px;
	padding: 0px 10px 0px 20px;
	height: 40px;
	font-size: 13px;
	line-height: 40px;
	border-top-left-radius:50px; 
	border-bottom-left-radius:50px; 
	vertical-align: center;
	text-transform: uppercase;
	padding-bottom: 2px;
	position: relative;
}


.main-search-bar-sm .categories-selector:focus{
	border:0px;
	outline: 0px;
}


.main-search-bar-sm input{
	width: 180px;
	align-items: center;
	background-color: #eeeeee;
	color:#777777;
	border-top:0px;
	border-bottom:0px;
	border-left:1px solid #ffffff;
	border-right:1px solid #ffffff;
	padding: 0px 10px 0px 20px;
	height: 40px;
	font-size: 13px;
	line-height: 40px;
	padding-bottom: 2px;
	position: relative;
}

@media screen and (max-width:576px) {
	.main-search-bar-sm input{
		width: 130px;
	}
}
.main-search-bar-sm input:focus{
	border-top:0px;
	border-bottom:0px;
	border-left:1px solid #ffffff;
	border-right:1px solid #ffffff;
	outline: 0px;
}

.main-search-bar-sm span{
	display: block;
	align-items: center;
	background-color: #eeeeee;
	color:#777777;
	border:0px;
	border-top-right-radius:50px; 
	border-bottom-right-radius:50px; 
	padding: 0px 15px 0px 20px;
	height: 40px;
	font-size: 18px;
	line-height: 40px;
	vertical-align: center;
	text-transform: uppercase;
	padding-bottom: 2px;
	position: relative;
	cursor: pointer;
}

.mobile-search-block{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #ffffff;
	z-index: 2001;
}

.mobile-search-block .main-search-bar{
	position: absolute;
	top: 50%;
	left: 0px;
	transform: translate(0px,0px);
	display: flex;
}

.mobile-search-block .main-search-bar input{
	width: auto;
}


.mobile-search-block .search-sm-dismiss{
	position: absolute;
	top: 15px;
	right: 15px;
}

/*end of the main menu*/
/*-----------------------*/



/*The main slider*/

/*image display 1*/

#main-slider{
	width: 100%;
	max-height: 700px;
	overflow: hidden;
	margin-top: 15px;
	background-color: #f0f0ed;
}
#main-slider .main-slider-img{
	width: 100% !important;
	height: auto;
}
/*===============*/

/*image display 2*/
/*
#main-slider{
	position: relative;
	width: 100%;
	height: 768px;
	overflow: hidden;
	margin-top: 15px;
	background-color: #f0f0ed;
}
#main-slider .main-slider-img{
	width: auto !important;
	height: 768px;
	margin:auto;
}


@media screen and (max-width: 992px){
	#main-slider{
		height: 558px;
	}
	#main-slider .main-slider-img{
		height: 558px;
	}
}

@media screen and (max-width: 768px){
	#main-slider{
		height: 431px;
	}
	#main-slider .main-slider-img{
		height: 431px;
	}
}

@media screen and (max-width: 576px){
	#main-slider{
		height: 323px;
	}
	#main-slider .main-slider-img{
		height: 323px;
	}
}

@media screen and (max-width: 376px){
	#main-slider{
		height: 210px;
	}
	#main-slider .main-slider-img{
		height: 210px;
	}
}
*/
/**/


.main-slider-next-btn,.main-slider-prev-btn{
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 14px;
	text-align: center;
	border-radius: 50%;
	background: rgba(255,255,255,0.5);
	color:#fa929c;
	border:1px solid rgba(255,255,255,0.9);
	position: absolute;
	top: calc(50% - 20px);
	cursor: pointer;
	opacity: 0;
	transition: all 0.2s ease-in-out; 
}

.main-slider-next-btn:hover,.main-slider-prev-btn:hover{
	
	background: rgba(255,255,255,0.7);
	
}

.main-slider-next-btn:focus,.main-slider-prev-btn:focus{
	outline: none;
}
.main-slider-next-btn{
	right: 10px;
}

.main-slider-prev-btn{
	left: 10px;
}

#main-slider:hover .main-slider-next-btn{
	right: 50px;
	opacity: 1;
}

#main-slider:hover .main-slider-prev-btn{
	left: 50px;
	opacity: 1;
}

/*end of The main slider*/
/*-----------------------------*/


/*Best categories section*/

.featured-categories-item .featured-categories-img-wrapper{
	width: 100%;
	height: 240px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
	margin-bottom: 30px;
	
}

.featured-categories-item .featured-category-details{
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
	display: block;
	width: calc(100% - 30px);
	height: 240px;
	background-color: #1b4b73;
	margin-right: 15px;
	margin-left: 15px;
}

.featured-categories-item:hover .featured-categories-img-wrapper{
	position: relative;
}

.featured-categories-item .featured-categories-img-wrapper img{
	position: relative;
	width: 100%;
	height: auto;
	transition: all 0.3s ease-in-out;
}

.featured-categories-item:hover .featured-categories-img-wrapper img{
	transform: scale(1.2,1.2);
	
}

.featured-categories-item .featured-categories-img-wrapper .img-cover{
	content: '';
	position: absolute;
	display: flex;
	width:100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background-color: transparent;
	border:15px solid rgba(255,255,255,0.7);
	transition: all 0.3s ease-in-out;
	z-index: 100;
	align-items: center;
	text-align: center;
}

.featured-categories-item:hover .featured-categories-img-wrapper .img-cover{
	background-color: rgba(27,75,115,0.6);
}

.featured-categories-item .featured-categories-img-wrapper .img-cover .featured-categories-details{
	text-align: center;
	padding: 15px;
	width: 100%;
}

.featured-categories-item .featured-categories-img-wrapper .img-cover .featured-categories-details-name{
	color: #fff;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 2px;
    font-size: 20px;
    text-align: center;
    text-shadow: 0 0 1px white, 0 1px 2px rgba(0, 0, 0, 0.3);
    transform: translateY(-60px);
    opacity: 0;
    transition: all ease-in-out 0.3s;
}

.featured-categories-item:hover .featured-categories-img-wrapper .img-cover .featured-categories-details-name{
	transform: translateY(0);
    opacity: 1;

}


.featured-categories-item .featured-categories-img-wrapper .img-cover .featured-categories-details hr{
	transform: translateX(-60px);
    opacity: 0;
    transition: all ease-in-out 0.3s;
}

.featured-categories-item:hover .featured-categories-img-wrapper .img-cover .featured-categories-details hr{
	transform: translateX(0);
    opacity: 1;
}

.featured-categories-item .featured-categories-img-wrapper .img-cover .featured-categories-details-link{
	border-radius: 20px;
	border:1px solid #ffffff;
	background-color: transparent;
	font-size: 12px;
	line-height: 14px;
	text-transform: uppercase;
	transform: translateY(60px);
    opacity: 0;
    transition: all ease-in-out 0.3s;
}

.featured-categories-item:hover .featured-categories-img-wrapper .img-cover .featured-categories-details-link{
	transform: translateY(0);
    opacity: 1;
}

.featured-categories-item .featured-categories-img-wrapper .img-cover .featured-categories-details-link a{
	color: #ffffff;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  animation-name: zoomIn;
}

/*End of the Best categories section*/

/*Featured products section*/

.featured-product-section{
	padding-top: 50px;
	padding-bottom: 50px;
	background: #f0f0ed; 
}

.featured-product-slider{
	position: relative;
}

.featured-product-next-btn,.featured-product-prev-btn{
	
	line-height: 18px;
	font-size: 12px;
	text-align: center;
	z-index: 100;
	color: #fa929c;
	cursor: pointer;
}

.featured-product-next-btn:focus,.featured-product-prev-btn:focus{
	outline: none;
}

.featured-product-next-btn{
	position: absolute;
	top:-45px;
	right: 0px; 
}

.featured-product-prev-btn{
	position: absolute;
	top:-45px;
	right: 30px; 
}


/*end of the Featured products section*/

/*the publicity section*/

.slider-publicity-section{
	margin-top: 15px;
	margin-bottom: 15px;
}
.slider-publicity-img{
	width: 100%;
	height: 218px;
}

.publicity-section{
	margin-top: 50px;
	margin-bottom: 50px;
}

.publicity-img-wrapper{
	width: 100%;
	max-height:240px;
	overflow: hidden;
	position: relative;
}



.publicity-img-wrapper .publicity-img{
	width: 100%;
	height: auto;
}

.publicity-img-wrapper::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.5) 100%);
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.5) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.publicity-img-wrapper:hover::before {
  -webkit-animation: shine .75s;
  animation: shine .75s;
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}


/*end of the publicity section*/

/*new products section*/
.new-products-section{
	background: #f0f0ed;
	padding-top: 50px;
	padding-bottom: 50px;
}

.new-product-next-btn,.new-product-prev-btn{	
	width: 28px;
	height: 28px;
	padding: 0px;
	line-height: 28px;
	font-size: 12px;
	text-align: center;
	z-index: 100;
	border-radius: 50%;
	background-color: transparent;
	border:1px solid #fa929c; 
	outline: 0px;
	box-shadow: 0px;
	color: #fa929c;
	cursor: pointer;
}

.new-product-next-btn:focus,.new-product-prev-btn:focus{
	outline: none;
}

.new-product-next-btn{
	position: absolute;
	top:-50px;
	right: 0px; 
}

.new-product-prev-btn{
	position: absolute;
	top:-50px;
	right: 35px;  
}


/*end of the new products section*/

.parallax-wrapper{
	position: relative;
}


.parallax-wrapper .parallax-section{
  min-height: 400px; 
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax-wrapper .parallax-cover{
	background-color: rgba(27,75,115,0.4);
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}


.parallax-wrapper .parallax-header{
	position: absolute;
	top: 15px;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 3;
	text-align: center;
	font-size: 36px;
	font-family: "Dancing Script";
	color: #fa929c;
}

.parallax-wrapper .parallax-text{
	position: absolute;
	top: 70px;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 3;
	color: #ffffff;
	text-align: center;
}

.parallax-wrapper .parallax-btn{
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 3;
	color: #ffffff;
}

.parallax-wrapper .parallax-btn a{
	color: #ffffff;
}

.parallax-wrapper .parallax-btn:hover{
	background-color: transparent;
}

.parallax-wrapper .parallax-btn:hover a{
	color: #ffffff;
}


/*Parallax*/


/*end of the parallax*/

/* Brands section*/

.brands-slider{
	position: relative;
}
.brand-img-wrapper{
	width:100%;
	height: 100px;
	overflow: hidden;
}

.brand-img-wrapper .brand-img-container{
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: solid 1px #dddddd; 
	overflow: hidden;
	margin: auto;
	position: relative;
}

.brand-img-wrapper .brand-img-cover{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	background-color: rgba(27,75,115,0.6);
	visibility: hidden;
	z-index: 10;
	font-size: 12px;
	color: #ffffff;
	text-align: center;
}

.brand-img-wrapper:hover .brand-img-cover{
	visibility: visible;
}

.brand-img{
	width:auto;
	height: 100px;

}

.brands-next-btn,.brands-prev-btn{
	width: 30px;
	height: 30px;
	line-height: 25px;
	font-size: 12px;
	text-align: center;
	border-radius: 50%;
	background: #ffffff;
	border: solid 1px #fa929c;
	color: #fa929c;
	cursor: pointer;
}

.brands-next-btn:focus,.brands-prev-btn:focus{
	outline: none;
}

.brands-next-btn{
	position: absolute;
	top:calc(50% - 15px);
	right: -40px; 
}

.brands-prev-btn{
	position: absolute;
	top:calc(50% - 15px);
	left: -40px; 
}

@media screen and (max-width: 768px){
	.brands-next-btn{
		right: -10px;
		z-index: 10; 
	}

	.brands-prev-btn{
		left: -10px;
		z-index: 10; 
	}
}

/* end of the Brands section*/

/*the footer section*/

section.footer{
	background: #1b4b73;
	padding-top: 60px;
	padding-bottom: 60px;
}

.footer-col-container{
	padding-left: 30px;
}

.footer-social-menu .nav-item{
	width: 36px;
	height: 36px;
	line-height: 36px;
	padding: 0px;
	background-color: #ffffff;
	border-radius: 50%;
	border:1px solid #dddddd;
	color: #fa929c;
	text-align: center;
	margin-right: 10px;
}


.footer-social-menu .nav-item a{
	padding: 0px;
}

.footer-headers{
	/*font-family: 'Dancing Script', cursive !important;*/
	color: #fa929c;
	font-size: 22px;
	font-weight: 500;
	line-height: 22px;
	text-transform: uppercase;
}

.footer-links-list{
	list-style: none;
	padding-left: 0 !important;
}

.footer-links-list > li{
	color:#cccccc;
	
}

.footer-links-list > li > a{
	color:#cccccc;
	font-weight: 500;
	font-size: 14px;
	line-height: 25px;

}

.footer-links-list > li > a:hover{
	color:#ffffff;
}

.copyright-footer{
	background: #1b4b73;
	color: #ffffff;
	border-top: 1px solid #f0f0ed;
}


/*end of the footer section*/

/*-----------------------------*/
/*end of The Home page*/




/*The shop page*/

/*Custom Product Card*/
.custom-product-card {
	width: 100%;
	margin-bottom: 15px;
	background-color: #ffffff;
	animation-name: fadeInUp;
	animation-duration: 0.4s;
}


/*product image first aproach*/

.custom-product-card .product-card-img-wrapper{
	width: 100%;
	height: 300px;
	overflow: hidden;
	position: relative;
}

@media screen and (max-width: 576px){
	.custom-product-card .product-card-img-wrapper{
		height: 380px;
		padding-left: 15px;
		padding-right: 15px;
	}
}

.custom-product-card .product-card-img-wrapper img{
	width: 100%;
	height: auto;
}

/*==========*/

/*product image second aproach*/
/*
.custom-product-card .product-card-img-wrapper{
	width: 100%;
	height: 260px;
	overflow: hidden;
	position: relative;
}

.custom-product-card .product-card-img-wrapper img{
	width: auto;
	height: 260px;
	margin: auto;
}
*/
/*===========================*/

.custom-product-card .product-card-img-wrapper .product-card-img-cover{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: transparent;
	transition: all 0.3s ease-in-out;
}

.product-card-img-cover-link{
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.custom-product-card .product-card-img-wrapper .product-card-img-cover .action-buttons-wrapper{
	position:absolute;
	bottom:0px;
	width: 100%;
	opacity: 0;
	transition: all 0.3s ease-in-out; 
}

.custom-product-card .product-card-img-wrapper .product-card-img-cover:hover .action-buttons-wrapper{
	bottom: 15px;
	opacity: 1;
}



@media screen and (max-width: 768px){

	.custom-product-card  .action-buttons-wrapper{
		bottom: 15px !important;
		opacity: 1 !important;
	}

}



.custom-product-card .product-card-img-wrapper .product-card-img-cover .action-buttons{
	padding: 5px 20px;
	border-radius: 50px;
	box-shadow: 0px 3px 12px rgba(0,0,0,0.2);
	background-color: #ffffff;
}



.custom-product-card .product-card-img-wrapper .product-card-img-cover .action-buttons button{
	border:0px;
	box-shadow: none;
	outline: none;
	background-color: transparent;
	color: #1b4b73;
	cursor: pointer;
	font-size: 22px;
	font-weight: 400;
	margin-right: 5px;
	transition: all 0.2s linear;
}

.custom-product-card .product-card-img-wrapper .product-card-img-cover .action-buttons button a{
	color:#1b4b73;
}

.custom-product-card .product-card-img-wrapper .product-card-img-cover .action-buttons button:hover{
	color:#fa929c;
	transform: translateY(-3px);
}

.custom-product-card .product-card-img-wrapper .product-card-img-cover .action-buttons button:hover a{
	color:#fa929c;
}

.action-btn-buynow{
	border:1px solid #fa929c;
	text-transform: uppercase;
	background-color: #fa929c;
	border-radius: 5px;
	margin-top: 10px;
	font-size: 13px;
	line-height: 14px;
	padding: 8px 20px;
	transition: all 0.3s ease-in-out;
}

.action-btn-buynow:hover{
	border:1px solid #fa929c;
	background-color: #ffffff;
}

.action-btn-buynow a{
	color:#ffffff;
}

.action-btn-buynow:hover a{
	color:#fa929c;
}


.custom-product-card .product-card-img-wrapper .product-tags-list{
	position: absolute;
	left: 10px;
	top: 0;
	padding-left: 5px;
	padding-top: 5px;
}

.custom-product-card .product-card-img-wrapper .product-tags-list span,.product-details-tags span{
	padding: 4px 11px;
    margin-bottom: 5px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
    font-size: 10px;
    position: relative;
}

.product-details-tags{
	position: absolute;
	top: 15px;
	right: 0;
}

.product-details-tags span{
	display: inline-block;
	padding: 5px 11px !important;
	margin-left: 10px;
    margin-bottom: 5px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    line-height: 1;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
    font-size: 10px;
    position: relative;
}

.timer-counter{
	padding: 15px;
	background-color: #f7f7f7;

}

.timer-counter .timer-counter-item{
	font-size: 26px;
	width: 20% !important;
	text-align: center;
	position: relative;
}

.timer-counter .timer-counter-item .time-value{
	color: #1b4b73;
}

.timer-counter .timer-counter-item .time-text{
	font-size: 13px;
	line-height: 17px;
	font-weight: 400;
	color: #999999;

}

.timer-counter-item.days .time-value:after,.timer-counter-item.hours .time-value:after, .timer-counter-item.minutes .time-value:after{
	content: ':';
	display: block;
	position: absolute;
	top: 0px;
	right: -15px;
	
} 

.custom-product-card .product-card-img-wrapper .product-tags-list span:after,.product-details-tags span:after{
	content: '';
	width: 6px;
	height: 6px;
	display: block;
	background-color: #ffffff;
	position: absolute;
	top:7px;
	left: -3px;
	border-radius: 50%;
}



.custom-product-card .product-card-img-wrapper .product-tags-list span.out-stock, .product-details-tags span.out-stock{
	background-color: #d22d3d;
	color:#ffffff;
}

.custom-product-card .product-card-img-wrapper .product-tags-list span.out-stock:before,.product-details-tags span.out-stock:before{
	content: '';
    position: absolute;
    top: 0;
    left: -20px;
    display: block;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid #d22d3d;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}


.custom-product-card .product-card-img-wrapper .product-tags-list span.new-tag, .product-details-tags span.new-tag{
	background-color: #fa929c;
	color:#ffffff;
}

.custom-product-card .product-card-img-wrapper .product-tags-list span.new-tag:before,.product-details-tags span.new-tag:before{
	content: '';
    position: absolute;
    top: 0;
    left: -20px;
    display: block;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid #fa929c;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.custom-product-card .product-card-img-wrapper .product-tags-list span.discount-tag, .product-details-tags span.discount-tag{
	background-color: #da5555;
	color: #ffffff;
}

.custom-product-card .product-card-img-wrapper .product-tags-list span.discount-tag:before,.product-details-tags span.discount-tag:before{
	content: '';
    position: absolute;
    top: 0;
    left: -20px;
    display: block;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid #da5555;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.custom-product-card .product-card-img-wrapper .product-tags-list span.free-shipping, .product-details-tags span.free-shipping{
	background-color: #ffad00;
	color:#ffffff;
}

.custom-product-card .product-card-img-wrapper .product-tags-list span.free-shipping:before,.product-details-tags span.free-shipping:before{
	content: '';
    position: absolute;
    top: 0;
    left: -20px;
    display: block;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid #ffad00;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.custom-product-card .product-card-details{
	padding: 10px 5px;
}

.custom-product-card .product-card-brand-name{
	display: block;
    font-size: .625rem;
    opacity: .8;
    text-transform: uppercase;
    line-height: 1.7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-product-card .product-card-details-name{
	font-size: .9375rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -.01em;
    margin-bottom: .45rem;
    text-transform: capitalize;
    color: #222529;
    height: 1.35;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-product-card .star-rating{
	display: block;
    cursor: pointer;
    float: none;
    position: relative;
    font-size: 11px;
    height: 1em;
    line-height: 1em;
    overflow: hidden;
    position: relative;
    letter-spacing: .1em;
    text-align: center;
    white-space: nowrap;

}

.product-reviews-summary .rating-summary:after,
.product-reviews-summary .rating-summary:before {
    content: "";
    display: table
}

.product-reviews-summary .rating-summary:after {
    clear: both
}

.product-reviews-summary .rating-result {
    position: relative;
    overflow: hidden;
    float: left;
    left: calc(50% - 35px)
}

.product-reviews-summary .rating-result,
.product-reviews-summary .rating-result>span {
    color: #ccc;
    white-space: nowrap;
    line-height: 1;
    display: block
}

.product-reviews-summary .rating-result:before,
.product-reviews-summary .rating-result>span:before {
    content: "\f005" "\f005" "\f005" "\f005" "\f005";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 1.5px;
    line-height: 1;
    display: block
}

.product-reviews-summary .rating-result>span {
    color: #f90;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden
}

.product-reviews-summary .rating-result>span span {
    display: none
}

.custom-product-card .current-price{
	font-weight: bold;
	font-size: 15px;
}

.custom-product-card .old-price{
	text-decoration: line-through;
	font-weight: 600;
	font-weight: bold;
	font-size: 11px;
}

.custom-product-card .add-to-wishlist-btn{
	border-radius: 0px;
	margin-right: 5px;
	margin-left: 5px;
	background-color: #da5555;
	color: #ffffff;
}

.custom-product-card .add-to-cart-btn{
	width: calc(100% - 55px);
	border-radius: 0px;
	margin-right: 5px;
	margin-left: 5px;
	background-color: #f0f0ed;
	color: #777777;
	border:1px solid #f0f0ed;
	overflow: hidden;
	text-overflow: ellipsis;
}

.custom-product-card .buy-now-btn{
	width: calc(100% - 10px );
	border-radius: 0px;
	margin-right: 5px;
	margin-left: 5px;
	background-color: #fa929c;
	color: #ffffff;
	border:1px solid #fa929c;
}

.custom-product-card .buy-now-btn a{
	color: #ffffff;
}

/*===================*/

/*Small product card*/

.small-product-card .img-wrapper{
	width: 70px;
	height: 70px;
		margin-right: 15px;
	
	/*overflow: hidden;*/
}

.small-product-card .img-wrapper img{
	width: 70px;
	height: auto;
}

.small-product-card .small-product-card-name a{
	color:#777777;
}

.small-product-card .small-product-card-name a:hover{
	color:#fa929c;
}

.small-product-card .small-product-card-prices .current-price{
	font-weight: bold;
	font-size: 15px;
}

.small-product-card .small-product-card-prices .old-price{
	font-weight: bold;
	font-size: 11px;
	text-decoration: line-through;
	color:#777777;
}

/*===================*/

.categories-collapse-btn{
	border: 1px solid #999999;
	cursor: pointer;
	height: 28px;
	width: 28px;
	line-height: 28px;
	text-align: center;
	font-size: 13px;
	background: #ffffff;
	color: #999999;
	margin-left: 10px;
	display: none;
}
.categories-collapse-btn:focus{
	outline: none;
}

.filter-dismiss{
	position: absolute;
	top:10px;
	right:10px;
	border: 0px;
	cursor: pointer;
	background: transparent;
	color: #777777;
	margin-right: auto;
	display: none;
	-webkit-transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.filter-dismiss:focus{
	outline: none;
}

@media screen and (max-width: 992px){

	.shop-search-bar-container > form > .search-input-style2{
		width: 180px;
		margin-right: 10px;
	}


}

@media screen and (max-width: 768px){

	.shop-search-bar-container > form > .search-input-style2{
		width: 160px;
		margin-right: 10px;
	}

	.filters-content > nav > .navbar-nav{
		flex-direction: column !important;
	}

}


.filters-container{
	position: relative;
	border:solid 1px #efefef;
	border-radius: 5px;
}

.filters-wrapper{
	padding: 15px;
	padding-bottom: 0px;
}

.filters-wrapper h5{
	text-transform: uppercase;
	font-size: 90%;
}

.custom-radio .custom-control-input:checked~.custom-control-label::before{
	background-color: #fa929c;
}


@media screen and (max-width: 995px){
	.categories-collapse-btn,.filter-dismiss{
		display: inline-block; 
	}

	.filters-container{
		border:none;
		width: 280px !important;
		background: #ffffff;
	    margin-left: -280px;
	    position: fixed;
	    top:0;
	    left: 0;
	    margin-top: 0px;
	    z-index: 2500;
	    -webkit-transition:all 0.3s ease-in-out;
	    -moz-transition:all 0.3s ease-in-out;
	    transition: all 0.3s ease-in-out;
	    overflow-y: scroll;
	    height: 100vh;
	}

	.filters-container h5{
		color: #777777;
	}

	.show-filters-container{
		margin-left: 0px;
	    -webkit-transition:all 0.3s ease-in-out;
	    -moz-transition:all 0.3s ease-in-out;
	    transition: all 0.3s ease-in-out;
	}

}



ul{
	list-style: none !important;
}

.categories-list{
	width: 100%;
}

.categories-list > li > a{
	color:#ffffff;
}

.categories-list > li > ul > li > a{
	color:#a6a6a6;
}


.categories-caret-down{
	float: right;
}

.no-product-found{
	text-align: center;
}

.no-product-found > span{
	font-size: 40px;
}


.filters-content> ul > li {
	text-decoration: none;
	color: #777777;
	font-size: 14px;
	line-height: 19px;
}

.filters-content > ul{
	list-style: none;
	padding-left: 0px !important;
	margin-left: 0px;
}

@media screen and (max-width: 768px){
	.sorting-filter{
		padding-left: 30px;
		justify-content: center;
	}
}



.sorting-input{
	padding: 10px 20px;
	border:1px solid #dddddd;
	font-size: 12px;
	color:#999999;
	outline: none;
	border-radius: 0px;

}

.sorting-input:first-child{
	border-right: 0px !important;
	border-bottom-left-radius: 5px;
	border-top-left-radius: 5px;
}

.sorting-input:nth-child(2){
	border-bottom-right-radius: 5px;
	border-top-right-radius: 5px;
}

.sorting-input > option{
	color:#999999;
}



.shop-pagination > .pagination > li{
	margin-right:10px;
	display: block;
	width: 40px;
	height: 46px;
	border:solid 1px #dddddd;
	background: transparent;
	margin-right:0px;
	position: relative;
	padding: 0px;
	transition: all ease-in-out 0.2s;
	text-align: center;
	line-height: 46px;

}


.shop-pagination > .pagination > li:first-child , .shop-pagination > .pagination > li:last-child{
	
	width: auto;
	height: 46px !important;
	position: relative;
	background: #fa929c;
	border:solid 1px #fa929c;
	font-size: 26px;
	line-height: 40px;
}
.shop-pagination > .pagination > li:first-child > a , .shop-pagination > .pagination > li:last-child > a{
	width:100%;
	height: 100%;
	display: block;
	width: 46px;
	color: #fa929c;
	border:solid 1px #fa929c;
	font-size: 26px;
	line-height: 40px;

	padding-top:0px !important;
	padding-bottom:0px !important;
}

.shop-pagination > .pagination > li:hover{
	background: #fa929c;
	border:solid 1px #fa929c;
	color: #fa929c;
	box-shadow: 0px 3px 10px  rgba(0,0,0,0.4);
	transform: translateY(-5px);
}

.shop-pagination > .pagination > li.active{
	background: #f0f0ed;	
}

.shop-pagination > .pagination > li.active:hover{
	background: #fa929c;
	border:solid 1px #fa929c;	
}

.shop-pagination > .pagination > li > a{
	display: block;
	width: 100%;
	height: 100%;
	color: #fa929c;
	text-decoration: none;
}

.shop-pagination > .pagination > .page-item.active .page-link{
	background: #fa929c;
	border-color: #f0f0ed;
}


.rzslider .rz-pointer{
	width:12px !important;
	height: 12px !important;
	margin-top: 8px;
	background: #fa929c !important;
}

.rzslider .rz-pointer:after{
	visibility: hidden;
}

.rzslider .rz-selection{
	background: #e6e6e6 !important;
}

.rzslider .rz-bubble{
	display: none;
	border: solid 1px #808080 !important;
	padding: 2px 5px 2px 5px !important;
	color: #ffffff;
}

.price-filter-range{
	font-size: 12px;
	line-height: 17px;
	font-weight: 500;
	text-transform: uppercase;
}

#add-to-cart-modal{
	padding: 15px;
}

.add-to-cart-modal-container{
	background: #ffffff;
	padding: 20px;
	width: 480px;
	height: auto;
	margin-top: 30px;
	position: relative;
}

@media screen and (max-width: 768px){

	.add-to-cart-modal-container{
		
		width: 440px !important;
		
	}	

}

@media screen and (max-width: 576px){

	.add-to-cart-modal-container{	
		width: 320px !important;
		
	}	

}

@media screen and (max-width: 768px){

	.add-to-cart-modal-container{
		
		width: 400px;
		
	}	

}

.add-to-cart-modal-image-wrapper{
	width: 150px;
	height: 150px;
	overflow: hidden;
	margin-right: 15px;
}

.add-to-cart-modal-image{
	width: 100%;
	height: auto;
}

.add-to-cart-modal-info .price{
	font-size: 24px;
	line-height: 35px;
	font-weight: 400;
	/*font-family: Lato;*/
	color: #fa929c;
	
	margin-right: 5px;
}

.add-to-cart-modal-info .product-name{
	font-size: 25px;
	line-height: 30px;
	font-weight:700;
}

.dismiss-modal-btn{
	position: absolute;
	top: 10px;
	right: 10px;
}
/*end of The shop page*/


/*The product-details page*/
.product-details-carousel-thumbs > div > li > img{
	-webkit-filter: grayscale(100%); 
    filter: grayscale(100%);
	transition: ease-in-out all 0.2s;
	cursor: pointer;
}

.product-details-name{
	font-size: 25px;
	line-height: 30px;
	font-weight:700;
}
.product-details-wrapper h2, .DescriptionTab h2{
	font-size: 30px;
	line-height: 36px;
	font-weight: 700;
	font-family: Lato;
	color: #222529;
}

.product-details-carousel-thumbs > div > li > img:hover{
	-webkit-filter: none; 
    filter: none;
}
ul.product-details{
	list-style: none;
	padding-left: 0px;
}

.product-details-prices .current-price{
	font-size: 30px;
	line-height: 24px;
	font-weight: 400;
	/*font-family: Lato;*/
	color: #fa929c;
	margin-right: 5px;
}

.product-details-prices .old-price{
	font-size: 20px;
	line-height: 20px;
	font-weight: 400;
	/*font-family: Lato;*/
	text-decoration: line-through;
}

.hr-dashed{
	border-top: 1px dashed #dddddd;
}

.product-details-wrapper .add-to-cart-btn{
	margin-bottom: 10px;
	border-radius: 0px;
	margin-left: 5px;
	width:100%;
	border-radius: 5px;
	background-color: #f0f0ed;
	color: #1b4b73;
	border:1px solid #f0f0ed;
	overflow: hidden;
	text-overflow: ellipsis;
}

.product-details-wrapper .add-to-cart-btn:hover{
	background-color: #f0f0ed;
	color:;
}

.add-cart-img{
	width: 14px;
	margin-right: 10px;
}

.product-details-wrapper .add-to-wishlist-btn{
	margin-bottom: 10px;
	border-radius: 0px;
	margin-right: 5px;
	margin-left: 0px;
	background-color: transparent;
	color: #fa929c;
	font-size: 26px;
	padding: 0px 5px;
}

.product-details-wrapper .buy-now-btn{
	margin-bottom: 10px;
	border-radius: 0px;
	margin-right: 5px;
	margin-left: 5px;
	border-radius: 5px;
	background-color: #fa929c;
	color: #ffffff;
	border:1px solid #fa929c;
	width: 100%;
}

.product-details-wrapper .buy-now-btn:hover{
	background-color: #ffffff;
	border:1px solid #fa929c;
	color: #fa929c;
}


@media screen and (max-width: 768px){
	.product-details-wrapper .buy-now-btn{
		width: 100%;
		margin-left: 0px;
		margin-right: 0px;
	}

	.product-details-wrapper .add-to-cart-btn{
		width: calc(100% - 52px);
		margin-right: 0px;
	}

}

.product-description-tablist{
	padding-left: 0px !important;
	border-bottom: 0px;
}

.product-description-tablist li{
	margin-right: 30px;
}

.product-description-tablist li a{
	font-size: 18px;
	line-height: 27px;
	text-transform: uppercase;
	padding-left: 0px;
	padding-right: 0px;
	border:0px !important;
	cursor: pointer;
	border-bottom: 2px solid transparent !important;
}

.product-description-tablist li a.active{
	border:0px;
	color: #fa929c !important;
}

.product-description-tablist li a:hover{
	color: #fa929c !important;
	border:0px;
}

.review-comment-wrapper{
	margin-top: 30px;
	margin-bottom: 30px;
}

.review-comment-wrapper .review-img-wrapper{
	margin-right: 15px;
}

.review-comment-wrapper .review-img-wrapper img{
	width:60px;
	height: 60px;
}

.review-comment-wrapper .review-comment-content{
	font-size: 13px;
	color: #777777;
}

.share-buttons-container{
	margin-top: 50px;
}

.share-buttons-container > .social-media-btn{
	box-shadow: none;
	display: block;
	width: 30px;
	height: 30px;
	border-radius:50%;
	padding: 5px 5px 5px 8px;
	margin-right: 10px;
	background:#e6e6e6;
	float: left;
	cursor: pointer;
	transition: ease-in-out all 0.4s;
}

.share-buttons-container > .social-media-btn:hover > i{
	color:#ffffff;
}
.share-buttons-container > .facebook-btn:hover{
	background: #4267b2;
	color: #ffffff;
}

.share-buttons-container > .twitter-btn:hover{
	background: #1da1f2;
	color: #ffffff;
}

.share-buttons-container > .google-plus-btn:hover{
	background: #ea4335;
	color: #ffffff;
}

.share-buttons-container > .instagram-btn:hover{
	background: #e1306c;
	color: #ffffff;
}
/*end of the product details page */

/*the login page*/
.login-panel-container{
	padding: 30px;
	background: #ffffff;
	border:solid 1px #dddddd;
}

.forgot-pass-text{
	font-size: 14px;
	line-height: 17px;
	font-weight: 400;
	color: #999;
}

.login-panel-container > strong > a{
	color:#fa929c;
	text-decoration: none;
}

.login-panel-container > strong > a:hover{
	color:#185e9a;
}
/*end of the login page*/


/*Cart page*/
.cart-table table{
	border:1px solid #dddddd;
}

.cart-is-empty, .orders-empty{
	padding: 15px;
	font-size: 30px;
	border:1px solid #e6e6e6;
	text-align: center;
}

.checkout-section{
	border: solid 1px #e6e6e6;
	padding-top: 15px;
	padding-bottom: 15px;

}


/*end of the Cart page*/


/*the product details Page*/

.vertical-devider{
	display: block;
	height: 26px;
	width: 2px;
	margin-right: 15px;
	margin-left: 15px;
	background-color: #dddddd;
}

.product-reviews-wrapper{
	padding: 5px 15px;
	background-color: #f7f7f7;
}

#slick-thumb > .slick-prev, #slick-thumb > .slick-next{
	display: none !important;
}

.product-details-img-wrapper{
	width: 100%;
	max-height: 800px;
	overflow: hidden;
}

.product-details-img{
	width: 100%;
	height: auto;
}

.product-details-video{
	width: 100%;
	height: 100%;
}

.product-details-thumb-img-wrapper{
	border:solid 1px #dddddd;
	width: 100%;
	height: 100px;
	overflow: hidden;
	cursor: pointer;
}

.product-details-thumb-img-wrapper:hover{
	border:1px solid #fa929c;
}
.product-details-thumb-img{
	width: 100%;
	height: auto;
}

.product-details-carousel-container .slick-slide{
	margin-right: 10px;
}

.product-details-carousel-container .slick-current .product-details-thumb-img-wrapper{
	border:1px solid #fa929c;
}

#slick-link-thumb > .slick-prev{
	left:-17px;
	z-index: 10;
	opacity: 0;
	transition: all linear 0.2s;
}

#slick-link-thumb > .slick-next{
	opacity: 0;
	right:-10px;
	transition: all linear 0.2s;
	z-index: 10;
}

#slick-link-thumb:hover > .slick-prev{
	left:3px;
	opacity: 1;
}

#slick-link-thumb:hover > .slick-next{
	right:10px;
	z-index: 10;
	opacity: 1;
}

.order-product-details{
	padding: 15px;
	border:1px solid #dddddd;
}

.order-product-img-wrapper{
	width: 100%;
	height: auto;
	overflow: hidden;
}

.order-product-img{
	width: 100%;
	height: auto;
}


.product-add-to-cart-wrapper{
	padding: 15px;
	border:solid 1px #dddddd;
	position: relative;
}

@media screen and (max-width: 576px){
	.buy-now-mobile{
		position: fixed;
		bottom: 0px;
		left: 0;
		width: 100%;
		height: 60px;
		z-index: 999;
		margin-left: 0px !important;
		margin-bottom: -1px !important;
		border-radius: 0px !important;

	}
}

/*end of the product details page*/

/*The contact page*/
.map-wrapper{
	border:1px solid #e8e8e8;
	width: 100%;
	height: 350px;
}
/*end of The contact page*/

/*The about us page*/

.abour-us-wrapper{
	padding: 15px;
	border:1px solid #dddddd;
}

.contact-info{
	border:1px solid #dddddd;
	padding: 15px;
}


/*End of The about us page*/

/*The profile page*/
.profile-photo-container{
	cursor: pointer;
}

.profile-wrapper{
	padding: 30px;
	border:1px solid #dddddd;
}
/*End of The profile page*/