/*-----------------------------------------------------------------------------------

    Template Name: Destry - Fashion eCommerce HTML Template
    Version: 1.0

-----------------------------------------------------------------------------------
    
    CSS INDEX
    ===================
	
    01. Template default CSS
    02. Custom Animation CSS
    03. Header CSS
        3.1 Header Top CSS
        3.2 Header Bottom CSS
        3.3 Header Mobile CSS
        3.4 Header Cart CSS
        3.5 Header Offcanvas CSS
    04. Hero CSS
    05. Footer CSS
        5.1 Footer Top CSS
        5.2 Footer Bottom CSS
    06. Component CSS
        6.1 Button CSS
        6.2 Feature CSS
        6.3 Banner CSS
        6.4 Products CSS
        6.5 Brand Logo CSS
        6.6 Breadcrumb CSS
        6.7 Pagination CSS
        6.8 Sidebar CSS
        6.9 Modal CSS
    07. Pages CSS
        7.1 Blog Page CSS
        7.2 Shop Page CSS
        7.3 Single Product Page CSS
        7.4 My Account Page CSS
        7.5 Login Register Page CSS
        7.6 Wishlist Page CSS
        7.8 Cart Page CSS
        7.9 Compare Page CSS
        7.10 Checkout Page CSS
        7.11 Contact Page CSS
        7.12 About Page CSS
        7.13 404 Error Page CSS
        7.14 FAQ Page CSS

-----------------------------------------------------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/*----------------------------------------*/
/*  01. Template default CSS
/*----------------------------------------*/
/*-- Google Font --*/
/*-- Common Style --*/
*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  font-family: sans-serif;
  height: 100%;
}

body {
  position: relative;
  visibility: visible;
  color: "";
}

body[dir="rtl"] {
  text-align: right;
}

a,
a:hover,
a:focus,
a:active,
button,
button:focus,
.btn,
.btn:focus,
input,
input:focus,
select,
textarea {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: #212121;
  text-decoration: none;
  outline: 0;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

/*-- Image Fit --*/
.fit-image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Section Style */
.section,
.section-fluid {
  float: left;
  width: 100%;
}

/* Section Spacing */
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.section-margin {
  margin-top: 100px;
  margin-bottom: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-margin {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .section-margin {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

.section-padding-sm {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-margin-sm {
  margin-top: 60px;
  margin-bottom: 60px;
}

/* Section TItle */
.section-title {
  margin-bottom: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .section-title {
    margin-bottom: 40px;
  }
}

.section-title .title {
  font-size: 30px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 0;
  color: #2e2e2e;
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .section-title .title {
    font-size: 24px;
  }
}

.section-title span {
  content: "";
  position: absolute;
  background: #ff4545;
  width: 100px;
  height: 2px;
}

/* Border */
.title-border-bottom {
  border-bottom: 2px solid #ebebeb;
}

/* swiper default styles */
.swiper-pagination {
  position: static;
  display: block;
  line-height: 1;
  margin-top: 20px;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background: #a3a3a3;
  opacity: 1;
  position: relative;
  outline: none;
  margin-right: 20px;
  margin: 0 5px !important;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}

.swiper-pagination .swiper-pagination-bullet:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.swiper-pagination .swiper-pagination-bullet:hover:before {
  width: 12px;
  height: 12px;
  opacity: 1;
  background: #ff4545;
  border-radius: 100%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ff4545;
}

.swiper-pagination.swiper-pagination-primary .swiper-pagination-bullet:hover:before {
  background: #ff4545;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.swiper-pagination.swiper-pagination-primary .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 2px solid #ff4545;
  background: #ff4545;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.swiper-nav-button {
  background-image: none;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  outline: none;
  width: 48px;
  height: 48px;
  font-size: 24px;
  color: #6d70a6;
  border: 0;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.01);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.01);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  margin: 0;
  top: 50%;
}

.swiper-nav-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: inherit;
  color: #fff;
  background: #E8E8E8;
}

.swiper-nav-button:hover {
  color: #fff;
}

.swiper-nav-button:hover::before {
  color: #fff;
  background: #2e2e2e;
}

.swiper-container:hover .swiper-nav-button {
  opacity: 1;
  visibility: visible;
}

/* Product Countdown */
.countdown-wrapper .single-countdown {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
  width: 60px;
  background: #f4f4f4;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  margin-right: 6px;
}

.countdown-wrapper .single-countdown:last-child {
  margin-right: 0;
}

.countdown-wrapper .single-countdown:last-child:after {
  display: none;
}

.countdown-wrapper .single-countdown .single-countdown_time {
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 40px;
  color: #555555;
}

.countdown-wrapper .single-countdown .single-countdown_text {
  font-size: 14px;
  line-height: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #999999;
}

/* Social Links */
.widget-social a {
  color: #757575;
  font-size: 16px;
  padding-right: 15px;
}

.widget-social a:hover {
  color: #ff4545;
}

/* Input Checkbox Style */
input[type="checkbox"] {
  display: none;
}

input[type="checkbox"] + label {
  position: relative;
  padding-left: 30px;
  line-height: 15px;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

input[type="checkbox"] + label:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 15px;
  display: block;
  border: 1px solid #ebebeb;
  content: "";
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

input[type="checkbox"] + label:after {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  content: "\f00c";
  font-family: 'FontAwesome';
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  opacity: 0;
  width: 15px;
  text-align: center;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  color: #ff4545;
}

input[type="checkbox"]:checked + label:before {
  border: 1px solid #ff4545;
}

input[type="checkbox"]:checked + label:after {
  opacity: 1;
}

/*-- Link Style --*/
.link {
  line-height: 1;
  display: block;
  font-size: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.link::before {
  content: "\f178";
  font-family: FontAwesome;
  position: relative;
  left: 0;
  display: block;
  margin-right: 0;
  color: #ff4545;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  width: 0;
  opacity: 0;
  visibility: hidden;
}

.link span {
  text-decoration: underline;
}

.link:hover {
  color: #ff4545;
}

.link:hover::before {
  width: 14px;
  margin-right: 5px;
  opacity: 1;
  visibility: visible;
}

/* Contact Map */
.contact-map {
  height: 500px;
  width: 100%;
  display: block;
}

/* Scroll Top style */
.scroll-top {
  position: fixed;
  right: 30px;
  bottom: -60px;
  z-index: 999;
  -webkit-box-shadow: 0 30px 50px rgba(0, 0, 0, 0.03);
          box-shadow: 0 30px 50px rgba(0, 0, 0, 0.03);
  display: block;
  padding: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 25px;
  line-height: 50px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  background-color: #6C757D;
  background-size: 200% auto;
  background-position: left center;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  overflow: hidden;
}

.scroll-top:hover {
  background-color: #ff4545;
}

.scroll-top:hover i {
  color: #fff;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

@media only screen and (max-width: 479px) {
  .scroll-top {
    font-size: 20px;
  }
}

.scroll-top.show {
  visibility: visible;
  opacity: 1;
  bottom: 60px;
}

.scroll-top i {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.scroll-top .arrow-top {
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.scroll-top .arrow-bottom {
  -webkit-transform: translate(-50%, 80px);
      -ms-transform: translate(-50%, 80px);
          transform: translate(-50%, 80px);
}

.scroll-top:hover {
  background-position: right center;
}

.scroll-top:hover .arrow-top {
  -webkit-transform: translate(-50%, -80px);
      -ms-transform: translate(-50%, -80px);
          transform: translate(-50%, -80px);
}

.scroll-top:hover .arrow-bottom {
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*----------------------------------------*/
/*  02. Custom Animation CSS
/*----------------------------------------*/
.animate {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@keyframes slideIn {
  0% {
    -webkit-transform: translateY(1rem);
            transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0rem);
            transform: translateY(0rem);
    opacity: 1;
  }
  0% {
    -webkit-transform: translateY(1rem);
            transform: translateY(1rem);
    opacity: 0;
  }
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }
  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}

.slideIndropdown {
  -webkit-animation-name: slideIn;
          animation-name: slideIn;
}

/*----------------------------------------*/
/*  03. Header CSS
/*----------------------------------------*/
/*====================  
    3.1 Header Top CSS
====================*/
/* Header Top Links */
.header-top-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.header-top-links a {
  font-size: 12px;
  line-height: 1.715;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 24px;
  text-decoration: none;
  color: #212121;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.header-top-links a:hover {
  color: #ff4545;
}

.header-top-links span {
  font-size: 12px;
  line-height: 1.715;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 3px;
  color: #212121;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

/* Language & Currency */
.header-top-lan-curr-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.header-top-lan-curr-link .dropdown .dropdown-toggle {
  font-size: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: #212121;
  border: none;
  background-color: transparent;
  margin-right: 20px;
  padding: 0 20px 0 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  height: 50px;
  position: relative;
}

.header-top-lan-curr-link .dropdown .dropdown-toggle:hover {
  color: #ff4545;
}

.header-top-lan-curr-link .dropdown .dropdown-toggle i {
  margin-left: 4px;
}

.header-top-lan-curr-link .dropdown .dropdown-toggle::after {
  display: none;
}

.header-top-lan-curr-link .dropdown .dropdown-toggle:focus {
  outline: 0;
}

.header-top-lan-curr-link .dropdown .dropdown-toggle::before {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #d5d4d4;
  height: 10px;
  width: 1px;
}

.header-top-lan-curr-link .dropdown .dropdown-menu {
  inset: auto !important;
  padding: 10px 0;
  border-radius: 0;
  border-bottom: 3px solid #ff4545;
}

.header-top-lan-curr-link .dropdown .dropdown-menu li .dropdown-item {
  font-size: 13px;
}

.header-top-lan-curr-link .dropdown .dropdown-menu li .dropdown-item:hover, .header-top-lan-curr-link .dropdown .dropdown-menu li .dropdown-item.active {
  background: none;
  color: #ff4545;
  padding-left: 20px;
}

/* Message/Notification */
.header-top-message {
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #212121;
  padding: 25px 0;
  height: 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .header-top-message {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media only screen and (max-width: 479px) {
  .header-top-message {
    font-size: 10px;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.header-top-message a {
  font-size: 12px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  margin-left: 17px;
  text-decoration: underline;
  letter-spacing: 0.5px;
  color: #ff4545;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .header-top-message a {
    margin-left: 10px;
  }
}

.header-top-message a:hover {
  color: #212121;
}

@media only screen and (max-width: 479px) {
  .header-top-message a {
    font-size: 10px;
    margin-top: 3px;
    margin-left: 0px;
  }
}

/*====================  
    3.2 Header Bottom CSS
====================*/
.header-bottom {
  background-color: transparent;
  min-height: 100px;
}

/* Main Menu */
.main-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-menu > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.main-menu > ul > li + li {
  margin-left: 55px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .main-menu > ul > li + li {
    margin-left: 45px;
  }
}

.main-menu > ul > li:hover > a > span:before {
  left: 0;
  right: auto;
  width: 100%;
}

.main-menu > ul > li > a {
  font-size: 15px;
  line-height: 100px;
  text-decoration: none;
  letter-spacing: 0.5px;
  color: #212121;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

.main-menu > ul > li > a:hover, .main-menu > ul > li > a.active {
  color: #ff4545;
}

.main-menu > ul > li > a:hover > span:before, .main-menu > ul > li > a.active > span:before {
  left: 0;
  right: auto;
  width: 100%;
}

.main-menu > ul > li > a > span {
  position: relative;
}

.main-menu > ul > li > a > span:before {
  background-color: #ff4545;
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  bottom: -2px;
  height: 2px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  width: 0;
}

.main-menu ul .has-children {
  position: relative;
}

.main-menu ul .has-children .sub-menu {
  position: absolute;
  background: #fff;
  width: 230px;
  padding: 20px 20px 24px;
  -webkit-transform-origin: 0 0 0;
      -ms-transform-origin: 0 0 0;
          transform-origin: 0 0 0;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-box-shadow: 0 1px 2px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 2px 2px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 9;
  border-bottom: 3px solid #ff4545;
}

.main-menu ul .has-children .sub-menu li {
  list-style: none;
}

.main-menu ul .has-children .sub-menu li a {
  line-height: 40px;
  color: #212121;
  text-decoration: none;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.main-menu ul .has-children .sub-menu li a:hover {
  color: #ff4545;
  padding-left: 5px;
}

.main-menu ul .has-children:hover .sub-menu, .main-menu ul .has-children:hover .mega-menu {
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1);
}

/* Mega Menu */
.mega-menu {
  background: #fff;
  padding: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform-origin: 0 0 0;
      -ms-transform-origin: 0 0 0;
          transform-origin: 0 0 0;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  position: absolute;
  width: 100%;
  left: 0;
  right: auto;
  top: 100%;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  z-index: 99;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 3px solid #ff4545;
}

.main-menu .mega-menu > li {
  list-style: none;
  width: 33.3%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mega-menu > li .mega-menu-title {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 15px;
  position: relative;
  font-family: "Montserrat", sans-serif;
}

.mega-menu > li .mega-menu-title::after {
  position: absolute;
  content: "";
  background: #ff4545;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
}

.mega-menu > li > ul {
  padding-left: 0;
}

.mega-menu > li > ul a {
  line-height: 1;
  color: #212121;
  text-decoration: none;
  font-size: 14px;
  display: block;
  padding: 10px 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.mega-menu > li > ul a:hover {
  color: #ff4545;
  padding-left: 5px;
}

/* Actions */
.header-actions {
  display: flex;
  justify-content: flex-end;
}

.header-actions > * + * {
  margin-left: 15px;
}

@media only screen and (max-width: 767px) {
  .header-actions > * + * {
    margin-left: 15px;
  }
}

@media only screen and (max-width: 575px) {
  .header-actions > * + * {
    margin-left: 15px;
  }
}

.header-actions .header-action-btn {
  line-height: 100px;
  position: relative;
  display: block;
  text-decoration: none;
  color: #212121;
}

.header-actions .header-action-btn.dropdown-toggle::after {
  display: none;
}

.header-actions .header-action-btn:hover {
  color: #ff4545;
}

.header-actions .header-action-btn-cart {
  padding-right: 10px;
}

.header-actions .header-action-btn i {
  font-size: 24px;
  line-height: 1;
  vertical-align: middle;
}

.header-actions .header-action-btn .header-action-num {
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  position: absolute;
  z-index: 2;
  top: 30px;
  right: 0;
  width: 20px;
  height: 20px;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  background-color: #ff4545;
}

/* Sticky header */
.header-sticky {
  background: #fff;
}

.header-sticky.sticky {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.075);
  -webkit-animation: fadeInDown .5s ease-in-out;
          animation: fadeInDown .5s ease-in-out;
}

/*====================  
    3.3 Header Mobile CSS
====================*/
/*  Mobile Menu */
.mobile-menu-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transition-duration: 700ms;
       -o-transition-duration: 700ms;
          transition-duration: 700ms;
  z-index: 9999;
}

.mobile-menu-wrapper.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-wrapper.open .mobile-menu-inner {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.mobile-menu-inner {
  width: 100%;
  height: 100%;
  width: 350px;
  background-color: #fff;
  -webkit-box-shadow: -1px 0px 20px -5px #aaa;
          box-shadow: -1px 0px 20px -5px #aaa;
  position: relative;
  -webkit-transform: translateX(calc(100% - 50px));
      -ms-transform: translateX(calc(100% - 50px));
          transform: translateX(calc(100% - 50px));
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transition-duration: 700ms;
       -o-transition-duration: 700ms;
          transition-duration: 700ms;
  margin-left: auto;
  position: relative;
  padding: 20px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: auto;
}

@media only screen and (max-width: 575px) {
  .mobile-menu-inner {
    width: 320px;
  }
}

.mobile-menu-inner .offcanvas-btn-close {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 50px;
  color: #212121;
  opacity: 1;
}

.mobile-menu-inner .offcanvas-btn-close i {
  cursor: pointer;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.mobile-menu-inner .offcanvas-btn-close i:hover {
  color: #ff4545;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.mobile-menu-inner .widget-social {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.mobile-menu {
  text-align: start;
  padding: 10px 0px 30px;
}

.mobile-menu > .has-children > a i {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.mobile-menu > .has-children .dropdown a {
  font-size: 14px;
  padding-top: 5px;
  display: block;
  padding-left: 15px;
  font-weight: 400;
}

.mobile-menu > .has-children.active > a {
  color: #ff4545;
}

.mobile-menu > .has-children.active > a i {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.mobile-menu > li {
  margin-bottom: 15px;
}

.mobile-menu > li > a {
  color: #212121;
  font-size: 15px;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.mobile-menu > li > a:hover {
  color: #ff4545;
}

.contact-links {
  text-align: left;
  margin-bottom: 40px;
}

.contact-links li {
  color: #6C757D;
  font-size: 14px;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.contact-links li a {
  color: #6C757D;
}

.contact-links li a:hover {
  color: #ff4545;
}

.contact-links li i {
  color: #ff4545;
  margin-right: 10px;
  font-size: 22px;
}

.offcanvas-lag-curr .title {
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  color: #212121;
}

.offcanvas-lag-curr .header-top-lan-curr-link .dropdown.header-top-curr .dropdown-toggle::before {
  display: none;
}

/*====================  
    3.4 Header Cart CSS
====================*/
/*  Cart Offcanvas Wrapper */
.cart-offcanvas-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transition-duration: 700ms;
       -o-transition-duration: 700ms;
          transition-duration: 700ms;
  z-index: 9999;
}

.cart-offcanvas-wrapper.open {
  opacity: 1;
  visibility: visible;
}

.cart-offcanvas-wrapper.open .cart-offcanvas-inner {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

/*-- Cart Offcanvas Inner --*/
.cart-offcanvas-inner {
  width: 100%;
  height: 100%;
  width: 380px;
  background-color: #fff;
  -webkit-box-shadow: -1px 0px 20px -5px #aaa;
          box-shadow: -1px 0px 20px -5px #aaa;
  position: relative;
  -webkit-transform: translateX(calc(100% - 50px));
      -ms-transform: translateX(calc(100% - 50px));
          transform: translateX(calc(100% - 50px));
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transition-duration: 700ms;
       -o-transition-duration: 700ms;
          transition-duration: 700ms;
  margin-left: auto;
  position: relative;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: auto;
}

@media only screen and (max-width: 575px) {
  .cart-offcanvas-inner {
    width: 320px;
  }
}

.cart-offcanvas-inner .offcanvas-btn-close {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 50px;
  color: #212121;
  opacity: 1;
  padding: 20px 20px 0 20px;
}

.cart-offcanvas-inner .offcanvas-btn-close i {
  cursor: pointer;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.cart-offcanvas-inner .offcanvas-btn-close i:hover {
  color: #ff4545;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

/*-- Offcanvas Cart Content --*/
.offcanvas-cart-content {
  padding: 0 20px 20px 20px;
}

.offcanvas-cart-content .offcanvas-cart-title {
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  color: #2e2e2e;
  font-weight: 600;
  text-align: left;
}

.cart-product-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cart-product-wrapper .single-cart-product {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: calc(100% - 40px);
}

.cart-product-wrapper .single-cart-product .cart-product-thumb {
  width: 80px;
}

.cart-product-wrapper .single-cart-product .cart-product-thumb a {
  display: block;
}

.cart-product-wrapper .single-cart-product .cart-product-thumb a img {
  width: 100%;
  border: 1px solid #ebebeb;
}

.cart-product-wrapper .single-cart-product .cart-product-content {
  width: calc(100% - 80px);
  text-align: start;
  padding-left: 10px;
}

.cart-product-wrapper .single-cart-product .cart-product-content .title {
  font-size: 15px;
  font-weight: 600;
}

.cart-product-wrapper .single-cart-product .cart-product-content .title a {
  color: #212121;
}

.cart-product-wrapper .single-cart-product .cart-product-content .title a:hover {
  color: #ff4545;
}

.cart-product-wrapper .single-cart-product .cart-product-content .price {
  text-align: start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.cart-product-wrapper .cart-product-remove {
  width: 40px;
}

.cart-product-wrapper .cart-product-remove a {
  color: #212121;
  font-size: 14px;
}

.cart-product-wrapper .cart-product-remove a:hover {
  color: #ff4545;
}

.cart-product-total {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cart-product-total .value {
  font-size: 20px;
  font-weight: 600;
  color: #212121;
}

.cart-product-total .price {
  font-size: 22px;
  font-weight: 600;
  color: #212121;
}

/*====================  
    3.5 Header Offcanvas CSS
====================*/
/* Offcanvas Overlay */
.offcanvas-overlay {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #212121;
  opacity: .6;
}

/*  Offcanvas Search */
.offcanvas-search {
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  height: 100vh;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transition-duration: 700ms;
       -o-transition-duration: 700ms;
          transition-duration: 700ms;
  z-index: 9999;
}

.offcanvas-search.open {
  opacity: 1;
  visibility: visible;
}

.offcanvas-search.open .offcanvas-search-inner {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.offcanvas-search-inner {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: relative;
  -webkit-transform: translateX(calc(100% - 0px));
      -ms-transform: translateX(calc(100% - 0px));
          transform: translateX(calc(100% - 0px));
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transition-duration: 700ms;
       -o-transition-duration: 700ms;
          transition-duration: 700ms;
  padding: 20px 20px 40px;
  overflow: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-flow: row-reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
}

.offcanvas-search-inner .offcanvas-btn-close {
  font-size: 50px;
  color: #212121;
  opacity: 1;
}

.offcanvas-search-inner .offcanvas-btn-close i {
  cursor: pointer;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.offcanvas-search-inner .offcanvas-btn-close i:hover {
  color: #ff4545;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.offcanvas-search-inner .offcanvas-search-form {
  width: 80%;
}

.offcanvas-search-input {
  width: 100%;
  border: 0px;
  border-bottom: 2px solid #212121;
  font-size: 24px;
}

.offcanvas-search-input:focus {
  outline: none;
}

/*----------------------------------------*/
/*  04. Hero CSS
/*----------------------------------------*/
.hero-slide-item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 750px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1599px) {
  .hero-slide-item {
    height: 700px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-slide-item {
    height: 600px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-slide-item {
    height: 400px;
  }
}

@media only screen and (max-width: 479px) {
  .hero-slide-item {
    height: 300px;
  }
}

.hero-slide-item-two {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 560px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1599px) {
  .hero-slide-item-two {
    height: 500px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-slide-item-two {
    height: 500px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-slide-item-two {
    height: 300px;
  }
}

@media only screen and (max-width: 479px) {
  .hero-slide-item-two {
    height: 300px;
  }
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.hero-slide-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-slide-content {
  position: relative;
  z-index: 99;
}

.hero-slide-content .title {
  color: #2e2e2e;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-slide-content p {
  font-weight: 400;
  line-height: 1.16;
  color: #212121;
  margin-top: 10px;
  margin-bottom: 55px;
  display: block;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  color: #2e2e2e;
}

@media only screen and (max-width: 767px) {
  .hero-slide-content .title {
    font-size: 36px;
  }
  .hero-slide-content p {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 479px) {
  .hero-slide-content .title {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .hero-slide-content p {
    font-size: 14px;
  }
}

.hero-slider .main-slider-nav {
  color: #212121;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-size: 50px;
}

.hero-slider .main-slider-nav::after {
  display: none;
}

.hero-slider .main-slider-nav:hover {
  color: #ff4545;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.hero-slider .home-slider-prev {
  left: 30px;
}

@media only screen and (max-width: 575px) {
  .hero-slider .home-slider-prev {
    left: 5px;
  }
}

.hero-slider .home-slider-next {
  right: 30px;
}

.hero-slider .home-slider-next::after {
  display: none;
}

@media only screen and (max-width: 575px) {
  .hero-slider .home-slider-next {
    right: 5px;
  }
}

.hero-slider:hover .main-slider-nav, .hero-slider:hover .swiper-pagination {
  opacity: 1;
  visibility: visible;
}

.hero-slider .home-slider-prev, .hero-slider .home-slider-next {
  margin-top: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.hero-slider .home-slider-prev i, .hero-slider .home-slider-next i {
  background: white;
  opacity: .5;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.hero-slider .home-slider-prev:hover i, .hero-slider .home-slider-next:hover i {
  background: #fff;
  opacity: 1;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.hero-slider .swiper-pagination {
  position: absolute;
  bottom: 20px;
  opacity: 0;
  visibility: hidden;
}

.hero-slide-content > * {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeOutUp;
          animation-name: fadeOutUp;
}

.swiper-slide-active .hero-slide-content > * {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

.swiper-slide-active .hero-slide-content > *:nth-child(1) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.swiper-slide-active .hero-slide-content > *:nth-child(2) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.swiper-slide-active .hero-slide-content > *:nth-child(3) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.swiper-slide-active .hero-slide-content > *:nth-child(4) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.swiper-slide-active .hero-slide-content > *:nth-child(5) {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

.swiper-slide-active .hero-slide-content > *:nth-child(6) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

/*----------------------------------------*/
/*  05. Footer CSS
/*----------------------------------------*/
/*====================  
    5.1 Footer Top CSS
====================*/
.footer-top {
  background: #f6f7f7;
}

.single-footer-widget .widget-title {
  font-size: 20px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  color: #2e2e2e;
  line-height: 1;
  margin-bottom: 30px;
}

.single-footer-widget .desc-content {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #535353;
}

.single-footer-widget .widget-address li {
  font-size: 14px;
  margin-bottom: 5px;
}

.single-footer-widget .widget-address li span {
  font-weight: 600;
  font-size: 16px;
}

.single-footer-widget .widget-address li a {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #535353;
}

.single-footer-widget .widget-address li a:hover {
  color: #ff4545;
}

.single-footer-widget .widget-address li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .widget-list li a {
  color: #757575;
  font-size: 14px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  display: block;
  margin-bottom: 10px;
}

.single-footer-widget .widget-list li a:hover {
  color: #ff4545;
  padding-left: 5px;
}

.single-footer-widget .widget-list li:last-child a {
  margin-bottom: 0px;
}

.single-footer-widget .newsletter-form-wrap .mc-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.single-footer-widget .newsletter-form-wrap .email-box {
  border: 0px;
  border-bottom: 1px solid #ebebeb;
  border-radius: 0px;
  background: #f6f7f7;
}

.single-footer-widget .newsletter-form-wrap .email-box:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-bottom: 1px solid #ff4545;
}

.single-footer-widget .newsletter-form-wrap .newsletter-btn {
  width: 160px;
}

/*====================  
    5.2 Footer Bottom CSS
====================*/
.footer-bottom {
  background: #e7e8e8;
  padding: 20px 0;
}

.footer-bottom .copyright-content p {
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  color: #5a5a5a;
  font-weight: 400;
}

.footer-bottom .copyright-content a {
  font-weight: 700;
}

.footer-bottom .copyright-content a:hover {
  color: #ff4545;
}

/*----------------------------------------*/
/*  06. Component CSS
/*----------------------------------------*/
/*====================  
    6.1 Button CSS  
====================*/
.btn {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 30px;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 5px;
  outline: none;
  border: 0;
}

@media only screen and (max-width: 767px) {
  .btn {
    font-size: 14px;
    padding: 15px 20px;
  }
}

.btn:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.btn-icon {
  width: 56px;
  padding: 15px;
}

.btn-sm, .btn-group-sm > .btn {
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  padding: 9px 10px;
  border-radius: 5px;
  border: 0;
}

.btn.disabled {
  opacity: 0.65;
}

/* Button Color & Style (Solid & Outline) */
.btn-primary {
  border-color: #ff4545;
  background-color: #ff4545;
  color: #fff;
}

.btn-primary:hover, .btn-primary:focus {
  border-color: transparent;
  background-color: #ff1f1f;
  color: #fff;
}

.btn-outline-primary {
  color: #ff4545;
  border-color: #ff4545;
  border-width: 1px;
  border-style: solid;
  background-color: transparent;
}

.btn-outline-primary:hover {
  border-color: transparent;
  background-color: #ff4545;
  color: #fff;
}

.btn-secondary {
  border-color: #6C757D;
  background-color: #6C757D;
  color: #fff;
}

.btn-secondary:hover, .btn-secondary:focus {
  border-color: transparent;
  background-color: #5a6268;
  color: #fff;
}

.btn-outline-secondary {
  color: #6C757D;
  border-color: #6C757D;
  border-width: 1px;
  border-style: solid;
  background-color: transparent;
}

.btn-outline-secondary:hover {
  border-color: transparent;
  background-color: #6C757D;
  color: #fff;
}

.btn-success {
  border-color: #0D6EFD;
  background-color: #0D6EFD;
  color: #fff;
}

.btn-success:hover, .btn-success:focus {
  border-color: transparent;
  background-color: #025ce2;
  color: #fff;
}

.btn-outline-success {
  color: #0D6EFD;
  border-color: #0D6EFD;
  border-width: 1px;
  border-style: solid;
  background-color: transparent;
}

.btn-outline-success:hover {
  border-color: transparent;
  background-color: #0D6EFD;
  color: #fff;
}

.btn-info {
  border-color: #0DCAF0;
  background-color: #0DCAF0;
  color: #fff;
}

.btn-info:hover, .btn-info:focus {
  border-color: transparent;
  background-color: #0babcc;
  color: #fff;
}

.btn-outline-info {
  color: #0DCAF0;
  border-color: #0DCAF0;
  border-width: 1px;
  border-style: solid;
  background-color: transparent;
}

.btn-outline-info:hover {
  border-color: transparent;
  background-color: #0DCAF0;
  color: #fff;
}

.btn-warning {
  border-color: #FFC107;
  background-color: #FFC107;
  color: #ff4545;
}

.btn-warning:hover, .btn-warning:focus {
  border-color: transparent;
  background-color: #e0a800;
  color: #2e2e2e;
}

.btn-outline-warning {
  color: #FFC107;
  border-color: #FFC107;
  border-width: 1px;
  border-style: solid;
  background-color: transparent;
}

.btn-outline-warning:hover {
  border-color: transparent;
  background-color: #FFC107;
  color: #2e2e2e;
}

.btn-danger {
  border-color: #DC3545;
  background-color: #DC3545;
  color: #fff;
}

.btn-danger:hover, .btn-danger:focus {
  border-color: transparent;
  background-color: #c82333;
  color: #fff;
}

.btn-outline-danger {
  color: #DC3545;
  border-color: #DC3545;
  border-width: 1px;
  border-style: solid;
  background-color: transparent;
}

.btn-outline-danger:hover {
  border-color: transparent;
  background-color: #DC3545;
  color: #fff;
}

.btn-light {
  border-color: #E8E8E8;
  background-color: #E8E8E8;
  color: #ff4545;
}

.btn-light:hover, .btn-light:focus {
  border-color: transparent;
  background-color: #d5d5d5;
  color: #2e2e2e;
}

.btn-outline-light {
  color: #E8E8E8;
  border-color: #E8E8E8;
  border-width: 1px;
  border-style: solid;
  background-color: transparent;
}

.btn-outline-light:hover {
  border-color: transparent;
  background-color: #E8E8E8;
  color: #2e2e2e;
}

.btn-dark {
  border-color: #212121;
  background-color: #212121;
  color: #fff;
}

.btn-dark:hover, .btn-dark:focus {
  border-color: transparent;
  background-color: #0e0e0e;
  color: #fff;
}

.btn-outline-dark {
  color: #212121;
  border-color: #212121;
  border-width: 1px;
  border-style: solid;
  background-color: transparent;
}

.btn-outline-dark:hover {
  border-color: transparent;
  background-color: #212121;
  color: #fff;
}

/* Button Hover Color & Style (Solid & Outline) */
.btn-hover-primary:hover, .btn-hover-primary:not(:disabled):not(.disabled).active {
  border-color: transparent;
  background-color: #ff4545;
  color: #fff;
}

.btn-outline-hover-primary:hover, .btn-outline-hover-primary:not(:disabled):not(.disabled).active {
  color: #ff4545;
  border-color: transparent;
  background-color: transparent;
}

.btn-hover-secondary:hover, .btn-hover-secondary:not(:disabled):not(.disabled).active {
  border-color: transparent;
  background-color: #6C757D;
  color: #fff;
}

.btn-outline-hover-secondary:hover, .btn-outline-hover-secondary:not(:disabled):not(.disabled).active {
  color: #6C757D;
  border-color: transparent;
  background-color: transparent;
}

.btn-hover-success:hover, .btn-hover-success:not(:disabled):not(.disabled).active {
  border-color: transparent;
  background-color: #0D6EFD;
  color: #fff;
}

.btn-outline-hover-success:hover, .btn-outline-hover-success:not(:disabled):not(.disabled).active {
  color: #0D6EFD;
  border-color: transparent;
  background-color: transparent;
}

.btn-hover-info:hover, .btn-hover-info:not(:disabled):not(.disabled).active {
  border-color: transparent;
  background-color: #0DCAF0;
  color: #fff;
}

.btn-outline-hover-info:hover, .btn-outline-hover-info:not(:disabled):not(.disabled).active {
  color: #0DCAF0;
  border-color: transparent;
  background-color: transparent;
}

.btn-hover-warning:hover, .btn-hover-warning:not(:disabled):not(.disabled).active {
  border-color: transparent;
  background-color: #FFC107;
  color: #2e2e2e;
}

.btn-outline-hover-warning:hover, .btn-outline-hover-warning:not(:disabled):not(.disabled).active {
  color: #FFC107;
  border-color: transparent;
  background-color: transparent;
}

.btn-hover-danger:hover, .btn-hover-danger:not(:disabled):not(.disabled).active {
  border-color: transparent;
  background-color: #DC3545;
  color: #fff;
}

.btn-outline-hover-danger:hover, .btn-outline-hover-danger:not(:disabled):not(.disabled).active {
  color: #DC3545;
  border-color: transparent;
  background-color: transparent;
}

.btn-hover-light:hover, .btn-hover-light:not(:disabled):not(.disabled).active {
  border-color: transparent;
  background-color: #E8E8E8;
  color: #2e2e2e;
}

.btn-outline-hover-light:hover, .btn-outline-hover-light:not(:disabled):not(.disabled).active {
  color: #E8E8E8;
  border-color: transparent;
  background-color: transparent;
}

.btn-hover-dark:hover, .btn-hover-dark:not(:disabled):not(.disabled).active {
  border-color: transparent;
  background-color: #212121;
  color: #fff;
}

.btn-outline-hover-dark:hover, .btn-outline-hover-dark:not(:disabled):not(.disabled).active {
  color: #212121;
  border-color: transparent;
  background-color: transparent;
}

/*====================  
    6.2 Feature CSS  
====================*/
.feature {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  z-index: 1;
  position: relative;
}

.feature .icon {
  width: 60px;
}

.feature .icon img {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.feature:hover .icon img {
  -webkit-filter: brightness(1) grayscale(97%) contrast(12);
          filter: brightness(1) grayscale(97%) contrast(12);
  -webkit-transform: scale(1.04);
      -ms-transform: scale(1.04);
          transform: scale(1.04);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.feature .content {
  width: calc(100% - 60px);
  padding-left: 20px;
}

.feature .content .title {
  font-size: 18px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 5px;
  color: #2e2e2e;
  text-transform: uppercase;
  line-height: 1.3;
}

@media only screen and (max-width: 767px) {
  .feature .content .title {
    font-size: 16px;
  }
}

.feature .content p {
  font-size: 14px;
  line-height: 1.71;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #2e2e2e;
}

/*====================  
    6.3 Banner CSS  
====================*/
.banner {
  position: relative;
  overflow: hidden;
}

.banner:hover .banner-image a img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.banner:hover .small-banner-content .btn {
  background: #ff4545;
}

.banner:hover .small-banner-content .btn-hover-dark {
  background: #212121;
}

.banner .banner-image {
  overflow: hidden;
}

.banner .banner-image a {
  display: block;
}

.banner .banner-image a img {
  width: 100%;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.banner .info {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 30px;
}

.banner .small-banner-content .sub-title {
  color: #6c6c6c;
  font-size: 18px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner .small-banner-content .sub-title {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 479px) {
  .banner .small-banner-content .sub-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.banner .small-banner-content .sub-title span {
  color: #ff4545;
  font-size: 22px;
  font-weight: 600;
}

.banner .small-banner-content .title {
  font-size: 24px;
  font-weight: 600;
  color: #2e2e2e;
  font-family: "Montserrat", sans-serif;
  padding-bottom: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner .small-banner-content .title {
    margin: 0px;
  }
}

@media only screen and (max-width: 479px) {
  .banner .small-banner-content .title {
    margin: 0px;
    font-size: 20px;
  }
}

/*====================  
    6.4 Products CSS  
====================*/
/* Product Tab Nav */
.product-tab-nav .nav-item {
  margin-right: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .product-tab-nav .nav-item {
    margin-right: 20px;
  }
}

.product-tab-nav .nav-item:last-child {
  margin-right: 0;
}

.product-tab-nav .nav-item .nav-link {
  line-height: 1;
  font-size: 18px;
  color: #2e2e2e;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  display: block;
  padding: 0 0 15px 0;
  position: relative;
}

.product-tab-nav .nav-item .nav-link:after {
  position: absolute;
  content: "";
  color: #ff4545;
  background: #ff4545;
  width: 0%;
  height: 2px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  top: 100%;
  left: 0;
}

.product-tab-nav .nav-item .nav-link:hover, .product-tab-nav .nav-item .nav-link.active {
  color: #ff4545;
}

.product-tab-nav .nav-item .nav-link:hover:after, .product-tab-nav .nav-item .nav-link.active:after {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .product-tab-nav .nav-item .nav-link {
    font-size: 16px;
    padding: 0 0 10px 0;
  }
}

/* Product Style */
.product {
  overflow: hidden;
}

.product.product-border-left {
  border-left: 1px solid #E8E8E8;
}

.product .thumb {
  position: relative;
  overflow: hidden;
}

.product .thumb .image {
  position: relative;
  display: block;
  overflow: hidden;
}

.product .thumb .image img {
  z-index: 1;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 100%;
}

.product .thumb .image img.hover-image {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  opacity: 0;
}

.product .thumb .badges {
  position: absolute;
  z-index: 8;
  top: 18px;
  left: 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.product .thumb .badges span {
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  display: block;
  padding: 0 7px;
  text-align: center;
  text-transform: capitalize;
  color: #fff;
}

.product .thumb .badges span + span {
  margin-top: 6px;
}

.product .thumb .badges span.new {
  background-color: #0D6EFD;
}

.product .thumb .badges span.sale {
  background-color: #FF2F2F;
}

.product .thumb .actions {
  position: absolute;
  z-index: 9;
  top: 18px;
  right: 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.product .thumb .actions .action {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-decoration: none;
  color: #2e2e2e;
  border-radius: 50%;
  background-color: #ced4da;
  visibility: hidden;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
}

.product .thumb .actions .action i {
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
}

.product .thumb .actions .action + .action {
  margin-top: 10px;
}

.product .thumb .actions .action.active {
  color: #ff4545;
}

.product .thumb .actions .action:hover:not(.active) {
  color: #fff;
  background-color: #ff4545;
}

.product .content {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px 15px 0;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-align: center;
  background-color: #fff;
}

.product .content .sub-title {
  font-size: 13px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  color: #2e2e2e;
  margin-bottom: 10px;
}

.product .content .sub-title:hover {
  color: #ff4545;
}

.product .content .title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.714;
  margin-bottom: 15px;
}

.product .content .title a {
  text-decoration: none;
  color: #2e2e2e;
}

.product .content .title a:hover {
  color: #ff4545;
}

.product .content .btn {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  text-transform: uppercase;
  font-weight: 400;
}

.product:hover .thumb .image img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.product:hover .thumb .image .first-image {
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.product:hover .thumb .image .second-image {
  opacity: 1;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.product:hover .thumb .actions .action {
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.product-hover .thumb {
  overflow: hidden;
  position: relative;
}

.product-hover:hover .thumb .image img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.product-hover:hover .thumb .image .first-image {
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.product-hover:hover .thumb .image .second-image {
  opacity: 1;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.product-carousel, .product-deal-carousel {
  margin-left: -15px;
  margin-right: -15px;
  position: relative;
}

.product-carousel .product, .product-deal-carousel .product {
  padding: 0 15px;
}

.product-carousel .swiper-button-prev, .product-carousel .swiper-button-next, .product-deal-carousel .swiper-button-prev, .product-deal-carousel .swiper-button-next {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-carousel .swiper-button-prev:focus, .product-carousel .swiper-button-next:focus, .product-deal-carousel .swiper-button-prev:focus, .product-deal-carousel .swiper-button-next:focus {
  border: 0px;
  outline: 0px;
}

.product-carousel .swiper-button-prev:after, .product-carousel .swiper-button-next:after, .product-deal-carousel .swiper-button-prev:after, .product-deal-carousel .swiper-button-next:after {
  display: none;
}

.product-carousel .swiper-button-prev i, .product-carousel .swiper-button-next i, .product-deal-carousel .swiper-button-prev i, .product-deal-carousel .swiper-button-next i {
  opacity: 0;
  visibility: hidden;
  font-size: 30px;
  color: #212121;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100%;
}

.product-carousel .swiper-button-prev i:hover, .product-carousel .swiper-button-next i:hover, .product-deal-carousel .swiper-button-prev i:hover, .product-deal-carousel .swiper-button-next i:hover {
  color: #fff;
  background: #ff4545 !important;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

@media only screen and (max-width: 767px) {
  .product-carousel .swiper-button-prev, .product-carousel .swiper-button-next, .product-deal-carousel .swiper-button-prev, .product-deal-carousel .swiper-button-next {
    display: none;
  }
}

.product-carousel:hover .swiper-button-prev i, .product-carousel:hover .swiper-button-next i, .product-deal-carousel:hover .swiper-button-prev i, .product-deal-carousel:hover .swiper-button-next i {
  opacity: 1;
  visibility: visible;
  background: #E8E8E8;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.product-carousel:hover .swiper-button-prev, .product-deal-carousel:hover .swiper-button-prev {
  left: 20px;
}

.product-carousel:hover .swiper-button-next, .product-deal-carousel:hover .swiper-button-next {
  right: 20px;
}

.product-carousel .swiper-pagination, .product-deal-carousel .swiper-pagination {
  display: none;
}

@media only screen and (max-width: 767px) {
  .product-carousel .swiper-pagination, .product-deal-carousel .swiper-pagination {
    margin-top: 50px;
    display: block;
  }
}

.swiper-container-horizontal .swiper-wrapper .swiper-slide.product-wrapper.swiper-slide-active .product.product-border-left {
  border-left: 0;
}

.thumb .image .first-image {
  opacity: 1;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.thumb .image .second-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

/* Product Ratings */
.ratings {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}

.ratings .rating-wrap {
  font-size: 14px;
  line-height: 1;
  position: relative;
  color: #CCCCCC;
}

.ratings .rating-wrap::before {
  font-family: FontAwesome;
  content: "\f006 \f006 \f006 \f006 \f006";
}

.ratings .rating-wrap .star {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  color: #212121;
}

.ratings .rating-wrap .star::before {
  font-family: FontAwesome;
  content: "\f005 \f005 \f005 \f005 \f005";
}

.ratings .rating-num {
  font-size: 12px;
  line-height: 1;
  margin-left: 6px;
  color: #999999;
}

/* Product Price */
.price {
  min-height: 20px;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #2e2e2e;
}

.price:not(:last-child) {
  margin-bottom: 20px;
}

.price span.new {
  color: #ff4545;
  font-weight: 600;
  font-size: 15px;
}

.price span.old {
  font-size: 14px;
  margin-left: 10px;
  text-decoration: line-through;
  color: #999999;
}

/* Product Deal */
.section-title-produt-tab-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 2px solid #ebebeb;
  padding-bottom: 9px;
  margin-bottom: 50px;
}

.section-title-produt-tab-wrapper .product-tab-nav {
  margin-bottom: -15px;
}

@media only screen and (max-width: 767px) {
  .section-title-produt-tab-wrapper {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 15px;
    margin-bottom: 50px;
  }
  .section-title-produt-tab-wrapper .product-tab-nav {
    padding-top: 20px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.product-deal-carousel {
  margin-left: -15px;
  margin-right: -15px;
}

.single-deal-product {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 0 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 479px) {
  .single-deal-product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.single-deal-product .thumb {
  width: 250px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 767px) {
  .single-deal-product .thumb {
    width: 150px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 479px) {
  .single-deal-product .thumb {
    width: 100%;
  }
}

.single-deal-product .thumb img {
  width: 100%;
}

.single-deal-product .content {
  width: calc(100% - 250px);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 20px;
  text-align: start;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 767px) {
  .single-deal-product .content {
    width: calc(100% - 150px);
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 479px) {
  .single-deal-product .content {
    width: 100%;
  }
}

.single-deal-product .content .ratings, .single-deal-product .content .price, .single-deal-product .content .btn {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
}

.single-deal-product .content .sub-title {
  text-transform: uppercase;
}

.single-deal-product .content .countdown-area {
  margin-bottom: 20px;
}

.single-deal-product .content .inner-desc {
  color: #0084c5;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-bottom: 20px;
}

/* Product List */
.product-list-title {
  border-bottom: 2px solid #ebebeb;
  position: relative;
  margin-bottom: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .product-list-title {
    margin-bottom: 40px;
  }
}

.product-list-title .title {
  font-size: 24px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: #2e2e2e;
  line-height: 1;
}

@media only screen and (max-width: 575px) {
  .product-list-title .title {
    font-size: 20px;
  }
}

.product-list-title span {
  width: 100px;
  height: 2px;
  display: block;
  border: 1px solid #ff4545;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.single-product-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.single-product-list .thumb {
  width: 100px;
}

.single-product-list .content {
  width: calc(100% - 100px);
  padding-left: 30px;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 575px) {
  .single-product-list .content {
    padding-left: 20px;
  }
}

.single-product-list .content .title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
}

.single-product-list .content .title a:hover {
  color: #ff4545;
}

.single-product-list .content .price {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 15px;
}

.single-product-list .content .price .new {
  font-weight: 400;
}

.single-product-list .content .ratings {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 0px;
}

.product-list-carousel,
.product-list-carousel-2,
.product-list-carousel-3 {
  margin-left: -15px;
  margin-right: -15px;
  position: relative;
  overflow: hidden;
}

.product-list-carousel .product,
.product-list-carousel-2 .product,
.product-list-carousel-3 .product {
  padding: 0 15px;
}

.product-list-carousel .swiper-button-prev, .product-list-carousel .swiper-button-next,
.product-list-carousel-2 .swiper-button-prev,
.product-list-carousel-2 .swiper-button-next,
.product-list-carousel-3 .swiper-button-prev,
.product-list-carousel-3 .swiper-button-next {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 15px;
}

.product-list-carousel .swiper-button-prev:focus, .product-list-carousel .swiper-button-next:focus,
.product-list-carousel-2 .swiper-button-prev:focus,
.product-list-carousel-2 .swiper-button-next:focus,
.product-list-carousel-3 .swiper-button-prev:focus,
.product-list-carousel-3 .swiper-button-next:focus {
  border: 0px;
  outline: 0px;
}

.product-list-carousel .swiper-button-prev:after, .product-list-carousel .swiper-button-next:after,
.product-list-carousel-2 .swiper-button-prev:after,
.product-list-carousel-2 .swiper-button-next:after,
.product-list-carousel-3 .swiper-button-prev:after,
.product-list-carousel-3 .swiper-button-next:after {
  display: none;
}

.product-list-carousel .swiper-button-prev i, .product-list-carousel .swiper-button-next i,
.product-list-carousel-2 .swiper-button-prev i,
.product-list-carousel-2 .swiper-button-next i,
.product-list-carousel-3 .swiper-button-prev i,
.product-list-carousel-3 .swiper-button-next i {
  opacity: 1;
  visibility: visible;
  font-size: 25px;
  color: #212121;
  background: #E8E8E8;
  width: 25px;
  height: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100%;
}

.product-list-carousel .swiper-button-prev i:hover, .product-list-carousel .swiper-button-next i:hover,
.product-list-carousel-2 .swiper-button-prev i:hover,
.product-list-carousel-2 .swiper-button-next i:hover,
.product-list-carousel-3 .swiper-button-prev i:hover,
.product-list-carousel-3 .swiper-button-next i:hover {
  color: #fff;
  background: #ff4545 !important;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.product-list-carousel .swiper-button-prev,
.product-list-carousel-2 .swiper-button-prev,
.product-list-carousel-3 .swiper-button-prev {
  left: auto;
  right: 50px;
}

.product-list-carousel .swiper-button-next,
.product-list-carousel-2 .swiper-button-next,
.product-list-carousel-3 .swiper-button-next {
  right: 15px;
}

/*====================  
    6.5 Brand Logo CSS 
====================*/
.single-brand-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.single-brand-logo a {
  position: relative;
}

.single-brand-logo a img {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.single-brand-logo a:hover img {
  transform: scale(1);
  transition: all 0.3s ease 0s;
}

.brand-logo-carousel {
  padding: 60px 0;
}

/*====================  
    6.6 Breadcrumb CSS 
====================*/

.breadcrumb-area {
  text-align: center;
  background-color: #E8E8E8;
  padding: 60px 15px;
}

@media only screen and (max-width: 767px) {
  .breadcrumb-area {
    padding: 40px 0;
  }
}

.breadcrumb-area .title {
  display: block;
  font-size: 32px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: #2e2e2e;
  line-height: 1;
  margin-bottom: 12px;
}

@media only screen and (max-width: 767px) {
  .breadcrumb-area .title {
    font-size: 26px;
  }
}

.breadcrumb-area ul li {
  display: inline-block;
  margin: 0 18px 0 0;
  text-transform: capitalize;
  color: #1a1a1a;
  position: relative;
  font-size: 15px;
  letter-spacing: .8px;
}

.breadcrumb-area ul li:last-child {
  margin: 0;
}

.breadcrumb-area ul li::before {
  position: absolute;
  width: 13px;
  height: 1px;
  background-color: #6d6d6d;
  content: "";
  right: -18px;
  top: 13px;
  z-index: 1;
  transform: rotate(106deg);
}

.breadcrumb-area ul li:last-child::before {
  display: none;
}

.breadcrumb-area ul li a {
  text-transform: capitalize;
  color: #666;
  font-weight: 500;
}

.breadcrumb-area ul li a:hover {
  color: #ff4545;
}

/*====================  
    6.7 Pagination CSS 
====================*/
.pagination .page-item .page-link {
  background: #fff;
  color: #212121;
  padding: 5px 15px;
  border-radius: 0px;
}

.pagination .page-item .page-link.active {
  background: #ff4545;
  color: #fff;
  border-color: #ff4545;
}

.pagination .page-item .page-link:hover {
  background: #ff4545;
  color: #fff;
  border-color: #ff4545;
}

.pagination .page-item .page-link:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media only screen and (max-width: 479px) {
  .pagination {
    margin-top: 10px;
  }
}

/*====================  
    6.8 Sidebar CSS 
====================*/
/*-- Shop Sidebar Area Start --*/
.sidebar_widget .widget_inner .widget-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  position: relative;
  padding-bottom: 10px;
  font-family: "Montserrat", sans-serif;
}

.sidebar_widget .widget_inner .widget-title:after {
  background-color: #ebebeb;
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
}

@media only screen and (max-width: 575px) {
  .sidebar_widget .widget_inner .widget-title {
    font-size: 18px;
  }
}

.sidebar_widget .widget_inner .search-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;

}

.sidebar_widget .widget_inner .search-box .form-control {
  border: 1px solid #e1e1e1;
  padding: 10px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  display: block;
  border-radius: 0;
  height: 45px;
  font-size: 14px;
  width: calc(100% - 40px);
}

.sidebar_widget .widget_inner .search-box .form-control:focus {
  border-color: #ff4545;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.sidebar_widget .widget_inner .search-box .btn {
  border-radius: 0;
  color: #fff;
  height: 45px;
  width: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px;
}

.sidebar_widget .widget_inner .search-box .btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.sidebar_widget .widget_inner .widget-list .category-menu {
  overflow: inherit;
}

.sidebar_widget .widget_inner .widget-list .category-menu > li {
  line-height: 1;
}

.sidebar_widget .widget_inner .widget-list .category-menu > li > a {
  font-family: "Montserrat", sans-serif;
  color: #2e2e2e;
  font-size: 14px;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sidebar_widget .widget_inner .widget-list .category-menu > li > a i {
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.sidebar_widget .widget_inner .widget-list .category-menu > li > a:hover {
  color: #ff4545;
}

.sidebar_widget .widget_inner .widget-list .category-menu > li.active > a i {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.sidebar_widget .widget_inner .widget-list .category-menu > li > .dropdown {
  padding-left: 10px;
}

.sidebar_widget .widget_inner .widget-list .category-menu > li > .dropdown li a {
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  padding-top: 15px;
  display: block;
}

.sidebar_widget .widget_inner .widget-list .slider-range-submit {
  height: 30px;
  line-height: 30px;
  padding: 0 20px;
  text-transform: capitalize;
  color: #fff;
  background: #212121;
  border: 0;
  border-radius: 30px;
  font-size: 14px;
}

.sidebar_widget .widget_inner .widget-list .slider-range-submit:focus {
  outline: 0px;
  -webkit-box-shadow: 0px;
          box-shadow: 0px;
}

.sidebar_widget .widget_inner .widget-list .slider-range-submit:hover {
  background: #ff4545;
}

.sidebar_widget .widget_inner .widget-list .slider-range-amount {
  background: none;
  border: none;
  font-size: 12px;
  text-align: center;
  width: 150px;
  color: #2e2e2e;
  border: 1px solid #212121;
  border-radius: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sidebar_widget .widget_inner .widget-list .slider-range-amount {
    width: 130px;
  }
}

.sidebar_widget .widget_inner .widget-list .slider-range-amount:focus {
  border: 1px solid #ff4545;
  border-radius: 30px;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.sidebar_widget .widget_inner .widget-list .sidebar-body .tags li {
  display: inline-block;
}

.sidebar_widget .widget_inner .widget-list .sidebar-body .checkbox-container li {
  padding: 10px 0;
  line-height: 1;
}

.sidebar_widget .widget_inner .widget-list .sidebar-body .checkbox-container li:last-child {
  padding-bottom: 0px;
}

.sidebar_widget .widget_inner .widget-list .sidebar-body .checkbox-container .custom-control-input {
  margin-right: 10px;
  cursor: pointer;
}

.sidebar_widget .widget_inner .widget-list .sidebar-body .checkbox-container .custom-control-label {
  font-size: 14px;
  color: #212121;
  text-transform: capitalize;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  cursor: pointer;
}

.sidebar_widget .widget_inner .widget-list .sidebar-body .single-product-list .thumb {
  width: 60px;
  height: 100%;
}

.sidebar_widget .widget_inner .widget-list .sidebar-body .single-product-list .thumb img {
  width: 100%;
  height: auto;
}

.sidebar_widget .widget_inner .widget-list .sidebar-body .single-product-list .content {
  width: calc(100% - 60px);
  padding-left: 15px;
}

.sidebar_widget .widget_inner .widget-list .sidebar-body .single-product-list .content .title {
  font-size: 14px;
  font-weight: 600;
}

.sidebar-list > li > a {
  font-size: 14px;
  color: #2e2e2e;
  text-transform: capitalize;
  line-height: 1;
  position: relative;
  display: block;
  padding: 10px 0;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

.sidebar-list > li > a:hover {
  color: #ff4545;
}

.sidebar-list > li:last-child a {
  padding-bottom: 0;
}

.sidebar-list .btn {
  height: 20px;
  max-width: 90px;
  min-width: 20px;
  position: relative;
  border: 1px solid #ebebeb;
  display: inline-block;
  margin: 0 0px 0px 20px;
  border-radius: 0px;
}

.sidebar-list .btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #ff4545;
  outline: 0;
}

.tags li a {
  border: 1px solid #ebebeb;
  line-height: 1;
  padding: 10px 15px;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 10px;
  color: #212121;
  border-radius: 25px;
  font-weight: 500;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
}

.tags li a:hover {
  color: #fff;
  background: #ff4545;
  border-color: #ff4545;
}

/* ---Range Slider--- */
.ui-slider-horizontal {
  height: 2px;
  background: #212121;
  border: none;
  width: 92%;
  margin: 0 auto;
  margin-bottom: 22px;
}

.ui-slider-horizontal .ui-slider-range {
  background: #000;
  height: 2px;
  top: -1px;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  background: #212121;
  width: 15px;
  height: 15px;
  top: -7px;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #212121;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.ui-state-default:focus,
.ui-widget-content .ui-state-default:focus,
.ui-widget-header .ui-state-default:focus {
  outline: none;
  border-radius: 100%;
}

.ui-state-default:hover,
.ui-widget-content .ui-state-default:hover,
.ui-widget-header .ui-state-default:hover {
  background: #ff4545;
  border-color: #ff4545;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

/*====================  
    6.9 Modal CSS
====================*/
.modalquickview .modal-dialog {
  width: calc(100% - 30px);
  max-width: 1200px;
}

@media only screen and (max-width: 575px) {
  .modalquickview .modal-dialog {
    width: calc(100% - 15px);
  }
}

.modalquickview .modal-dialog .modal-content {
  padding: 30px;
}

.modalquickview .modal-dialog .modal-content .close {
  font-size: 30px;
  font-weight: 400;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 767px) {
  .modalquickview .modal-dialog .modal-content .close {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.modalquickview .product-summery {
  position: absolute;
  right: 15px;
  left: 15px;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .modalquickview .product-summery {
    position: relative;
    left: 0;
    right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .modalquickview .product-summery {
    margin-top: 0;
  }
}

.modal-product-carousel img {
  border: 1px solid #ebebeb;
}

.modal-product-carousel .swiper-button-prev, .modal-product-carousel .swiper-button-next {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal-product-carousel .swiper-button-prev:focus, .modal-product-carousel .swiper-button-next:focus {
  border: 0px;
  outline: 0px;
}

.modal-product-carousel .swiper-button-prev:after, .modal-product-carousel .swiper-button-next:after {
  display: none;
}

.modal-product-carousel .swiper-button-prev i, .modal-product-carousel .swiper-button-next i {
  opacity: 1;
  visibility: visible;
  font-size: 30px;
  color: #212121;
  background: #E8E8E8;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100%;
}

.modal-product-carousel .swiper-button-prev i:hover, .modal-product-carousel .swiper-button-next i:hover {
  color: #fff;
  background: #ff4545 !important;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

/*----------------------------------------*/
/*  07. Pages CSS
/*----------------------------------------*/
/*====================  
    7.1 Blog Page CSS
====================*/
.blog-content .post-meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  line-height: 1;
  margin-top: 30px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  color: #8c8c8c;
  font-size: 14px;
}

.blog-content .post-meta span:after {
  content: "/";
  padding: 0 5px;
}

.blog-content .post-meta span:last-child:after {
  display: none;
}

.blog-content .post-meta span a {
  color: #8c8c8c;
}

.blog-content .post-meta span a:hover {
  color: #ff4545;
}

.blog-content .title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.16;
  display: block;
  margin-top: 15px;
  margin-bottom: 12px;
  font-family: "Montserrat", sans-serif;
  color: #2e2e2e;
}

@media only screen and (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-content .title {
    font-size: 22px;
  }
}

@media only screen and (max-width: 479px) {
  .blog-content .title {
    font-size: 20px;
  }
}

.blog-content .title a {
  color: #2e2e2e;
}

.blog-content .title a:hover {
  color: #ff4545;
}

.blog-content p {
  margin-bottom: 20px;
  font-size: 14px;
}

.blog-content .btn {
  font-size: 14px;
  padding: 15px 25px;
  font-weight: 600;
}

.blog-single-post-wrapper .blog-overlay {
  position: relative;
  display: block;
  overflow: hidden;
}

.blog-single-post-wrapper .blog-overlay img {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  width: 100%;
}

.blog-single-post-wrapper:hover .blog-overlay img {
  -webkit-transform: scale(1.1) rotate(1.2deg);
      -ms-transform: scale(1.1) rotate(1.2deg);
          transform: scale(1.1) rotate(1.2deg);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

/*-- Blog Details style  --*/
.blog-details .image img {
  width: 100%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.blog-details .content .title {
  font-size: 30px;
  font-weight: 600;
  color: #2e2e2e;
  font-family: 500;
}

@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-details .content .title {
    font-size: 26px;
  }
}

@media only screen and (max-width: 479px) {
  .blog-details .content .title {
    font-size: 22px;
  }
}

.blog-details .content .meta-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  color: #6C757D;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.blog-details .content .meta-list .meta-item {
  font-size: 14px;
  margin-right: 10px;
}

.blog-details .content .meta-list .meta-item + .meta-item::before {
  content: "|";
  margin-right: 10px;
}

.blog-details .content .meta-list a:hover {
  color: #ff4545;
}

.blog-details .content .desc {
  font-size: 14px;
}

.blog-details .blockquote {
  font-size: 14px;
  line-height: 2;
  position: relative;
  background-color: #f8f8f8;
  color: #2e2e2e;
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-weight: 400;
  padding: 30px 35px 30px;
}

@media only screen and (max-width: 575px) {
  .blog-details .blockquote {
    font-size: 14px;
  }
}

.blog-details .blockquote:before {
  background-color: #6C757D;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
}

.blog-details .blockquote .blockquote-footer {
  color: #212121;
  font-size: 15px;
  font-weight: 600;
}

.blog-details .share-article {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 10px;
}

.blog-details .share-article .left-side {
  float: left;
}

.blog-details .share-article .left-side a:hover {
  color: #ff4545;
}

.blog-details .share-article .right-side {
  float: right;
}

.blog-details .share-article .right-side a:hover {
  color: #ff4545;
}

@media only screen and (max-width: 479px) {
  .blog-details .share-article .share-title {
    display: none;
  }
}

.blog-details .widget-social {
  text-align: center;
}

.comment-area-wrapper .title {
  font-size: 24px;
  font-weight: 700;
  color: #2e2e2e;
}

.comment-area-wrapper .single-comment-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}

.comment-area-wrapper .single-comment-wrap.comment-reply {
  padding-left: 50px;
}

@media only screen and (max-width: 479px) {
  .comment-area-wrapper .single-comment-wrap.comment-reply {
    padding-left: 20px;
  }
}

.comment-area-wrapper .single-comment-wrap .author-thumb {
  margin-right: 10px;
  width: 80px;
  height: 80px;
}

.comment-area-wrapper .single-comment-wrap .author-thumb img {
  width: 100%;
  border-radius: 10px;
}

@media only screen and (max-width: 479px) {
  .comment-area-wrapper .single-comment-wrap .author-thumb {
    width: 50px;
    height: 50px;
  }
}

.comment-area-wrapper .single-comment-wrap .comments-info {
  width: 90%;
}

.comment-area-wrapper .single-comment-wrap .comments-info p {
  font-size: 14px;
}

.comment-area-wrapper .single-comment-wrap .comments-info .author {
  font-size: 12px;
  color: #2e2e2e;
}

.comment-area-wrapper .single-comment-wrap .comments-info .author a {
  color: #2e2e2e;
  font-size: 14px;
}

.comment-area-wrapper .single-comment-wrap .comments-info .author a:hover {
  color: #ff4545;
}

.comment-area-wrapper .single-comment-wrap .comments-info .btn-reply {
  font-size: 12px;
  color: #2e2e2e;
}

.comment-area-wrapper .single-comment-wrap .comments-info .btn-reply:hover {
  color: #ff4545;
}

.blog-comment-form-wrapper .title {
  font-size: 24px;
  font-weight: 700;
  color: #2e2e2e;
}

.blog-comment-form-wrapper .comment-box .input-area {
  padding: 10px 15px;
  background: #f8f8f8;
  border: 1px solid transparent;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.blog-comment-form-wrapper .comment-box .input-area:focus {
  border: 1px solid #ff4545;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  outline: 0px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*====================  
    7.2 Shop Page CSS
====================*/
/*-- Shop Toolbar Area Start Here --*/
.shop_toolbar_wrapper {
  padding: 10px 15px;
  border: 1px solid #ebebeb;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 479px) {
  .shop_toolbar_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.shop_toolbar_wrapper .shop_toolbar_btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 479px) {
  .shop_toolbar_wrapper .shop_toolbar_btn {
    margin-bottom: 10px;
  }
}

.shop_toolbar_wrapper .shop_toolbar_btn button {
  border: 1px solid #ebebeb;
  font-size: 20px;
  text-transform: uppercase;
  margin-right: 10px;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  padding: 6px 5px 4px;
  background-color: transparent;
}

.shop_toolbar_wrapper .shop_toolbar_btn button.active {
  border: 1px solid #ff4545;
  color: #ff4545;
}

.shop_toolbar_wrapper .shop_toolbar_btn button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.shop_toolbar_wrapper .shop_toolbar_btn button:hover {
  color: #ff4545;
  border-color: #ff4545;
}

.shop_toolbar_wrapper .shop_toolbar_btn button:last-child {
  margin-right: 0px;
}

.shop_toolbar_wrapper .shop-top-bar-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.shop_toolbar_wrapper .shop-top-bar-right .shop-short-by {
  margin-right: 20px;
}

.shop_toolbar_wrapper .shop-top-bar-right .shop-short-by .nice-select {
  border-radius: 0px;
  border-color: #ebebeb;
  height: 32px;
  line-height: 30px;
}

.shop_toolbar_wrapper .shop-top-bar-right .shop-short-by .nice-select .list {
  width: 160px;
  padding: 10px 0;
  border-radius: 0px;
  z-index: 99;
}

.shop_toolbar_wrapper .shop-top-bar-right .shop-short-by .nice-select li {
  margin: 0 10px;
  padding: 10px 0;
  background: transparent;
  line-height: 1;
  min-height: 20px;
}

.shop_toolbar_wrapper .shop-top-bar-right .shop-short-by .nice-select li:hover {
  padding-left: 5px;
  display: block;
  color: #ff4545;
}

.shop_toolbar_wrapper .shop-top-bar-right .shop-short-by .nice-select:focus {
  border-color: #ff4545;
}

.shop_toolbar_wrapper .shop-top-bar-right .shop-short-by .nice-select .current {
  color: #212121;
  font-size: 14px;
}

@media only screen and (max-width: 479px) {
  .shop_toolbar_wrapper .shop-top-bar-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .shop_toolbar_wrapper .shop-top-bar-right .shop-short-by {
    margin-right: 0px;
    margin-bottom: 15px;
  }
}

.shop_toolbar_wrapper .shop-top-bar-left .shop-top-show span {
  color: #212121;
  font-size: 14px;
}

/*-- Shop Toolbar Area End Here --*/
/* Shop Wrapper Start */
.shop_wrapper.grid_list {
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

.shop_wrapper.grid_list .product-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.shop_wrapper.grid_4, .shop_wrapper.grid_5, .shop_wrapper.grid_3 {
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  margin-bottom: -30px;
}

.shop_wrapper.grid_4 .product, .shop_wrapper.grid_5 .product, .shop_wrapper.grid_3 .product {
  margin-bottom: 30px;
}

.shop_wrapper.grid_4 .product .thumb img, .shop_wrapper.grid_5 .product .thumb img, .shop_wrapper.grid_3 .product .thumb img {
  width: 100%;
  height: auto;
}

.shop_wrapper.grid_4 .product {
  border-right: 1px solid #ebebeb;
}

.shop_wrapper.grid_4 .product:nth-of-type(4n+4) {
  border-right: 0px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .shop_wrapper.grid_4 .product:nth-of-type(3n+3) {
    border-right: 0px;
  }
  .shop_wrapper.grid_4 .product:nth-of-type(4n+4) {
    border-right: 1px solid #ebebeb;
  }
  .shop_wrapper.grid_4 .product:last-child {
    border-right: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .shop_wrapper.grid_4 .product:nth-of-type(2n+2) {
    border-right: 0px;
  }
}

@media only screen and (max-width: 575px) {
  .shop_wrapper.grid_4 .product {
    border-right: 0px;
  }
}

.shop_wrapper.grid_3 .product {
  border-right: 1px solid #ebebeb;
}

.shop_wrapper.grid_3 .product:nth-of-type(3n+3) {
  border-right: 0px;
}

@media only screen and (max-width: 767px) {
  .shop_wrapper.grid_3 .product:nth-of-type(3n+3) {
    border-right: 1px solid #ebebeb;
  }
  .shop_wrapper.grid_3 .product:nth-of-type(2n+2) {
    border-right: 0px;
  }
}

.shop_wrapper .content p {
  display: none;
}

.shop_wrapper .content .shop-list-btn .wishlist, .shop_wrapper .content .shop-list-btn .compare {
  display: none;
}

.grid_list .product .product-inner {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ebebeb;
}

@media only screen and (max-width: 575px) {
  .grid_list .product .product-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.grid_list .product:last-child .product-inner {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: 0px;
}

.grid_list .product .thumb {
  width: 370px;
}

.grid_list .product .thumb img {
  width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .grid_list .product .thumb {
    width: 250px;
  }
}

@media only screen and (max-width: 767px) {
  .grid_list .product .thumb {
    width: 180px;
    height: 100%;
  }
}

@media only screen and (max-width: 575px) {
  .grid_list .product .thumb {
    width: 100%;
    height: 100%;
  }
}

.grid_list .product .actions {
  top: 50%;
  left: 50%;
  right: auto;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.grid_list .product .actions .wishlist, .grid_list .product .actions .compare {
  display: none;
}

.grid_list .product .actions .action + .action {
  margin-top: 0px;
}

.grid_list .product .content {
  width: calc(100% - 370px);
  text-align: start;
  padding-top: 0px;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  padding-left: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .grid_list .product .content {
    width: calc(100% - 270px);
  }
}

@media only screen and (max-width: 767px) {
  .grid_list .product .content {
    width: calc(100% - 180px);
  }
}

@media only screen and (max-width: 575px) {
  .grid_list .product .content {
    width: 100%;
    padding-left: 10px;
  }
}

.grid_list .product .content .title {
  font-size: 18px;
  font-weight: 700;
}

.grid_list .product .content .ratings, .grid_list .product .content .price {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 10px;
}

.grid_list .product .content p {
  display: block;
  font-size: 14px;
}

.grid_list .product .content .shop-list-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 20px;
}

.grid_list .product .content .shop-list-btn .wishlist, .grid_list .product .content .shop-list-btn .compare {
  display: block;
  font-weight: 600;
}

.grid_list .product .content .shop-list-btn .btn:first-child {
  margin-right: 10px;
}

.grid_list .product .content .shop-list-btn .btn:last-child {
  margin-left: 10px;
}

/*-----------------Bottom tags-------------*/

.bottom-tag-cloud {
	display: flex;
  	align-items: center;
  	flex-wrap: wrap;
  	padding: 10px 0;
}

.bottom-tag-cloud .bottom-tag-item {
	display: inline-block;
  	font-size: 14px;
  	color: #333;
  	background-color: #01cfcf;
  	padding: 5px 10px;
  	margin: 3px 5px;
}

.bottom-tag-cloud .bottom-tag-item:hover {
	text-decoration: none;
  	color: #fff;
}

/*-----------------Bottom tags-end---------*/

/* Shop Wrapper End */

/*====================  
    7.3 Single Product Page CSS
====================*/

.single-product-tab {
	margin-top: 30px;
}

.single-product-tab .nav-tabs {
   flex-wrap: nowrap;
}

@media only screen and (max-width: 575px) {
  .single-product-tab .nav-tabs {
    flex-direction: column;
    align-items: flex-start;
  }
}

.single-product-tab .nav-tabs .nav-item {
  text-align: center;
}

.single-product-tab .nav-tabs .nav-item .nav-link {
  font-weight: 600;
  color: #212121;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  border: 0px;
  margin: 0px;
  padding-top: 0px;
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .single-product-tab .nav-tabs .nav-item .nav-link {
    padding: 0 5px 10px;
  }
}

@media only screen and (max-width: 767px) {
  .single-product-tab .nav-tabs .nav-item .nav-link {
    padding: 0 10px 10px;
  }
}

@media only screen and (max-width: 575px) {
  .single-product-tab .nav-tabs .nav-item .nav-link {
    padding: 0 10px 10px 0;
    font-size: 15px;
  }
}

.single-product-tab .nav-tabs .nav-item .nav-link:hover {
  color: #ff4545;
}

.single-product-tab .nav-tabs .nav-item .nav-link.active {
  color: #ff4545;
}

.single-product-tab .nav-tabs .nav-item:first-child .nav-link {
  padding-left: 0px;
}

.single-product-tab .tab-content {
  padding-top: 20px;
}

.single-product-tab .tab-content .desc-content {
  font-size: 14px;
  color: #535353;
}

.single-product-tab .pro_review {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 479px) {
  .single-product-tab .pro_review {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.single-product-tab .review_thumb {
  min-width: 80px;
}

.single-product-tab .review_thumb img {
  width: 100%;
}

@media only screen and (max-width: 479px) {
  .single-product-tab .review_thumb {
    min-width: 60px;
    margin-right: 10px;
  }
}

.single-product-tab .review_details {
  border: 1px solid #ddd;
  margin-left: 26px;
  padding: 10px 20px;
  position: relative;
  border-radius: 3px;
}

@media only screen and (max-width: 479px) {
  .single-product-tab .review_details {
    margin-left: 0;
    padding: 10px 10px;
  }
}

.single-product-tab .review_details:before {
  background: #fff;
  border-bottom: 1px solid #ddd;
  border-left: 1px solid #ddd;
  content: '';
  display: block;
  height: 10px;
  left: -6px;
  position: absolute;
  top: 10px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 10px;
}

.single-product-tab .review_details .review-title-date .title {
  font-size: 18px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

@media only screen and (max-width: 479px) {
  .single-product-tab .review_details .review-title-date .title {
    font-size: 16px;
    font-weight: 600;
  }
}

.single-product-tab .review_details .review-title-date span {
  font-weight: 300;
  font-size: 14px;
}

@media only screen and (max-width: 479px) {
  .single-product-tab .review_details .review-title-date span {
    font-size: 12px;
    margin-left: 5px;
  }
}

.single-product-tab .review_details p {
  font-size: 14px;
  color: #535353;
}

.single-product-tab .rating_wrap .rating-title {
  font-size: 18px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

.single-product-tab .rating_wrap p {
  font-size: 14px;
}

.single-product-tab .rating_wrap .rating-sub-title {
  font-size: 16px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

.single-product-tab .comments-reply-area .comment-input input, .single-product-tab .comments-reply-area .comment-input textarea, .single-product-tab .comments-reply-area .comment-form-comment input, .single-product-tab .comments-reply-area .comment-form-comment textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding: 0 10px;
  height: 40px;
}

.single-product-tab .comments-reply-area .comment-input input:focus, .single-product-tab .comments-reply-area .comment-input textarea:focus, .single-product-tab .comments-reply-area .comment-form-comment input:focus, .single-product-tab .comments-reply-area .comment-form-comment textarea:focus {
  border-color: #ff4545;
}

.single-product-tab .comments-reply-area .comment-input textarea, .single-product-tab .comments-reply-area .comment-form-comment textarea {
  height: 140px;
}

.single-product-tab .comments-reply-area label {
  display: block;
  margin-bottom: 3px;
}

.single-product-tab .shipping-policy .policy-list {
  padding-left: 20px;
}

.single-product-tab .shipping-policy .policy-list li {
  list-style: inside;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .product-summery {
    margin-top: 40px;
  }
}

.product-summery .product-head .product-title {
  font-size: 24px;
  font-weight: 600;
  color: #2e2e2e;
}

@media only screen and (max-width: 479px) {
  .product-summery .product-head .product-title {
    font-size: 18px;
  }
}

.product-summery .price-box .regular-price {
  font-size: 18px;
  font-weight: 600;
  margin-right: 5px;
  color: #ff4545;
}

@media only screen and (max-width: 479px) {
  .product-summery .price-box .regular-price {
    font-size: 16px;
  }
}

.product-summery .sku span {
  font-size: 14px;
}

.product-summery .desc-content {
  font-size: 14px;
  color: #535353;
}

.product-summery .product-color-variation .btn {
  width: 20px;
  height: 20px;
  border-radius: 0;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  border: 2px solid transparent;
  padding: 0;
}

.product-summery .product-color-variation .btn:hover {
  border: 2px solid #212121;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.product-summery .cart-wishlist-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.product-summery .cart-wishlist-btn .add-to_cart {
  margin-right: 10px;
}

.product-summery .social-share span {
  font-size: 16px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: #212121;
}

.product-summery .social-share a {
  color: #212121;
}

.product-summery .social-share a i {
  font-size: 26px;
  vertical-align: middle;
  margin-left: 10px;
}

.product-summery .social-share a:hover {
  color: #ff4545;
}

.product-summery .product-meta {
  line-height: 1;
}

.product-summery .product-meta span {
  font-size: 15px;
  font-weight: 500;
}

.product-summery .product-meta a {
  font-size: 14px;
  font-weight: 500;
  margin-left: 10px;
}

@media only screen and (max-width: 479px) {
  .product-summery .product-meta a {
    margin: 0 0 0 5px;
  }
}

.product-summery .product-delivery-policy li {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 479px) {
  .product-summery .product-delivery-policy li {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.product-summery .product-delivery-policy li i {
  font-size: 22px;
  color: #212121;
  margin-right: 10px;
  width: 20px;
}

@media only screen and (max-width: 479px) {
  .product-summery .product-delivery-policy li i {
    margin-top: 5px;
  }
}

.product-summery .product-delivery-policy li span {
  color: #212121;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  width: calc(100% - 20px);
}

.product-summery .product-delivery-policy li:last-child {
  margin-bottom: 0;
}

.product-details-img .single-product-img a {
  width: 100%;
}

.product-details-img .single-product-img a img {
  border: 1px solid #ebebeb;
  cursor: -webkit-grab;
  cursor: grab;
}

.product-details-img .single-product-thumb {
  margin-top: 10px;
}

.product-details-img .single-product-thumb img {
  border: 1px solid #ebebeb;
  width: 100%;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  cursor: pointer;
}

.product-details-img .single-product-thumb .swiper-slide-thumb-active img {
  cursor: pointer;
  border-color: #ff4545;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.product-details-img .single-product-thumb .swiper-button-prev:focus, .product-details-img .single-product-thumb .swiper-button-next:focus {
  border: 0px;
  outline: 0px;
}

.product-details-img .single-product-thumb .swiper-button-prev:after, .product-details-img .single-product-thumb .swiper-button-next:after {
  display: none;
}

.product-details-img .single-product-thumb .swiper-button-prev i, .product-details-img .single-product-thumb .swiper-button-next i {
  opacity: 0;
  visibility: hidden;
  font-size: 20px;
  color: #212121;
}

.product-details-img .single-product-thumb .swiper-button-prev i:hover, .product-details-img .single-product-thumb .swiper-button-next i:hover {
  color: #fff;
  background: #ff4545 !important;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.product-details-img .single-product-thumb:hover .swiper-button-prev i, .product-details-img .single-product-thumb:hover .swiper-button-next i {
  opacity: 1;
  visibility: visible;
  background: #E8E8E8;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

/*-- Single Product Slider --*/
.single-product-slider {
  margin-left: -10px;
  margin-right: -10px;
}

.single-product-slider .swiper-slide {
  padding: 0 10px;
}

.single-product-slider .swiper-slide img {
  cursor: url(../images/icons/fullscreen.png), auto;
}

.single-product-slider .swiper-slide-active.product.product-border-left {
  border-left: 0px;
}

.product-slider-summery .product-delivery-policy li {
  display: block;
}

.product-slider-summery .product-delivery-policy li i {
  vertical-align: middle;
}

.product-details-img {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  overflow: hidden;
}

/*-- Single Product Gallery  --*/
.single-product-gallery img {
  cursor: url(../images/icons/fullscreen.png), auto;
}

/*-- Single Product Vertical Tab --*/
.product-thumb-vertical {
  width: 105px;
  height: 435px;
  margin: auto 0;
  text-align: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product-thumb-vertical {
    height: 312px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-thumb-vertical {
    height: 340px;
  }
}

@media only screen and (max-width: 767px) {
  .product-thumb-vertical {
    height: 320px;
  }
}

@media only screen and (max-width: 479px) {
  .product-thumb-vertical {
    height: 190px;
    width: 90px;
  }
}

.product-thumb-vertical.vertical-style-thumb {
  width: 90px;
}

.product-thumb-vertical .swiper-wrapper {
  height: auto !important;
}

.product-thumb-vertical .swiper-slide {
  text-align: center;
  outline: 0 none;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.product-thumb-vertical .swiper-slide img {
  border: 1px solid #ebebeb;
  width: 100%;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  cursor: pointer;
}

.product-thumb-vertical .swiper-slide-thumb-active img {
  cursor: pointer;
  border-color: #ff4545;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.product-thumb-vertical .swiper-button-prev:focus, .product-thumb-vertical .swiper-button-next:focus {
  border: 0px;
  outline: 0px;
}

.product-thumb-vertical .swiper-button-prev:after, .product-thumb-vertical .swiper-button-next:after {
  display: none;
}

.product-thumb-vertical .swiper-button-prev i, .product-thumb-vertical .swiper-button-next i {
  opacity: 0;
  visibility: hidden;
  font-size: 20px;
  color: #212121;
}

.product-thumb-vertical .swiper-button-prev i:hover, .product-thumb-vertical .swiper-button-next i:hover {
  color: #fff;
  background: #ff4545 !important;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.product-thumb-vertical .swiper-button-prev {
  right: auto;
  margin: 0 auto;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(90deg);
      -ms-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
}

.product-thumb-vertical .swiper-button-next {
  right: auto;
  margin: 0 auto;
  top: auto;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(90deg);
      -ms-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
}

.product-thumb-vertical:hover .swiper-button-prev i, .product-thumb-vertical:hover .swiper-button-next i {
  opacity: 1;
  visibility: visible;
  background: #E8E8E8;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.single-product-vertical-tab {
  width: calc(100% - 105px);
  height: 100%;
  margin-left: 10px;
}

@media only screen and (max-width: 479px) {
  .single-product-vertical-tab {
    width: calc(100% - 90px);
  }
}

.single-product-vertical-tab img {
  width: 100%;
  border: 1px solid #ebebeb;
  cursor: url(../images/icons/fullscreen.png), auto;
}

.single-product-vertical-tab.vertical-style-tab {
  width: calc(100% - 100px);
}

/*-- Single Product Sticky --*/
.product-details-sticky-img img {
  border: 1px solid #ebebeb;
  cursor: url(../images/icons/fullscreen.png), auto;
}

/* --- Quantity --- */
.quantity {
  margin-right: 10px;
}

.quantity .cart-plus-minus {
  position: relative;
  width: 150px;
  text-align: left;
  height: 45px;
  overflow: hidden;
}

.quantity .cart-plus-minus > .cart-plus-minus-box {
  border: 1px solid #E8E8E8;
  height: 45px;
  text-align: center;
  width: 150px;
  background: #fff;
  font-size: 16px;
  font-weight: 600;
}

.quantity .cart-plus-minus > .qtybutton {
  cursor: pointer;
  position: absolute;
  text-align: center;
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  width: 35px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: middle;
  color: #212121;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.quantity .cart-plus-minus > .qtybutton:hover {
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  background-color: #ff4545;
  color: #fff;
}

.quantity .cart-plus-minus > .qtybutton.dec {
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  border-right: 1px solid #E8E8E8;
}

.quantity .cart-plus-minus > .qtybutton.inc {
  top: 50%;
  right: 0%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  border-left: 1px solid #E8E8E8;
}

.group-quantity-product table tbody .quantity {
  min-width: 167px;
}

.group-quantity-product table tbody .pro-title, .group-quantity-product table tbody .pro-price {
  vertical-align: middle;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  min-width: 200px;
  color: #212121;
}

/*====================  
    7.4 My Account Page CSS
====================*/
.myaccount-tab-menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.myaccount-tab-menu a {
  border: 1px solid #E8E8E8;
  border-bottom: none;
  color: #212121;
  font-weight: 500;
  font-size: 15px;
  display: block;
  padding: 10px 15px;
  text-transform: uppercase;
}

.myaccount-tab-menu a:last-child {
  border-bottom: 1px solid #E8E8E8;
}

.myaccount-tab-menu a:hover, .myaccount-tab-menu a.active {
  background-color: #ff4545;
  border-color: #ff4545;
  color: #fff;
}

.myaccount-tab-menu a i {
  font-size: 14px;
  text-align: center;
  width: 25px;
}

@media only screen and (max-width: 767px) {
  #myaccountContent {
    margin-top: 30px;
  }
}

.myaccount-content {
  border: 1px solid #E8E8E8;
  padding: 30px;
}

@media only screen and (max-width: 575px) {
  .myaccount-content {
    padding: 20px 15px;
  }
}

.myaccount-content form {
  margin-top: -20px;
}

.myaccount-content form .single-input-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.myaccount-content form .single-input-item input {
  width: 100%;
  padding: 12px 10px;
  border: 1px solid #E8E8E8;
}

.myaccount-content form .single-input-item input:focus {
  border: 1px solid #ff4545;
}

.myaccount-content form .single-item-button {
  width: 25%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .myaccount-content form .single-item-button {
    width: 30%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .myaccount-content form .single-item-button {
    width: 45%;
  }
}

@media only screen and (max-width: 767px) {
  .myaccount-content form .single-item-button {
    width: 100%;
  }
}

.myaccount-content .title {
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
  color: #212121;
  border-bottom: 1px dashed #E8E8E8;
  padding-bottom: 10px;
  margin-bottom: 25px;
  font-weight: 500;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .myaccount-content .title {
    font-size: 20px;
  }
}

.myaccount-content .welcome a {
  color: #212121;
}

.myaccount-content .welcome a:hover {
  color: #ff4545;
}

.myaccount-content .welcome strong {
  font-weight: 600;
  color: #ff4545;
}

.myaccount-content fieldset {
  margin-top: 20px;
}

.myaccount-content fieldset legend {
  color: #212121;
  font-size: 20px;
  margin-top: 20px;
  font-weight: 500;
  border-bottom: 1px dashed #E8E8E8;
}

.myaccount-table {
  white-space: nowrap;
  font-size: 14px;
}

.myaccount-table table th, .myaccount-table .table th {
  color: #212121;
  padding: 10px;
  font-weight: 500;
  background-color: #f8f8f8;
  border-color: #E8E8E8;
  border-bottom: 0;
}

.myaccount-table table td, .myaccount-table .table td {
  padding: 10px;
  vertical-align: middle;
  border-color: #E8E8E8;
}

.saved-message {
  background-color: #E8E8E8;
  border-top: 3px solid #ff4545;
  border-radius: 5px 5px 0 0;
  font-weight: 600;
  font-size: 15px;
  color: #666666;
  padding: 20px;
}

/*====================  
    7.5 Login Register Page CSS
====================*/
.login-wrapper, .register-wrapper {
  background: #E8E8E8 none repeat scroll 0 0;
  padding: 37px 40px;
  text-align: left;
  overflow: hidden;
}

@media only screen and (max-width: 479px) {
  .login-wrapper, .register-wrapper {
    padding: 25px 10px;
  }
}

.login-wrapper .title, .register-wrapper .title {
  font-weight: 600;
  font-size: 34px;
  font-family: "Montserrat", sans-serif;
  color: #2e2e2e;
}

@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .login-wrapper .title, .register-wrapper .title {
    font-size: 26px;
  }
}

.login-wrapper .desc-content, .register-wrapper .desc-content {
  font-size: 14px;
}

.login-wrapper .single-input-item input, .register-wrapper .single-input-item input {
  background: #fff none repeat scroll 0 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #212121;
  font-size: 14px;
  height: 40px;
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
  border: 1px solid #fff;
}

.login-wrapper .single-input-item input:focus, .register-wrapper .single-input-item input:focus {
  border: 1px solid #ff4545;
}

.login-wrapper .single-input-item input[type="checkbox"] + label:before, .register-wrapper .single-input-item input[type="checkbox"] + label:before {
  border-color: #ff4545;
}

.login-wrapper .forget-pwd, .register-wrapper .forget-pwd {
  font-size: 14px;
}

.login-wrapper .forget-pwd:hover, .register-wrapper .forget-pwd:hover {
  color: #ff4545;
}

.login-wrapper .lost-password a, .register-wrapper .lost-password a {
  font-size: 14px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.login-wrapper .lost-password a:hover, .register-wrapper .lost-password a:hover {
  color: #ff4545;
  padding-left: 5px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-decoration: underline;
}

/*====================  
    7.6 Wishlist Page CSS
====================*/
.wishlist-table .table {
  margin: 0;
  white-space: nowrap;
}

.wishlist-table .table thead tr th {
  border-color: #E8E8E8;
  border-bottom: 0 solid transparent;
  color: #212121;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 20px;
  text-align: center;
}

.wishlist-table .table tr {
  border-color: #E8E8E8;
}

.wishlist-table .table tr .pro-thumbnail, .wishlist-table .table tr .pro-price, .wishlist-table .table tr .pro-quantity, .wishlist-table .table tr .pro-subtotal, .wishlist-table .table tr .pro-remove {
  min-width: 177px;
  text-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.wishlist-table .table tbody td {
  border-color: #E8E8E8;
  text-align: center;
  padding: 10px 20px;
  vertical-align: middle;
  font-weight: 600;
  color: #212121;
}

.wishlist-table .table tbody td a {
  color: #212121;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
}

.wishlist-table .table tbody td a:hover {
  color: #ff4545;
}

.wishlist-table .table tbody td a.btn {
  color: #fff;
}

.wishlist-table .table tbody td a.check-btn {
  color: #fff;
}

.wishlist-table .table tbody td.pro-remove a i {
  font-size: 24px;
}

/*====================  
    7.8 Cart Page CSS
====================*/
/*-- Cart Table Style --*/
.cart-table .table {
  margin: 0;
  white-space: nowrap;
}

.cart-table .table thead tr th {
  border-color: #E8E8E8;
  border-bottom: 0 solid transparent;
  color: #212121;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 20px;
  text-align: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cart-table .table thead tr th {
    min-width: 180px;
  }
}

.cart-table .table tr {
  border-color: #E8E8E8;
}

.cart-table .table tr .pro-thumbnail, .cart-table .table tr .pro-price, .cart-table .table tr .pro-quantity, .cart-table .table tr .pro-subtotal, .cart-table .table tr .pro-remove {
  min-width: 177px;
  text-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.cart-table .table tbody td {
  border-color: #E8E8E8;
  text-align: center;
  padding: 10px 20px;
  vertical-align: middle;
  font-weight: 600;
  color: #212121;
  font-size: 14px;
}

.cart-table .table tbody td a {
  color: #212121;
  font-weight: 500;
  text-transform: capitalize;
}

.cart-table .table tbody td a:hover {
  color: #ff4545;
}

.cart-table .table tbody td a.btn {
  color: #fff;
}

.cart-table .table tbody td a.check-btn {
  color: #fff;
}

.cart-table .table tbody td.pro-remove a i {
  font-size: 24px;
}

/*-- Cart Update Option style --*/
.cart-update-option {
  border: 1px solid #E8E8E8;
  margin-top: 15px;
  padding: 15px 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .cart-update-option {
    margin-top: 0;
    border-top: 0 solid transparent;
  }
}

.cart-update-option .apply-coupon-wrapper {
  width: 55%;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .cart-update-option .apply-coupon-wrapper {
    width: auto;
  }
}

.cart-update-option .apply-coupon-wrapper form {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  white-space: nowrap;
}

.cart-update-option .apply-coupon-wrapper form input {
  border: 1px solid #E8E8E8;
  font-size: 14px;
  padding: 12px 10px;
  outline: none;
  margin-right: 15px;
  width: 100%;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  height: 46px;
}

.cart-update-option .apply-coupon-wrapper form input:focus, .cart-update-option .apply-coupon-wrapper form input:active {
  border-color: #ff4545;
}

@media only screen and (max-width: 767px) {
  .cart-update-option .apply-coupon-wrapper button {
    display: block;
    width: 100%;
    margin-top: 15px;
    border-radius: 0;
    margin-bottom: 30px;
  }
}

/*-- Cart Calculator style --*/
.cart-calculator-wrapper {
  margin-top: 30px;
  background-color: #f8f8f8;
}

.cart-calculator-wrapper h3, .cart-calculator-wrapper .h3 {
  color: #212121;
  font-size: 18px;
  font-weight: 500;
  padding: 27px 15px 25px;
  margin-bottom: 0;
}

.cart-calculator-wrapper a {
  border-radius: 0;
  text-align: center;
}

.cart-calculator-wrapper .cart-calculate-items {
  font-weight: 500;
}

.cart-calculator-wrapper .cart-calculate-items .table {
  margin-bottom: 0;
}

.cart-calculator-wrapper .cart-calculate-items .table tr td {
  color: #212121;
  padding: 15px 20px;
}

.cart-calculator-wrapper .cart-calculate-items .table tr td:nth-child(2) {
  color: #212121;
  text-align: right;
}

.cart-calculator-wrapper .cart-calculate-items .table tr td.total-amount {
  color: #ff4545;
  font-weight: 700;
}

/*====================  
    7.9 Compare Page CSS
====================*/
.compare-table .table tbody tr {
  border-color: #E8E8E8;
}

.compare-table .table tbody tr td {
  text-align: center;
  padding: 20px;
  vertical-align: middle;
  border-color: #E8E8E8;
}

@media only screen and (max-width: 767px) {
  .compare-table .table tbody tr td {
    padding: 10px;
  }
}

.compare-table .table tbody tr td.first-column {
  min-width: 175px;
  font-size: 15px;
  font-weight: 600;
  color: #212121;
  margin: 0;
}

@media only screen and (max-width: 767px) {
  .compare-table .table tbody tr td.first-column {
    min-width: 150px;
  }
}

.compare-table .table tbody tr td.product-image-title {
  min-width: 310px;
  vertical-align: middle;
}

@media only screen and (max-width: 767px) {
  .compare-table .table tbody tr td.product-image-title {
    min-width: 260px;
  }
}

.compare-table .table tbody tr td.product-image-title .image {
  clear: both;
  width: 100%;
  margin-bottom: 15px;
  display: block;
}

.compare-table .table tbody tr td.product-image-title .category {
  float: left;
  clear: both;
  color: #ff4545;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.compare-table .table tbody tr td.product-image-title .title {
  float: left;
  clear: both;
  font-size: 16px;
  color: #212121;
  font-weight: 500;
  text-transform: capitalize;
}

.compare-table .table tbody tr td.product-image-title .title:hover {
  color: #ff4545;
}

.compare-table .table tbody tr td.pro-desc p {
  text-align: left;
  margin: 0;
  font-size: 14px;
}

.compare-table .table tbody tr td.pro-price, .compare-table .table tbody tr td.pro-color, .compare-table .table tbody tr td.pro-stock {
  font-size: 14px;
  font-weight: 400;
}

.compare-table .table tbody tr td.pro-remove button {
  border: none;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.compare-table .table tbody tr td.pro-remove button i {
  font-size: 20px;
}

.compare-table .table tbody tr td.pro-remove button:hover {
  color: #ff4545;
}

/*====================  
    7.10 Checkout Page CSS
====================*/
.coupon-accordion .title {
  background-color: #E8E8E8;
  font-size: 15px;
  font-weight: 500;
  list-style: outside none none;
  margin: 0 0 30px;
  padding: 16px 32px 16px 20px;
  position: relative;
  width: auto;
  text-transform: none;
}

@media only screen and (max-width: 479px) {
  .coupon-accordion .title {
    line-height: 24px;
    padding: 10px;
    font-size: 14px;
  }
}

.coupon-accordion span {
  cursor: pointer;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  text-transform: none;
}

.coupon-accordion span:hover {
  color: #ff4545;
}

.coupon-accordion .coupon-content {
  border: 1px solid #E8E8E8;
  margin-bottom: 20px;
  display: none;
  padding: 20px;
}

.coupon-accordion .coupon-content .coupon-info p {
  margin-bottom: 0;
}

.coupon-accordion .coupon-content .coupon-info p.form-row-first label, .coupon-accordion .coupon-content .coupon-info p.form-row-last label {
  display: block;
  color: #212121;
}

.coupon-accordion .coupon-content .coupon-info p.form-row-first label span .required, .coupon-accordion .coupon-content .coupon-info p.form-row-last label span .required {
  color: #ff4545;
}

.coupon-accordion .coupon-content .coupon-info p.form-row-first input, .coupon-accordion .coupon-content .coupon-info p.form-row-last input {
  border: 1px solid #E8E8E8;
  height: 36px;
  margin: 0 0 14px;
  border-radius: 0;
  max-width: 100%;
  padding: 0 10px 0 10px;
  width: 370px;
  background-color: transparent;
}

.coupon-accordion .coupon-content .coupon-info p.form-row-first input:focus, .coupon-accordion .coupon-content .coupon-info p.form-row-last input:focus {
  border: 1px solid #ff4545;
}

.coupon-accordion .coupon-content .coupon-info p .form-row input[type="submit"] {
  background: #212121 none repeat scroll 0 0;
  border: medium none;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  height: 40px;
  line-height: 40px;
  margin-right: 15px;
  padding: 0 30px;
  text-shadow: none;
  text-transform: uppercase;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  width: inherit;
}

.coupon-accordion .coupon-content .coupon-info p .form-row input[type="checkbox"] {
  height: inherit;
  position: relative;
  top: 2px;
  width: inherit;
}

.coupon-accordion .coupon-content .coupon-info p .form-row label {
  margin-top: 7px;
}

.coupon-accordion .coupon-content .coupon-info .lost-password {
  margin-top: 15px;
}

.coupon-accordion .coupon-content .coupon-info .lost-password a {
  font-size: 14px;
}

.coupon-accordion .coupon-content .coupon-info .lost-password a:hover {
  color: #ff4545;
}

.coupon-accordion .coupon-content .coupon-info .coupon-text {
  font-size: 15px;
}

.coupon-checkout-content {
  margin-bottom: 30px;
  display: none;
}

.coupon-checkout-content .coupon-info .checkout-coupon {
  margin-bottom: 0;
}

.coupon-checkout-content .coupon-info .checkout-coupon input[type="text"] {
  background-color: transparent;
  border: 1px solid #E8E8E8;
  border-radius: 0;
  height: 46px;
  padding-left: 10px;
  padding-right: 10px;
  width: 170px;
  font-size: 14px;
}

@media only screen and (max-width: 479px) {
  .coupon-checkout-content .coupon-info .checkout-coupon input[type="text"] {
    width: 140px;
  }
}

.coupon-checkout-content .coupon-info .checkout-coupon input[type="text"]:focus {
  border: 1px solid #ff4545;
}

.coupon-checkout-content .coupon-info .checkout-coupon input[type="submit"] {
  margin-left: 6px;
}

.checkbox-form .title {
  border-bottom: 2px solid #E8E8E8;
  font-size: 25px;
  margin: 0 0 25px;
  padding-bottom: 10px;
  width: 100%;
  font-weight: 600;
  position: relative;
}

@media only screen and (max-width: 479px) {
  .checkbox-form .title {
    font-size: 18px;
  }
}

.checkbox-form .title::before {
  content: "";
  width: 100px;
  height: 2px;
  background: #ff4545;
  position: absolute;
  top: 100%;
  left: 0;
}

.checkbox-form .country-select {
  margin-bottom: 25px;
}

.checkbox-form .country-select .myniceselect.nice-select span {
  height: 40px;
  line-height: 40px;
  display: inline-block;
  width: 100%;
}

.checkbox-form .checkout-form-list {
  margin-bottom: 30px;
}

.checkbox-form .checkout-form-list input[type="text"],
.checkbox-form .checkout-form-list input[type="password"],
.checkbox-form .checkout-form-list input[type="email"] {
  background: #fff;
  border: 1px solid #E8E8E8;
  border-radius: 0;
  height: 42px;
  width: 100%;
  padding: 0 10px 0 10px;
  font-size: 14px;
}

.checkbox-form .checkout-form-list input[type="text"]:focus,
.checkbox-form .checkout-form-list input[type="password"]:focus,
.checkbox-form .checkout-form-list input[type="email"]:focus {
  border: 1px solid #ff4545;
}

.checkbox-form .checkout-form-list.create-acc {
  margin-bottom: 15px;
}

.checkbox-form .checkout-form-list.create-acc label {
  display: inline-block;
}

.checkbox-form .checkout-form-list label {
  color: #212121;
  font-size: 15px;
}

.checkbox-form .country-select label, .checkbox-form.checkout-form-list label {
  margin: 0 0 5px;
  display: block;
  color: #212121;
  font-size: 15px;
}

.checkbox-form .country-select label span.required, .checkbox-form.checkout-form-list label span.required {
  display: inline-block;
  font-size: 24px;
  line-height: 16px;
  position: relative;
  top: 5px;
}

.checkbox-label {
  font-size: 15px !important;
  color: #212121;
  font-weight: 600 !important;
  cursor: pointer;
}

.checkbox-label:hover {
  color: #ff4545;
}

.create-account,
#ship-box-info {
  display: none;
}

.create-account p,
#ship-box-info p {
  font-size: 14px;
}

.order-notes .checkout-form-list-2 {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .order-notes .checkout-form-list-2 {
    margin-bottom: 30px;
  }
}

.order-notes textarea {
  background-color: transparent;
  border: 1px solid #E8E8E8;
  height: 90px;
  padding: 15px;
  width: 100%;
  font-size: 14px;
}

.order-notes textarea:focus {
  border: 1px solid #ff4545;
}

.your-order-area {
  padding: 30px 40px 30px;
}

@media only screen and (max-width: 479px) {
  .your-order-area {
    padding: 30px 20px;
  }
}

.your-order-area .title {
  border-bottom: 2px solid #e1e1e1;
  font-size: 25px;
  margin: 0 0 25px;
  padding-bottom: 10px;
  width: 100%;
  font-weight: 600;
  position: relative;
}

@media only screen and (max-width: 479px) {
  .your-order-area .title {
    font-size: 20px;
  }
}

.your-order-area .title::before {
  content: "";
  background: #ff4545;
  width: 100px;
  height: 2px;
  left: 0;
  top: 100%;
  position: absolute;
}

.your-order-area .your-order-table .table {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: medium none;
  width: 100%;
}

.your-order-area .your-order-table .table thead tr th {
  border-top: medium none;
  font-weight: normal;
  text-transform: uppercase;
  vertical-align: middle;
  min-width: 150px;
}

.your-order-area .your-order-table .table thead tr th,
.your-order-area .your-order-table .table thead tr td {
  border-bottom: 1px solid;
  border-right: medium none;
  font-size: 16px;
  padding: 15px 0;
  font-weight: 600;
  color: #212121;
}

.your-order-area .your-order-table .table .order-total td {
  border-bottom: medium none;
  color: #212121;
}

.your-order-area .your-order-table .table .order-total td span {
  font-size: 20px;
}

.your-order-area .your-order-table .table .order-total th {
  border-bottom: medium none;
  color: #212121;
  font-size: 18px;
}

.your-order-area .your-order-table .table .cart-subtotal td {
  color: #212121;
}

.your-order-area .your-order-table .table .cart-subtotal th {
  color: #212121;
}

.your-order-area .your-order-table .table thead tr,
.your-order-area .your-order-table .table tbody tr,
.your-order-area .your-order-table .table tfoot tr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}

.your-order-area .your-order-table .table thead tr th,
.your-order-area .your-order-table .table thead tr td,
.your-order-area .your-order-table .table tbody tr th,
.your-order-area .your-order-table .table tbody tr td,
.your-order-area .your-order-table .table tfoot tr th,
.your-order-area .your-order-table .table tfoot tr td {
  border-color: #b0b0b0 !important;
  width: 50%;
  display: block;
  min-width: 240px;
}

.payment-accordion .single-payment .panel-title {
  display: block;
}

.payment-accordion .single-payment .panel-title .collapse-off {
  display: block;
  padding: 10px;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  color: #212121;
  background: #E8E8E8;
}

.payment-accordion .single-payment .panel-title .collapse-off:hover {
  background: #ff4545;
  color: #fff;
}

.payment-accordion .single-payment .card-body {
  margin-bottom: 30px;
}

.payment-accordion .single-payment .card-body p {
  font-size: 14px;
}

/*====================  
    7.11 Contact Page CSS
====================*/
.contact-form-wrapper .input-item input[type="text"],
.contact-form-wrapper .input-item input[type="password"],
.contact-form-wrapper .input-item input[type="email"],
.contact-form-wrapper .input-item textarea {
  background: #fff;
  border: 1px solid #E8E8E8;
  border-radius: 0;
  height: 42px;
  width: 100%;
  padding: 10px;
  font-size: 14px;
}

.contact-form-wrapper .input-item input[type="text"]:focus,
.contact-form-wrapper .input-item input[type="password"]:focus,
.contact-form-wrapper .input-item input[type="email"]:focus,
.contact-form-wrapper .input-item textarea:focus {
  border: 1px solid #ff4545;
}

.contact-form-wrapper .input-item textarea {
  height: 200px;
}

.single-contact-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.single-contact-info .single-contact-icon {
  margin-right: 20px;
}

.single-contact-info .single-contact-icon i {
  font-size: 26px;
  color: #212121;
}

.single-contact-info .single-contact-title-content .title {
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  color: #212121;
  font-weight: 600;
  margin-bottom: 10px;
}

.single-contact-info .single-contact-title-content .desc-content {
  font-size: 14px;
}

.single-contact-info .single-contact-title-content .desc-content a {
  color: #535353;
}

.single-contact-info .single-contact-title-content .desc-content a:hover {
  color: #ff4545;
}

/*====================  
    7.12 About Page CSS
====================*/
.about-feature-bg {
  background-image: url(../images/about/2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.about-feature-bg::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  background: #fff;
  opacity: .9;
  top: 0;
  left: 0;
}

.about_content .title {
  font-size: 30px;
  font-family: "Montserrat", sans-serif;
  color: #2e2e2e;
  margin-bottom: 20px;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .about_content .title {
    font-size: 26px;
  }
}

@media only screen and (max-width: 479px) {
  .about_content .title {
    font-size: 24px;
  }
}

.about_content .sub-title {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  color: #2e2e2e;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.4;
}

@media only screen and (max-width: 575px) {
  .about_content .sub-title {
    font-size: 15px;
  }
}

.about_content p {
  font-size: 14px;
}

.single-service .title {
  font-size: 30px;
  font-family: "Montserrat", sans-serif;
  color: #2e2e2e;
  margin-bottom: 20px;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .single-service .title {
    font-size: 26px;
  }
}

@media only screen and (max-width: 479px) {
  .single-service .title {
    font-size: 24px;
  }
}

.single-service p {
  font-size: 14px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-service p {
    width: 320px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 767px) {
  .single-service p {
    width: 400px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 479px) {
  .single-service p {
    width: 280px;
    margin: 0 auto;
  }
}

/*====================  
    7.13 404 Error Page CSS
====================*/
.error_form {
  text-align: center;
}

.error_form .title {
  font-size: 200px;
  font-weight: 700;
  color: #ff4545;
  letter-spacing: 10px;
  line-height: .73;
  margin: 0 0 52px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .error_form .title {
    font-size: 130px;
    letter-spacing: 4px;
    margin: 0 0 40px;
  }
}

@media only screen and (max-width: 479px) {
  .error_form .title {
    font-size: 106px;
    letter-spacing: 4px;
    margin: 0 0 20px;
  }
}

.error_form .sub-title {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .error_form .sub-title {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 14px;
  }
}

.error_form p {
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .error_form p {
    font-size: 14px;
    margin-bottom: 22px;
  }
}

.error_form .search-form-error {
  width: 450px;
  margin: 0 auto;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .error_form .search-form-error {
    width: 100%;
  }
}

.error_form .search-form-error .input-text {
  padding: 0 45px 0 10px;
  background: #f8f8f8;
  border: 1px solid #ddd;
  color: #212121;
  height: 40px;
  width: 100%;
  border-radius: 3px;
}

.error_form .search-form-error .submit-btn {
  position: absolute;
  right: 0;
  height: 100%;
  border: none;
  background: no-repeat;
  font-size: 20px;
  cursor: pointer;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  top: 0;
  text-transform: uppercase;
  padding: 0 15px;
  font-weight: 600;
}

.error_form .search-form-error .submit-btn:hover {
  color: #ff4545;
}

/*====================  
    7.14 FAQ Page CSS
====================*/
.faq_content_area {
  padding: 0px 0 65px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq_content_area {
    padding: 0px 0 30px;
  }
}

.accordion_area .card-header {
  background: #ff4545;
}

.accordion_area .card-header:first-child {
  border-radius: inherit;
}

.card_dipult {
  border: none;
  margin-bottom: 10px;
  border-radius: 5px;
}

.card_dipult .collapse {
  border: 0;
}

.card_dipult .card-body p {
  font-size: 14px;
}

@media only screen and (max-width: 479px) {
  .card_dipult .card-body p {
    font-size: 12px;
  }
}

.card_dipult:last-child {
  margin-bottom: 0;
}

.card-header.card_accor {
  padding: 0;
  border: none;
}

.card-header.card_accor button {
  height: 45px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  white-space: initial;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card-header.card_accor button {
    height: 60px;
  }
}

.card-header.card_accor button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.card-header.card_accor button i {
  position: absolute;
  top: 50%;
  -webkit-transform: translatey(-50%);
  -ms-transform: translatey(-50%);
      transform: translatey(-50%);
  right: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card-header.card_accor button i {
    right: 10px;
  }
}

.card-header.card_accor button.btn-link {
  border-bottom: 1px dotted #ff4545;
  width: 100%;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  padding-left: 20px;
  height: 100%;
  line-height: 1.6;
  padding-right: 35px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card-header.card_accor button.btn-link {
    padding: 10px 28px 10px 10px;
    font-size: 13px;
  }
}

@media only screen and (max-width: 767px) {
  .card-header.card_accor button.btn-link {
    padding: 10px 28px 10px 10px;
    font-size: 12px;
  }
}

.card-header.card_accor button.btn-link.collapsed {
  background: #E8E8E8;
  border-bottom: 1px dotted #ff4545;
  width: 100%;
  text-align: left;
  color: #2e2e2e;
}

.card-header.card_accor .btn-link i.fa-plus {
  display: none;
}

.card-header.card_accor .btn-link.collapsed i.fa-plus {
  display: block;
}

.card-header.card_accor .btn-link.collapsed i.fa-minus {
  display: none;
}

.faq_content_wrapper .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.5;
  margin-top: -8px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .faq_content_wrapper .title {
    font-size: 18px;
    line-height: 1.2;
  }
}

.faq_content_wrapper p {
  font-size: 14px;
}
