﻿
body {
	font-family: 'vazir','Poppins', sans-serif;
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

p {
	margin-bottom: 0px;
	font-size: 14px;
	font-weight: 300;
	color: #4a4a4a;
	line-height: 24px;
}

a {
	text-decoration: none !important;
}

ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0px;
}


a.filled-button {
	background-color: #f33f3f;
	color: #fff;
	font-size: 14px;
	text-transform: capitalize;
	font-weight: 300;
	padding: 10px 20px;
	border-radius: 5px;
	display: inline-block;
	transition: all 0.3s;
}

	a.filled-button:hover {
		background-color: #121212;
		color: #fff;
	}

.responsive {
	width: 100%;
	height: auto;
}

.section-heading {
	text-align: right;
	margin-bottom: 60px;
	border-bottom: 1px solid #eee;
}

	.section-heading h2 {
		text-align: left;
		font-size: 28px;
		font-weight: 400;
		color: #1e1e1e;
		margin-bottom: 15px;
	}

.form-control {
	padding: 10px 20px;
	width: 100%;
	height: auto;
}

.form-control,
input:-internal-autofill-selected,
select:not([multiple]) {
	color: #6d49c8 !important;
}

	.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
		color: #6d49c8;
		opacity: 1; /* Firefox */
	}

.my-search-input {
	width: 360px;
	border-radius: 0;
	padding: 12px 15px;
	color: #6d49c8;
	border: none;
	background-color: #ebe3ff;
	border-radius: 0px 25px 25px 0px;
}

	.my-search-input:focus {
		border-color: #6d49c8;
		box-shadow: 0 0 0 0.25rem rgb(109 73 200 / 0.25);
	}

	.my-search-input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
		color: #6d49c8;
		opacity: 1; /* Firefox */
	}

	.my-search-input::-ms-input-placeholder { /* Microsoft Edge */
		color: #6d49c8;
	}

.my-search-btn {
	color: white;
	background-color: #6d49c8;
	border: none;
	width: 80px;
	height: 50px;
	margin-left: -1px;
	border-radius: 25px 0px 0px 25px;
}

	.my-search-btn:hover {
		background-color: #a587ed;
		color: white;
	}
	.my-search-btn:focus {
		background-color: #a587ed;
		color: white;
		box-shadow: 0 0 0 0.25rem rgb(165 135 237 / 0.25);
	}


	.products-heading {
		/*	background-image: url(../../assets/images/slide_01.jpg);
*/
	}

.vidWrap {
	position: relative;
	padding-top: 56.25%; /* 16x9 aspect ratio */
	max-width: 100%;
	height: 0;
}

	.vidWrap.xwide {
		padding-top: 26%;
	}

	.vidWrap video {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
	}
/* Videos */
#my-video-container {
	max-height: 900px;
	overflow: hidden;
	background-color: #333;
	margin-bottom: 10px;
	/*	margin-top: -200px
    position: absolute;*/
}

#my-video {
	display: block;
	width: 100%;
	height: auto;
	margin-top: 0;
}
/*#my-video-control-button {
	position: relative;
	bottom: 30px;
	right: 20px;
	z-index: 1000;
	color: #e1e1e1;
	cursor:pointer;
}
*/
@media (-webkit-video-playable-inline) {

	#my-video video {
		display: initial;
	}
}

.my-hero {
	min-height: 200px;
	background: transparent;
}

.page-heading {
	padding: 510px 0px 130px 0px;
	text-align: center;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

	.page-heading .text-content h4 {
		color: #f33f3f;
		font-size: 22px;
		text-transform: uppercase;
		font-weight: 700;
		margin-bottom: 15px;
	}

	.page-heading .text-content h2 {
		color: #fff;
		font-size: 62px;
		text-transform: uppercase;
		letter-spacing: 5px;
	}

#preloader {
	overflow: hidden;
	background: #f33f3f;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	position: fixed;
	z-index: 9999999;
	color: #fff;
}

	#preloader .jumper {
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		display: block;
		position: absolute;
		margin: auto;
		width: 50px;
		height: 50px;
	}

		#preloader .jumper > div {
			background-color: #fff;
			width: 10px;
			height: 10px;
			border-radius: 100%;
			-webkit-animation-fill-mode: both;
			animation-fill-mode: both;
			position: absolute;
			opacity: 0;
			width: 50px;
			height: 50px;
			-webkit-animation: jumper 1s 0s linear infinite;
			animation: jumper 1s 0s linear infinite;
		}

			#preloader .jumper > div:nth-child(2) {
				-webkit-animation-delay: 0.33333s;
				animation-delay: 0.33333s;
			}

			#preloader .jumper > div:nth-child(3) {
				-webkit-animation-delay: 0.66666s;
				animation-delay: 0.66666s;
			}

@-webkit-keyframes jumper {
	0% {
		opacity: 0;
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	5% {
		opacity: 1;
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0;
	}
}

@keyframes jumper {
	0% {
		opacity: 0;
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	5% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}


/* Header Style */
header {
	position: absolute;
	z-index: 99999;
	width: 100%;
	height: 80px;
	background-color: #232323;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

	header .navbar {
		padding: 17px 0px;
	}

.background-header .navbar {
	padding: 17px 0px;
}

.background-header {
	top: 0;
	position: fixed;
	background-color: #fff !important;
	box-shadow: 0px 1px 10px rgba(0,0,0,0.1);
}

	.background-header .navbar-brand h2 {
		color: #121212 !important;
	}

	.background-header .navbar-nav a.nav-link {
		color: #1e1e1e !important;
	}

	.background-header .navbar-nav .nav-link:hover,
	.background-header .navbar-nav .active > .nav-link,
	.background-header .navbar-nav .nav-link.active,
	.background-header .navbar-nav .nav-link.show,
	.background-header .navbar-nav .show > .nav-link {
		color: #f33f3f !important;
	}
/* Shopping cart menu */
.label-success {
	background-color: #fff;
	color: darkred !important;
}

.navbar .navbar-shop {
	float: left;
	right: 0px;
	margin-top: 0px;
	outline: none;
	color: #f33f3f;
}

.navbar-shop span {
	position: relative;
	top: -8px;
	right: -37px;
	text-align: center;
	font-size: 9px;
	padding: 0px 3px;
	line-height: .9;
	border-radius: .25em;
}
#mySpecialOrder {
	box-sizing: border-box;
}
#spUL {
  list-style-type: none;
  padding: 0 0 10px 0;
  margin: 0;
}

#spUL li {
  border: 1px solid #ddd;
  margin-top: -1px; /* Prevent double borders */
  background-color: #f6f6f6;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  color: black;
  display: block
}

#spUL li:hover:not(.header) {
  background-color: #eee;
}

/*  */
.navbar .navbar-brand {
	float: left;
	margin: 0px 0px 0px 0px;
	outline: none;
}

	.navbar .navbar-brand h2 {
		color: #fff;
		text-transform: uppercase;
		font-size: 24px;
		font-weight: 700;
		-webkit-transition: all .3s ease 0s;
		-moz-transition: all .3s ease 0s;
		-o-transition: all .3s ease 0s;
		transition: all .3s ease 0s;
	}

		.navbar .navbar-brand h2 em {
			font-style: normal;
			color: #f33f3f;
		}

#navbarResponsive {
	z-index: 999;
}

.navbar-collapse {
	text-align: center;
	left: 200px;
}

.navbar .navbar-nav .nav-item {
	margin: 0px 15px;
}

.navbar .navbar-nav a.nav-link {
	text-transform: capitalize;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.5px;
	color: #fff;
	transition: all 0.5s;
	margin-top: 5px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .active > .nav-link,
.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link.show,
.navbar .navbar-nav .show > .nav-link {
	color: #fff;
	padding-bottom: 25px;
	border-bottom: 3px solid #f33f3f;
}

.navbar .navbar-toggler-icon {
	background-image: none;
}

.navbar .navbar-toggler {
	border-color: #fff;
	background-color: #fff;
	height: 36px;
	outline: none;
	border-radius: 0px;
	position: absolute;
	right: 30px;
	top: 20px;
}

.navbar .navbar-toggler-icon:after {
	content: '\f0c9';
	color: #f33f3f;
	font-size: 18px;
	line-height: 26px;
	font-family: 'FontAwesome';
}



/* Banner Style */
.banner {
	position: relative;
	text-align: center;
	padding-top: 60px;
}

	/*.banner-item-01 {*/
	/*padding: 300px 0px;
	height: auto;
    /*height: auto; 
	 background-image: url(../images/slide_01.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center; */
	/*}

.banner-item-02 {
	padding: 300px 0px;
	background-image: url(../images/slide_02.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.banner-item-03 {
	padding: 300px 0px;
	background-image: url(../images/slide_03.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}*/

	.banner .banner-item {
		max-height: 300px;
	}

	.banner .text-content {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		text-align: center;
		width: 100%;
	}

		.banner .text-content h4 {
			color: #f33f3f;
			font-size: 22px;
			text-transform: uppercase;
			font-weight: 700;
			margin-bottom: 15px;
		}

		.banner .text-content h2 {
			color: #fff;
			font-size: 62px;
			text-transform: uppercase;
			letter-spacing: 0px;
		}


/* Welcome */
.welcome-features {
	padding-top: 10px;
	direction: rtl;
	border-bottom: 1px solid #eee;
}

.welcome-features .section-heading {
	direction: rtl;
	margin-bottom: 20px;
}

.welcome-features h2 {
	text-align: center;
	direction: rtl;
}

.welcome-features  p {
	font-size: 1.2rem;
	font-weight: 400;
	text-align: right;
	direction: rtl;
}

.welcome-features  span {
	font-size: 1rem;
	font-weight: 400;
	text-align: right;
	direction: rtl;
}


.product-item {
	text-align: left;
	border: 1px solid #eee;
	margin-bottom: 30px;
}
.product-item .product-thumb {
  position: relative;
}
.product-item .product-thumb img {
  width: 100%;
  height: auto;
}
.product-item .product-thumb .bage {
  position: absolute;
  top: 12px;
  right: 12px;
  background: red;
  color: #fff;
  opacity: 0.75;
  font-size: 12px;
  padding: 4px 12px;
  font-weight: 300;
  display: inline-block;
}

.product-item .product-thumb:before {
  transition: .3s all;
  opacity: 0;
  background: rgba(0, 0, 0, 0.6);
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.product-item .product-thumb .preview-meta {
  position: absolute;
  text-align: center;
  bottom: 0;
  left: 0;
  width: 100%;
  justify-content: center;
  opacity: 0;
  transition: 0.2s;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

.product-item .product-thumb .preview-meta li {
  display: inline-block;
}

.product-item .product-thumb .preview-meta li a, .product-item .product-thumb .preview-meta li span {
  background: #fff;
  padding: 10px 0px;
  cursor: pointer;
  display: inline-block;
  font-size: 20px;
  transition: .2s all;
  width: 50px;
  color: #6d49c8;
  border-radius: 25px;
}

.product-item .product-thumb .preview-meta li a:hover, .product-item .product-thumb .preview-meta li span:hover {
  background: #6d49c8;
  color: #fff;
}

.product-item:hover .product-thumb:before {
  opacity: 0.5;
}

.product-item:hover .preview-meta {
  opacity: 1;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}


.down-content {
	text-align: right;
	direction: rtl;
}

.product-item .down-content {
	padding: 30px;
	position: relative;
	direction: rtl;
}

.product-item img {
	width: 100%;
	overflow: hidden;
}

.product-item .down-content h4 {
	font-size: 17px;
	color: #1a6692;
	margin-bottom: 20px;
}

.product-item .down-content h6 {
	text-align: left;
	right: 30px;
	font-size: 18px;
	color: #121212;
	margin-bottom: 20px;
}
.product-item .down-content h5 {
	text-align: left;
	right: 30px;
	font-size: 18px;
	color: #f33f3f;
	margin-bottom: 20px;
}

	.product-item .down-content h5 em {
		text-decoration: line-through;
		color: #888;
		font-size: 15px;
	}


.product-item .down-content p {
	margin-bottom: 20px;
}

.product-item .down-content ul li {
	display: inline-block;
}

	.product-item .down-content ul li i {
		color: #6d49c8;
		font-size: 30px;
	}

.product-item .down-content span {
	position: absolute;
	right: 30px;
	bottom: 30px;
	font-size: 13px;
	color: #6d49c8;
	font-weight: 500;
}

/*  */
.dropdown-slide {
	/*position: static;*/
	float: left;
}

.dropdown-slide .open > a, .dropdown-slide .open > a:focus, .dropdown-slide .open > a:hover {
  background: transparent;
}

.dropdown-slide.full-width .dropdown-menu {
  left: 0 !important;
  right: 0 !important;
}

.dropdown-slide:hover .dropdown-menu {
  display: none;
  opacity: 1;
  display: block;
  -webkit-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
  opacity: 1;
  visibility: visible;
  color: #777;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.dropdown-slide .dropdown-menu {
  border-radius: 0;
  opacity: 1;
  visibility: visible;
  position: absolute;
  padding: 15px;
  border: 1px solid #ebebeb;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: .3s all;
  position: absolute;
  display: block;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  transition: visibility 0.2s, opacity 0.2s, -webkit-transform 500ms cubic-bezier(0.43, 0.26, 0.11, 0.99);
  transition: visibility 0.2s, opacity 0.2s, transform 500ms cubic-bezier(0.43, 0.26, 0.11, 0.99);
  transition: visibility 0.2s, opacity 0.2s, transform 500ms cubic-bezier(0.43, 0.26, 0.11, 0.99), -webkit-transform 500ms cubic-bezier(0.43, 0.26, 0.11, 0.99);
}

.single-product {
	padding: 60px 0 40px;
}

.single-product .product-pagination li {
  display: inline-block;
  margin: 0 8px;
}

.single-product .product-pagination li + li:before {
  padding: 0 8px 0 0;
  color: #ccc;
  content: "/\00a0";
}

.single-product .product-pagination li a {
  color: #000;
  font-weight: 200;
}

.single-product .product-pagination li a i {
  vertical-align: middle;
}

.single-product-slider .carousel .carousel-inner .carousel-caption {
  text-shadow: none;
  text-align: left;
  top: 20%;
  bottom: auto;
}

.single-product-slider .carousel .carousel-inner .carousel-caption h1 {
  font-size: 50px;
  font-weight: 100;
  color: #000;
}

.single-product-slider .carousel .carousel-inner .carousel-caption p {
  width: 50%;
  font-weight: 200;
}

.single-product-slider .carousel .carousel-inner .carousel-caption .btn-main, .single-product-slider .carousel .carousel-inner .carousel-caption .btn-solid-border, .single-product-slider .carousel .carousel-inner .carousel-caption .btn-transparent, .single-product-slider .carousel .carousel-inner .carousel-caption .btn-small {
  margin-top: 20px;
}

.single-product-slider .carousel .carousel-control {
  bottom: auto;
  background: #fff;
  width: 6%;
  padding: 10px 0;
}

.single-product-slider .carousel .carousel-control i {
  font-size: 40px;
  text-shadow: none;
  color: #555;
}

.single-product-slider .carousel .carousel-indicators li img {
  height: auto;
  width: 60px;
}

.single-product-slider .carousel .carousel-control.right, .single-product-slider .carousel .carousel-control.left {
  background-image: none;
  top: 40%;
}

.single-product-slider .carousel-indicators {
  margin: 10px 0 0;
  overflow: auto;
  position: static;
  text-align: left;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
}

.single-product-slider .carousel-indicators li {
  background-color: transparent;
  border-radius: 0;
  display: inline-block;
  height: auto;
  margin: 0 !important;
  width: auto;
}

.single-product-slider .carousel-indicators li.active img {
  opacity: 1;
}

.single-product-slider .carousel-indicators li:hover img {
  opacity: 0.75;
}

.single-product-slider .carousel-indicators li img {
  display: block;
  opacity: 0.5;
}

.single-product-details .color-swatches {
  display: flex;
  align-items: center;
}

.single-product-details .color-swatches span {
  width: 100px;
  color: #000;
  font-size: 13px;
  font-weight: 600;
}

.single-product-details .color-swatches a {
  display: inline-block;
/*  width: 36px;
  height: 36px;*/
  height: 30px;
  width: 40px;
  margin-right: 5px;
  cursor: pointer;
/*  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;*/
  border: 2px solid #fff;
  outline: 3px solid #fff;
  box-shadow: 2px 2px 7px 2px rgba(0,0,0,0.3);
  /*box-shadow: 0px 0px 0px 2px #fff inset;*/
}
.single-product-details .color-swatches a:hover {
	box-shadow: 2px 2px 7px 2px rgba(0,0,0,0.7);
}
.single-product-details .color-swatches li {
  display: inline-block;
}

.single-product-details .price h5 {
	color: #121212;
	font-size: 18px;
}

.single-product-details .price h4 {
	color: #f33f3f;
	font-size: 18px;
}

.single-product-details .price h4 span {
	color: #888;
	font-size: 15px;
	text-decoration: line-through;
}

.single-product-details .product-size {
	margin-top: 20px;
	display: flex;
	align-items: center;
}

	.single-product-details .product-size span {
		width: 100px;
		color: #000;
		font-size: 13px;
		font-weight: 600;
		display: inline-block;
	}


.dropdown-menu {
	padding: 0 8px 8px 8px ;
	left: auto;
	right: 0;
	min-width: 300px;
}


.cart-dropdown .media {
	position: relative;
	border-bottom: 1px solid #dedede;
	padding: 8px 0 15px 0;
}

.cart-dropdown .media .pull-right {
	padding-left: 15px;
}

.cart-dropdown img {
	width: 60px;
}

.cart-dropdown h4 {
	color: #000;
	font-weight: 300;
	font-size: 14px;
}

.cart-dropdown .cart-price {
  color: #7f7f7f;
  font-size: 12px;
  font-weight: 200;
}

.cart-dropdown .remove {
	margin-top: 8px;
	padding: 1px 6px;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #f7f8f9;
	color: #7f7f7f;
	font-size: 12px;
	cursor: pointer;
}

.cart-buttons {
  margin-top: 20px;
}

.cart-buttons li {
  display: inline-block;
  width: 49%;
}

.cart-buttons li a {
  display: block;
}

.cart-summary {
  margin-top: 10px;
  font-weight: 500;
  color: #000;
  font-size: 14px;
}

.cart-summary .total-price {
  float: right;
}

.btn-solid-border, .btn-small, .btn-solid-border2 .btn-solid-border3 {
	background: #6d49c8;
	color: #fff;
	display: inline-block;
	font-size: 14px;
	padding: 14px 35px;
	text-transform: uppercase;
	font-weight: 600;
	border-radius: 0;
}
.btn-solid-border:hover, .btn-small:hover {
  background: #a587ed;
  color: #fff;
}
.btn-small .btn2{
	display: flex;
}

.btn-solid-border2:hover .btn-solid-border3:hover {
	border: 1px solid #a587ed;
	background: #a587ed;
	color: #fff;
}
.btn-solid-border {
  border: 1px solid #6d49c8;
  background: #fff;
  color: #000;
}

.btn-solid-border2 {
	border: 1px solid #6d49c8;
	background: #fff;
	color: #6d49c8;
	height: 35px;
	padding: 6px 20px;
	text-align: justify;
}

.btn-solid-border3 {
	border: 1px solid #6d49c8;
	background: #fff;
	color: #6d49c8;
	height: 40px;
	width: 86px;
	padding: 6px 0 0 0 ;
	text-align: center;
}


/*about*/
.modal .modal-body .overlay {
	z-index: 50;
	background: rgba(255,255,255,.7);
	border-radius: .25rem;
}
/* Best Features */
.contact-features {
	padding-top: 100px;
	text-align: right;
	direction: rtl;
}

	.contact-features .section-heading {
		text-align: right;
		direction: rtl;
		margin-bottom: 10px;
		border-bottom: 1px solid #eee;
	}

		.contact-features .section-heading h2 {
			text-align: right;
			direction: rtl;
		}

	.contact-features .container .row {
		padding-bottom: 0px !important;
		border-bottom: none !important;
	}

	.contact-features p {
		padding-bottom: 25px;
	}


.best-features {
	padding-top: 80px;
	text-align: right;
	direction: rtl;
}

	.best-features section-heading {
		text-align: right;
		direction: rtl;
	}

	.best-features .section-heading h2 {
		text-align: right;
		direction: rtl;
	}

	.best-features .container .row {
		border-bottom: 1px solid #eee;
		/*	border-bottom: none!important;
*/ padding-bottom: 20px;
	}

	.best-features img {
		width: 100%;
		overflow: hidden;
	}

	.best-features h4 {
		font-size: 17px;
		color: #1a6692;
		margin-bottom: 20px;
	}

	.best-features ul.featured-list li {
		text-align: right;
		display: block;
		margin-bottom: 10px;
	}

	.best-features p {
		margin-bottom: 25px;
	}

	.best-features ul.featured-list li a {
		direction: rtl;
		font-size: 14px;
		color: #4a4a4a;
		font-weight: 300;
		transition: all .3s;
		position: relative;
		padding-left: 13px;
	}

		.best-features ul.featured-list li a:before {
			content: '';
			width: 5px;
			height: 5px;
			display: inline-block;
			background-color: #4a4a4a;
			position: absolute;
			left: 0;
			transition: all .3s;
			top: 8px;
		}

		.best-features ul.featured-list li a:hover {
			color: #f33f3f;
		}

			.best-features ul.featured-list li a:hover::before {
				background-color: #f33f3f;
			}

	.best-features .filled-button {
		margin-top: 20px;
	}

/* Best Features */


/*Pop*/
.about-item {
	cursor: pointer;
	color: white;
	background-color: white;
	text-align: center;
	font-weight: 700;
	padding: 30px 20px;
	transition: all 0.7s;
	box-shadow: 0px 0px 15px #c9c3d9;
	margin-top: 30px;
}

	.about-item:hover {
		background-color: #ebe3ff;
	}

	.about-item h2 {
		color: black;
		font-size: 20px;
		font-weight: 500;
	}

		.about-item h2 em {
			font-style: normal;
			color: #f33f3f;
		}

.popaboutus {
	z-index: 9999;
	direction: rtl;
	text-align: center;
	font-weight: normal;
	padding: 30px;
	display: none;
	background-color: #fff;
	position: fixed;
	top: 20%;
	left: 10.3%;
	width: 80%;
	max-height: 76%;
	height: min-content;
	box-shadow: 0px 0px 25px #7a7a7a;
	overflow-y: scroll;
}

	.popaboutus p {
		color: black;
		font-size: 20px;
		font-weight: 500;
	}

	.popaboutus span {
		margin-bottom: 10px;
		cursor: pointer;
		width: 220px;
		height: 120px;
		display: inline-block;
		line-height: 120px;
		outline-width: 350px;
	}

	.popaboutus li {
		margin-bottom: 10px;
		cursor: pointer;
		width: 44px;
		height: 44px;
		display: inline-block;
		line-height: 44px;
		color: white;
		background-color: #6d49c8;
		text-align: center;
	}

	.popaboutus li:hover {
		background-color: #a587ed;
		transition: all 0.5s;
	}


/* Social Icons */
/*#social_side_links {
	position: fixed;
	bottom: 200px;
	right: 0;
	padding: 0;
	list-style: none;
	z-index: 99;
}

	#social_side_links li a {
		display: block;
	}

		#social_side_links li a img {
			display: block;
			max-width: 40px;
			padding: 10px;
			-webkit-transition: background .2s ease-in-out;
			-moz-transition: background .2s ease-in-out;
			-o-transition: background .2s ease-in-out;
			transition: background .2s ease-in-out;
		}

		#social_side_links li a:hover img {
			background: rgba(0, 0, 0, .2);
		}
*/
.sbutton {
	display: block;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	text-align: center;
	color: white;
	margin: 20px auto 0;
	box-shadow: 0px 5px 11px -2px rgba(0, 0, 0, 0.18), 0px 4px 12px -7px rgba(0, 0, 0, 0.15);
	cursor: pointer;
	-webkit-transition: all .1s ease-out;
	transition: all .1s ease-out;
	position: fixed;
	bottom: 200px;
	right: 40px;
	list-style: none;
	z-index: 99;
}

	.sbutton > i {
		font-size: 38px;
		line-height: 60px;
		transition: all .2s ease-in-out;
		transition-delay: 2s;
	}

	.sbutton:active,
	.sbutton:focus,
	.sbutton:hover {
		box-shadow: 0 0 4px rgba(0, 0, 0, .14), 0 4px 8px rgba(0, 0, 0, .28);
	}

	.sbutton.whatsapp {
		background: #00e676;
	}

.popaboutus {
	z-index: 9999;
	direction: rtl;
	text-align: center;
	font-weight: normal;
	padding: 30px;
	display: none;
	background-color: #fff;
	position: fixed;
	top: 20%;
	left: 10.3%;
	width: 80%;
	max-height: 76%;
	height: min-content;
	box-shadow: 0px 0px 25px #7a7a7a;
	overflow-y: scroll;
}

	.popaboutus p {
		color: black;
		font-size: 20px;
		font-weight: 500;
	}

	.popaboutus span {
		margin-bottom: 10px;
		cursor: pointer;
		width: 220px;
		height: 120px;
		display: inline-block;
		line-height: 120px;
		outline-width: 350px;
	}

	.popaboutus li {
		margin-bottom: 10px;
		cursor: pointer;
		width: 44px;
		height: 44px;
		display: inline-block;
		line-height: 44px;
		color: white;
		background-color: #6d49c8;
		text-align: center;
	}

		.popaboutus li:hover {
			background-color: #a587ed;
			transition: all 0.5s;
		}


.modal-dialog {
	margin: 12vh auto 0px auto
}
/* Footer */
footer {
	direction: rtl;
	text-align: center;
}

	footer .inner-content {
		border-top: 1px solid #eee;
		margin-top: 30px;
		padding: 60px 0px;
	}

		footer .inner-content p {
			direction: ltr;
			text-transform: uppercase;
		}

			footer .inner-content p a {
				color: #f33f3f;
				margin-left: 3px;
			}

/* -----------------------------
:: 9.0 Quickview Modal Area CSS
----------------------------- */

#quickview button.close {
	box-shadow: none;
	position: absolute;
	left: 15px;
	text-align: left;
	top: 10px;
	z-index: 9;
}

.quickview_body {
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.quickview_pro_code {
	padding: 15px 0 15px 0;
	color: midnightblue
}

.quickview_pro_img {
/*	border: 1px solid #f6f6f6;*/
	position: relative;
	width: 100%;
	height: auto;
	z-index: 1;
}

	.quickview_pro_img .hover_img {
		left: 0;
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		position: absolute;
		top: -30px;
		-webkit-transition-duration: 500ms;
		transition-duration: 500ms;
	}

	.quickview_pro_img:hover .hover_img {
		top: 0;
		opacity: 1;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	}

.quickview_pro_img .carousel .carousel-indicators li img {
	height: auto;
	width: 60px;
}
.quickview_pro_img .carousel-indicators {
	margin: 10px 0 0;
	overflow: auto;
	position: static;
	text-align: left;
	white-space: nowrap;
	width: 100%;
	overflow: hidden;
}
.quickview_pro_img .carousel-indicators li {
	background-color: transparent;
	border-radius: 0;
	display: inline-block;
	height: auto;
	margin: 0 !important;
	width: auto;
	border: 1px solid #fff;
}

.quickview_pro_img .carousel-indicators li.active img {
	opacity: 1;
}

.quickview_pro_img .carousel-indicators li:hover img {
	opacity: 0.75;
}

.quickview_pro_img .carousel-indicators li img {
	display: block;
	opacity: 0.5;
}


.quickview_pro_des .title {
	text-transform: capitalize;
}

.quickview_pro_des {
	padding: 10px 0;
}
.quickview_pro_des .price h5 {
	color: #121212;
	font-size: 18px;
}

.quickview_pro_des .price h4 {
	color: #f33f3f;
	font-size: 18px;
}

.quickview_pro_des .price h4 span {
	color: #888;
	font-size: 15px;
	text-decoration: line-through;
}

.quickview_pro_des > p {
	font-size: 13px;
}

.quickview_pro_des > a {
	color: #19B5FE;
	font-size: 13px;
	text-decoration: underline;
}

.quickview_body .quantity > input,
.single-product-details .quantity > input {
	-moz-appearance: textfield;
	border: 1px solid #f6f6f6;
	height: 35px;
	text-align: center;
	width: 40px;
	font-size: 13px;
}

.quickview_body .quantity,
.single-product-details .quantity {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.quickview_body .cart,
.single-product-details .cart {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
}

.quickview_body .qty-plus,
.quickview_body .qty-minus,
.single-product-details .qty-plus,
.single-product-details .qty-minus {
	background-color: transparent;
	border: 1px solid #f6f6f6;
	color: #000;
	cursor: pointer;
	height: 35px;
	text-align: center;
	width: 22px;
}

.quickview_body .qty-plus,
.single-product-details .qty-plus {
	border-left: 0 solid transparent;
}

.quickview_body .qty-minus,
.single-product-details .qty-minus {
	border-right: 0 solid transparent;
}

.quickview_body .cart-submit,
.single-product-details .cart-submit {
	background-color: #6d49c8;
	border: medium none;
	color: #fff;
	cursor: pointer;
	font-size: 13px;
	height: 35px;
	margin: 0 20px 0 20px;
	width: 80px;
	-webkit-transition-duration: 500ms;
	transition-duration: 500ms;
}

.quickview_body .cart-submit:hover, 
.single-product-details .cart-submit:hover{
	background-color: #a587ed;
	color: #fff;
}

.quickview_body .size-check {
	cursor: pointer;
	color: white;
	background-color: #6d49c8;
	text-align: center;
	text-wrap: none;
	font-size: 13px;
	padding: 5px;
	transition: all 0.7s;
	box-shadow: 0px 0px 15px #e9e0ff;
}
.quickview_body .size-check:hover {
	background-color: #a587ed;
	color: white;
}

.quickview_body .qty-minus i,
.quickview_body .qty-plus i,
.single-product-details .qty-minus i,
.single-product-details .qty-plus i {
	color: #888;
	font-size: 10px;
	line-height: 33px;
}

.quickview_body .modal_pro_wishlist > a,
.quickview_body .modal_pro_compare > a,
.quickview_body .modal_pro_whatsapp > a,
.quickview_body .modal_pro_specialorder > a {
	background-color: #e91e63;
	color: #fff;
	display: block;
	height: 35px;
	margin: 0 0 0 20px;
	text-align: center;
	width: 35px;
	font-size: 22px;
}

	.quickview_body .modal_pro_wishlist > a:hover,
	.quickview_body .modal_pro_compare > a:hover,
	.quickview_body .modal_pro_whatsapp > a:hover {
		background-color: #00c766;
		color: #fff;
		cursor: pointer;
	}

	.quickview_body .modal_pro_specialorder > a:hover {
		background-color: #6d49c8;
		color: #fff;
	}

.quickview_body .modal_pro_compare > a {
	background-color: #00bcd4;
}

.quickview_body .modal_pro_whatsapp > a {
	background-color: #00e676;
}

.quickview_body .modal_pro_specialorder > a {
	background-color: #fff;
	color: #6d49c8;
	width: 140px;
	font-size: 16px;
	border: 1px solid #6d49c8;
	margin: 0;
}

	.quickview_body .modal_pro_wishlist > a i,
	.quickview_body .modal_pro_compare > a i,
	.quickview_body .modal_pro_whatsapp > a i,
	.quickview_body .modal_pro_specialorder > a i {
		line-height: 35px;
	}

.quickview_body .share_wf > p {
	font-size: 13px;
	margin-bottom: 5px;
	text-transform: capitalize;
}

.quickview_body .share_wf ._icon > a {
	color: #888;
	font-size: 14px;
	margin-right: 5px;
}

	.quickview_body .share_wf ._icon > a:hover {
		color: #000;
	}

.quickview_body .top_seller_product_rating > i {
	color: #ff9800;
	font-size: 13px;
}

/* quickview End */
/* Style the tab buttons */
.quickview_pro_tab {
	padding: 0 0 5px 0;
	margin: 0 0 15px 0;
	border-bottom: 1px solid #6d49c8;
}



/* Product Page */
#products {
	margin-top: 20px;
}

.products {
	padding-top: 80px;
}

.products .filters {
	text-align: center;
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
	margin-bottom: 40px;
}

.products .filters li {
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 700;
	color: #121212;
	display: inline-block;
	padding: 10px 10px 10px 10px;
	transition: all .3s;
	cursor: pointer;
}

.products .filters ul li a.active,
.products .filters ul li a:hover {
	color: #f33f3f;
}

.products ul.pages {
	padding-top: 10px;
	text-align: center;
}

.products ul.pages li {
	display: inline-block;
	margin: 0px 2px;
}

.products ul.pages li a {
	width: 44px;
	height: 44px;
	display: inline-block;
	line-height: 42px;
	border: 1px solid #ebe3ff;
	font-size: 15px;
	font-weight: 700;
	color: #121212;
	transition: all .3s;
}

.products ul.pages li a:hover,
.products ul.pages li.active a {
	background-color: #6d49c8;
	border-color: #a587ed;
	color: #fff;
}
/*New One*/
.product-category ul {
  padding-left: 15px;
}

.product-category ul li {
  margin-bottom: 4px;
}

.product-category ul li a {
  color: #666;
}

.product-category ul li a:hover {
  color: #000;
}

.panel {
	margin-bottom: 20px;
	background-color: #fff;
	border: 1px solid transparent;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 1px rgb(0 0 0 / 5%);
	box-shadow: 0 1px 1px rgb(0 0 0 / 5%);
}
.panel-body {
	padding: 15px;
}
.panel-group .panel + .panel {
	margin-top: 5px;
}
.panel-group .panel {
	margin-bottom: 0;
	border-radius: 4px;
}
.panel-default {
	border-color: #ddd;
}
.panel-default>.panel-heading {
    color: #333;
    background-color: #f5f5f5;
    border-color: #ddd;
}
.panel-title {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 16px;
	color: inherit;
}
.panel-group .panel-heading + .panel-collapse > .list-group, .panel-group .panel-heading + .panel-collapse > .panel-body {
	border-top: 1px solid #ddd;
}
.widget {
	margin-bottom: 1px;
	padding-bottom: 30px;
}

.widget .widget-title {
  margin: 0;
  padding-bottom: 15px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

.commonAccordion .panel {
  border-radius: 0;
  box-shadow: none;
}

.commonAccordion .panel .panel-heading {
  background: transparent;
  padding: 0;
}

.commonAccordion .panel .panel-title {
  position: relative;
}

.commonAccordion .panel .panel-title a {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  padding: 10px 10px;
}

.commonAccordion .panel .panel-title a:before {
  color: #555;
  content: "-";
  position: absolute;
  left: 25px;
}

.commonAccordion .panel .panel-title a.collapsed:before {
  content: "+";
}




.accordion {
	margin-left: 30px;
}

.accordion a {
	cursor: pointer;
	font-size: 17px;
	color: #1a6692 !important;
	margin-bottom: 20px;
	transition: all .3s;
}

.accordion a:hover {
	color: #f33f3f !important;
}

.accordion a.active {
	color: #f33f3f !important;
}

.accordion li .content {
	display: none;
	margin-top: 10px;
}

.accordion li:first-child {
	border-top: 1px solid #eee;
}

.accordion li {
	border-bottom: 1px solid #eee;
	padding: 15px 0px;
}

/*parallax*/
.parallax {
	position: fixed;
	bottom: 0;
	right: 0;
	height: auto;
	width: auto;
	min-height: 100%;
	min-width: 100%;
	z-index: -9999;
}
.allother {
	height: auto;
	background:#fff;
	min-height: 100%;
	min-width: 100%;
	background-size: cover;
	margin-top: 50%;
}


/* -----------------------
:: 19.0 Checkout Area CSS
----------------------- */

.checkout_details_area form label {
    font-size: 12px;
    text-transform: uppercase;
}

.checkout_details_area form label span {
    color: #ff084e;
}

.checkout_details_area form .form-control,
.checkout_details_area form .custom-select {
    height: 52px;
    border: none;
    background-color: #f4f2f8;
    border-radius: 0;
}

.order-details-confirmation {
    width: 100%;
    border: 2px solid #ebebeb;
    padding: 40px;
}

.order-details-confirmation .order-details-form li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 12px;
    text-transform: uppercase;
    padding: 30px 0;
    border-bottom: 2px solid #ebebeb;
}

.order-details-confirmation .card-header h6 a {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
}

.order-details-confirmation .card-header h6 a i {
    color: #9f9f9f;
}

.order-details-confirmation .card {
    border: none;
}

.order-details-confirmation .card-header {
    background-color: transparent;
    border-bottom: none;
}

.order-details-confirmation .card-body p {
    font-size: 12px;
    line-height: 2;
    color: #9f9f9f;
}
.section_padding_50 {
	padding: 50px 0;
}
.cart-page-heading {
	margin-bottom: 30px;
}
.coupon-code-area form {
    position: relative;
    z-index: 1;
}

.coupon-code-area form > input {
    width: 100%;
    height: 52px;
    border: none;
    background-color: #f4f2f8;
    padding: 0 30px;
    font-size: 12px;
}

.coupon-code-area form > button {
    width: 120px;
    height: 52px;
    border: none;
    text-transform: uppercase;
    background-color: #ff084e;
    padding: 0 30px;
    font-size: 14px;
    position: absolute;
    top: 0;
    color: #fff;
    font-weight: 700;
    right: 0;
}
.ED-checkout-btn {
	width: 100%;
	height: 60px;
	background-color: #6d49c8;
	border-radius: 0;
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	line-height: 60px;
	padding: 0;
}


	.ED-checkout-btn:hover,
	.ED-checkout-btn:focus {
		background-color: #a587ed;
		color: #fff;
		font-weight: 700;
	}


/* Responsive Style */
@media (max-width: 480px) {
	.dropdown-slide .dropdown-menu {
		-webkit-transform: none;
		transform: none;
	}

	.dropdown-menu {
		right: 0;
		left: 0;
		max-width: 100%;
	}
	#my-video {
		margin-top:30px;
	}
}

@media (max-width: 576px) {
	.welcome-features h2 {
		font-size: 16px !important;
	}
	.navbar .navbar-brand {
		margin-left: -20px !important;
		left: 0px;
		top: 32px;
	}

	.navbar .navbar-shop {
		right: 100px !important;
		cursor: pointer;
	}

	.my-search-form {
		padding-left: 15px;
		padding-right: 15px;
		width: 100%;
		justify-content: center;
	}

	.my-search-input {
		width: 100%;
		max-width: 360px;
	}
	.best-features h2 {
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	.banner {
		padding-top: 70px;
	}

		.banner .text-content {
			width: 90%;
			margin-left: 5%;
		}

			.banner .text-content h4 {
				font-size: 22px;
			}

			.banner .text-content h2 {
				font-size: 36px;
				letter-spacing: 0.5px;
			}

	.page-heading .text-content h4 {
		font-size: 22px;
	}

	.page-heading .text-content h2 {
		font-size: 36px;
		letter-spacing: 0.5px;
	}

	.navbar .navbar-brand {
		margin-left: -20px;
	}

	.latest-products .section-heading a {
		float: none;
		margin-top: 0px;
		display: block;
		margin-bottom: 20px;
	}

	.product-item .down-content h4 {
		margin-bottom: 20px !important;
	}

	.product-item .down-content h6 {
		text-align: left;
		right: 30px !important;
		margin-bottom: 20px;
	}

	.product-item .down-content span {
		position: absolute !important;
		right: 30px !important;
		bottom: 30px !important;
	}

	.best-features .left-content {
		margin-bottom: 30px;
	}

	.best-features h2 {
		font-size: 20px;
	}
	.welcome-features h2 {
		font-size: 20px !important;
	}

	.contact-features h2 {
		font-size: 22px;
	}

	.contact-features h4 {
		font-size: 18px;
	}

	.about-features img {
		margin-bottom: 30px;
	}

	.popaboutus span {
		margin-bottom: 5px;
		width: 165px;
		height: 90px;
		line-height: 90px;
		outline-width: 262px;
	}

	.popaboutus p {
		color: black;
		font-size: 14px;
		font-weight: normal;
	}

	.popaboutus li {
		margin-bottom: 5px;
	}
}

@media (max-width: 992px) {

	.navbar:after {
		display: none;
	}

	#navbarResponsive {
		z-index: 99999;
		position: absolute;
		top: 80px;
		left: 0;
		width: 100%;
		text-align: center;
		background-color: #fff;
		box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
	}

	.navbar .navbar-nav .nav-item {
		border-bottom: 1px solid #eee;
	}

		.navbar .navbar-nav .nav-item:last-child {
			border-bottom: none;
		}

	.navbar .navbar-nav a.nav-link {
		padding: 15px 0px;
		color: #1e1e1e !important;
	}

	.navbar .navbar-nav .nav-link:hover,
	.navbar .navbar-nav .active > .nav-link,
	.navbar .navbar-nav .nav-link.active,
	.navbar .navbar-nav .nav-link.show,
	.navbar .navbar-nav .show > .nav-link {
		color: #f33f3f !important;
		border-bottom: none !important;
		padding-bottom: 15px;
	}

	.navbar .navbar-shop {
		position: absolute;
		right: 120px;
		top: 20px;
	}

	.navbar .navbar-brand {
		position: absolute;
		margin: -12px 0px 0px 0px;
		left: 30px;
		top: 32px;
	}

	.product-item .down-content h4 {
		margin-bottom: 20px;
	}

	.product-item .down-content h6 {
		text-align: left;
		right: 0;
		margin-bottom: 20px;
	}

	.product-item .down-content span {
		position: relative;
		right: 0;
		bottom: 0;
	}

	.best-features h2 {
		font-size: 22px;
	}

	.welcome-features h2 {
		font-size: 22px;
	}
}
