
@import 'https://fonts.googleapis.com/css?family=Playball';
@import 'https://fonts.googleapis.com/css?family=Vidaloka';
@import 'https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i';
@import 'https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i';
/*----bootstrap css ----- */
@import url('bootstrap.css');
@import url(bootstrap-select.min.css);
/*----font awesome -------*/
@import url('../fonts/font-awesome.min.css');
@import url('../fonts/icomoon.css');
/*----owl-carousel css----*/
@import url('owl.carousel.css');
/*----jquery ui css-------*/
@import url('polyglot-language-switcher.css');
@import url('jquery-ui.css');
/*-------- responsive menu -----------*/
@import url('menuzord.css');
@import url('menuzord-animations.css');
/*-------fancy box --------*/
@import url('jquery.fancybox.css');
/*-------- animated css ------*/
@import url('animate.css');
/*----revolution-slider---*/
@import url('../vendor/revolution/settings.css');
@import url('../vendor/revolution/layers.css');
@import url('../vendor/revolution/navigation.css');



:root{
  --main-color: #6e8bc6;
}

body {
  font-family:  'Cairo', sans-serif ;
  color:#272727;
  font-size: 16px;
  /*background-color: #f8f9fa!important*/
}

h1,h2,h3,h4,h5,h6,p,ul { margin:0;padding: 0;}
h1,h2,h3,h4,h5 {
  font-family: 'Cairo', sans-serif ;
} 
h1 {font-size: 60px;}
h2 {font-size: 40px;}
h3 {font-size: 30px;}
h4 {font-size: 24px;}
h5 {font-size: 20px;}
h6 {font-size: 18px;}
ul {list-style-type: none;}
p {font-family: 'Cairo', sans-serif; font-size: 14px; color:#9c9c9c; line-height: 26px; font-weight: 400;}
a {text-decoration: none; display: inline-block; color:#9c9c9c; outline: none; font-family: 'Cairo', sans-serif !important;}
a:hover,a:focus,a:visited {text-decoration: none; outline: none; font-family: 'Cairo', sans-serif !important;}
img {max-width: 100%; display: block;}
span{}

button {border:none; outline:none; box-shadow: none; display: block; padding: 0; background: transparent;}
input,textarea {display: block; outline: none; box-shadow: none;-webkit-transition: all 0.3s ease-in-out;transition: all 0.3s ease-in-out;}


#masthead{
      position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.product-inner .product-thumb .thumb-link{
  height: 225px;
    background-size: cover;
}

.bgc{
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}



.h-100{
  height: 100%
}

.bgi{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}


#banner{
  height: 500px;
  margin-top: 85px;
}

#banner .backLayer{
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1
}

.backLayer-item{
  width: calc(100% / 3);
  height: 100%;
  background-repeat: no-repeat;
  background-size: 400%;
}


.backLayer-item:nth-of-type(1){
  background-position: 0 0;
}
.backLayer-item:nth-of-type(2){
  background-position: calc(100% / 3) 0;
}
.backLayer-item:nth-of-type(3){
  background-position: calc((100% / 3) * 2) 0;
}


#banner .carousel-item .carousel-content{
  animation: __roll 3s ease-out infinite alternate 2s;
}
#banner .carousel-item::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #00000040;
    z-index: -1;
}

#banner .carousel-item .title{
  padding: 3px;
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  position: relative;
  opacity: 0;
  transform: scale(2);
  animation: __zoomOut .7s cubic-bezier(0, 0, 0.21, 0.88) forwards 1s;
}

#banner .carousel-item .title::before, #banner .carousel-item .title::after{
  content: '';
  display: block;
  width: 14%;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  bottom: 0;
}

#banner .carousel-item .title::before{
  left: 0;
}
#banner .carousel-item .title::after{
  right: 0;
}

#banner .carousel-item .title span{
  display: block;
  font-size: 7rem;
  color: #ffffff;
  font-family: 'Kufam', cursive;
  /*background-color: #90c8eb;*/
  padding: .5rem 3rem;
}

#banner .carousel-item .description{
  position: absolute;
  bottom: -40%;
  opacity: 0;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  animation: __fadeInUp .7s cubic-bezier(0, 0, 0.21, 0.88) forwards 2s;
}

#banner .carousel-item .description span{
  color: #ffffff;
}


@media (max-width: 992px){
  #banner{
    height: 160px;
    margin-top: 65px !important;
  }
}

.carousel-indicators li{
  border-radius: 0
}

.__slideDown{
  transform: translateY(-100%);
  animation: __slideDown ease-out .6s forwards;
}

@keyframes __fadeInUp{
  from{
    opacity: 0;
    bottom: -40%;
  }
  to{
    opacity: 1;
    bottom: -6px;
  }
}

@keyframes __zoomOut{
  from{
    opacity: 0;
    transform: scale(2);
  }
  to{
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes __roll{
  25%{
    transform: translate(2%, 2%);
  }
  50%{
    transform: translate(0, 4%);
  }
  75%{
    transform: translate(-2%, 0);
  }
  100%{
    transform: translate(0, 0);
  }
}

@keyframes __slideDown{
  from{
    transform: translateY(-100%);
    filter: blur(7px);
  }
  to{
    transform: translateY(0);
    filter: blur(0px);
  }
}

@media only screen and (max-width: 1024px){
  #banner .carousel-item .title span {
    font-size: 4rem;
  }
  #banner .carousel-item .title::before, #banner .carousel-item .title::after{
    width: 7%
  }
}


.clear_fix { clear:both;}
.clear_fix:after {
  display: table;
  content: '';
  clear: both;
}
.tran3s {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.center {
  text-align: center;
}
.tran7s {
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}
.theme_title {position: relative; padding-bottom: 26px; margin-top:-6px;text-transform: uppercase;}
/*.theme_title:after {
position: absolute;
    content: "";
    left: 0px;
    top: 50px;
    width: 100%;
    height: 10px;
    background: url(../images/logo/sep.png) center left no-repeat;
}*/
.theme_title {position: relative; padding-bottom: 26px; margin-top:-6px;text-transform: uppercase;}
.customth:after {
position: absolute;
    content: "";
    left: 92%;
    top: 50px;
    width: 100%;
    height: 10px;
    background: url(../images/logo/sep.png) center left no-repeat;
}
.theam3:after {
    position: absolute;
    content: "";
    left: 0;
    top: 50px;
    width: 100%;
    height: 10px;
    background: url(../images/logo/sep.png) center left no-repeat;
}
body.ar .theam3:after{
    left: 83%;
}
  .customlogo{
	height:40px;
  }

.theme_title.center:after {
  background:url(../images/logo/sep.png) center center no-repeat;
}
.theme_title h2 {
  font-size: 30px;
  font-weight: 700;
  
}
body.ar .theme_title h2{
    text-align: right;
}

.theme_title h3 {
  font-weight: 700;
}
body.ar .theme_title h3{
    text-align: right;
}
.theme_inner_title h4 {
  font-size: 24px;
  color: #333;
  font-weight: 700;
  text-transform: uppercase;
}

.theme_title p {
  font-style: italic;
  font-size: 18px;
  margin-top: 50px;
}
.theme_title_center {text-align: center;}
.theme_title_center>span {
  display: block;
  width:70px;
  height:2px;
  margin:23px auto 0 auto;
}
.img_holder {position: relative;}

.float_left {
  float:left;
}
.float_right {
  float:right;
}
.main_page {overflow-x:hidden;}
img {
	max-width: 100%;
	height: auto;
}


/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed; }

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both; }

/* Make sure select elements fit in widgets. */
.widget select {
  max-width: 100%; }
.sticky {
  display: block; }
.updated:not(.published) {
  display: none; }
.single .byline,
.group-blog .byline {
  display: inline; }
.has-large-font-size {
  line-height: 1.3em; }
.page-links {
  clear: both;
  margin: 30px 0 10px 0; }
  .page-links > span:not(.page-links-title), .page-links a > span {
    padding: 0 5px;
    margin: 0 2px;
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    border: 1px solid #ddd;
    line-height: 27px; }

.single .page-links, .single .entry_footer, .page .page-links, .page .entry_footer {
  width: 100%;
  float: left; }

/*--------------------------------------------------------------
## Asides
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word; }

.bypostauthor {
  display: block; }

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none; }

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block; }

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0; }

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%; }

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%; }

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.wp-caption .wp-caption-text {
  margin: 0.5075em 0 1em 0; }

.wp-caption-text {
  text-align: center; }


table,
th,
td {
  border: 1px solid rgba(0, 0, 0, 0.1); }

th, td {
  padding: 4px 6px; }

table {
  border-collapse: separate;
  border-spacing: 0;
  border-width: 1px 0 0 1px;
  margin-bottom: 24px;
  width: 100%; }

caption,
th,
td {
  font-weight: normal;
  text-align: left; }

th {
  border-width: 0 1px 1px 0;
  font-weight: 700; }

td {
  border-width: 0 1px 1px 0; }

dd {
  margin-bottom: 10px; }
input[type=radio], input[type=checkbox],
.woocommerce .woocommerce-account-fields .woocommerce-validated span:before {
  border: 1px solid #b4b9be;
  background: #fff;
  color: #555;
  clear: none;
  cursor: pointer;
  display: inline-block;
  line-height: 0;
  height: 16px !important;
  margin: -4px 4px 0 0;
  outline: 0;
  padding: 0 !important;
  text-align: center;
  vertical-align: middle;
  width: 16px !important;
  min-width: 16px !important;
  -webkit-appearance: none;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  -webkit-transition: .05s border-color ease-in-out;
  transition: .05s border-color ease-in-out; }
  input[type=radio]:focus, input[type=radio]:active, input[type=checkbox]:focus, input[type=checkbox]:active,
  .woocommerce .woocommerce-account-fields .woocommerce-validated span:before:focus,
  .woocommerce .woocommerce-account-fields .woocommerce-validated span:before:active {
    outline: none; }

input[type=radio]:checked + label:before {
  color: #82878c; }

input[type=radio] {
  -webkit-border-radius: 50% !important;
  border-radius: 50% !important;
  margin-right: 4px !important;
  line-height: 10px; }

.woocommerce .woocommerce-account-fields .woocommerce-validated {
  padding: 0; }
  .woocommerce .woocommerce-account-fields .woocommerce-validated .woocommerce-form__label-for-checkbox span:before {
    background: #fff !important;
    border-radius: 0;
    box-shadow: none;
    margin: 0; }
  .woocommerce .woocommerce-account-fields .woocommerce-validated .woocommerce-form__label-for-checkbox span:after {
    width: 10px;
    height: 5px;
    left: 4px;
    top: 5px; }
  .woocommerce .woocommerce-account-fields .woocommerce-validated input[type=checkbox]:checked + span:after {
    border-color: #1e8cbe !important; }

input[type=radio]:checked:before, input[type=checkbox]:checked:before {
  float: left;
  display: inline-block;
  vertical-align: middle;
  width: 16px !important;
  font: 400 21px/1 FontAwesome;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

input[type=checkbox]:checked:before {
  content: "\f00c";
  margin: 1px 0 0 0;
  color: #1e8cbe;
  font-size: 12px; }

input[type=radio]:checked:before {
  content: "\f111";
  text-indent: -9999px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  font-size: 24px;
  width: 6px !important;
  height: 6px !important;
  margin: 4px;
  line-height: 16px;
  background-color: #1e8cbe; }

@-moz-document url-prefix() {
  .form-table input.tog, input[type=radio], input[type=checkbox] {
    margin-bottom: -1px; } }
.single-blog-content article ul li .children {
  margin-bottom: 0; }

.single-blog-content article ol li ul {
  margin-bottom: 0; }

.single-blog-content article ul li ul {
  margin-bottom: 0; }

.single-blog-content .wp-block-latest-comments {
  margin-bottom: 0; }

.single-blog-content .wp-block-image .alignright.is-resized {
  margin-bottom: 1em; }

ul li {
  list-style: none; }

a:hover {
  text-decoration: none !important; }
 * Deprecated
 * Vendor prefix no longer required.
 */
/* 2. Extend ------------------------------------------------------------ */
display-flex, .header-hp-1 .header-right, .header-hp-1 .header-left, .woocommerce .shop-single-v1-section .summary .woocommerce-product-rating, .single-blog-content .post-content .post-image, .single-blog-content .related-posts, .deal-hp-2 .deal-content .wrap-countdown {
  display: flex;
  display: -webkit-flex; }

special-heading, .banner-section .banner-layout-2 .text-1, .banner-section .banner-layout-4 .text-1, .banner-section .banner-layout-5 .text-1, .wpb_heading.wpb_progress_bar_heading {
  text-align: center;
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 63px; }

/* 3. Global ------------------------------------------------------------ */
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box; }

a {
  text-decoration: none; }
  a:hover {
    text-decoration: none;
    color: #111; }
  a:focus, a:active {
    outline: 0; }

a img {
  border: none; }

input[type=submit] {
  transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s; }

img {
  max-width: 100%;
  height: auto; }

iframe {
  border: none;
  vertical-align: top; }

.au-btn, .woocommerce a.button.alt, .woocommerce .button.wc-backward,
.woocommerce button.button, .woocommerce input.button, .sc-product-showcase .inner-item-product a.button,
.woocommerce .button.wc-forward, .woocommerce .woocommerce-info a.button {
  transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  border: 1px solid #ebebeb;
  display: inline-block;
  line-height: 1;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  text-align: center;
  color: #111;
  background: transparent;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  z-index: 9;
  border-radius: 0; }
  .au-btn:hover, .woocommerce a.button.alt:hover, .woocommerce .button.wc-backward:hover,
  .woocommerce button.button:hover, .woocommerce input.button:hover, .sc-product-showcase .inner-item-product a.button:hover,
  .woocommerce .button.wc-forward:hover, .woocommerce .woocommerce-info a.button:hover {
    color: #fff;
    text-decoration: none;
    background: #111; }

#add_payment_method .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button,
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt,
.woocommerce button.button.alt, .woocommerce input.button.alt {
  padding: 12px 30px;
  color: #111;
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 500; }

.woocommerce button.button, .woocommerce a.button.alt, .woocommerce .button.wc-forward, .woocommerce .button.wc-backward, .woocommerce .woocommerce-info a.button {
  padding: 12px 30px; }
.woocommerce #respond input#submit.disabled, .woocommerce #respond input#submit:disabled[disabled], .woocommerce #respond input#submit:disabled, .woocommerce button.button.disabled, .woocommerce button.button:disabled[disabled], .woocommerce button.button:disabled, .woocommerce input.button.disabled, .woocommerce input.button:disabled[disabled], .woocommerce input.button:disabled {
  padding: 12px 30px; }

.woocommerce #review_form #respond .form-submit input {
  transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  border: 1px solid #111;
  display: inline-block;
  line-height: 1;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  text-align: center;
  color: #111;
  background: transparent;
  font-weight: 400;
  position: relative;
  padding: 15px 35px;
  cursor: pointer;
  border-radius: 0; }
  .woocommerce #review_form #respond .form-submit input:hover {
    color: #fff;
    background: #111; }
.btn-small {
  padding: 17px 24.5px; }

.btn-medium {
  padding: 22.5px 53.5px; }

.btn-large {
  padding: 24px 72px; }

.more-link {
  font-size: 14px;
  font-weight: 700;
  color: #111; }
  .more-link:hover {
    color: #dabc95; }

.section-box {
  padding-top: 150px;
  padding-bottom: 120px; }

h3.special-heading {
  margin-bottom: 40px;
  padding-bottom: 15px; }

.special-heading.text-left {
  text-align: left;
  padding-bottom: 9px;
  margin-bottom: 40px; }
  .special-heading.text-left:before {
    left: 0;
    margin-left: 0; }

.onnew,
.onsale {
  color: #fff;
  font-weight: 500;
  /*letter-spacing: 2px;*/
}
  .onnew:hover,
  .onsale:hover {
    color: #fff; }

.onnew {
  background: #88cce2;
  padding: 0 7.5px; }
  .onnew:hover {
    background: #5bc1e3; }

.onsale {
  background: #eba6aa;
  padding: 0 6.5px; }
  .onsale:hover {
    background: var(--main-color);
  }

.overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.5s ease 0.1s;
  -moz-transition: all 0.5s ease 0.1s;
  -webkit-transition: all 0.5s ease 0.1s;
  -o-transition: all 0.5s ease 0.1s;
  -ms-transition: all 0.5s ease 0.1s;
  z-index: 9; }

.breadcrumb-section,
.breadcrumb-menu-section {
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; }

.breadcrumb-section {
  color: #111;
  background-color: #e5e5e5; }
  .breadcrumb-section.section-box {
    padding-top: 100px;
    padding-bottom: 100px;
    color: #ffffff;
    background-color: #111111;
    background-image: url(images/breadcrumshop.jpg); }
  .breadcrumb-section .heading_primary {
    font-size: 3em;
    margin-bottom: 10px;
    text-align: left;
    color: inherit; }
    .breadcrumb-section .heading_primary:empty {
      display: none; }
  .breadcrumb-section .phys-breadcrumb {
    overflow: hidden;
    list-style: none;
    margin: 0; }
    .breadcrumb-section .phys-breadcrumb li {
      list-style: none;
      float: left;
      font-size: 18px;
      text-transform: capitalize; }
      .breadcrumb-section .phys-breadcrumb li:after {
        content: "/";
        margin: 0 11px; }
      .breadcrumb-section .phys-breadcrumb li:last-child:after {
        display: none; }
    .breadcrumb-section .phys-breadcrumb a {
      color: inherit;
      font-size: 18px;
      text-transform: capitalize; }
      .breadcrumb-section .phys-breadcrumb a:hover {
        color: #007bff; }
  @media only screen and (max-width: 992px) {
    .breadcrumb-section.section-box {
      padding-top: 80px;
      padding-bottom: 80px; }
    .breadcrumb-section .heading_primary {
      font-size: 2.2em; }
    .breadcrumb-section .phys-breadcrumb {
      font-size: 1.2em; } }
  @media only screen and (max-width: 768px) {
    .breadcrumb-section.section-box {
      padding-top: 50px;
      padding-bottom: 50px; }
    .breadcrumb-section .heading_primary {
      font-size: 2em; }
    .breadcrumb-section .phys-breadcrumb {
      font-size: 1em; } }

.home .breadcrumb-section .heading_primary {
  padding-bottom: 0; }
/* Back To Top Button */
.footer__arrow-top {
  color: #ffffff !important;
  position: fixed;
  bottom: -120px;
  right: 20px;
  text-align: center;
  transform: rotate(-90deg);
  z-index: 999;
  height: 30px;
  width: 60px;
  font-size: 15px;
  line-height: 30px;
  border: 1px solid;
  cursor: pointer;
  transition: background-color 0.3s linear;
  -moz-transition: background-color 0.3s linear;
  -webkit-transition: background-color 0.3s linear;
  -o-transition: background-color 0.3s linear;
  -ms-transition: background-color 0.3s linear; }

/* End Back To Top Button */
/*Form*/
input,
select,
textarea,
.select-selected {
  width: 100%;
  padding: 4px 15px;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  color: #666; }

input:focus, select:focus, textarea:focus {
  outline: none;
  -moz-outline: none;
  -webkit-outline: none;
  -o-outline: none;
  -ms-outline: none;
  box-shadow: none !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -o-box-shadow: none !important;
  -ms-box-shadow: none !important; }

input::-webkit-input-placeholder {
  color: #999; }
input::-moz-placeholder {
  color: #999; }
input:-ms-input-placeholder {
  color: #999; }
input:-moz-placeholder {
  color: #999; }

input[type="submit"] {
  width: auto; }

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  display: none; }

textarea::-webkit-input-placeholder {
  color: #999; }
textarea::-moz-placeholder {
  color: #999; }
textarea:-ms-input-placeholder {
  color: #999; }
textarea:-moz-placeholder {
  color: #999; }

/*Images Loader*/
.images-preloader {
  position: fixed;
  z-index: 100001;
  background-color: #eee;
  width: 100%;
  height: 100%; }

#preloader_1 {
  position: relative; }

.rectangle-bounce {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -15px;
  margin-top: -10px; }

#preloader_1 span {
  display: block;
  bottom: 0px;
  width: 9px;
  height: 5px;
  background: #111;
  position: absolute;
  animation: preloader_1 1.5s infinite ease-in-out;
  -moz-animation: preloader_1 1.5s infinite ease-in-out;
  -webkit-animation: preloader_1 1.5s infinite ease-in-out;
  -o-animation: preloader_1 1.5s infinite ease-in-out;
  -ms-animation: preloader_1 1.5s infinite ease-in-out; }

#preloader_1 span:nth-child(2) {
  left: 11px;
  animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
  -ms-animation-delay: 0.2s; }

#preloader_1 span:nth-child(3) {
  left: 22px;
  animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
  -o-animation-delay: 0.4s;
  -ms-animation-delay: 0.4s; }

#preloader_1 span:nth-child(4) {
  left: 33px;
  animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s; }

#preloader_1 span:nth-child(5) {
  left: 44px;
  animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
  -o-animation-delay: 0.8s;
  -ms-animation-delay: 0.8s; }

@keyframes preloader_1 {
  0% {
    height: 5px;
    transform: translateY(0px);
    -moz-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -o-transform: translateY(0px);
    -ms-transform: translateY(0px);
    background: #111; }
  25% {
    height: 30px;
    transform: translateY(15px);
    -moz-transform: translateY(15px);
    -webkit-transform: translateY(15px);
    -o-transform: translateY(15px);
    -ms-transform: translateY(15px);
    background: #111; }
  50% {
    height: 5px;
    transform: translateY(0px);
    -moz-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -o-transform: translateY(0px);
    -ms-transform: translateY(0px);
    background: #111; }
  100% {
    height: 5px;
    transform: translateY(0px);
    -moz-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -o-transform: translateY(0px);
    -ms-transform: translateY(0px);
    background: #111; } }
.wrapper-view-move {
  position: relative; }

.wrapper-view-move .page-load-status {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 1000;
  display: none; }
  .wrapper-view-move .page-load-status .loading {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -15px;
    margin-top: -10px; }
  .wrapper-view-move .page-load-status span:before, .wrapper-view-move .page-load-status span:after {
    content: "";
    display: block;
    bottom: 0px;
    width: 9px;
    height: 5px;
    background: #111;
    position: absolute;
    animation: preloader_1 1.5s infinite ease-in-out;
    -moz-animation: preloader_1 1.5s infinite ease-in-out;
    -webkit-animation: preloader_1 1.5s infinite ease-in-out;
    -o-animation: preloader_1 1.5s infinite ease-in-out;
    -ms-animation: preloader_1 1.5s infinite ease-in-out; }
  .wrapper-view-move .page-load-status span:nth-child(1):after {
    left: 11px;
    animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
    -o-animation-delay: 0.2s;
    -ms-animation-delay: 0.2s; }
  .wrapper-view-move .page-load-status span:nth-child(2):before {
    left: 22px;
    animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    -webkit-animation-delay: 0.4s;
    -o-animation-delay: 0.4s;
    -ms-animation-delay: 0.4s; }
  .wrapper-view-move .page-load-status span:nth-child(2):after {
    left: 33px;
    animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    -webkit-animation-delay: 0.6s;
    -o-animation-delay: 0.6s;
    -ms-animation-delay: 0.6s; }
  .wrapper-view-move .page-load-status span:nth-child(3):before {
    left: 44px;
    animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    -webkit-animation-delay: 0.8s;
    -o-animation-delay: 0.8s;
    -ms-animation-delay: 0.8s; }

/* 4. Header ------------------------------------------------------------ */
/* Header Desktop hp-1 hp-2 hp-3 hp-6*/
.header-hp-1 .logo{
  transform: translateY(5px)
}
.header-hp-1 .menu-mobile-effect {
  float: none;
  display: none;
  cursor: pointer;
  z-index: 1;
  vertical-align: middle;
  margin: 0;
  flex-wrap: wrap;
  align-items: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -ms-align-items: center; }
.header-hp-1 .hamburger {
  background: none;
  border: none;
  float: right; }
  .header-hp-1 .hamburger:focus {
    outline: none; }
  .header-hp-1 .hamburger .hamburger-box {
    position: relative;
    display: inline-block;
    width: 26px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer; }
.header-hp-1 .hamburger--spin .hamburger-inner {
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: .3s;
  position: absolute;
  width: 26px;
  height: 2px;
  transition-property: transform;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  background-color: var(--main-color);
  top: 50%;
  display: block;
  margin-top: -2px; }
  .header-hp-1 .hamburger--spin .hamburger-inner:before, .header-hp-1 .hamburger--spin .hamburger-inner:after {
    position: absolute;
    width: 26px;
    height: 2px;
    transition-property: transform;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    background-color: var(--main-color);
    content: '';
    display: block; }
  .header-hp-1 .hamburger--spin .hamburger-inner:before {
    top: -8px; }
  .header-hp-1 .hamburger--spin .hamburger-inner:after {
    top: 8px; }
.header-hp-1 .hamburger--spin.is-active .hamburger-inner {
  transition-delay: 0.14s;
  -moz-transition-delay: 0.14s;
  -webkit-transition-delay: 0.14s;
  -o-transition-delay: 0.14s;
  -ms-transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.315, 1);
  transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  -ms-transform: rotate(225deg); }
  .header-hp-1 .hamburger--spin.is-active .hamburger-inner:before {
    top: 0;
    transition: top 0.1s ease-out, opacity 0.1s ease-out 0.14s;
    -moz-transition: top 0.1s ease-out, opacity 0.1s ease-out 0.14s;
    -webkit-transition: top 0.1s ease-out, opacity 0.1s ease-out 0.14s;
    -o-transition: top 0.1s ease-out, opacity 0.1s ease-out 0.14s;
    -ms-transition: top 0.1s ease-out, opacity 0.1s ease-out 0.14s;
    opacity: 0; }
  .header-hp-1 .hamburger--spin.is-active .hamburger-inner:after {
    top: 0;
    bottom: 0;
    transition: bottom 0.1s ease-out, transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s;
    -moz-transition: bottom 0.1s ease-out, transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s;
    -webkit-transition: bottom 0.1s ease-out, transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s;
    -o-transition: bottom 0.1s ease-out, transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s;
    -ms-transition: bottom 0.1s ease-out, transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s;
    transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg); }
.header-hp-1 .header-right, .header-hp-1 .header-left {
  align-items: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -ms-align-items: center; }
  .header-hp-1 .header-right .search-btn-wrap .search-btn, .header-hp-1 .header-left .search-btn-wrap .search-btn {
    outline: none;
    -moz-outline: none;
    -webkit-outline: none;
    -o-outline: none;
    -ms-outline: none;
    cursor: pointer;
    background: transparent;
    border: none; }
  .header-hp-1 .header-right .canvas-btn-wrap .canvas-btn, .header-hp-1 .header-left .canvas-btn-wrap .canvas-btn {
    cursor: pointer;
    border: none;
    background: transparent;
    outline: none;
    -moz-outline: none;
    -webkit-outline: none;
    -o-outline: none;
    -ms-outline: none;
    margin-top: -5px;
    margin-right: -6px; }
  .header-hp-1 .header-right .widget, .header-hp-1 .header-left .widget {
    margin: 0; }
  .header-hp-1 .header-right .header-wishlist a, .header-hp-1 .header-left .header-wishlist a {
    font-size: 20px; }
    .header-hp-1 .header-right .header-wishlist a i, .header-hp-1 .header-left .header-wishlist a i {
      font-size: 20px;
     color: var(--main-color); }



.mobile-minicart{
  display: none;

}
@media screen and (min-width: 1025px) and (max-width: 1300px) {
  .header-hp-1 .menu-desktop-inner .space-header {
    min-width: 150px; } }
@media only screen and (min-width: 1025px) {
  .header-hp-1 .main-menu {
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    display: flex;
    display: -webkit-flex; }
  .header-hp-1 .menu-desktop-inner {
    display: flex;
    display: -webkit-flex;
    justify-content: space-around;
    -moz-justify-content: space-around;
    -webkit-justify-content: space-around;
    -o-justify-content: space-around;
    -ms-justify-content: space-around;
    position: relative; }
    .header-hp-1 .menu-desktop-inner .logo {
      padding: 20px 0; }
    .header-hp-1 .menu-desktop-inner .space-header {
      min-width: 250px; }
    .header-hp-1 .menu-desktop-inner .main-menu ul {
      margin: 0; }
      .header-hp-1 .menu-desktop-inner .main-menu ul li {
        list-style: none; }
    .header-hp-1 .menu-desktop-inner .main-menu .navmenu .show-submenu-mobile {
      display: none; }
    .header-hp-1 .menu-desktop-inner .main-menu .navmenu > .menu-item {
      color: #111;
      float: left;
      font-weight: 500;
      font-size: 15px;
      padding: 30px 24px;
      position: relative; }
      .header-hp-1 .menu-desktop-inner .main-menu .navmenu > .menu-item > a {
        line-height: 1.1em;
        position: relative;
        z-index: 1;
        color: #111; 
		ont-family: 'Roboto', sans-serif;
    /* font-weight: 700; */
    /* line-height: 66px; */
    text-transform: uppercase;
    border-bottom: 4px solid transparent;
    /* padding: 0 21px;*/}
        .header-hp-1 .menu-desktop-inner .main-menu .navmenu > .menu-item > a:before {
          position: absolute;
          content: '';
          left: 50%;
          bottom: 0;
          top: 0;
          right: 50%;
          transition: 0.3s all 0.14s;
          -moz-transition: 0.3s all 0.14s;
          -webkit-transition: 0.3s all 0.14s;
          -o-transition: 0.3s all 0.14s;
          -ms-transition: 0.3s all 0.14s;
          z-index: -1;
          /*border-bottom: 1px solid #111;*/
        }
        .header-hp-1 .menu-desktop-inner .main-menu .navmenu > .menu-item > a.active:before {
          right: 0;
          left: 0; }
      .header-hp-1 .menu-desktop-inner .main-menu .navmenu > .menu-item.current-menu-item > a:before, .header-hp-1 .menu-desktop-inner .main-menu .navmenu > .menu-item:hover a:before, .header-hp-1 .menu-desktop-inner .main-menu .navmenu > .menu-item.current-menu-parent > a:before {
        right: 0;
        left: 0; }
      .header-hp-1 .menu-desktop-inner .main-menu .navmenu > .menu-item:hover > .sub-menu {
        display: block; }
      .header-hp-1 .menu-desktop-inner .main-menu .navmenu > .menu-item .sub-menu {
        display: none;
        padding: 15px 0;
        position: absolute;
        left: 5px;
        width: 250px;
        z-index: 99999;
        top: 100%;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1) !important;
        -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1) !important;
        -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1) !important;
        -o-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1) !important;
        -ms-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1) !important; }
        .header-hp-1 .menu-desktop-inner .main-menu .navmenu > .menu-item .sub-menu > li.menu-item-has-children {
          position: relative; }
          .header-hp-1 .menu-desktop-inner .main-menu .navmenu > .menu-item .sub-menu > li.menu-item-has-children:after {
            content: '\f2fb';
            font: normal normal normal 17px/1 'Material-Design-Iconic-Font';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
            -o-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            right: 30px; }
        .header-hp-1 .menu-desktop-inner .main-menu .navmenu > .menu-item .sub-menu .sub-menu {
          float: left;
          overflow: hidden;
          margin: 0; }
          .header-hp-1 .menu-desktop-inner .main-menu .navmenu > .menu-item .sub-menu .sub-menu.sub-menu-item-1 {
            float: none; }
        .header-hp-1 .menu-desktop-inner .main-menu .navmenu > .menu-item .sub-menu li {
          float: none;
          position: relative;
          padding: 8px 29px; }
          .header-hp-1 .menu-desktop-inner .main-menu .navmenu > .menu-item .sub-menu li:hover .sub-menu {
            display: block;
            left: 100%;
            top: -15px;
            padding: 15px 0; }
        .header-hp-1 .menu-desktop-inner .main-menu .navmenu > .menu-item .sub-menu a {
          display: inline-block;
          position: relative;
          border-bottom: 2px solid transparent; }
          .header-hp-1 .menu-desktop-inner .main-menu .navmenu > .menu-item .sub-menu a i {
            font-size: 17px;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
            -o-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            right: 30px; } }
@media only screen and (max-width: 1024px) {
  .header-hp-1 #js-navbar-fixed .container {
    padding-right: 0;
    padding-left: 0; }
  .header-hp-1 #js-navbar-fixed .menu-mobile-effect {
    display: flex; }

    .mobile-minicart{
      display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    }
  .header-hp-1 #js-navbar-fixed .main-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999; }
  .header-hp-1 .menu-desktop-inner {
    display: flex;
    display: -webkit-flex;
    padding: 10px 15px 10px 15px;
    justify-content: space-between;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    -o-justify-content: space-between;
    -ms-justify-content: space-between;
    position: relative; }
    .header-hp-1 .menu-desktop-inner .space-header {
      display: none; }
    .header-hp-1 .menu-desktop-inner .main-menu ul {
      padding-left: 0;
      margin: 0; }
      .header-hp-1 .menu-desktop-inner .main-menu ul li {
        border-top: 1px solid #e9e9e9;
        list-style: none; }
        .header-hp-1 .menu-desktop-inner .main-menu ul li a {
          background-color: #fff;
          display: block;
          height: 46px;
          padding: 13px 20px;
          font-weight: 600;
          text-transform: uppercase; }
        .header-hp-1 .menu-desktop-inner .main-menu ul li:last-child {
          border-bottom: 1px solid #e9e9e9; }
      .header-hp-1 .menu-desktop-inner .main-menu ul li.menu-item-has-children {
        position: relative;
        z-index: 999999; }
        .header-hp-1 .menu-desktop-inner .main-menu ul li.menu-item-has-children .show-submenu-mobile {
          transition: 0.3s;
          -moz-transition: 0.3s;
          -webkit-transition: 0.3s;
          -o-transition: 0.3s;
          -ms-transition: 0.3s;
          position: absolute;
          right: 0;
          top: 0;
          font-size: 23px;
          cursor: pointer;
          padding: 12px 20px; }
        .header-hp-1 .menu-desktop-inner .main-menu ul li.menu-item-has-children .sub-menu {
          display: none;
          margin: 0; }
          .header-hp-1 .menu-desktop-inner .main-menu ul li.menu-item-has-children .sub-menu li:last-child {
            border-bottom: none; }
          .header-hp-1 .menu-desktop-inner .main-menu ul li.menu-item-has-children .sub-menu li a {
            padding: 13px 50px;
            background: #f2f2f2; }
          .header-hp-1 .menu-desktop-inner .main-menu ul li.menu-item-has-children .sub-menu li .sub-menu a {
            padding: 13px 30px 13px 80px; } }
.header-hp-1 .logo-area-title {
  max-width: 400px;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    .header-hp-1 .logo-area-title {
      overflow: hidden;
      padding-left: 30px; } }
  .header-hp-1 .logo-area-title a {
    font-size: 30px;
    font-weight: 500;
    line-height: 40px;
    padding: 24px 30px 0 0;
    display: inline-block; }
    @media only screen and (max-width: 1024px) {
      .header-hp-1 .logo-area-title a {
        padding: 0; } }

.header_v2 .widget_shopping_cart .minicart_hover {
  margin-left: 0;
  margin-right: 20px; }
.header_v2 .wrapper-logo-area {
  padding-top: 41px;
  text-align: center; }
  .header_v2 .wrapper-logo-area .logo {
    margin: 0 auto; }
@media only screen and (max-width: 1024px) {
  .header_v2 .header-left, .header-right {
    display: none !important; }
  .header_v2 .wrapper-logo-area {
    text-align: left; } }


.header-bottom{
  display: none;
}

@media only screen and (max-width: 1024px){
  .header-bottom{
    display: flex;
  }
}
.header-bottom .header-wishlist a{
  font-size: 20px;
  color: var(--main-color);
}

.modal-backdrop.show {
  left: 0; }

.sticky_header .affix {
  position: fixed;
  z-index: 999;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  width: 100%;
  background: transparent; }

.search-overlay {
  position: fixed;
  height: 100vh;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  visibility: hidden;
  z-index: 9999999999; }
  .search-overlay .background-overlay {
    width: 100%;
    height: 100vh;
    background: #fff;
    position: absolute;
    z-index: 999998;
    top: 0; }
  .search-overlay .closeicon {
    position: absolute;
    right: 0;
    width: 32px;
    height: 32px;
    opacity: 1;
    z-index: 999999;
    cursor: pointer;
    top: 50px; }

  .search-overlay .modal-search-content {
    top: 50%;
    max-width: inherit;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 9999999;
    transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transition: transform 0.3s ease-out;
    -moz-transition: transform 0.3s ease-out;
    -webkit-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    -ms-transition: transform 0.3s ease-out; }
  .search-overlay .search-form {
    position: relative;
    border: 2px solid #111111;
    padding: 15px; }
    .search-overlay .search-form input:focus {
      outline: none; }
    .search-overlay .search-form .search-field {
      font-weight: 500;
      font-size: 16px;
      vertical-align: middle;
      padding: 10px 0;
      border: none;
      background: transparent; }
body.ar .search-overlay .search-form .search-field{
    padding-right: 50px;
}
      .search-overlay .search-form .search-field::-webkit-input-placeholder {
        color: #999; }
      .search-overlay .search-form .search-field::-moz-placeholder {
        color: #999; }
      .search-overlay .search-form .search-field:-ms-input-placeholder {
        color: #999; }
      .search-overlay .search-form .search-field:-moz-placeholder {
        color: #999; }
    .search-overlay .search-form .search-submit {
      position: absolute;
      border: none;
      outline: none;
      -moz-outline: none;
      -webkit-outline: none;
      -o-outline: none;
      -ms-outline: none;
      color: #111;
      font-size: 28px;
      cursor: pointer;
      background: transparent;
      top: 5px;
      right: 15px;
      padding: 7px 10px; }
      .search-overlay .search-form .search-submit .zmdi-search {
        font: normal normal normal 14px/1 FontAwesome !important;
        font-size: 24px; }
        .search-overlay .search-form .search-submit .zmdi-search:before {
          content: '\f002' !important;
          font-size: 20px; }

.admin-bar .canvas-right-content .closeicon {
  top: 50px; }

.physc_search .search-toggler {
  font-size: 25px !important;
  cursor: pointer;
  color: var(--main-color);
  margin-top: -5px; }
  .physc_search .search-toggler .zmdi-search {
    font: normal normal normal 14px/1 FontAwesome !important;
    font-size: 24px; }
    .physc_search .search-toggler .zmdi-search:before {
      content: '\f002' !important;
      font-size: 20px; }
.physc_search .search-overlay .closeicon {
  right: 70px; }
.physc_search .search-overlay .modal-search-content {
  padding: 0 70px; }

.header-hp-1 .header-right > div {
  margin-left: 30px; }
  .header-hp-1 .header-right > div:first-child {
    margin-left: 0; }
body.ar .header-hp-1 .header-right > div:first-child{
     margin-left: 30px; 
}
.header-right [id*="monster-widget-placeholder"] {
  display: none; }

@media screen and (min-width: 1025px) and (max-width: 1500px) {
  .menu-desktop-inner .main-menu .navmenu > .menu-item > .sub-menu > .sub-menu-wrapper {
    float: none;
    position: relative;
    padding: 8px 29px; }
    .menu-desktop-inner .main-menu .navmenu > .menu-item > .sub-menu > .sub-menu-wrapper:hover > .sub-menu {
      display: block;
      right: 100% !important;
      left: -100% !important;
      top: 0;
      padding: 25px 0; } }
@media screen and (min-width: 1600px) {
  .style-header-hp-2 .menu-desktop-inner .space-header {
    min-width: 700px; } }
.homepage-v4 #masthead {
  display: block;
  position: absolute;
  width: 100%;
  z-index: 999; }
  .homepage-v4 #masthead .affix-top, .homepage-v4 #masthead .affix {
    background: transparent; }
    @media only screen and (max-width: 1024px) {
      .homepage-v4 #masthead .affix-top .menu-desktop-inner .menu-mobile-effect .hamburger-inner, .homepage-v4 #masthead .affix .menu-desktop-inner .menu-mobile-effect .hamburger-inner {
        background: #ffffff; }
        .homepage-v4 #masthead .affix-top .menu-desktop-inner .menu-mobile-effect .hamburger-inner:before, .homepage-v4 #masthead .affix-top .menu-desktop-inner .menu-mobile-effect .hamburger-inner:after, .homepage-v4 #masthead .affix .menu-desktop-inner .menu-mobile-effect .hamburger-inner:before, .homepage-v4 #masthead .affix .menu-desktop-inner .menu-mobile-effect .hamburger-inner:after {
          background: #ffffff; } }
    @media only screen and (min-width: 1025px) {
      .homepage-v4 #masthead .affix-top .menu-desktop-inner .main-menu .navmenu li a, .homepage-v4 #masthead .affix .menu-desktop-inner .main-menu .navmenu li a {
        color: #ffffff; }
        .homepage-v4 #masthead .affix-top .menu-desktop-inner .main-menu .navmenu li a:before, .homepage-v4 #masthead .affix .menu-desktop-inner .main-menu .navmenu li a:before {
          background: transparent !important;
          width: 0;
          height: 0; }
      .homepage-v4 #masthead .affix-top .menu-desktop-inner .main-menu .navmenu li .sub-menu li a, .homepage-v4 #masthead .affix .menu-desktop-inner .main-menu .navmenu li .sub-menu li a {
        color: #cecece; }
        .homepage-v4 #masthead .affix-top .menu-desktop-inner .main-menu .navmenu li .sub-menu li a:hover, .homepage-v4 #masthead .affix .menu-desktop-inner .main-menu .navmenu li .sub-menu li a:hover {
          color: #ffffff; } }
    .homepage-v4 #masthead .affix-top .header-right .header-wishlist a i, .homepage-v4 #masthead .affix .header-right .header-wishlist a i {
      color: #ffffff !important; }
    .homepage-v4 #masthead .affix-top .header-right .widget_shopping_cart .cart-items-number, .homepage-v4 #masthead .affix .header-right .widget_shopping_cart .cart-items-number {
      color: #ffffff; }
    .homepage-v4 #masthead .affix-top .physc_search .header-wishlist a i, .homepage-v4 #masthead .affix .physc_search .header-wishlist a i {
      color: #ffffff; }
    .homepage-v4 #masthead .affix-top .physc_search .search-toggler, .homepage-v4 #masthead .affix .physc_search .search-toggler {
      color: #ffffff; }
    .homepage-v4 #masthead .affix-top .physc_search .search-overlay .closeicon, .homepage-v4 #masthead .affix .physc_search .search-overlay .closeicon {
      right: 70px; }
    .homepage-v4 #masthead .affix-top .physc_search .search-overlay .modal-search-content, .homepage-v4 #masthead .affix .physc_search .search-overlay .modal-search-content {
      padding: 0 70px; }

.top-bar {
  padding: 15px 50px; }
  @media only screen and (max-width: 981px) {
    .top-bar {
      padding: 15px 0; } }
  .top-bar ul {
    list-style: none;
    margin: 0 !important; }
    .top-bar ul li {
      display: inline-block;
      line-height: 15px;
      margin-right: 30px;
      font-weight: 700; }
  .top-bar p {
    text-align: right;
    font-weight: 600; }
    .top-bar p a {
      margin-left: 15px;
      font-weight: 600; }
    @media only screen and (max-width: 767px) {
      .top-bar p {
        text-align: left; } }

@media only screen and (max-width: 1024px) {


  .container-box-header1 {
    padding-right: 0 !important;
    padding-left: 0 !important; } }
@media only screen and (min-width: 1025px) {
  .style-header-hp-1 .menu-desktop {
    padding: 0 !important; }
    .style-header-hp-1 .menu-desktop .menu-desktop-inner {
      justify-content: space-between !important;
      -moz-justify-content: space-between !important;
      -webkit-justify-content: space-between !important; }

  .style-header-hp-2 .menu-desktop {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 !important; } 
}

/*****************************
	Mini Cart
*****************************/
.direction{
    left: 0px; 
    right: auto;
}
body.ar .direction{
    right: 0px;  
    left: auto;
}
.hide{
    left: -450px; 
    right: auto;
}
body.ar .hide{
    right: -450px;  
    left: auto;
}
 .minicart-content .widget_shopping_cart_contents {
    background: #fff;
    position: fixed;
    overflow: scroll;
    width: 20%;
    top: auto;
    min-width: 300px;
    z-index: 9999;
    height: 100%;
    -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
    transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    opacity: 1;}
.widget_shopping_cart {
  position: relative; }
  .widget_shopping_cart .minicart_hover {
    margin-top: 0;
    margin-bottom: 0; }
    .widget_shopping_cart .minicart_hover .icon-bag {
      display: inline-block; }
      .widget_shopping_cart .minicart_hover .icon-bag:before {
        font: normal normal normal 14px/1 FontAwesome;
        content: "\f290";
        width: 25px;
        height: 26px;
        font-size: 20px; }
    .widget_shopping_cart .minicart_hover .cart-items-number {
      display: inline-block;
      position: relative;
      text-align: left;
      cursor: pointer;
      font-size: 20px; 
	  color: var(--main-color);}
      .widget_shopping_cart .minicart_hover .cart-items-number span.wrapper-items-number {
        border-radius: 50%;
        display: block;
        font-size: 12px;
        position: absolute;
        text-align: center;
        line-height: 16px;
        width: 16px;
        height: 16px;
        right: -5px;
        bottom: -2px;
        background: #ff4747;
        color: white !important; }
  .widget_shopping_cart .widget_shopping_cart_content {
    display: none; }
  .widget_shopping_cart .woocommerce-mini-cart__empty-message {
    text-align: center;
    color: #111;
    padding-top: 10px; }

.header-left .widget_shopping_cart .widget_shopping_cart_content {
  left: 0;
  right: auto; }
  .header-left .widget_shopping_cart .widget_shopping_cart_content:after {
    left: 15px;
    right: auto; }

.minicart-content {
  visibility: hidden;
  position: fixed;
  z-index: 99999999;
  height: 100%;
  width: 100%; }
  .minicart-content .close-cart {
    position: absolute;
    top: 5px;
    right: 90%;
    z-index: 10000;
    font-size: 18px;
    font-weight: 500;
    color:var(--main-color); }
    .minicart-content .close-cart:hover {
      cursor: pointer; }
  .minicart-content .widget_shopping_cart_contents {
background: #fff;
    left: auto;
    position: fixed;
    width: 30%;
	overflow:scroll;
    z-index: 9999;
    height: 100%;
    -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
    transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    opacity: 1; }
    .minicart-content .widget_shopping_cart_contents .widget_shopping_cart_content .cart_list.product_list_widget {
      max-height: 400px;
      overflow: auto;
      list-style: none;
      margin: 0 0 15px 0 !important; }
      @media only screen and (max-width: 767px) {
        .minicart-content .widget_shopping_cart_contents .widget_shopping_cart_content .cart_list.product_list_widget {
          max-height: 300px; } }
      @media only screen and (min-width: 1600px) {
        .minicart-content .widget_shopping_cart_contents .widget_shopping_cart_content .cart_list.product_list_widget {
          max-height: 600px; } }
      .minicart-content .widget_shopping_cart_contents .widget_shopping_cart_content .cart_list.product_list_widget::-webkit-scrollbar {
        width: 6px; }
      .minicart-content .widget_shopping_cart_contents .widget_shopping_cart_content .cart_list.product_list_widget::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
        border-radius: 6px; }
      .minicart-content .widget_shopping_cart_contents .widget_shopping_cart_content .cart_list.product_list_widget::-webkit-scrollbar-thumb {
        border-radius: 6px;
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5); }
      .minicart-content .widget_shopping_cart_contents .widget_shopping_cart_content .cart_list.product_list_widget li {
        padding: 7.5px 0;
        width: 100%;
        margin-left: 0 !important;
        position: relative; }
        .minicart-content .widget_shopping_cart_contents .widget_shopping_cart_content .cart_list.product_list_widget li a {
          text-align: left;
          max-width: 80%;
          color: #111;
          font-size: 18px; }
          .minicart-content .widget_shopping_cart_contents .widget_shopping_cart_content .cart_list.product_list_widget li a img {
            margin-right: 15px;
            width: 80px !important;
            float: left;
            border: 1px solid #ddd;
            margin-left: 0; }
        .minicart-content .widget_shopping_cart_contents .widget_shopping_cart_content .cart_list.product_list_widget li span {
          color: #111; }
        .minicart-content .widget_shopping_cart_contents .widget_shopping_cart_content .cart_list.product_list_widget li dl {
          border-left: 0 none !important;
          float: left;
          padding-left: 0 !important;
          min-width: 60%; }
          .minicart-content .widget_shopping_cart_contents .widget_shopping_cart_content .cart_list.product_list_widget li dl dd {
            margin: 0 !important;
            padding: 0 !important; }
        .minicart-content .widget_shopping_cart_contents .widget_shopping_cart_content .cart_list.product_list_widget li .quantity {
          float: right;
          padding: 0;
          text-align: left;
          margin-top: 5px;
          width: calc(100% - 95px);
          font-size: 14px;
          color: #777777; }
          .minicart-content .widget_shopping_cart_contents .widget_shopping_cart_content .cart_list.product_list_widget li .quantity .amount {
            float: none; }
        .minicart-content .widget_shopping_cart_contents .widget_shopping_cart_content .cart_list.product_list_widget li .price {
          float: right;
          padding: 0;
          text-align: left;
          margin-top: 5px;
          width: calc(100% - 95px);
          font-size: 18px; }
        .minicart-content .widget_shopping_cart_contents .widget_shopping_cart_content .cart_list.product_list_widget li .remove {
          right: 10px;
          background: transparent;
          color: #111 !important;
          position: absolute;
          z-index: 9999999; }
          .minicart-content .widget_shopping_cart_contents .widget_shopping_cart_content .cart_list.product_list_widget li .remove:before {
            font-size: 15px; }
        .minicart-content .widget_shopping_cart_contents .widget_shopping_cart_content .cart_list.product_list_widget li:after {
          clear: both;
          content: ' ';
          display: table; }
      .minicart-content .widget_shopping_cart_contents .widget_shopping_cart_content .cart_list.product_list_widget li:first-child {
        border-top: none; }
      .minicart-content .widget_shopping_cart_contents .widget_shopping_cart_content .cart_list.product_list_widget .empty {
        padding-top: 27px;
        text-align: center;
        color: #111; }
    .minicart-content .widget_shopping_cart_contents .widget_shopping_cart_content .total {
      border-top: 1px solid #ddd;
      padding: 15px 0;
      width: 85%;
      position: absolute;
      bottom: 100px;
      overflow: hidden;
      text-align: right;
      font-weight: 700; }
      @media only screen and (max-width: 767px) {
        .minicart-content .widget_shopping_cart_contents .widget_shopping_cart_content .total {
          bottom: 100px; } }
      .minicart-content .widget_shopping_cart_contents .widget_shopping_cart_content .total .amount {
        margin-left: 10px;
        color: #111; }
      .minicart-content .widget_shopping_cart_contents .widget_shopping_cart_content .total strong {
        color: #777777;
        float: left;
        font-size: 18px; }
    .minicart-content .widget_shopping_cart_contents .widget_shopping_cart_content .buttons {
      text-align: center;
      position: absolute;
      bottom: 70px;
      min-width: 300px; }
      @media only screen and (max-width: 767px) {
        .minicart-content .widget_shopping_cart_contents .widget_shopping_cart_content .buttons {
          bottom: 80px; } }
      .minicart-content .widget_shopping_cart_contents .widget_shopping_cart_content .buttons a {
        border-radius: 0;
        z-index: 9;
        text-transform: uppercase;
        line-height: 1; }
        .minicart-content .widget_shopping_cart_contents .widget_shopping_cart_content .buttons a:after {
          display: none; }
        .minicart-content .widget_shopping_cart_contents .widget_shopping_cart_content .buttons a:first-child {
          margin-right: 10px;
          padding: 14px 10px;
          width: 50%;
          float: left;
          font-size: 14px; }
          @media only screen and (max-width: 1300px) {
            .minicart-content .widget_shopping_cart_contents .widget_shopping_cart_content .buttons a:first-child {
              padding: 14px 10px; } }
        .minicart-content .widget_shopping_cart_contents .widget_shopping_cart_content .buttons a:last-child {
          width: 45%;
          float: right;
          padding: 14px 30px;
          font-size: 14px; }
          @media only screen and (max-width: 1300px) {
            .minicart-content .widget_shopping_cart_contents .widget_shopping_cart_content .buttons a:last-child {
              padding: 14px 30px; } }
  .minicart-content .background-overlay-cart {
    position: absolute;
    width: 100%;
    height: 100vh;
    background: #000000;
    z-index: 9998;
    opacity: 0.8; }
    .minicart-content .background-overlay-cart:hover {
      cursor: pointer; }
/* 2. Extend ------------------------------------------------------------ */
display-flex, .header-hp-1 .header-right, .header-hp-1 .header-left, .woocommerce .shop-single-v1-section .summary .woocommerce-product-rating, .single-blog-content .post-content .post-image, .single-blog-content .related-posts, .deal-hp-2 .deal-content .wrap-countdown {
  display: flex;
  display: -webkit-flex; }
/*=============================================
=           END Header            =
=============================================*/

.rev_slider .slotholder:after {
    background: rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
}

#rev_slider {
  overflow: hidden;
}
#banner h1 {
  position: relative;
  font-family: 'Kufam', cursive;

  line-height: 85px;
  font-size: 85px;
  padding: 20px 30px;
  text-transform: uppercase;
  display: inline-block;
  border: 1px solid #fff;
  border-bottom: 0px;
  color: #fff;
}

#banner h1:after {
    position:absolute;
    content: "";
    left:0px;
    bottom: 0;
    width:80px;
    height:1px;
    background: #fff;
}
#banner h1:before {
    position:absolute;
    content: "";
    right:0px;
    bottom: 0;
    width:80px;
    height:1px;
    background: #fff;
}
#banner .banner-caption-h2 {
  position: relative;
  line-height: 50px;
  font-weight: 700;
  font-size: 54px;
  padding: 20px 30px;
  text-transform: uppercase;
  display: inline-block;
  color: #fff;
}
#banner .banner-caption-h1 {
  position: relative;
  font-family: 'Lalezar', cursive;
  line-height: 60px;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  color: #fff;
}


#banner .banner-caption-h3 {
  position: relative;
 font-family: 'Vibes', cursive;

  font-size: 18px;
  padding: 20px 30px;
  text-transform: capitalize;
  display: inline-block;
  color: #fff;
}
#banner .banner-caption-p p {
  color: #fff;
  padding-bottom: 20px;
  padding-top: 10px;
  font-family: 'Cairo', sans-serif 
}
#banner .contuct-us {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 45px;
  text-transform: uppercase;
  background: #fff;
  -webkit-transition: .5s ease;
  transition: .5s ease;
  background-color: #91c9ed;
}
#banner .contuct-us:hover {
  background: #91c9ed;
  -webkit-transition: .5s ease;
  transition: .5s ease;
  
}
#banner .cp-title {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 36px;
  color:#fff;
  font-weight: 500;
}
#banner .cp-title-2 {
  font-family: 'Cairo', sans-serif ;
  font-size: 18px;
  line-height: 36px;
  color:#fff;
  font-weight: 400;
}

#banner .contact_us,
#banner .our_farmer {
  width:155px;
  line-height: 55px;
  color:#fff;
  font-family: 'Montserrat-Bold';
  text-transform: uppercase;
  text-align: center;
  font-size: 14px;
  border-radius: 2px;
}
.tp-bannertimer {
  display: none !important;
}
.hephaistos.tparrows {
  background:rgba(255, 255, 255, 0.55);
  height:40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 0px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.hephaistos.tparrows:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  font-size: 20px;
  text-align: center;
  color: #fff;
  line-height: 40px;
  -webkit-transition: all .25s ease-in-out;
          transition: all .25s ease-in-out;
}
.hephaistos.tparrows.tp-leftarrow:before {
  content: '\e82a';
  color: #fff;
}
.hephaistos.tparrows.tp-rightarrow:before {
  content: '\e82b';
  color: #fff;
}

.hephaistos.tparrows .arrow-holder {
  width:105px;
  height: 100%;
  position: absolute;
  top:0;
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
          transition: all .3s ease-in-out;
}
.hephaistos.tparrows.tp-leftarrow .arrow-holder {
  -webkit-transform: translate3d(-30px, 0, 0);
          transform: translate3d(-30px, 0, 0);
  left:calc(100% + 20px);
}
.hephaistos.tparrows.tp-rightarrow .arrow-holder {
  -webkit-transform: translate3d(30px, 0, 0);
          transform: translate3d(30px, 0, 0);
  right:calc(100% + 6px);
}
.hephaistos.tparrows .arrow-holder:after {
  display: block;
  width:105px;
  height:35px;
  line-height: 35px;
  color:#fff;
  text-align: center;
  font-family: 'Montserrat-SemiBold';
  font-size: 14px;
  top:11px;
  position: absolute;
}
/*aboutstory*/
.about-story {
  position: relative;
  padding: 90px 0;
}
.about-story .img-holder {
position: relative;
margin-top: 45px;
}
.about-story .about_quot {
  position: relative;
  
  font-size: 25px;
  color: #333;
      text-align: right;
    color: #333;
   
    font-family: 'Kufam', cursive;
  margin:15px 0;
}

.about-story .icon-box {
  position: relative;
  margin: 30px 0 30px;
text-align:right;
}

.about-story .icon-box .single-item{
  position: relative;
  padding-left: 70px;
  display: inline-block;
  margin-right: 60px;
}

.about-story .icon-box .single-item:last-child{
  margin-right: 0px;
}


.about-story .icon-box .icon {
  position: absolute;
  color: #9c9c9c;
  left: 0;
  font-size: 45px;
  top: 6px;
}
.about-story .icon-box .count {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 15px;
}
.about-story .icon-box .name {
  font-size: 20px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
      color: #91c9ed;
}
.about-story .link a {
    font-size: 14px;
    text-transform: uppercase;
    color: #333;
    width: 150px;
    background: #f7f7f7;
    line-height: 50px;
    text-align: center;
    margin-top: 25px;
    font-weight: 700;
    border-radius: 0px;
}
.about-story .link a:hover {
    color: #fff;
	background-color: #91c9ed;
}
/*----threed column-----------*/
.three-column {
  position: relative;
   background-color: #91c9ed;
}
.three-column .single-item {
  position: relative;
  margin: 70px 45px;
  border: 2px solid rgba(65, 42, 42, 0.06);
  padding: 0 15px;
}

.three-column .single-item h5 {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  display: inline;
  padding: 0 15px;
  position: relative;
  top: -12px;
}
.three-column .single-item .icon {
  font-size: 20px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  font-size: 50px;
  margin: 5px 0 20px;
}
.three-column .single-item p {
  color: #fff;
}
.three-column .single-item .link a {
    position: relative;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border-bottom: 1px solid #fff;
    margin: 33px 0 30px;
    text-transform: uppercase;
}
/*---four column-----------*/

.four-column {
  position: relative;
  padding: 90px 0 90px;
}

.four-column .theme_title {
  position: relative;
  margin-bottom: 40px;
}

.four-column .single-item {
  position: relative;
  margin-bottom: 40px;
}

.four-column .single-item h5 {
  font-size: 20px;
  color: #333;
  font-weight: 700;
  text-transform: uppercase;
  margin: 25px 0;
}

.four-column .single-item .icon {
  height: 160px;
  width : 160px;
  line-height: 160px;
  margin: 5px 0 20px;
  background: #f7f7f7;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  color: #91c9ed;
      border: 1px solid #91c9ed;
}


.four-column .single-item .icon:before {
    position:absolute;
    content: "";
    left:-10px;
    right:-10px;
    top:-10px;
    bottom: -10px;
    border: 1px solid #91c9ed;
    border-radius: 50%;
    -webkit-transition: .5s ease-in;
    transition: .5s ease-in;
}

.four-column .single-item .icon i {
  font-size: 60px;
}
.four-column .single-item .icon span {
  font-size: 20px;
  height: 45px;
  width : 45px;
  line-height: 45px;
  font-weight: 700;
  background: #fff;
  border: 1px solid #f7f7f7;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}

.four-column .single-item p {
  color: #9c9c9c;
}

.four-column .link a {
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    width: 170px;
    line-height: 50px;
    text-align: center;
    font-weight: 700;
    border-radius: 0px;
	background-color: #91c9ed;
}
.four-column .link a:hover {
    background: #121d2f;
	background-color: #91c9ed;
}

/*=============*/
.gallery.gallery-grid.about-gallery {
  position: relative;
  padding-bottom: 60px;
  padding-top: 90px;
  text-align: left;
}

.gallery.gallery-grid.about-gallery .iblock {
  position: relative;
  display: inline-block;
  float: right;
}
.gallery.gallery-grid.about-gallery .theme_title {
  position: relative;
  margin-top: 0px;
}

.gallery.gallery-grid.about-gallery .theme_title h2 {
  color: #fff;
}

.about-gallery:before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.80);
    z-index: 0;
}

.about-gallery .tab-content .item {
    display: none;
}

.about-gallery .tab-content .item.collapsed {
    display: block;
}
.about-gallery .tab-links {
    position: relative;
}
.about-gallery .tab-links ul {
    position: relative;
    display: inline-block;
    margin-left: 30%;
    margin-bottom: 30px;
    
}
.about-gallery .tab-links ul li {
    position: relative;
    display: inline-block;
    margin: 0 10px;
}
.about-gallery .tab-links ul li i {
    margin-right: 10px;
    margin-left: 10px;
}
.about-gallery .tab-links ul li a.active h2 {
    color: #91c9ed;
}
.about-gallery .tab-links ul li a h2 {
   font-size: 14px;
   color: #fff;
   text-transform: uppercase;
}
/*===================award============*/
.award {
  position: relative;
}
.award .award-logo {
  position: relative;
}
.award .award-logo ul {
  margin: 0 -15px;
}
.award .award-logo ul li {
  position: relative;
  display: inline-block;
  margin: 0 15px;
}

.award .text {
  margin: 35px 0 20px;
}

.award .customer-text {
  margin: 20px 0 40px;
}
.award .customer-text p {
  margin-bottom: 20px;
}
.award .customer-text b {
  color: #333;
  font-size: 18px;
}

/*======================*/

.award {
    padding: 90px 0;
	
}
.
.award .contact_in-box {
    padding-top: 0px;
}
.award .contact_in-box h2  {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 27px;
}
body.ar .award .contact_in-box h2{
    text-align: right;
}
.award .contact_in-box .theme_title {
    margin-bottom: 40px;
    margin-bottom: 40px;
}
.award .contact_in-box .theme_title h2 {
    font-size: 24px;
    font-weight: 700;
}
.award .contact_in-box input,
.award .contact_in-box textarea{
    width: 100%;
    border: 1px solid transparent;
    background: #f7f7f7;
    outline: none;
    padding-left: 20px;
}
.award .contact_in-box input {
    height: 50px;
    line-height: 50px;
    margin-bottom: 30px;
}
.award .contact_in-box textarea {
    height: 190px;
    padding-top: 10px;
    resize: none;
    margin-bottom: 30px;
}
.award .contact_in-box button {
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    padding-left: 38px;
    width: auto;
    padding-right: 38px;
    padding-top: 12px;
    padding-bottom: 14px;
    text-transform: uppercase;
    -webkit-transition: all 700ms ease 0s;
    transition: all 700ms ease 0s;
    border-radius: 0px;
    margin-top: 10px;
	    background-color: #91c9ed;
}
.award .contact_in-box button i {
    margin: 0;
}
.award .contact_in-box button:hover {
        background-color: #91c9ed;
}
/*===================== contant page ===================*/
.single-contact_us {
    padding: 90px 0;
	   
    text-align: right;
}
.single-contact_us h6 {
    color: #333;
    position: relative;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 10px 4px 0;
    top: -28px;
    display: inline;
    background: #fff;
}
.single-contact_us h5 {
  color:#333;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0px 0 30px 0;
    text-align: left;
}
body.ar .single-contact_us h5{
    text-align: right;
}
/*catregories*/
.single-contact_us .list{
    position:relative;
}
.single-contact_us .list li{
    position:relative;
    line-height:32px;
    padding: 0px 0px 0px 90px;
    border: 1px solid #f1f1f1;
    margin-bottom: 20px;
}
.single-contact_us .list li a{
    display:block;
    color:#9c9c9c;
    font-size: 14px;
    font-weight:400;
    font-family: 'Cairo', sans-serif;
    padding: 8px 8px;
    line-height: 26px;
}
.single-contact_us .list li a i{
    margin-right: 15px;
    font-size: 20px;
    position: absolute;
    left: 27px;
    top: 0;
    line-height: 67px;
    /*border-right: 1px solid #f1f1f1;*/
    color: #91c9ed;
}
.single-contact_us .border-area {
    border: 1px solid #f1f1f1;
    padding: 20px;
    position: relative;
    margin-top: 50px;
}

/*======================*/

.single-contact_us .contact_in-box {
    padding-top: 0px;
}
.single-contact_us .contact_in-box h2  {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 27px;
    text-align: left;
}
body.ar .single-contact_us .contact_in-box h2{
    text-align: right;
}

.single-contact_us .contact_in-box .theme_title {
    margin-bottom: 40px;
    margin-bottom: 40px;
}
.single-contact_us .contact_in-box .theme_title h2 {
    font-size: 24px;
    font-weight: 700;
}

.single-contact_us .contact_in-box input,
.single-contact_us .contact_in-box textarea{
    width: 100%;
    border: 1px solid transparent;
    background: #f7f7f7;
    outline: none;
    padding-left: 20px;
}

.single-contact_us .contact_in-box input {
    height: 50px;
    line-height: 50px;
    margin-bottom: 30px;
}

.single-contact_us .contact_in-box textarea {
    height: 190px;
    padding-top: 10px;
    resize: none;
    margin-bottom: 30px;
}

.single-contact_us .contact_in-box button {
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    padding-left: 38px;
    width: auto;
    padding-right: 38px;
    padding-top: 12px;
    padding-bottom: 14px;
    text-transform: uppercase;
    -webkit-transition: all 700ms ease 0s;
    transition: all 700ms ease 0s;
    border-radius: 0px;
    margin-top: 10px;
	    background-color: #91c9ed;
}

.single-contact_us .contact_in-box button i {
    margin: 0;
}

.single-contact_us .contact_in-box button:hover {
        background-color: #91c9ed;
}
/*===================== Welcome Section ===================*/
.about_section {
  margin:90px 0 0px 0;
}

.about_section .item {
  position: relative;
}
.about_section .item .inner-title {
  position: relative;
  background: #fff;
  display: inline-block;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  margin-top: 45px;
  padding: 12px 90px 11px 30px;
}
.about_section .item .inner-title:after {
    position: absolute;
    content: "";
    right: -40px;
    top: 0px;
    border: 24px solid #fff;
    border-right: 26px solid transparent;
}

.about_section .item .offer {
    position: absolute;
    height: 76px;
    width: 76px;
    border-radius: 50%;
    border: 3px solid #fff;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    right: 0;
    top: -15px;
    line-height: 22px;
    text-align: center;
    z-index: 9;
	background-color: #91c9ed;
}

.about_section .item .offer span {
    position: relative;
    top: 13px;
}
.about_section .item .content {
    margin-left: 30px;
    padding-bottom: 35px;
}
.about_section .item .content h3 {
    position: relative;
    font-size: 34px;
    font-family: 'Vibes', cursive;

    color: #fff;
    margin-top: 32px;
}

.about_section .item .content p {
    color: #fff;
    margin-top: 13px;
    margin-bottom: 15px;
}

.about_section .item .content .link-btn a {
    position: relative;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border-bottom: 1px solid #fff;
}

.about_section .item .content .link-btn span{
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    color: #fff;
    padding-left: 10px;
    position: relative;
    top: 7px;
    
}
/*========================== featured products ====================*/
.featured-product{
  position:relative;
  padding:100px 0px 60px;
 
}

.featured-product .filters{
  position:relative;
  text-align:center;
  margin-bottom:40px;
  margin-top: 45px;
}

.featured-product .filters li{
  position:relative;
  display:inline-block;
  padding:5px 20px;
  line-height:24px;
  color: var(--main-color);
  cursor:pointer;
  text-transform:uppercase;
  font-size:14px;
  font-weight:400;
  margin:0px 4px 10px;
  transition:all 300ms ease;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  background-color: var(--main-color);
}

.featured-product .filters li .txt{
  position:relative;
  display:block;
  z-index:1;  
}

.featured-product .filters li:after{
  content:'';
  position:absolute;
  left:0px;
  top:0px;
  width:100%;
  height:100%;
  opacity:1;
  background: #ffffff;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  transition:all 300ms ease;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
}

.featured-product .filters li:before{
  content:'';
  position:absolute;
  left:0px;
  top:0px;
  width:100%;
  height:100%;
  opacity:0;
  transition:all 300ms ease;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
}
.featured-product .filters li:hover,
.featured-product .filters li.active{
  color:#ffffff;
}
.featured-product .filters li:hover:before,
.featured-product .filters li.active:before{
  opacity:1;
}
.featured-product .filters li:hover:after,
.featured-product .filters li.active:after{
  opacity:0;
}
.featured-product .default-item{
  position:relative;
}
.featured-product .default-item.mix{
  display:none;
}
.featured-product .filter-list .single-item{
  margin-bottom:30px;
}
.featured-product .default-item .inner-box{
  position:relative;
  width:100%;
  /*overflow:hidden;*/
}
.featured-product .default-item .single-item {
  position: relative;
  padding: 15px;
  border: 2px solid #f7f7f7;
}

.featured-product .default-item .single-item .image-box {
  text-align: center;  
    line-height: 225px;
}
.featured-product .default-item .single-item .image-box img {

  display: inline-block;
}
.featured-product .default-item .single-item .image-box .product-model {
    position: absolute;
    top: 20px;
    height: 50px;
    line-height: 50px;
    width: 50px;
    color: #fff;
    border-radius: 24px;
}
.featured-product .default-item .single-item .image-box .product-model.new {
    border-top-left-radius: 0;
    left: 20px;
}
.featured-product .default-item .single-item .image-box .product-model.hot {
    border-top-right-radius: 0;
    background: #68cea1;
    right: 20px;
}
.featured-product .default-item .single-item .content {
  position: relative;
  background: #f7f7f7;
  padding: 15px;
  border-bottom: 2px solid #f0f1f1;
}
.featured-product .default-item .single-item .content h3 {
  font-size: 16px;
  color: #333;
  font-weight: 700;
}
.featured-product .default-item .single-item .content .rating {
  font-size: 13px;
  margin: 10px 0;
}
.featured-product .default-item .single-item .content .price {
  font-size: 16px;
  color: #333;
  font-weight: 700;
}
.featured-product .default-item .single-item .content .price .prev-rate{
  font-size: 14px;
  color: #9c9c9c;
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 10px;
}
.featured-product .default-item .single-item .overlay-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .2s;
  transition: .2s;
}
.featured-product .default-item .single-item:hover .overlay-box {
  -webkit-transition: .5s ease;
  transition: .5s ease;
  opacity: 1;
  visibility: visible;
  -webkit-transition: .2s;
  transition: .2s;
}

.featured-product .default-item .single-item .overlay-box .inner {
  position: relative;
  height: 100%;
}

.featured-product .default-item .single-item .overlay-box .top-content {
  position: absolute;
  top: -50px;
  width: 100%;
  -webkit-transition: .4s ease;
  transition: .4s ease;
}
.featured-product .default-item .single-item:hover .overlay-box .top-content {
  top: 0px;
  -webkit-transition: .4s ease;
  transition: .4s ease;
}

.featured-product .default-item .single-item .overlay-box .top-content ul  {
  position: relative;
  text-align: center;
  margin-top: 80px;
}
.featured-product .default-item .single-item .overlay-box .top-content ul li {
  position: relative;
  display: inline-block;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  border: 2px solid;
  text-align: center;
  margin: 0 7px;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}
.featured-product .default-item .single-item .overlay-box .top-content ul li span {
  line-height: 40px;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}
.featured-product .default-item .single-item .overlay-box .top-content ul li:hover span {
  color: #fff;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.featured-product .default-item .single-item .overlay-box .top-content .tultip {
    position: absolute;
    bottom: 55px;
    opacity: 0;
    line-height: 30px;
    height: 30px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    left: -33px;
    color: #fff;
    width: 105px;
    z-index: 99;
}
.featured-product .default-item .single-item .overlay-box .top-content ul li span i {
    position: absolute;
    left: 50%;
    bottom: -8px;
    margin-left: -6px;
    font-size: 20px;
}

.featured-product .default-item .single-item .overlay-box .top-content .tultip-op .tultip:hover {
    opacity: 0 !important;
}
.featured-product .default-item .single-item .overlay-box .top-content .tultip-op:hover .tultip {
    opacity: 1;
}

.featured-product .default-item .single-item .overlay-box .bottom-content {
    position: absolute;
    bottom: -60px;
    right: 0;
    left: 0;
    margin: 15px;
    padding: 10px 20px;
    -webkit-transition: .5s ease;
    transition: .5s ease;
}
.featured-product .default-item .single-item:hover .overlay-box .bottom-content {
    bottom: 0;
    -webkit-transition: .5s ease;
    transition: .5s ease;
}

.featured-product .default-item .single-item .overlay-box .bottom-content h4 {
  text-align: left;
}
.featured-product .default-item .single-item .overlay-box .bottom-content h4 a {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  border-bottom: 1px solid #fff;
  margin-bottom: 15px;
}
.featured-product .default-item .single-item .overlay-box .bottom-content p {
  color: #fff;
  text-align: left;
}
/*================================ Why Choose Us =========================*/
.why_choose_us {
  position: relative;
  padding: 0px 0 60px;
 
}
.why_choose_us .theme_title_bg {
  padding: 90px 0 80px;
}
.why_choose_us .row {
  margin-top:-80px;
}
.why_choose_us .choose_us_item:hover {
    background-color: #91c9ed;
}
.why_choose_us .choose_us_item {
      border: 1px solid #f7f7f7;
    background: #fff;
    border-radius: 6px;
    padding: 35px 0 20px 12px;
    /* padding: 15px 0 15px 12px; */
    /* padding-left: 30px; */
    margin-bottom: 30px;
    border-radius: 0;
    /* padding-top: 40px; */
    /* padding-bottom: 45px;*/
}
.why_choose_us .choose_us_item .icon {
  width:50px;
  height:50px;
  margin-top:3px;
  border-radius: 0;
  text-align: center;
  margin-left: 5%;
}
.why_choose_us .choose_us_item .icon .ficon:before {
  font-size: 36px;
  line-height: 50px;
  
}
.why_choose_us .choose_us_item .text {
  margin-left: 18px;
  width: 76%;
}
.why_choose_us .choose_us_item .text h5 {
  margin-bottom: 7px;
  font-size: 20px;
  margin-top: 4%;
  color: #333;
  font-weight: 700;
}
.why_choose_us .choose_us_item:hover .text p,
.why_choose_us .choose_us_item:hover .text h5 {
  color: #fff;
}
.why_choose_us .choose_us_item:hover .icon .ficon:before {
    color: #fff;
}
/*========================== featured products ====================*/
.gallery{
  position:relative;
  padding:0px 0px 60px;
  
}
.gallery.gallery-grid {
  padding:0px 0px 90px;
  text-align: center;
}
.gallery .theme_title {
  margin-bottom: 40px;
}
.gallery .filters{
  position:relative;
  text-align:center;
  margin-bottom:40px;
  margin-top: 90px;
}
.gallery .isotop_item{
  margin-bottom: 30px;
}

.gallery .filters li{
  position:relative;
  display:inline-block;
  padding:15px 15px;
  line-height:24px;
  color:#333;
  border-bottom: 2px solid #f7f7f7;
  cursor:pointer;
  text-transform:uppercase;
  font-size:14px;
  font-weight:700;
  margin:0px 12px 0px;
  transition:all 300ms ease;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
}

.gallery .filters li .txt{
  position:relative;
  display:block;
  z-index:1;  
}
.gallery .filters li:after{
  content:'';
  position:absolute;
  left:0px;
  top:0px;
  width:100%;
  height:100%;
  opacity:1;
  background: #f7f7f7;
  transition:all 300ms ease;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
}
.gallery .filters li:before{
  content:'';
  position:absolute;
  left:0px;
  top:0px;
  width:100%;
  height:100%;
  opacity:0;
  transition:all 300ms ease;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
}
.gallery .filters li:hover:before,
.gallery .filters li.active:before{
  opacity:1;
}
.gallery .filters li:hover:after,
.gallery .filters li.active:after{
  opacity:0;
}
.gallery .filters {
    display: inline-block;
    background: #f7f7f7;
}
.gallery .default-item{
  position:relative;
}
.gallery .default-item.mix{
  display:none;
}
.gallery .filter-list .single-item{
  margin-bottom:30px;
}
.gallery .default-item .inner-box{
  position:relative;
  width:100%;
  overflow:hidden;
}
.gallery .default-item .single-item {
  position: relative;
}
.gallery .default-item .single-item .image-box {
  text-align: center;  
    line-height: 225px;
}
.gallery .default-item .single-item .image-box img {
  display: inline-block;
}
.gallery .default-item .single-item .overlay-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .2s;
  transition: .2s;
      background-color: #91c9ed;
}
.gallery .default-item .single-item:hover .overlay-box {
  -webkit-transition: .5s ease;
  transition: .5s ease;
  opacity: 1;
  visibility: visible;
  -webkit-transition: .2s;
  transition: .2s;
}

.gallery .default-item .single-item .overlay-box .inner {
  position: relative;
  height: 100%;
}


.gallery .default-item .single-item .overlay-box .bottom-content {
    position: absolute;
    bottom: -60px;
    right: 0;
    left: 0;
    padding: 20px;
    -webkit-transition: .5s ease;
    transition: .5s ease;
}
.gallery .default-item .single-item:hover .overlay-box .bottom-content {
    bottom: 0;
    -webkit-transition: .5s ease;
    transition: .5s ease;
}

.gallery .default-item .single-item .overlay-box .bottom-content h4 {
  text-align: right;
}
.gallery .default-item .single-item .overlay-box .bottom-content h4 a {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  border-bottom: 1px solid #fff;
  margin-bottom: 15px;
}

.gallery .default-item .single-item .overlay-box .bottom-content .price {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  text-align: right;
}
.gallery .default-item .single-item .overlay-box .bottom-content .prev-rate{
  font-size: 14px;
  color: #fff;
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 10px;
}
.gallery .default-item .single-item .overlay-box .bottom-content .icon-box {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: #fff;
  height: 45px;
  width: 45px;
  text-align: center;
  line-height: 45px;
}
.gallery .default-item .single-item .overlay-box .bottom-content .icon-box a {
  font-size: 20px;
}

.gallery .default-item .single-item .overlay-box .image-view {
    display: table;
    height: 100%;
    width: 100%;
    position: absolute;
    top: -50px;
    left: 0;
    -webkit-transition: .5s ease;
    transition: .5s ease;
}
.gallery .default-item .single-item:hover .overlay-box .image-view {
    top: 0;
    -webkit-transition: .5s ease;
    transition: .5s ease;
}

.gallery .default-item .single-item .overlay-box .image-view .icon-holder {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    -webkit-transition: .5s ease;
    transition: .5s ease;
}

.gallery .default-item .single-item .overlay-box .image-view .icon-holder a {
    width: 45px;
    height: 45px;
    display: inline-block;
    -webkit-transition: all 700ms ease 0s;
    transition: all 700ms ease 0s;
}

.gallery .default-item .single-item .overlay-box .image-view .icon-holder a span::before {
    color: #fff;
    display: block;
    font-size: 30px;
    font-weight: 100;
    padding: 10px 14px;
    -webkit-transition: all 700ms ease 0s;
    transition: all 700ms ease 0s;
}

.gallery .load-more-button {
    padding-top: 40px;
}

.gallery .load-more-button a {
    background: #000000 none repeat scroll 0 0;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    padding-left: 38px;
    padding-right: 38px;
    padding-top: 12px;
    padding-bottom: 14px;
    text-transform: uppercase;
    -webkit-transition: all 700ms ease 0s;
    transition: all 700ms ease 0s;
    border-radius: 3px;
}
/*==========news=========*/
.news {
  position: relative;
  padding: 90px 0 60px;
  background: #f7f7f7;

}
.news.single_news_page{
   background: #fff; 
}
.news.single_news_page .blogList_single_post{
  padding-top: 0;
  padding-bottom: 50px;
}

.news.single_news_page.style-2 .blogList_single_post .post .text {
  background: #f7f7f7;
}
.news.single_news_page.massonary_mode .blogList_single_post .post .text {
  background: none;
  border: 0px;
}
.news.single_news_page.massonary_mode .blogList_single_post .post {
  border: 1px solid #f1f1f1;
  margin-top: 5px;
}

.news .blogList_single_post {
  position: relative;
  padding: 40px 0 30px;
}


.news .blogList_single_post .img_holder {
  position: relative;
}
.news .blogList_single_post .img_holder:before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.05);
    z-index: 0;
}
.news .blogList_single_post .img_holder>a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
}
.news .blogList_single_post .img_holder .opacity {
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.1);
  -webkit-transform:scale(0.1);
  -moz-transform:scale(0.1);
  -ms-transform:scale(0.1);
  -o-transform:scale(0.1);
      background-color: #91c9ed;
}
.news .blogList_single_post .img_holder .opacity .icon {
  display: table;
  width:100%;
  height:100%;
}
.news .blogList_single_post .img_holder .opacity .icon span {
  display: table-cell;
  vertical-align: middle;
}
.news .blogList_single_post .img_holder .opacity .icon span a {
  display: block;
  width:55px;
  height:55px;
  margin:0 auto;
  line-height: 55px;
  text-align: center;
  font-size: 60px;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  border-radius: 50%;
  color:#fff;
}
.news .blogList_single_post:hover .opacity {
  opacity: 1;
  visibility:visible;
  transform: scale(1);
  -webkit-transform:scale(1);
  -moz-transform:scale(1);
  -ms-transform:scale(1);
  -o-transform:scale(1);
}
.news .blogList_single_post .post {

}
.news .blogList_single_post .post .text {
  background: #fff;
  padding: 30px;
  border-top: 2px solid;
}
.news.massonary_mode .blogList_single_post .post .text {
  background: #fff;
  padding: 30px 24px;
  border-top: 2px solid;
}

.news .blogList_single_post .post h4 a {
  display: block;
  color:#333;
  line-height: 32px;
  font-weight: 700;
  font-size: 17px;
}
.massonary_mode #isotop_wrapper {
    margin-left: -15px;
    margin-right: -15px;
}
.news .blogList_single_post .post p {
  margin: 17px 0 25px 0;
}
.news .blogList_single_post .post .link a {
  font-size: 14px;
  color: #333;
  font-weight: 700;
  text-transform: uppercase;
  
}
.news.single_news_page.with_sidebar .blogList_single_post .post .link a {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    line-height: 50px;
    text-align: center;
    width: 170px;
    display: inline-block;
  
}
.news.single_news_page.with_sidebar .blogList_single_post .post .link a:hover {
    color: #fff; 
}


.news .blogList_single_post .post ul li {
  display: inline-block;
  position: relative;
  margin: 16px 30px 16px 0;
}
.news.massonary_mode .blogList_single_post .post ul li {
  display: inline-block;
  position: relative;
  margin: 7px 30px 0px 0;
}
.news .blogList_single_post .post ul li a {
  font-size: 14px;
 
}
.news .blogList_single_post .post ul li a i {
  margin-right: 1px;
   color: #91c9ed;
}
.news .blogList_single_post .post ul li:last-child {
  margin-right: 0;
  color: #91c9ed;
}
.news .blogList_single_post .post ul li:before {
  content: '';
  height: 5px;
  width:5px;
  border-radius: 50%;
  background: #d2d2d2;
  position: absolute;
  right: -18px;
  top: 9px;
}
.news .blogList_single_post .post ul li:last-child:before {
  display: none;
}
.news .blogList_single_post .post ul li a {
  font-weight: 500;
}
.news .page_pagination {
  margin:0;
}
.news .blogList_single_post .post .link a span{
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    color: #333;
    padding-left: 10px;
    position: relative;
    top: 7px;
    
}
.blogList_single_post .share {
  width:50px;
  line-height: 50px;
  text-align: center;
  background: #f7f7f7;
  font-size: 18px;
  position: relative;
  z-index: 2;
  color:#9e9e9e;
}
.blogList_single_post .share:hover,
.blogList_single_post .share-content li a:hover {
  color:#fff;
}
.news.single_news_page .blogList_single_post .share,
.news.single_news_page .blogList_single_post .share-content,
.news.single_news_page .blogList_single_post .share-content li {
  display: inline-block;
  margin: 0px;
  margin: 0 2px;
}
.blogList_single_post .share-content li:before {
  display: none;
}
.blogList_single_post .share-content li a {
  width:50px;
  line-height: 50px;
  text-align: center;
  font-size: 18px;
  margin: 0 2px 0 2px;
  color: #333;
  background: #f7f7f7;
}
.blogList_single_post .share-content {
  -webkit-transform: translate3d(400px, 0, 0);
          transform: translate3d(400px, 0, 0);
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.blogList_single_post .share-content.share-show {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
}
/*=================news single_post===============*/
.news.single_news_page.news_single .blogList_single_post .post{
  padding: 0 20px;
  border: 1px solid #f1f1f1;
  margin-top: 10px;
}
.news.single_news_page.news_single .blogList_single_post .post .text {
  border: none;
  padding: 30px 0;
}

.news .blogList_single_post .post .qoute {
  position: relative;
  background: #f7f7f7;
  text-align: center;
  padding: 30px;
}
.news .blogList_single_post .post .qoute h3 {
  color: #333;
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  line-height: 32px;
  margin-bottom: 10px;
}

.news .blogList_single_post .post .qoute span {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
}

.news.single_news_page.news_single .share_option {
  padding: 30px 0 20px;
  border-top: 1px solid #f1f1f1;
}
.news.single_news_page.news_single .share_option h4 {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.news.single_news_page.news_single .post .social_icon {
  margin-left: 30px;
}

.news.single_news_page.news_single .post .social_icon li {
  display: inline-block;
  margin: 0px;
  margin-left: 5px;
  margin-top: -8px;
}
.news.single_news_page.news_single .post .social_icon li:before {
  display: none;
}

.news.single_news_page.news_single .post .social_icon li a {
  width:45px;
  line-height: 43px;
  text-align: center;
  font-size: 18px;
  background: #f7f7f7;
  color: #9c9c9c;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.news.single_news_page.news_single .post .social_icon li a i {
  color: #9c9c9c;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.news.single_news_page.news_single .post .social_icon li a:hover i {
  color:#fff;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}
/*author*/
.news.single_news_page.news_single .author-post .social_icon {
  position: relative;
}

.news.single_news_page.news_single .author-post .social_icon li {
  display: inline-block;
  margin: 0px;
  margin-right: 5px;
}
.news.single_news_page.news_single .author-post .social_icon li:before {
  display: none;
}

.news.single_news_page.news_single .author-post .social_icon li a {
  line-height: 43px;
  text-align: center;
  font-size: 18px;
  color: #9c9c9c;
}

.news.single_news_page.news_single .author-post .social_icon li a i {
  color: #9c9c9c;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.news.single_news_page.news_single .comment-box .single-comment-box span,
.news.single_news_page.news_single .comment-box .single-comment-box ul {
    display: inline-block;
}
.news.single_news_page.news_single .comment-box .single-comment-box span {
    margin-right: 7px;
    font-size: 14px;
    font-family: 'Cairo', sans-serif;
}
.news.single_news_page.news_single .comment-box .single-comment-box ul li {
    display: inline-block;
    margin-left: 2px;
    font-size: 12px;
}

/*===========sidebar-news===============*/


.news.single_news_page .recent-posts {
    position: relative;
    padding-top: 25px;
}

.news.single_news_page .recent-posts .post{
    position: relative;
    font-size: 14px;
    margin-bottom: 15px;
    min-height: 50px;
    padding: 0px 0px 11px 95px;
    color: #cccccc;
}

.news.single_news_page .recent-posts .post:last-child{
    border-bottom: 0px;
}
.news.single_news_page .recent-posts .post .post-thumb{
    position:absolute;
    left:0px;
    top: 12px;
    width:81px;
    height:82px;
}

.news.single_news_page .recent-posts .post .post-thumb img{
    width:100%;
    display:block;  
}

.news.single_news_page .recent-posts .post h4{
    position: relative;
    top: 8px;
    font-size: 16px;
    font-weight: 700;
    margin: 0px 0px 15px;
    line-height:20px;
    color:#333;
}
.news.single_news_page .recent-posts .post .post-info{
    font-size: 14px;
    font-weight:400;
    margin:0px;
    line-height:1.6em;
    color: #9c9c9c;
    font-family: 'Cairo', sans-serif;
}

.news.single_news_page .recent-posts .post a:hover{
    -webkit-transition: .5s ease;
    transition: .5s ease;  
}

.news.single_news_page .recent-posts .post h4 a{
    color: #333;
    -webkit-transition: .5s ease;
    transition: .5s ease;
}

.news.single_news_page .recent-posts .post .fa{
    font-size: 14px;
    margin-right: 6px;
}

/*====================== call out =================*/
.call-out {
  position: relative;
  padding-top: 35px;
  padding-bottom: 5px;
      color: var(--main-color);
	  background-color: var(--main-color);
}
.call-out h2 {
  position: relative;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
}
.call-out p {
  position: relative;
  font-size: 16px;
  color: #fff;
  /*font-style: italic;*/
  margin-bottom: 25px;
}

.call-out .contact-box{
  position: relative;
}

.call-out form.contact-form {
    margin-bottom: 25px;
}

.call-out .contact-box .form-group {
  position: relative;
  display: inline-block;
  margin: 0 15px;
}
.call-out .contact-box .form-group:last-child {
  margin-right: 0px;
}

.call-out .contact-box .form-group {
  position: relative;
  display: inline-block;
}
.call-out .contact-box .form-group input {
    height: 50px;
    border: 1px solid transparent;
    padding: 0 10px;
    background: transparent;
    border-radius: 0;
    margin-bottom: 15px;
    background: #fff;
    padding: 0 35px;
}
.call-out .contact-box .form-group i {
    position: absolute;
    right: 12px;
    top: 17px;
    font-size: 18px;
	color:var(--main-color);
}
.call-out .contact-box .form-group button {
    width: 150px;
    line-height: 50px;
    text-align: center;
    background: #fff;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'Cairo', sans-serif;
    -webkit-transition: .5s ease;
    transition: .5s ease;
}
.contact-box .form-group button:hover {
  -webkit-transition: .5s ease;
  transition: .5s ease;
}


/*==================== Google map ====================*/

#google-map-area {
  height:450px;
}
#google-map {
  height:100%;
  width:100%;
}
/*============================ Footer =====================*/
footer {
  padding-top: 60px;
  background: #363636;
 
}
footer .main_footer .footer_logo a.tran3s {
    width: 150px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
	    background-color: #91c9ed;
}
footer .main_footer .footer_logo {
    padding-top: 18px;
}
footer span {
    color: #91c9ed;
}
footer .main_footer .footer_logo a.tran3s i {
  margin-right: 6px;
}
footer .main_footer .footer_logo p {
  color: #9c9c9c;
  margin:13px 0 22px 0;
}
body.ar footer .main_footer .footer_logo p{
    text-align: right;
}
footer .main_footer .footer_logo a{
    display: block;
}
footer .main_footer .footer_logo a.tran3s:hover {
  background: #fff;
  color: #91c9ed;
}
footer .main_footer h5 {
  color:#fff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 30px 0 30px 0;
}
footer .main_footer .footer_news li span {
  color:#fff;
  font-size: 14px;
}
footer .main_footer .footer_news li span i {
  font-size: 16px;
  margin-right: 11px;
}
footer .main_footer .footer_news li p {
  font-family: 'Montserrat-SemiBold';
  color:#fff;
  line-height: 26px;
  margin: 14px 0 7px 0
}

footer .main_footer .footer_news li a i {
  margin-left: 8px;
}
footer .main_footer .footer_news li a:hover {
  color:#fff;
}
footer .main_footer .footer_news li {
  margin-bottom: 32px;
}
footer .main_footer .footer_subscribe p {
  font-weight: 500;
}
footer .main_footer .footer_subscribe form {
  position: relative;
  height:50px;
  color:#5e6776;
  margin: 30px 0 15px 0;
}
footer .main_footer .footer_subscribe form input {
  height:100%;
  width: 100%;
  border:none;
  color:#5e6776;
  font-family: 'Raleway', sans-serif;
  font-weight: normal;
  padding:0 52px 0 10px; 
}
footer .main_footer .footer_subscribe form button {
  position: absolute;
  top:0;
  right:0;
  height:100%;
  width:50px;
  text-align: center;
  font-size: 18px;
  color:#fff;
}


footer .main_footer .recent-posts .post{
    position: relative;
    font-size: 14px;
    margin-bottom: 15px;
    min-height: 50px;
    padding: 0px 0px 11px 95px;
    color: #cccccc;
}
footer .main_footer .recent-posts .post:last-child{
    border-bottom: 0px;
}

footer .main_footer .recent-posts .post .post-thumb{
    position:absolute;
    left:0px;
    top: 12px;
    width:81px;
    height:82px;
}

footer .main_footer .recent-posts .post .post-thumb img{
    width:100%;
    display:block;  
}

footer .main_footer .recent-posts .post h4{
    position: relative;
    top: 8px;
    font-size: 14px;
    font-weight: 700;
    margin: 0px 0px 15px;
    line-height:20px;
    color:#333;
}
footer .main_footer .recent-posts .post .post-info{
    font-size: 14px;
    font-weight:400;
    margin:0px;
    line-height:1.6em;
    color: #9c9c9c;
    font-family: 'Open Sans',sans-serif;
    font-style: italic;
}
footer .main_footer .recent-posts .post a:hover{
    -webkit-transition: .5s ease;
    transition: .5s ease;  
}
footer .main_footer .recent-posts .post h4 a{
    color: #9c9c9c;
    -webkit-transition: .5s ease;
    transition: .5s ease;
}
footer .main_footer .recent-posts .post .fa{
    font-size: 14px;
    margin-left: 10px;
	color: #91c9ed;
}
/*catregories*/
footer .main_footer .list{
    position:relative;
}
footer .main_footer .list li{
    position:relative;
    line-height:32px;
    padding: 5px 0px 5px 0px;
    border-bottom: 1px dashed #3e3e3e;
}



footer .main_footer .list li a{
    position:relative;
    display:block;
    color:#9c9c9c;
    font-size: 14px;
    font-weight:400;
    font-family: 'Cairo', sans-serif;
}

footer .main_footer .list li a i{
    margin-left: 15px;
    font-size: 16px;
}
body.ar footer .main_footer .list li a i{
    margin-left: 0px;
    margin-right: 15px;
}

/*tags*/

footer .main_footer .popular-tags {
  margin-top: 25px;
}  

footer .main_footer .popular-tags a {
    position: relative;
    display: inline-block;
    line-height: 24px;
    padding: 5px 9px;
    background: #2d2d2d;
    color: #fff;
    margin: 5px 3px;
    text-transform: capitalize;
    font-size: 14px;
    font-family: 'Cairo', sans-serif;
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
}

footer .main_footer .popular-tags a:hover{
    color: #fff;
    -webkit-transition: .5s ease;
    transition: .5s ease;
}
footer .main_footer .footer_contact .list li {
    border-bottom: 0px;
    padding: 2px 0px;
}

footer .main_footer {
  margin-bottom: 60px;
}

/*footer bottom*/



footer .bottom_footer {
  padding: 10px 0;
  background: #2f2f2f;
}


footer .bottom_footer ul li {
  display: inline-block;
  margin-right: 18px;
  margin-top:5px;
}
footer .bottom_footer ul li a {
    color: #9c9c9c;
    font-size: 25px;
}
footer .bottom_footer h6 {
  font-size: 14px;
  color:#fff;
  margin-top: 15px;
}


.scroll-top {
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 90px;
    right: 50px;
    z-index: 99;
    display: none;
    color: #fff;
    text-align: center;
    background: #2f2f2f !important;
}
.scroll-top span:before {
  font-size: 27px;
}
.scroll-top:after {
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
  background: -webkit-radial-gradient(center ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

/*========================== Request Quote Footer ======================*/


/*
* 18.= BreadCumb area styles
*/

.breadcrumb-area {
    position: relative;
    background-size: cover;
    padding: 116px 0;
}

.breadcrumbs h1 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 17px;
    text-transform: uppercase;
}

.breadcrumbs h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
        font-family: 'Cairo', sans-serif;
}


/*
* 19.= Breadcumb bottom area styles
*/

.breadcrumb-bottom-area {
    padding-top: 17px;
    padding-bottom: 17px;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
	
}

.breadcrumb-bottom-area ul {}

.breadcrumb-bottom-area ul li {
    display: inline-block;
    margin-right: 5px;
    text-transform: uppercase;
	color: #91c9ed;
}
.breadcrumb-bottom-area ul li a {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    -webkit-transition: all 700ms ease 0s;
    transition: all 700ms ease 0s;
}
.breadcrumb-bottom-area p {
    margin: 0;
    float: right;
    color: #fff;
}
.breadcrumb-bottom-area p span {
    color: #91c9ed;
}
/*________________Preloader_______________ */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    z-index: 999999999;
    overflow: hidden;
}


#loader-wrapper #loader {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

#loader-wrapper #loader {
  color: #91c9ed;
  -webkit-animation: color-bubble 2s linear 0s infinite;
  animation: color-bubble 2s linear 0s infinite;
}

#loader-wrapper #loader:after, 
#loader-wrapper #loader:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 100%;
  box-shadow: 0 0 0 3px;
  -webkit-animation: spinner-bubble 1.3s linear 0s infinite;
  animation: spinner-bubble 1.3s linear 0s infinite;
  margin: auto;
  width: 10px;
  height: 10px;
  opacity: 0;
}

#loader-wrapper #loader:before {
  -webkit-animation: spinner-bubble 1.3s linear 2s infinite;
  animation: spinner-bubble 1.3s linear 2s infinite;
}

@-webkit-keyframes spinner-bubble {
  from {
    width: 10px;
    height: 10px;
    opacity: .8;
  }
  to {
    width: 80px;
    height: 80px;
    opacity: 0;
  }
}
@keyframes spinner-bubble {
  from {
    width: 10px;
    height: 10px;
    opacity: .8;
  }
  to {
    width: 80px;
    height: 80px;
    opacity: 0;
  }
}




.shadow {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}












/*=================== boxed layout =================*/
.main_page.active_boxlayout {
    width: 1350px;
    margin: 0 auto;
    background: #fff;
    overflow-x:hidden;
}
body.bg {
  background: url(../images/home/pattern.png) repeat;
}
.about-gallery .link-btn {
    position: relative;
    top: -86px;
}
.about-gallery .link-btn a {
    position: absolute;
    /* right: 90%; */
    left: 0%;
    top: 35px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}
.about-gallery .link-btn span{
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    color: #fff;
    padding-left: 10px;
    position: relative;
    top: 5px;
    
}
/*owl dots*/
.partners .owl-controls {
    text-align: center;
    display: block;
    position: relative;
    bottom: -35px;
}
.partners .owl-dots .owl-dot {
    display: inline-block;
}
.partners .owl-dots .owl-dot span {
    background: none repeat scroll 0 0 #f0f0f0;
    border-radius: 50%;
    display: block;
    height: 10px;
    width: 10px;
    margin: 5px 5px;
    transition: opacity 200ms ease 0s;
}
.partners .owl-dots .owl-dot.active span,
.partners .owl-dots .owl-dot:hover span {
    background-color: #91c9ed;
}
.partners {
    padding-top: 60px;
    padding-bottom: 87px;
}
.main-container {
	padding-top: 70px;
	padding-bottom: 70px;
}
body.single .main-container {
	padding-top: 50px;
	padding-bottom: 50px;
}
.banner-wrapper-inner {
	text-align: center;
}
.banner-wrapper.has_background {
	position: relative;
}
.banner-wrapper.has_background img {
	min-height: 270px;
	object-fit: cover;
}
.shop-page{
	
}
.banner-wrapper.has_background .banner-wrapper-inner .page-title {
	margin-top: 0;
}
.banner-wrapper.has_background .banner-wrapper-inner {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
}
.page-title {
	font-family: 'Kufam', cursive;
	text-align: center;
	font-size: 40px;
	font-weight: 400;
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 15px;
	z-index: 1;
}
.page-title::before {
	content: '';
	width: 70px;
	height: 4px;
	background-color: #91C9ED;
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: -1;
}
@media (max-width: 767px) {
	.banner-wrapper.has_background img {
		min-height: 200px;
	}
}
.breadcrumbs {
	width: 1800px;
	max-width: 100%;
	padding-left: 20px;
	padding-right: 20px;
	margin: 15px auto 0;
	font-weight: 500;
}
body.single .breadcrumbs {
	text-align: left;
}
.breadcrumbs .breadcrumb {
	list-style: none;
	background-color: transparent;
	padding: 0;
	margin-bottom: 0;
	display: block;
}
.breadcrumbs .breadcrumb li {
	display: inline-block;
	color: #666666;
}
.breadcrumbs .breadcrumb li + li::before {
	font-family: 'FontAwesome', sans-serif;
	content: "\f105";
	color: #666666;
	padding-left: 13px;
	padding-right: 10px;
}
.breadcrumbs .breadcrumb li a:not(:hover) {
	color: #000;
}
.kreen-breadcrumb {
	color: #666666;
	width: 1800px;
	max-width: 100%;
	padding-left: 20px;
	padding-right: 20px;
	margin: 25px auto 0;
	text-align: center;
}
body.single-product .kreen-breadcrumb {
	text-align: left;
}
.kreen-breadcrumb a:not(:hover) {
	color: #000;
}
.kreen-breadcrumb i {
	padding-left: 11px;
	padding-right: 11px;
	color: #868686;
}
@media (max-width: 1199px) {
	.kreen-breadcrumb {
		padding-left: 15px;
		padding-right: 15px;
	}
}
ul.products li.product-category {
	width: 33.3333333%;
	padding-left: 15px;
	padding-right: 15px;
	float: left;
	margin-bottom: 30px;
}
ul.products li.product-category:nth-child(3n+1) {
	clear: left;
}
@media (max-width: 1199px) {
	ul.products li.product-category {
		margin-bottom: 20px;
	}
}
@media (max-width: 767px) {
	ul.products li.product-category {
		margin-bottom: 10px;
		width: 50%;
	}
	ul.products li.product-category:nth-child(3n+1) {
		clear: none;
	}
	ul.products li.product-category:nth-child(2n+1) {
		clear: left;
	}
}
/* ==========================================================================
7.1 SHOP CONTROL
========================================================================== */
/*shop-control*/
.shop-control::before, .shop-control::after {
	content: '';
	display: table;
}
.shop-control::after {
	clear: both;
}
.grid-view-mode {
	margin-bottom: 10px;
	display: inline-block;
}
.grid-view-mode > form {
	display: inline-block;
}
.grid-view-mode .modes-mode {
	background-color: #f0f0f0;
	width: 46px;
	height: 46px;
	line-height: 44px;
	color: #868686;
	border: 1px solid #f0f0f0;
	margin-right: 7px;
	padding: 13px 12px;
	border-radius: 50%;
	vertical-align: top;
	display: inline-block;
}
.grid-view-mode .modes-mode.mode-list {
	padding: 13px 9px;
}
.grid-view-mode .modes-mode:hover,
.grid-view-mode .modes-mode:focus,
.grid-view-mode .modes-mode:active,
.grid-view-mode .modes-mode.active {
	color: #fff;
	border-color: #91C9ED;
	background-color: #91C9ED;
}
.grid-view-mode .modes-mode .button-inner {
	font-size: 0;
	position: relative;
}
/*mode-grid*/
.grid-view-mode .modes-mode.mode-grid .button-inner {
	width: 16px;
	height: 16px;
	display: block;
	margin-left: 2px;
}
.grid-view-mode .modes-mode.mode-grid .button-inner span {
	display: block;
	position: absolute;
	left: 6px;
	width: 4px;
	border-bottom: 4px solid;
}
.grid-view-mode .modes-mode.mode-grid .button-inner span:first-child {
	top: 0;
}
.grid-view-mode .modes-mode.mode-grid .button-inner span:nth-child(2) {
	top: 6px;
}
.grid-view-mode .modes-mode.mode-grid .button-inner span:nth-child(3) {
	bottom: 0;
}
.grid-view-mode .modes-mode.mode-grid .button-inner span::before {
	content: '';
	position: absolute;
	left: -6px;
	top: 0;
	width: 4px;
	border-bottom: 4px solid;
	display: block;
}
.grid-view-mode .modes-mode.mode-grid .button-inner span::after {
	content: '';
	position: absolute;
	right: -6px;
	top: 0;
	width: 4px;
	border-bottom: 4px solid;
	display: block;
}
/*mode-list*/
.grid-view-mode .modes-mode.mode-list .button-inner {
	width: 22px;
	height: 16px;
	display: block;
	margin-left: 2px;
}
.grid-view-mode .modes-mode.mode-list .button-inner span {
	display: block;
	position: absolute;
	left: 0;
	width: 4px;
	border-bottom: 4px solid;
}
.grid-view-mode .modes-mode.mode-list .button-inner span:first-child {
	top: 0;
}
.grid-view-mode .modes-mode.mode-list .button-inner span:nth-child(2) {
	top: 6px;
}
.grid-view-mode .modes-mode.mode-list .button-inner span:nth-child(3) {
	top: 12px;
}
.grid-view-mode .modes-mode.mode-list .button-inner span::before {
	content: '';
	position: absolute;
	top: 1px;
	right: -18px;
	width: 15px;
	border-bottom: 2px solid;
}
.kreen-ordering,
.per-page-form {
	vertical-align: top;
	text-align: left;
	display: inline-block;
	margin-bottom: 10px;
	float:left;
}
.kreen-ordering ~ .per-page-form {
	padding-left: 9px;
}
.kreen-ordering select,
.per-page-form select {
	border: 1px solid #e4e4e4;
	line-height: 44px;
	padding: 0 42px 0 22px;
	height: 46px;
}
.per-page-form label {
	margin-bottom: 0;
}
.per-page-form label:nth-child(2) {
	display: none;
}
.shop-before-control {
	text-align: right;
	padding-bottom: 30px;
}
.shop-before-control .grid-view-mode {
	float: right;
}
.shop-after-control {
	width: 100%;
	text-align: right;
	overflow: hidden;
	padding-top: 20px;
}
.shop-after-control .kreen-pagination {
	float: left;
}
body.ar .shop-after-control .kreen-pagination{
    float: right;
}
.shop-after-control .kreen-result-count {
	float: right;
	border: 1px solid #e4e4e4;
	border-radius: 30px;
	line-height: 44px;
	padding: 0 22px;
	height: 46px;
	margin-bottom: 0;
}
body.ar .shop-after-control .kreen-result-count{
    float: left;
}
@media (max-width: 767px) {
	.shop-after-control .kreen-pagination {
		width: 100%;
		margin-bottom: 10px;
		text-align: left;
	}
	.shop-before-control {
		padding-bottom: 25px;
	}
}
@media (max-width: 480px) {
	.shop-before-control {
		text-align: center;
	}
	.shop-before-control .grid-view-mode {
		float: none;
		text-align: left;
	}
	.grid-view-mode,
	.kreen-ordering,
	.per-page-form {
		padding-left: 0 !important;
		width: 100%;
	}
	.per-page-form label,
	.kreen-ordering select,
	.per-page-form select {
		width: 100%;
	}
	.shop-after-control .kreen-result-count {
		width: 100%;
		text-align: center;
	}
}
/*=========*/
.product-item .flash {
	position: absolute;
	top: 15px;
	left: 25px;
	z-index: 1;
}
.sold-out, .onnew, .onsale {
	color: #fff;
	display: table;
	font-size: 13px;
	margin-bottom: 5px;
	padding-left: 10px;
	padding-right: 10px;
	position: relative;
	min-width: 50px;
	text-align: center;
	border-radius: 22px;
}
.sold-out span, .onnew span, .onsale span {
	height: 22px;
	line-height: 22px;
	display: block;
}
.onnew {
	background-color: #000000;
	display: none;
}
.onsale {
	background-color: var(--main-color);
}
.sold-out {
	background-color: #b6b6b6;
}

.product-name {
	font-size: 18px;
	font-weight: 500;
	margin-top: 0;
	margin-bottom: 6px;
	    margin-top: 5%;
}
.product-name a:not(:hover) {
	color: inherit;
}
.price {
	
	font-size: 16px;
	/*color: #91C9ED;*/
}
.price del {
	font-size: 14px;
	color: #8a8a8a;
}
.price ins {
	color: inherit;
	margin-right: 5px;
	text-decoration: none;
}
.product-item .price {
	font-weight: 500;
}
.product-item .variations_form {
	top: 10px;
	right: 10px;
	position: absolute;
}
.product-item .variations_form .data-val a {
	display: table;
}
.product-item.style-01 .variations_form {
	top: auto;
    left: auto;
    right: 10px;
    bottom: 10px;
}
/*.star-rating*/
.star-rating {
	white-space: nowrap;
	line-height: 100%;
	display: block;
	font-size: 0;
	position: relative;
	overflow: hidden;
	width: 90px;
	letter-spacing: 5px;
}
.star-rating::before,
.star-rating span::before {
	font-family: 'FontAwesome', sans-serif;
	font-weight: normal;
	font-size: 15px;
	line-height: 22px;
}
.star-rating span {
	overflow: hidden;
	float: left;
	top: 0;
	left: 0;
	position: absolute;
	line-height: 100%;
}
.star-rating::before {
	content: "\f006\f006\f006\f006\f006";
	color: #cfcfcf;
}
.star-rating > span::before {
	content: "\f005\f005\f005\f005\f005";
	color: #eebe19;
}
.rating-wapper .star-rating {
	display: inline-block;
	vertical-align: top;
}
.rating-wapper .review {
	vertical-align: top;
	display: inline-block;
	line-height: 22px;
	font-size: 14px;
	padding-left: 4px;
	color: #999999;
	display: none;
}

.product-item .variations select,
.product-item .variations .data-val[data-attributetype="select"],
.product-item .variations .reset_variations {
	display: none !important;
}

.product-item.style-01 .product-inner {
	/*overflow: hidden;*/
	border: 1px solid #f1f1f1;
	border-radius: 8px;
}

.product-item.style-01 .kreen-product-details__short-description,
.product-item.style-01 .product-inner > .group-button {
	display: none;
}
.product-item.style-01 .product-info {
	position: relative;
	padding: 1.5rem 1rem;
	text-align: right;
}
/*.product-item.list*/
.product-item{
margin-bottom:5%;	
}
.product-item.list .product-inner {
	overflow: hidden;
	background-color: transparent;
	display: table;
	width: 100%;
	border: 1px solid #e6e6e6;
	padding: 20px;
}
.product-item.list:not(:last-child) .product-inner {
	margin-bottom: 30px;
}
.product-item.list .product-thumb {
	width: 25%;
	display: table-cell;
	vertical-align: middle;
	overflow: hidden;
}
@media (max-width: 767px) {
	.product-item .product-name {
		font-size: 14px;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
		margin-bottom: 4px;
	}
	.star-rating {
		width: 82px;
	}
	.star-rating::before, .star-rating span::before {
		font-size: 13px;
	}
	.product-item.style-02 .product-name {
		margin-bottom: 4px;
	}
	.product-item.style-04 .product-thumb {
		margin-bottom: 12px;
	}
	.product-item .price {
		font-size: 12px;
		margin-bottom: 0;
	}
	.product-item .price del {
		font-size: 12px;
	}
	.product-item.style-04 .price {
		margin-bottom: 0;
	}
	.process-valiable .valiable-text .text {
		font-size: 12px;
	}
	.product-item.list .product-name {
		font-size: 14px;
		line-height: 24px;
	}
	.product-item.list .product-info {
		padding-left: 10px;
	}
	.product-item.list .kreen-product-details__short-description {
		font-size: 12px;
	}
	.product-item.list .price {
		margin-bottom: 0;
	}

}
@media (max-width: 480px) {
	.product-item.style-03 .equal-elem {
		height: auto !important;
	}
	.product-item.style-03 .product-thumb,
	.product-item.style-03 .product-info {
		width: 100%;
		float: none;
		padding: 0;
	}
	.product-item.style-03 .product-thumb {
		margin-bottom: 20px;
	}
}
.products {
	list-style: none;
}
ul.products {
	padding-left: 0;
}
/*.product-item.style-01 .product-inner:hover {
    border-color: #91C9ED;
}*/

/* quick view */
#exampleModal .modal-dialog {
    margin: 8% auto;
    max-width: 960px;
    width: 960px;
}
.quickview .modal-header {
    border: medium none;
    padding: 0.625rem;
}
.modal-body {
    padding: 30px 50px;
	
}
.modal-pro-content h3 {
    color: #454545;
    font-size: 26px;
    font-weight: 500;
    line-height: 1;
    margin: 0 0 15px;
    text-transform: capitalize;
}
body.ar .modal-pro-content h3{
    text-align: right;
}
.product-price-old{
    display: block;
}
body.ar .pop_desc{
    text-align: right;
}
body.ar .product-price-old{
    text-align: right;
}
.product-quantity button {
    border: medium none;
    /* border-radius: 3px; */
    color: var(--main-color);
    border: 1px solid;
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
    border-bottom-left-radius: .5rem;
    border-bottom-right-radius: .5rem;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    /* height: 40px; */
    letter-spacing: 0.025em;
    /* line-height: 40px; */
    /* margin-left: 59px; */
    padding: .4rem 1.75rem;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
    margin: 1rem .5rem;
}
.modal-pro-content .product-quantity {
    display: block;
    margin: 0 0 16px;
    overflow: hidden;
	    color: #fff;
}
.product-quantity button:hover {
    background: var(--main-color) none repeat scroll 0 0;
    color: #fff;
}

.product-quantity button:focus {
  outline: none;
}

.product-quantity button .cart-items-number.addtocart_icon{
  color: var(--main-color) 
}


.product-quantity button .addtocart_icon{
  /*position: absolute;
  top: 0;
  left: 0;
  transform: translate(29px, 10px);*/
  display: none;
  opacity: 0
}

.product-quantity button .addtocart_icon svg path{
  color: #ffffff ;
  fill: #ffffff
}



.product-quantity .addtocart_icon svg path{
  transition: all 0.3s ease 0s;
}

.product-quantity button:hover .addtocart_icon {
  display: inline-block;
  opacity: 1;
}



/* Grow */
.hvr-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
  -webkit-transform: scale(1.01);
  transform: scale(1.01);
}

.form-wizard .cart-plus-minus{
  display: inline-block;
  height: 40px;
  padding: 0;
  position: relative;
  width: 110px;
  text-align: center;
}
.cart-plus-minus-box{
  text-align: center;
}

.form-wizard .dec.qtybutton {
    /*border-right: 1px solid #e5e5e5;*/
    height: 40px;
    left: 0;
    padding-top: 5px;
    top: 0;
}
.form-wizard .inc.qtybutton{
    /*border-left: 1px solid #e5e5e5;*/
    height: 40px;
    right: 0;
    padding-top: 5px;
    top: 0;
}
.form-wizard .qtybutton {
    color: #454545;
    cursor: pointer;
    float: inherit;
    font-size: 16px;
    margin: 0;
    position: absolute;
    transition: all 0.3s ease 0s;
    width: 20px;
    text-align: center;
}



.quickview-color-wrap {
    margin: 29px 0 0;
}
.modal-pro-content .product-quantity .cart-plus-minus {
    display: inline-block;
    float: left;
}

.modal-header .close {
    color: var(--main-color);
    cursor: pointer;
    opacity: 1;
    float: left;
}
.modal-pro-content .product-quantity {
    display: block;
    margin: 16px 0 16px;
    overflow: hidden;
}
.modal-pro-content .product-quantity .cart-plus-minus {
    display: inline-block;
    float: right;
    height: 40px;
    padding: 0;
    position: relative;
    width: 110px;
    margin-left: 5%;
	    margin-top: 3%;
}
.product-price-wrapper{
	font-family: inherit;
    font-size: 20px;
    border-bottom: 1px dashed #91c9ed;
    /* padding: 12px; */
    padding-bottom: 22px 26px;
    padding: 10px 0px;
	
}
/*.product-quantity .qtybutton {
    color: #454545;
    cursor: pointer;
    float: inherit;
    font-size: 16px;
    margin: 0;
    position: absolute;
    transition: all 0.3s ease 0s;
    width: 20px;
    text-align: center;
}
.product-quantity .dec.qtybutton {
    border-right: 1px solid #e5e5e5;
    height: 40px;
    left: 0;
    padding-top: 8px;
    top: 0;
}
.product-quantity .inc.qtybutton {
    border-left: 1px solid #e5e5e5;
    height: 40px;
    padding-top: 9px;
    right: 0;
    top: 0;
}
.product-quantity input.cart-plus-minus-box {
    color: #454545;
    float: left;
    font-size: 14px;
    height: 40px;
    margin: 0;
    width: 110px;
    background: transparent none repeat scroll 0 0;
    border: 1px solid #e1e1e1;
    padding: 0;
    text-align: center;
}*/


.product-quantity .dec.qtybutton {
    /*border-right: 1px solid #e5e5e5;*/
    height: 40px;
    left: 0;
    padding-top: 5px;
    top: 0;
}
.product-quantity .inc.qtybutton{
    /*border-left: 1px solid #e5e5e5;*/
    height: 40px;
    right: 0;
    padding-top: 5px;
    top: 0;
}
.product-quantity .qtybutton {
    color: #454545;
    cursor: pointer;
    float: inherit;
    font-size: 16px;
    margin: 0;
    position: absolute;
    transition: all 0.3s ease 0s;
    width: 20px;
    text-align: center;
}

.modal-header {
    border-bottom:none;
}
.quicviewimage{
  /*width: 80%;*/
	width: 100%;
    border-right: 2px solid var(--main-color);
}

.quicviewimagesList {
    -webkit-box-pack: start!important;
    -ms-flex-pack: start!important;
    justify-content: flex-start!important;
}
.quicviewimage .quicviewimagesList li{
  cursor: pointer;
}
body.ar .quicviewimage{
    border-left: 0px;
    border-right: 0px;
}
.modal-open .modal {
    background-color: #00000085;
  }

.form-wizard table td, .form-wizard table tr, .form-wizard table tbody, .form-wizard table thead{
  border: none;
  line-height: 17px;
}

.form-wizard table td{
  font-size: 80%
}


.form-wizard {
	padding: 25px; 
    line-height: 30px;
    text-align: center;
}
.form-wizard strong { font-weight: 500; }

.form-wizard a, .form-wizard a:hover, .form-wizard a:focus {
	color: #ea2803;
	text-decoration: none;
    -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; transition: all .3s;
}
.form-wizard button:focus {
	outline: none;
}
.form-wizard h1, .form-wizard h2 {
	margin-top: 10px;
	font-size: 38px;
    font-weight: 100;
    color: #555;
    line-height: 50px;
}
.form-wizard h3 {
font-size: 15px;
    font-weight: 700;
    color: var(--main-color);
    line-height: 30px;
    margin-top: 0;
    margin-bottom: 5px;
    margin-right: 5%;
}
.cart-plus-minus-box{
    text-align: center !important;
}
.form-wizard h4 {
font-size: 13px;
    color: var(--main-color);
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: capitalize;
}
.form-wizard p {
    /*font-size: 13px!important;*/
    font: menu;
}
.form-wizard .custominput {
    width: 100%;
    border: none;
    border-bottom: 1px solid gray;
}

.form-wizard table tr th{font-weight:normal;}

.form-wizard img {
    
    width: 500px;
    height: 230px;
    object-fit: contain;
    margin: auto;
    display: block;

}

.form-wizard ::-moz-selection { background: var(--main-color); color: #fff; text-shadow: none; }
.form-wizard ::selection { background: var(--main-color); color: #fff; text-shadow: none; }

.form-group {
    margin-bottom: 15px;
    text-align: right;
}
.form-control {
	text-align: right;
	height: 44px;
	width:100%;
    margin: 0;
    padding: 0 20px;
    vertical-align: middle;
    background: #fff;
    border: 1px solid #ddd;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 44px;
    color: #888;
    -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;
    -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none;
    -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; transition: all .3s;
}
.form-control option:hover, .form-control option:checked  {
    box-shadow: 0 0 10px 100px #ea2803 inset;
}
.form-control:focus {
	outline: 0;
	background: #fff;
    border: 1px solid #ccc;
    -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none;
}
.form-control:-moz-placeholder { color: #888; }
.form-control:-ms-input-placeholder { color: #888; }
.form-control::-webkit-input-placeholder { color: #888; }

.form-wizard label {font-weight: 300;
    font-size: 14px; }
.form-wizard label span { color:#ea2803; }
.form-wizard .btn {
    line-height: 30px;
}
.form-wizard .btn.btn-next,
.form-wizard .btn.btn-next:focus,
.form-wizard .btn.btn-next:active:focus, 
.form-wizard .btn.btn-next.active:focus { 
    background: var(--main-color);
    cursor: pointer;
    border: 1px solid var(--main-site-color);
    color: #fff;
    text-decoration: none!important;
    outline: 0!important;
    box-shadow: none;
    text-align: center;
    /*border-radius: 10px;*/
    margin: 5px 0;
    width: 100%;
}

.text-main{
  color: var(--main-color) !important
}
.btn-danger{
  background-color: #ff706b
}
.form-wizard-buttons { text-align: right; }

.form-wizard .input-error { border-color: #ea2803;}
.card-header{
	    width: 100%;
    border: 1px solid #eee;
    margin-bottom: 15px;
    box-shadow: 0 0 5px 1px #eee;
    background-color: #fff;
    padding: 5px;
	text-align: right;
}
#myInput {
  box-sizing: border-box;
  background-image: url('searchicon.png');
  background-position: 14px 12px;
  background-repeat: no-repeat;
  font-size: 16px;
  padding: 14px 20px 12px 45px;
  border: none;
  border-bottom: 1px solid #ddd;
  width: 100%;
}
#myInput:focus {outline: 3px solid #ddd;}

.dropdown {
  position: relative;
  display: inline-block;
  width:100%;
}
.dropdown-content {
  display: none;
  background-color: #f6f6f6;
  min-width: 230px;
  overflow: auto;
  border: 1px solid #ddd;
  z-index: 1;
}
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropdown a:hover {background-color: #ddd;}

.show {display: block;}
.form-wizard-steps{ 
	margin:auto; 
	overflow: hidden; 
	position: relative; 
	margin-top: 20px;
}
.form-wizard-step{
	padding-top:10px !important;
	border:2px solid #fff;
	background:#ccc;
	-ms-transform: skewX(-30deg); /* IE 9 */
    -webkit-transform: skewX(-30deg); /* Safari */
    transform: skewX(-30deg); /* Standard syntax */
}
.form-wizard-step.active{
	background:#ea2803;
}
.form-wizard-step.activated{
	background:#ea2803;
}
.form-wizard-progress { 
	position: absolute; 
	top: 36px;
	left: 0; 
	width: 100%; 
	height: 0px; 
	background: #ea2803;
}
.form-wizard-progress-line { 
	position: absolute; 
	top: 0; 
	left: 0; 
	height: 0px; 
	background: #ea2803; 
}

.form-wizard-tolal-steps-3 .form-wizard-step { 
	position: relative;
	float: left; 
	width: 33.33%; 
	padding: 0 5px; 
}
.form-wizard-tolal-steps-4 .form-wizard-step { 
	position: relative; 
	float: left; 
	width: 25%; 
	padding: 0 5px; 
}
.form-wizard-tolal-steps-5 .form-wizard-step { 
	position: relative;
	float: left;
	width: 20%;
	padding: 0 5px;
}

.form-wizard-step-icon {
	display: inline-block;
	width: 40px; 
	height: 40px; 
	margin-top: 4px; 
	background: #ddd;
	font-size: 16px; 
	color: #777; 
	line-height: 40px;
	-moz-border-radius: 50%; 
	-webkit-border-radius: 50%; 
	border-radius: 50%;
	-ms-transform: skewX(30deg); /* IE 9 */
    -webkit-transform: skewX(30deg); /* Safari */
    transform: skewX(30deg); /* Standard syntax */
}
.form-wizard-step.activated .form-wizard-step-icon {
	background: #ea2803; 
	border: 1px solid #fff; 
	color: #fff; 
	line-height: 38px;
}
.form-wizard-step.active .form-wizard-step-icon {
	background: #fff; 
	border: 1px solid #fff; 
	color: #ea2803; 
	line-height: 38px;
}
.form-wizard-step p { 
	color: #fff;
	-ms-transform: skewX(30deg); /* IE 9 */
    -webkit-transform: skewX(30deg); /* Safari */
    transform: skewX(30deg); /* Standard syntax */
}
.form-wizard-step.activated p { color: #fff; }
.form-wizard-step.active p { color: #fff; }
.form-wizard fieldset { 
	display: none; 
	text-align: left; 
	border:0px !important
}
.form-wizard-buttons { text-align: right; }
.form-wizard .input-error { border-color: #ea2803;}

.drop_target {
	position: relative;
	cursor: pointer;
	transition: all 0.2s;
    width: 250px;
    height: 250px;
    background: #f2f2f2;
    border-radius: 100%;
    margin: 0 auto 25px auto;
    overflow: hidden;
    border: 8px solid #E0E0E0;
}
.drop_target input[type="file"] {
  visibility: hidden;
}
.drop_target::before {
	content: 'Drop Hear';
	font-family: FontAwesome;
	position: absolute;
	display: block;
	width: 100%;
	line-height: 220px;
	text-align: center;
	font-size: 40px;
	color: rgba(0, 0, 0, 0.3);
	transition: color 0.2s;
}
.drop_target:hover,
.drop_target.dropping {
  background: #f80;
  border-top-color: #cc6d00;
}
.drop_target:hover:before,
.drop_target.dropping:before {
  color: rgba(0, 0, 0, 0.6);
}
.drop_target .image_preview {
  width: 100%;
  height: 100%;
  background: no-repeat center;
  background-size: contain;
  position: relative;
  z-index: 2;
}
.controlicon{
	    margin-top: 2%;
    color: #91c9ed;
}

    
    @media only screen and (max-width: 767px) {
      #exampleModal .modal-dialog{
        width:380px } 
		.quicviewimage{border:none}
		}

.widget_shopping_cart_contents *{
    text-align: left;
}
body.ar *{
    direction: rtl;
    text-align: right;
}
body.ar .main_footer{
    text-align: right;
}



.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #286090;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #286090 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);
  }
}
.wihte_overlay{
    background: #98797936;
      display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999999999999999999999999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    visibility: hidden;
}
#product_edit_and_show .modal-dialog {
    margin: 8% auto;
    max-width: 100%;
    width: 960px;
}
.why_choose_us h2{
    text-align: center !important;
    color: white;
}
.featured-product h3{
    text-align: left;
}

body.ar .featured-product .theme_title h3{
  text-align: center;
} 
body.ar .featured-product h3{
    text-align: right;
}
#main_slider *{
    direction: initial !important;
}
/*
.form-wizard{
    height: 100%;
}
*/
.order_created{
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}
.order_success_icon{
     font: normal normal normal 14px/1 FontAwesome !important;
    text-align: center !important;
    display: block;
    font-size: 50px !important;
    color: #82c91e;
}
.errors span , .messages span{
    color: white;
    margin: 3px 0;
    text-align: left;
        display: block;
}
body.ar .errors span , body.ar .messages span{
    text-align: right;
    
}

.errors , .messages{
    margin: 10px 0;
}
.errors{
    background-color: #e86060 !important;
}
/*payement success*/
#paymentSuccess .modal-confirm {		
	color: #636363;
	width: 325px;
	font-size: 14px;
}
#paymentSuccess .modal-confirm .modal-content {
	padding: 20px;
	border-radius: 5px;
	border: none;
}
#paymentSuccess .modal-confirm .modal-header {
	border-bottom: none;   
	position: relative;
}
#paymentSuccess .modal-confirm h4 {
	text-align: center;
	font-size: 26px;
	margin: 30px 0 -15px;
}
#paymentSuccess .modal-confirm .form-control, .modal-confirm .btn {
	min-height: 40px;
	border-radius: 3px; 
}
#paymentSuccess .modal-confirm .close {
	position: absolute;
	top: -5px;
	right: -5px;
}	
#paymentSuccess .modal-confirm .modal-footer {
	border: none;
	text-align: center;
	border-radius: 5px;
	font-size: 13px;
}	
#paymentSuccess .modal-confirm .icon-box {
	color: #fff;		
	position: absolute;
	margin: 0 auto;
	left: 0;
	right: 0;
	top: -70px;
	width: 95px;
	height: 95px;
	border-radius: 50%;
	z-index: 9;
	background: #82ce34;
	padding: 15px;
	text-align: center;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}
#paymentSuccess .modal-confirm .icon-box i {
	font-size: 58px;
	position: relative;
	top: 3px;
}
#paymentSuccess .modal-confirm.modal-dialog {
	margin-top: 140px;
}
#paymentSuccess .modal-confirm .btn {
	color: #fff;
	border-radius: 4px;
	background: #82ce34;
	text-decoration: none;
	transition: all 0.4s;
	line-height: normal;
	border: none;
}
#paymentSuccess .modal-confirm .btn:hover, .modal-confirm .btn:focus {
	background: #6fb32b;
	outline: none;
}
#paymentSuccess .trigger-btn {
	display: inline-block;
	margin: 100px auto;
}
.form-wizard .btn.normal{
    background: var(--main-color);
    cursor: pointer;
    border: 1px solid var(--main-site-color);
    color: #fff;
    text-decoration: none!important;
    outline: 0!important;
    box-shadow: none;
    text-align: center;
    /* border-radius: 10px; */
    margin: 5px 0;
    width: 100%;
}
#coupon_messages span{
    padding: 0 8px;
}
body.ar .messages{
    text-align: right;
}
.card {
    border: 1px solid #e4e7ed;
    border-radius: 4px;
    background-color: #fff;
    margin-bottom: 15px;
}
.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,0.125);
    border-radius: .25rem;
}
.card__header {
    padding: 27px 23px;
    border-radius: 4px 4px 0 0;
    position: relative;
    border-bottom: 1px solid #e4e7ed;
    overflow: hidden;
    background-color: transparent;
}
.card__header::before {
    content: "";
    display: block;
    position: absolute;
    width: 6px;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: #38a9ff;
    border-radius: 3px 0 0 0;
}
.rtlpage .card__header::before {
    content: "";
    display: block;
    position: absolute;
    width: 6px;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #38a9ff;
    border-radius: 3px 0 0 0;
}
.card__header > h4 {
    font-size: 16px;
    line-height: 1.2em;
    letter-spacing: -0.02em;
    margin-bottom: 0;
    text-transform: uppercase;
    font-style: normal;
}
.rtlpage .card__header > h4 {
    text-align: right;
}
.card__content {
    padding: 24px 24px;
}

.card__header + .card__content .df-account-navigation {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.card .df-account-navigation {
    margin-top: -24px;
    margin-right: -24px;
    margin-bottom: -24px;
    margin-left: -24px;
}
.df-account-navigation {
    border-radius: 4px;
    overflow: hidden;
}
.df-account-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
}
.df-account-navigation__link--active a, .df-account-navigation .active {
    border-left: 6px solid #38a9ff;
    padding-left: 18px;
    background-color: #fafafb;
}
.rtlpage .df-account-navigation__link--active a,.rtlpage .df-account-navigation .active{
     border-right: 6px solid #38a9ff;
     border-left: 0px;
    padding-left: 0px;
    background-color: #fafafb;
}
.rtlpage .df-account-navigation__link > a{
    text-align: right;
}
.df-account-navigation__link  {
    border-top: 1px solid #e4e7ed;
}
.df-account-navigation__link > a {
    display: block;
    padding: 24px 24px;
    font-size: 11px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #31404b;
    line-height: 1.2em;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}
.df-personal-info label {
    display: inline-block;
    margin-bottom: .5rem;
    font-size: 15px;
    font-family: 'Cairo', sans-serif;
    display: block;
}
.rtlpage .df-personal-info label{
    text-align: right;
}
.df-personal-info .form-control {
    font-family: 'Cairo', sans-serif;
    display: block;
    width: 100%;
    height: 40px;
    padding: .375rem .75rem;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    margin-bottom: 5px !important;
}
.df-personal-info .form-group {
    margin: 15px 0 !important;
}
.danger-errors p{
        margin-bottom: 0;
    color: black;
    font-size: 17px;
}
body.ar .danger-errors p{
    text-align: right;
}
.custom_table_subscriptions *{
     font-family: 'Cairo', sans-serif;
}
.custom_table_subscriptions .table>thead>tr>th {
    vertical-align: bottom;
    border-bottom: 1px solid #e4e7ed;
    font-weight: 700;
    color: #31404b;
    font-style: normal;
    text-transform: uppercase;
}
 .table>thead>tr>th , .table>tbody>tr>td{
    padding: 10px 10px !important;
    font-size: 17px !important;
}
body.ar .table>thead>tr>th ,body.ar .table>tbody>tr>td{
    text-align: right;
}
body.ar .acountstatus h4{
    text-align: right;
}
body.ar .acountstatus a{
    float: right;
    margin-top: 20px;
}
.freezebtn{
    padding: 6px 17px !important;
    font-size: 15px !important;
    letter-spacing: 0px !important;
}
.alert-success *{
    color: white !important;
}
#loginModal .tab-content > .tab-pane.active, #secondaryLoginModal .tab-content > .tab-pane.active {
    display: flex !important;
}
#loginModal *{
      font-family: 'Cairo', sans-serif;
      text-align: left;
      direction: ltr;
}
body.ar #loginModal *{
      font-family: 'Cairo', sans-serif;
      text-align: right;
      direction: rtl;
}
.nav-link.tab:hover {
border: 1px solid var(--main-color);
}

.ltr .right-tab, .rtl .left-tab {
    border-top-right-radius: .25rem !important;
    border-bottom-right-radius: .25rem !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
.nav-link.tab {
    border: 1px solid var(--main-color);
    color: #FED134;
    vertical-align: text-top;
}
.nav-link.tab.active {
    border: 1px solid var(--main-color);
    background-color: var(--main-color);
    color: #fff;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #fff;
    background-color: var(--main-color);
    border-color: var(--main-color);
}
.ltr .left-tab, .rtl .right-tab {
    border-top-right-radius: .0 !important;
    border-bottom-right-radius: .0 !important;
    border-top-left-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important;
}
.nav-link.tab {
    border: 1px solid var(--main-color);
    color: var(--main-color);
    vertical-align: text-top;
}
.pl-0, .px-0 {
    padding-left: 0!important;
}
.pr-0, .px-0 {
    padding-right: 0!important;
}
#loginModal .nav-link{
    margin: 0px !important;
}
#loginModal label {
    display: inline-block;
    margin-bottom: .5rem;
    font-size: 15px;
}
#loginModal .form-control {
    display: block;
    width: 100%;
    height: 40px;
    padding: .375rem .75rem;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    margin-bottom: 5px !important;
}
.inner-addon:not(.active) {
    fill: #ddd;
}
.inner-addon.pass-addon {
    cursor: pointer;
}
.inner-addon {
    right: unset !important;
    left: 0;
}
.inner-addon {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 10000;
    padding: 7px 0;
}
.left-addon{
    left: 7px;
}
.glyphicon{
    font-size: 18px;
}
.forgettext{
     font-size: 16px;
}
.rtl .custom-check label {
    margin-right: 24px;
    font-size: 15px !important;
}

.custom-check label
{
    margin-left: 24px;
}
.ltr .custom-check label {
    margin-left: 24px;
    font-size: 15px !important;
    cursor: pointer;
}
.form-check-label{
     cursor: pointer;
}
#loginModal .form-check-input{
    margin-top: 14px;
    cursor: pointer;
}
#loginModal .modal-header{
    padding: .5rem !important;
}
#loginModal button.close{
    outline: none;
}
#loginModal .form-control[type=submit]{
    color: white;
    text-align: center;
    background: var(--main-color); 
    border: none;
}
#loginModal .form-control[type=submit]:hover{
    color: black!important;
    cursor: pointer;
    border: 1px solid var(--main-color) !important;
    background: transparent !important; 
}
#loginModal .modal-body{
    padding: 10px !important;
}
#loginModal .tabsNavs{
    margin-bottom: 10px !important;
}
#loginModal{
z-index: 9999999;
}

.form-check-label{
    margin-top: 11px;
    margin-right: 30px;
}
.addtocart[disabled]{
        background: gray;
    color: white;
}
.addtocart[disabled]:hover{
    background: gray;
    color: white;
}
.profile_save_info_btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 0.4rem 1.5rem;
    font-size: 0.70rem;
    line-height: 1.5;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    font-family: 'Cairo', sans-serif;
    border: 2px solid var(--main-color);
    border-radius: 30px;
    letter-spacing: 1px;
    outline: none;
    font-size: 13px;
    padding: 5px 20px;
}
.alert-success {
    color: #3c763d;
    background-color: #9dd486;
    border-color: #9dd486;
}
.quicviewimage .carousel-item img{
        height: 250px !important;
        object-fit: contain !important;
}
#map {
    width: 100%;
    height: 250px;
}
#place {
        z-index: 9999999999;
}
.kreen-pagination button{
    cursor: pointer;
    display: inline-block;
}
.kreen-pagination button[disabled=disabled] ,.kreen-pagination button:disabled {
    cursor: not-allowed !important;
}
.load_more_products{
    display: block;
    margin: 10px auto;
    width: 120px;
}
.modal-header .close {
    padding: 1rem;
    margin: -1rem 0rem -1rem auto;
}
body.ar .about-story p , body.ar .award p{
    text-align: right;
}
.no_padding_left_right{
    padding-left: 0px !important;
    padding-right: 0px !important;
    margin-left: 0px !important;
    margin-right: 0px !important;
}