@charset "UTF-8";
body {
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.header {
  /* Topbar */
  /* Logo */
  /* Navbar */
  /* Mobile menu */
}
.header .topbar {
  background-color: #fff;
  border-bottom: 1px solid #e2e2e2;
  border: none;
  padding: 6px 0px;
}
.header .topbar p {
  color: #ccc;
}
.header .topbar a {
  text-decoration: underline;
}
.header .topbar .login a {
  color: var(--primary-color);
}
.header .topbar .wrapper-phone-number {
  padding-right: 4px;
}
@media only screen and (max-width: 768px) {
  .header .topbar .contact-details {
    display: none;
  }
}
.header .topmenu {
  background-color: var(--primary-color);
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .header .topmenu {
    display: none;
  }
}
.header .topmenu ul li {
  display: inline-block;
}
.header .topmenu ul li a {
  color: var(--primary-color-contrast);
  padding: 4px 12px;
  display: inline-block;
}
.header .topmenu ul li a:hover {
  color: var(--primary-color);
  background-color: var(--primary-color-contrast);
}
.header .topmenu ul li.active a {
  color: var(--primary-color);
  background-color: var(--primary-color-contrast);
}
.header .logo {
  float: left;
  margin-top: 35px;
  transition: all 0.4s ease;
}
.header .navbar {
  padding: 0;
}
.header .hamburger {
  display: none;
  width: 20px;
  height: 20px;
  position: absolute;
  z-index: 12;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.header .hamburger.invert-color span {
  background: black;
}
.header .hamburger span {
  transition-duration: 1s;
  background: var(--primary-color);
  height: 3px;
  width: 100%;
  display: block;
  margin: 3px 0;
}
.header .hamburger .span_45 {
  transform: rotate(45deg) translate(5px);
  height: 4px;
}
.header .hamburger .span_-45 {
  transform: rotate(-45deg) translate(5px);
  height: 4px;
}
.header .hamburger .span-hide {
  transform: translate(5px);
  height: 0px;
}
@media only screen and (max-width: 767px) {
  .header .hamburger {
    display: block;
  }
}
.header #mobile_menu {
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: fixed;
  top: 0;
  left: -120%;
  background: var(--primary-color);
  width: 100%;
  height: 100%;
  padding-top: 100px;
  overflow-y: auto;
  z-index: 11;
}
.header #mobile_menu.open {
  left: 0;
}
.header #mobile_menu > ul {
  padding: 0 5% 20px;
}
.header #mobile_menu > ul > li {
  display: block;
  padding: 12px;
  font-size: 16px;
  text-align: center;
  border-bottom: 1px dashed black;
}
.header #mobile_menu > ul > li a {
  display: inline-block;
  padding: 8px 0;
}
.header #mobile_menu ul li > ul {
  /* Rimuovo il margine impostato nel tema */
  margin: 0;
}
.header #mobile_menu ul li a:has(+ ul) {
  /* Metto in grassetto menù con eventuali sotto menù */
  font-weight: bold;
}

/* Main Menu */
.navbar-expand-lg .navbar-collapse {
  display: block !important;
}

.header.v3 .navbar-expand-lg .navbar-collapse {
  display: block !important;
  background: #333;
}

.header .nav li a i {
  margin-left: 6px;
  font-size: 10px;
}

/* Dropdown Menu */
.header .nav li .dropdown {
  background: #fff;
  width: 220px;
  position: absolute;
  top: 100%;
  z-index: 999;
  box-shadow: 0px 3px 5px rgba(51, 51, 51, 0.3019607843);
  transform-origin: 0 0 0;
  transform: scaleY(0.2);
  transition: all 0.3s ease 0s;
  opacity: 0;
  visibility: hidden;
  padding: 10px;
  left: 0;
  margin: 0;
}

.header .nav li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.header .nav li .dropdown li {
  float: none;
  margin: 0;
}

.header .nav li .dropdown li a {
  padding: 8px 15px;
  color: #666;
  display: block;
  font-weight: 400;
  text-transform: capitalize;
  background: transparent;
}

.header .nav li .dropdown li a:before {
  display: none;
}

.header .nav li .dropdown li:last-child a {
  border-bottom: 0px;
}

.header .nav li .dropdown li:hover a {
  color: var(--primary-color-contrast);
  background: var(--primary-color);
}

.header .nav li .dropdown li a:hover {
  border-color: transparent;
}

.header .nav li .dropdown li i {
  float: right;
  margin-top: 8px;
  font-size: 10px;
  z-index: 5;
}

.header .nav li .dropdown.sub-dropdown {
  background: #fff;
  width: 220px;
  position: absolute;
  left: 186px;
  top: 0;
  z-index: 999;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 3px 5px rgba(51, 51, 51, 0.3019607843);
  transform-origin: 0 0 0;
  transform: scaleY(0.2);
  transition: all 0.3s ease 0s;
  opacity: 0;
  visibility: hidden;
  padding: 10px;
}

.header .nav li .dropdown li:hover .dropdown.sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.header .nav li .dropdown.sub-dropdown li a {
  padding: 8px 15px;
  color: #666;
  display: block;
  font-weight: 400;
  text-transform: capitalize;
  background: transparent;
}

.header .nav li .dropdown li:hover .dropdown.sub-dropdown li a {
  background: transparent;
}

.header .nav li .dropdown li .dropdown.sub-dropdown li a:hover {
  color: #fff;
  background: var(--primary-color);
}

.header .nav li .dropdown.sub-dropdown li:last-child a {
  border-bottom: 0px solid;
}

.mobile-search {
  display: none;
}

.header .nav-inner {
  margin-right: 188px;
}

.header .top-contact {
  margin-top: 0px;
}

.header .right-content {
  float: right;
}

.header .list-main li {
  display: inline-block;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  border-right: 1px solid #f0f0f0;
  padding: 0px 13px;
}

.header .list-main li i {
  display: inline-block;
  margin-right: 4px;
  font-size: 15px;
  color: var(--primary-color);
  position: relative;
  top: 1px;
}

.header .list-main li:last-child {
  padding-right: 0;
  border: none;
}

.header .list-main li a {
  color: #333;
}

.header .list-main li a:hover {
  color: var(--primary-color);
}

.header .nav li {
  margin-right: 40px;
  float: left;
  position: relative;
}

.header .nav li {
  margin-right: 38px;
  position: relative;
}

.header .nav li:last-child {
  margin: 0 !important;
}

.header .nav li .new {
  background: var(--primary-color);
  color: #fff;
  text-transform: uppercase;
  font-size: 10px;
  padding: 0px 9px;
  position: absolute;
  left: 0;
  top: 6px;
  font-weight: 500;
}

.header .nav li .new::before {
  position: absolute;
  content: "";
  left: 4px;
  bottom: -8px;
  border: 4px solid var(--primary-color);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
}

/* Shopping Cart */
.header .shopping {
  display: inline-block;
  z-index: 9999;
}

.header .shopping .icon {
  position: relative;
  cursor: pointer;
  color: #222;
}

.header .shopping .shopping-item {
  position: absolute;
  top: 68px;
  right: 0;
  width: 300px;
  background: #fff;
  padding: 20px 25px;
  transition: all 0.3s ease 0s;
  transform: translateY(10px);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}

.header .shopping:hover .shopping-item {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}

.header .shopping .dropdown-cart-header {
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e6e6e6;
}

.header .shopping .dropdown-cart-header span {
  text-transform: uppercase;
  color: #222;
  font-size: 13px;
  font-weight: 600;
}

.header .shopping .dropdown-cart-header a {
  float: right;
  text-transform: uppercase;
  color: #222;
  font-size: 13px;
  font-weight: 600;
}

.header .shopping .dropdown-cart-header a:hover {
  color: var(--primary-color);
}

.header .shopping-list li {
  overflow: hidden;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
}

.header .shopping-list li .remove {
  position: absolute;
  left: 0;
  bottom: 16px;
  margin-top: -20px;
  height: 20px;
  width: 20px;
  line-height: 18px;
  text-align: center;
  background: #fff;
  color: #222;
  border-radius: 0;
  font-size: 11px;
  border: 1px solid #ededed;
}

.header .shopping-list li .remove:hover {
  background: #222;
  color: #fff !important;
  border-color: transparent;
}

.header .shopping-list .cart-img {
  float: right;
  border: 1px solid #ededed;
  overflow: hidden;
}

.header .shopping-list .cart-img img {
  width: 70px;
  height: 70px;
  border-radius: 0;
}

.header .shopping-list .cart-img:hover img {
  transform: scale(1.09);
}

.header .shopping-list .quantity {
  line-height: 22px;
  font-size: 13px;
  padding-bottom: 30px;
}

.header .shopping-list h4 {
  font-size: 14px;
}

.header .shopping-list h4 a {
  font-weight: 600;
  font-size: 13px;
  color: #333;
}

.header .shopping-list h4 a:hover {
  color: var(--primary-color);
}

.header .shopping-item .bottom {
  text-align: center;
}

.header .shopping-item .total {
  overflow: hidden;
  display: block;
  padding-bottom: 10px;
}

.header .shopping-item .total span {
  text-transform: uppercase;
  color: #222;
  font-size: 13px;
  font-weight: 600;
  float: left;
}

.header .shopping-item .total .total-amount {
  float: right;
  font-size: 14px;
}

.header .shopping-item .bottom .btn {
  background: #222;
  padding: 10px 20px;
  display: block;
  color: #fff;
  margin-top: 10px;
  border-radius: 0px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}

.header .shopping-item .bottom .btn:hover {
  background: var(--primary-color);
  color: #fff;
}

.header {
  background: #fff;
}

.header .nav-inner {
  margin: 0;
  float: left;
}

.header .right-nav li a {
  color: #333;
}

.header .logo {
  float: left;
  max-width: 280px;
  margin: 19px 0 0;
}

.header .top-contact {
  margin-top: 0px;
}

/* Header Middle */
.header .search-bar-top {
  text-align: center;
  margin-top: 10px;
}

.header .search-bar {
  margin-top: 33px;
  width: 460px;
  height: 40px;
  display: inline-block;
  background: #fff;
  position: relative;
}

.header .search-bar {
  width: 390px;
  height: 50px;
  display: inline-block;
  background: #fff;
  position: relative;
  margin: 0;
  line-height: 45px;
  border-radius: 5px;
  border: 1px solid #ececec;
}

.header .nice-select {
  clear: initial;
  margin: 0;
  height: 48px;
  width: 150px;
  border: none;
  text-align: center;
  background: transparent;
  text-transform: capitalize;
  padding: 0 0 0 20px;
  border-right: 1px solid #eee;
  line-height: 50px;
  font-size: 14px;
  font-weight: 400;
}

.header .nice-select::after {
  border-color: #666;
  right: 20px;
}

.header .nice-select .list {
  border-radius: 0px;
}

.header .nice-select .list li.focus {
  font-weight: 400;
}

.header .nice-select .list li {
  color: #666;
  border-radius: 0px;
  font-size: 14px;
  font-weight: 400;
}

.header .nice-select .list li:hover {
  background: var(--primary-color);
  color: #fff;
}

.header .search-bar form {
  display: inline-block;
  float: left;
  width: 260px;
}

.header .search-bar input {
  height: 48px;
  background: transparent;
  color: #666;
  border-radius: 0;
  border: none;
  font-size: 14px;
  font-weight: 400;
  padding: 0 25px 0 20px;
  width: 328px;
}

.header .search-bar .btnn {
  height: 50px;
  line-height: 53px;
  width: 62px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  background: #333333;
  position: absolute;
  right: -2px;
  top: -1px;
  border: none;
  border-radius: 0 5px 5px 0;
  transition: all 0.4s ease;
}

.header .search-bar .btnn:hover {
  color: #fff;
  background: var(--primary-color);
}

/* Search Form */
.header .search-top {
  opacity: 1;
  visibility: visible;
  top: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  top: 0;
}

.header .search-top .total-count {
  position: absolute;
  top: -7px;
  right: -8px;
  background: var(--primary-color);
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  color: var(--primary-color-contrast);
  border-radius: 100%;
  font-size: 11px;
}

.header .middle-inner {
  padding: 20px 0;
  background: #fff;
  border-top: 1px solid #eee;
}

.header.v3 .middle-inner {
  border: none;
}

.header .header-inner {
  background: var(--button-color);
}

.header.v3 .header-inner {
  background: transparent;
}

.header .topbar p {
  color: #333;
}

.header .all-category {
  color: #fff;
  background: transparent;
  position: relative;
  background: var(--primary-color);
}

.header .all-category h3 {
  padding: 20px 25px;
}

.header .cat-heading {
  font-size: 20px;
  color: #fff;
}

.header .cat-heading i {
  color: #fff;
  display: inline-block;
  margin-right: 15px;
  font-size: 22px;
}

.header .main-category {
  position: absolute;
  left: 0;
  top: 64px;
  background: #fff;
  z-index: 1;
  width: 100%;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.0392156863);
}

.header .main-category li {
  display: block;
  border-bottom: 1px solid #f6f6f6;
  position: relative;
}

.header .main-category li:last-child {
  border: none;
}

.header .main-category li a {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  padding: 13px 25px 13px 25px;
  display: block;
  text-transform: uppercase;
}

.header .main-category li a i {
  display: inline-block;
  float: right;
}

.header .sub-category {
  background: #fff;
  width: 220px;
  position: absolute;
  left: 238px;
  top: 0;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  border-left: 3px solid var(--primary-color);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.0392156863);
}

.header .main-category li:hover .sub-category {
  opacity: 1;
  visibility: visible;
}

.header .main-category li a {
  text-transform: capitalize;
  font-weight: 400;
}

.header .main-category li a:hover {
  color: var(--primary-color);
}

.header .main-category .main-mega {
  position: relative;
}

.header .main-category li .mega-menu {
  width: 850px;
  display: inline-block;
  height: auto;
  position: absolute;
  left: 238px;
  top: 0;
  z-index: 99999;
  background: #fff;
  border: none;
  padding: 30px;
  border-left: 3px solid var(--primary-color);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.header .main-category li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

.header .main-category li .mega-menu .single-menu {
  width: 33%;
  display: inline-block;
  border: none;
  padding: 0;
  padding-right: 20px;
}

.header .main-category li .mega-menu .single-menu a {
  padding: 0;
}

.header .main-category li .mega-menu .single-menu .image {
  overflow: hidden;
}

.header .main-category li .mega-menu .single-menu img {
  display: block;
  height: 100%;
  width: 100%;
  cursor: pointer;
}

.header .main-category li .mega-menu .single-menu .image:hover img {
  transform: scale(1.1);
}

.header .main-category li .mega-menu .single-menu .title-link {
  margin-bottom: 20px;
  background: var(--primary-color);
  color: #fff;
  padding: 2px 13px;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
}

.header .main-category li .mega-menu .single-menu .title-link:hover {
  background: #333;
  color: #fff;
}

.header .main-category li .mega-menu .single-menu .inner-link {
  margin-top: 25px;
}

.header .main-category li .mega-menu .single-menu .inner-link a {
  margin-bottom: 10px;
}

.header .main-category li .mega-menu .single-menu .inner-link a:hover {
  color: var(--primary-color);
  background: transparent;
}

.header .main-category li .mega-menu .single-menu .inner-link a:last-child {
  margin-bottom: 0px;
}

.header .menu-origin {
  float: none;
  display: inline-block;
  float: right;
}

.header .nav li {
  margin-right: 40px;
  float: left;
  position: relative;
}

.header .nav li {
  margin-right: 5px;
  position: relative;
  float: none;
}

.header .nav li:last-child {
  margin-right: 0;
}

.header .nav li .new {
  background: var(--primary-color);
  color: #fff;
  text-transform: uppercase;
  font-size: 9px;
  position: absolute;
  left: 21px;
  top: 2px;
  font-weight: 500;
  height: 18px;
  line-height: 18px;
  text-align: center;
  display: block;
}

.header.v2 .nav li a {
  color: #333;
}

.header .nav li a {
  color: #fff;
  text-transform: capitalize;
  font-size: 15px;
  padding: 20px 15px;
  font-weight: 500;
  display: block;
  position: relative;
  transition: all 0.4s ease;
}

.header .nav li:hover a {
  color: var(--primary-color-contrast);
  background: var(--primary-color);
}

.header .nav li.active a {
  color: var(--primary-color-contrast);
  background: var(--primary-color);
}

.header .nav .dropdown li {
  margin: 0;
}

.header .nav li .dropdown li:hover a {
  background: var(--primary-color);
}

.header .nav li .dropdown li a {
  color: #333;
  padding: 8px 15px;
  font-weight: 400;
  background: #fff;
}

.header .nav li .dropdown li a {
  font-weight: 400;
  font-size: 14px;
}

.header .nav li .dropdown li a:hover {
  color: var(--primary-color-contrast);
}

.header .nav li .dropdown li .dropdown.sub-dropdown li a:hover {
  background: var(--primary-color);
}

.header .right-bar {
  display: inline-block;
  padding: 0;
  margin: 0;
  top: 20px;
  float: right;
  position: relative;
}

.header .right-bar .single-bar.top-search a {
  transform: translateY(3px);
}

.header .right-bar .single-bar.top-search a:hover {
  color: var(--primary-color);
}

.header .right-bar .single-bar .single-icon {
  color: #333;
  font-size: 20px;
  position: relative;
}

.header .right-bar .single-bar .single-icon:hover {
  color: var(--primary-color);
}

.header .right-bar .single-bar .single-icon .total-count {
  position: absolute;
  top: -7px;
  right: -8px;
  background: var(--primary-color);
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  color: var(--primary-color-contrast);
  border-radius: 100%;
  font-size: 11px;
}

.header .right-bar .single-bar {
  display: inline-block;
  margin-right: 25px;
}

.header .right-bar .single-bar:last-child {
  margin-right: 0px;
}

.header .right-bar .single-bar li a:hover {
  color: var(--primary-color);
}

.mobile-search {
  display: none;
}

/* Header Search */
/* Search */
.header .search-top {
  display: none;
}

.header .search-top a {
  font-size: 17px;
}

.header .search-top a:hover {
  color: var(--primary-color);
}

.header .search-top.active .search-form {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}

/* Header Sticky */
.header .header-inner {
  width: 100%;
  z-index: 999;
}

.header.sticky .all-category h3 {
  cursor: pointer;
}

.header.sticky .all-category .main-category {
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.header.sticky .all-category:hover .main-category {
  opacity: 1;
  visibility: visible;
}

.header.sticky .header-inner .nav li a {
  color: #333;
}

.header.sticky.v3 .header-inner .nav li a {
  color: #fff;
}

.header.sticky .header-inner .nav li:hover a {
  color: #fff;
}

.header.sticky .header-inner .nav li .dropdown li a {
  color: #333;
}

.header.sticky .header-inner .nav li .dropdown li a:hover {
  color: #fff;
}

.header.sticky .header-inner .nav li.active a {
  color: #fff;
}

.header.sticky .header-inner {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  animation: fadeInDown 1s both 0.2s;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.header.sticky.v3 .header-inner {
  box-shadow: none;
}

.header.sticky.v3 .navbar-expand-lg .navbar-collapse {
  animation: fadeInDown 1s both 0.2s;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.footer {
  background: var(--footer-color);
  /* Copyright */
}
.footer p {
  color: var(--footer-color-contrast);
}
.footer a {
  color: var(--footer-color-contrast);
}
.footer a:hover {
  text-decoration: underline;
}
.footer .about {
  padding-right: 50px;
}
.footer .about .logo {
  margin-bottom: 20px;
}
.footer .about .logo img {
  max-width: 200px;
}
.footer .about .text {
  color: var(--footer-color-contrast);
  font-weight: 400;
}
.footer .about .call {
  color: var(--footer-color-contrast);
  margin-top: 15px;
  font-weight: 400;
}
.footer .about .call span {
  display: block;
}
.footer .about .call a {
  font-size: 20px;
  font-weight: 600;
}
.footer .links ul li {
  display: block;
  margin-bottom: 8px;
}
.footer .links ul li:last-child {
  margin-bottom: 0;
}
.footer .links ul li a {
  font-weight: 400;
}
.footer .single-footer h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--footer-color-contrast);
  text-transform: capitalize;
  margin-bottom: 30px;
}
.footer .social ul {
  margin-top: 20px;
}
.footer .social ul li {
  display: inline-block;
  margin-right: 25px;
}
.footer .social ul li:last-child {
  margin-right: 0;
}
.footer .social ul li a {
  font-size: 16px;
}
.footer .social .wrapper-phone-number {
  display: block;
}
.footer .social .wrapper-phone-number:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f879";
  padding-right: 4px;
}
.footer .social .contact ul li {
  color: var(--footer-color-contrast);
  display: block;
  margin-bottom: 4px;
  font-weight: 400;
}
.footer .social .contact ul li:last-child {
  margin-bottom: 0;
}
.footer .copyright .border-top {
  border: 0;
  border-top: 1px solid var(--footer-color-contrast);
  filter: opacity(0.2);
}
.footer .copyright .inner {
  padding: 20px 0;
}
.footer .copyright .inner .right {
  float: right;
}
.footer .copyright p {
  color: var(--footer-color-contrast);
}
.footer .copyright p a {
  text-decoration: underline;
}

/* --------------------------------------------------------------
    A set of common CSS styling build like Tailwind CSS to
    be used for any project as a generic set of rules to avoid
    rewriting and having dozens of equal rule-like classes
 --------------------------------------------------------------*/
:root {
  --form-components-height: 42px;
}

.hover {
  cursor: pointer;
}

.black {
  color: black;
}

.white {
  color: white;
}

/* ^ Displays */
/* Flex */
.flex,
.d-flex {
  display: flex;
}

.flex-column,
.fd-c {
  flex-direction: column;
}

.jc-sb {
  justify-content: space-between;
}

.jc-sa {
  justify-content: space-around;
}

.jc-se {
  justify-content: space-evenly;
}

.jc-fs {
  justify-content: flex-start;
}

.v-center {
  align-items: center;
}

.h-center,
.jc-c {
  justify-content: center;
}

.h-right,
.jc-r {
  justify-content: right;
}

.h-left,
.jc-l {
  justify-content: left;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 10px;
}

/* ^ Positions */
.p-relative,
.relative {
  position: relative;
}

.p-absolute,
.absolute {
  position: absolute;
}

/* Show and hide classes */
.d-none,
.hidden {
  display: none;
}

.d-block,
.show {
  display: block;
}

/* ^ Texts */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.underline {
  text-decoration: underline;
}

.bold {
  font-weight: bold;
}

.light {
  font-weight: 300;
}

/* ^ Widths */
/* Those are default classes for default views */
.w-5 {
  width: 5%;
}

.w-10 {
  width: 10%;
}

.w-15 {
  width: 15%;
}

.w-20 {
  width: 20%;
}

.w-25 {
  width: 25%;
}

.w-30 {
  width: 30%;
}

.w-35 {
  width: 35%;
}

.w-40 {
  width: 40%;
}

.w-45 {
  width: 45%;
}

.w-50 {
  width: 50%;
}

.w-55 {
  width: 55%;
}

.w-60 {
  width: 60%;
}

.w-65 {
  width: 65%;
}

.w-70 {
  width: 70%;
}

.w-75 {
  width: 75%;
}

.w-80 {
  width: 80%;
}

.w-85 {
  width: 85%;
}

.w-90 {
  width: 90%;
}

.w-95 {
  width: 95%;
}

.w-100 {
  width: 100%;
}

/* ^ Padding based on decimal pixels classes */
.padding-none,
.padding-0 {
  padding: 0 !important;
}

.padding-15 {
  padding: 15px;
}

.v-padding-10 {
  padding: 10px 0px;
}

.v-padding-15 {
  padding: 15px 0px;
}

.h-padding-15 {
  padding: 0px 15px;
}

.h-padding-20 {
  padding: 0px 20px;
}

.v-padding-20 {
  padding: 20px 0px;
}

/* Form components */
.btn {
  position: relative;
  font-weight: 500;
  font-size: 14px;
  color: var(--button-color-contrast);
  background: var(--button-color);
  display: inline-block;
  transition: all 0.4s ease;
  z-index: 5;
  display: inline-block;
  padding: 13px 32px;
  border-radius: 0px;
  text-transform: uppercase;
}
.btn.active, .btn:hover {
  color: var(--primary-color-contrast);
  background: var(--primary-color);
}
.btn.primary {
  color: var(--primary-color-contrast);
  background: var(--primary-color);
}
.btn.primary:hover {
  color: var(--button-color-contrast);
  background: var(--button-color);
}

.form-group {
  margin-bottom: 25px;
}
.form-group label {
  color: #333;
  position: relative;
}
.form-group label span {
  color: #ff2c18;
  display: inline-block;
  margin-left: 5px;
  font-size: 16px;
}
.form-group input:not([type=checkbox]) {
  width: 100%;
  height: var(--form-components-height);
  line-height: var(--form-components-height);
  padding: 0 20px;
  border-radius: 0px;
  color: #333 !important;
  border: none;
  background: #F6F7FB;
}
.form-group textArea {
  width: 100%;
  padding: 10px 20px;
  border-radius: 0px;
  color: #333 !important;
  border: none;
  background: #F6F7FB;
  resize: none;
}
.form-group select {
  height: var(--form-components-height);
  background-color: #F6F7FB;
  border-radius: 0px;
  border: none;
  width: 100%;
}

/* Stili per i componenti comuni a tutti i temi */
.tooltip {
  font-size: 11px;
  line-height: 13px;
}

/*
 * Cookie banner
 */
#cookies-eu-banner {
  position: fixed;
  text-align: center;
  padding: 17px;
  width: 100%;
  z-index: 10000;
  background-color: rgba(255, 255, 255, 0.9);
}
#cookies-eu-banner a {
  color: black;
  text-decoration: underline;
}
#cookies-eu-banner p {
  color: black;
  margin-bottom: 12px;
}

/*
 * User message
 */
#user-message {
  font-size: 18px;
  position: fixed;
  width: 100%;
  padding: 18px;
  top: 0;
  background-color: coral;
  color: white;
  font-weight: bold;
  text-align: center;
  z-index: 10000;
  display: none;
}
#user-message a {
  color: white;
}

#form-user-message {
  font-size: 18px;
  width: 100%;
  padding: 18px;
  background-color: coral;
  color: white;
  font-weight: bold;
  text-align: center;
  display: none;
}
#form-user-message a {
  color: white;
}

/*
 * Banner Whatsapp
 */
.banner-whatsapp {
  position: fixed;
  bottom: 10px;
  left: 10px;
  border-radius: 35px;
  padding: 10px 15px;
  background-color: #25D366;
  color: #FFF;
}

.banner-whatsapp a {
  color: #FFF;
}

.banner-whatsapp a:hover {
  color: #FFF;
}

.banner-whatsapp i {
  font-size: 48px;
  vertical-align: middle;
}

.banner-whatsapp span {
  display: none;
}

.banner-whatsapp:hover span {
  display: initial;
}

/*
 * Scroll up
 */
#scrollUp {
  right: 10px;
  z-index: 33;
  bottom: 10px;
  text-align: center;
}

#scrollUp i {
  height: 40px;
  width: 40px;
  line-height: 40px;
  background: transparent;
  background: #222;
  border-radius: 0;
  font-size: 18px;
  transition: all 500ms ease;
  display: block;
  color: #fff;
  box-shadow: 0px 4px 19px rgba(0, 0, 0, 0.2196078431);
}

#scrollUp i:hover {
  background: var(--primary-color);
  color: #fff;
}

/*
 * Products slider
 */
.products-slider-section .section-title {
  margin-bottom: 40px;
}
.products-slider-section .single-product {
  margin: 50px 15px 0 15px;
}
.products-slider-section .single-product img {
  height: 19vh;
  -o-object-fit: contain;
     object-fit: contain;
}
.products-slider-section .owl-carousel .owl-nav {
  margin: 0;
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -25px;
}
.products-slider-section .owl-carousel .owl-nav div {
  height: 60px;
  width: 30px;
  line-height: 58px;
  background: #fff;
  color: #333;
  position: absolute;
  margin: 0;
  border-radius: 0;
  font-size: 15px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0px 0px 10px rgba(51, 51, 51, 0.1098039216);
}
.products-slider-section .owl-carousel .owl-nav div:hover {
  color: #fff;
  background: var(--primary-color);
}
.products-slider-section .owl-carousel .owl-nav div .owl-prev {
  left: 0;
}
.products-slider-section .owl-carousel .owl-nav div .owl-next {
  right: 0;
}

/*
 * Conventions
 */
.conventions-form-modal .modal-dialog {
  width: 400px;
  max-width: 95%;
}
.conventions-form-modal .modal-dialog .modal-body {
  padding: 15px;
  text-align: center;
  height: initial;
}
.conventions-form-modal .modal-dialog .form-main {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1019607843);
  padding: 50px;
}

/* Carrello */
.cart-quantity-alert {
  background-color: red;
  padding: 0px 5px;
  color: white;
  font-size: 11px;
  font-weight: bold;
  line-height: 17px;
}

/* Modal */
.common-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 15; /* Sit on top */
  padding-top: 50px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content */
.common-modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 10px;
  border: 1px solid #888;
  width: 80%;
  /* The Close Button */
}
.common-modal-content .close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.common-modal-content .close:hover {
  cursor: pointer;
}
.common-modal-content .close:hover,
.common-modal-content .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.common-modal-content .text-container {
  background-color: #ededed;
}
.common-modal-content .center {
  display: flex;
  justify-content: center;
}
.common-modal-content .center-columns {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 15px;
}

.shop-blog.grid .shop-single-blog {
  margin-top: 30px;
}
.shop-blog .shop-single-blog {
  text-align: center;
  transition: all 0.4s ease;
}
.shop-blog .shop-single-blog:hover {
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.0392156863);
}
.shop-blog .shop-single-blog img {
  height: 100%;
  width: 100%;
}
.shop-blog .shop-single-blog .content {
  padding: 40px;
}
.shop-blog .shop-single-blog .content .title {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: #333;
}
.shop-blog .shop-single-blog .content .title:hover {
  color: var(--primary-color);
}
.shop-blog .shop-single-blog .content .intro {
  display: block;
  font-size: 12px;
  line-height: normal;
  color: #333;
}
.shop-blog .shop-single-blog .content .date {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
  color: #B7B7B7;
}
.shop-blog .shop-single-blog .content .details {
  margin-top: 8px;
  font-size: 11px;
  line-height: normal;
  display: block;
  color: #B7B7B7;
}
.shop-blog .shop-single-blog .content .more-btn {
  font-size: 14px;
  font-weight: 400;
  color: #3c3c3c;
  margin-top: 10px;
  display: block;
}
.shop-blog .shop-single-blog .content .more-btn:hover {
  color: var(--primary-color);
}

/* Social media links */
div.social-share-buttons {
  padding-top: 25px;
}
div.social-share-buttons .share-twitter {
  border-radius: 10px;
}
div.social-share-buttons .sharable-buttons > button {
  border: none;
}
div.social-share-buttons .blank-btn {
  border: none;
  background: transparent;
}
div.social-share-buttons .twitter-share-logo:hover > path {
  fill: #1DA1F2;
  transition: var(--def-transition);
}
div.social-share-buttons .facebook-share-logo:hover > path {
  fill: #4267B2;
  transition: var(--def-transition);
}
div.social-share-buttons .linkedin-share-logo:hover > path {
  fill: #0077b5;
  transition: var(--def-transition);
}
div.social-share-buttons .telegram-share-logo:hover > path {
  fill: #2aabee;
  transition: var(--def-transition);
}
div.social-share-buttons .whatsapp-share-logo:hover > path {
  fill: #25d366;
  transition: var(--def-transition);
}
div.social-share-buttons .copy-url-share:hover > path {
  fill: var(--primary-color);
  transition: var(--def-transition);
}

/* Blog Sidebar */
.main-sidebar {
  background: #fff;
  margin-top: 30px;
  padding: 40px;
  background: transparent;
  border: 1px solid rgba(238, 238, 238, 0.7607843137);
}

.main-sidebar .single-widget {
  margin-bottom: 50px;
}

.main-sidebar .single-widget .title {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 30px;
  display: block;
  background: #fff;
  padding-left: 12px;
}

.main-sidebar .single-widget .title::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  height: 100%;
  width: 3px;
  background: var(--primary-color);
}

.main-sidebar .single-widget:last-child {
  margin: 0;
}

.main-sidebar .search {
  position: relative;
}

.main-sidebar .search input {
  width: 100%;
  height: 45px;
  box-shadow: none;
  text-shadow: none;
  font-size: 14px;
  border: none;
  color: #222;
  background: transparent;
  padding: 0 70px 0 20px;
  transition: all 0.4s ease;
  border-radius: 0;
  border: 1px solid #eee;
}

.main-sidebar .search .button {
  position: absolute;
  right: 0;
  top: 0;
  height: 44px;
  width: 50px;
  line-height: 45px;
  box-shadow: none;
  text-shadow: none;
  text-align: center;
  border: none;
  font-size: 14px;
  color: #fff;
  background: #333;
  transition: all 0.4s ease;
}

.main-sidebar .search .button:hover {
  background: var(--primary-color);
  color: #fff;
}

/* Category List */
.main-sidebar .categor-list {
  margin-top: 15px;
}

.main-sidebar .categor-list li {
  margin-bottom: 10px;
}

.main-sidebar .categor-list li:last-child {
  margin-bottom: 0px;
}

.main-sidebar .categor-list li a {
  display: inline-block;
  color: #333;
  font-size: 14px;
}

.main-sidebar .categor-list li a:hover {
  color: var(--primary-color);
  padding-left: 7px;
}

.main-sidebar .categor-list li a i {
  display: inline-block;
  margin-right: 0px;
  font-size: 9px;
  transform: translateY(-1px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.main-sidebar .categor-list li a:hover i {
  margin-right: 6px;
  opacity: 1;
  visibility: visible;
}

/* Recent Post */
.main-sidebar .single-post {
  position: relative;
  border-bottom: 1px solid #ddd;
  display: inline-block;
  padding: 17px 0;
}

.main-sidebar .single-post:last-child {
  padding-bottom: 0px;
  border: none;
}

.main-sidebar .single-post .image img {
  float: left;
  width: 80px;
  height: 80px;
  margin-right: 20px;
}

.main-sidebar .single-post .content {
  padding-left: 100px;
}

.main-sidebar .single-post .content h5 {
  line-height: 18px;
}

.main-sidebar .single-post .content h5 a {
  color: #2C2D3F;
  font-weight: 500;
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
  display: block;
  margin-bottom: 10px;
  margin-top: 0;
}

.main-sidebar .single-post .content h5 a:hover {
  color: var(--primary-color);
}

.main-sidebar .single-post .content .comment li {
  color: #888;
  display: inline-block;
  margin-right: 15px;
  font-weight: 400;
  font-size: 14px;
}

.main-sidebar .single-post .content .comment li:last-child {
  margin-right: 0;
}

.main-sidebar .single-post .content .comment li i {
  display: inline-block;
  margin-right: 5px;
}

/* Blog Tags */
.main-sidebar .side-tags .tag {
  margin-top: 40px;
}

.main-sidebar .side-tags .tag li {
  display: inline-block;
  margin-right: 7px;
  margin-bottom: 20px;
}

.main-sidebar .side-tags .tag li a {
  background: #fff;
  color: #333;
  padding: 8px 14px;
  text-transform: capitalize;
  border-radius: 0;
  font-size: 13px;
  background: #F6F7FB;
}

.main-sidebar .side-tags .tag a:hover {
  color: #fff;
  background: var(--primary-color);
  border-color: transparent;
}

/* Blog Newslatter CSS */
.main-sidebar .newsletter .letter-inner {
  position: relative;
  padding: 35px 30px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.0784313725);
  z-index: 2;
  overflow: hidden;
}

.main-sidebar .newsletter .letter-inner h4 {
  text-transform: capitalize;
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.main-sidebar .newsletter .letter-inner p {
  margin-bottom: 20px;
}

.main-sidebar .newsletter .letter-inner .form-inner {
  position: relative;
}

.main-sidebar .newsletter .letter-inner input {
  width: 100%;
  height: 45px;
  background: #fff;
  border: none;
  border: 1px solid #ddd;
  padding: 0px 60px 0px 20px;
  box-shadow: none;
  text-shadow: none;
  border-radius: 0;
}

.main-sidebar .newsletter .letter-inner .form-inner a {
  height: 42px;
  width: 100%;
  background: var(--primary-color);
  color: #fff;
  font-size: 14px;
  display: block;
  text-align: center;
  line-height: 42px;
  margin-top: 10px;
  text-transform: uppercase;
  font-weight: 500;
}

.main-sidebar .newsletter .letter-inner .form-inner a:hover {
  background: #333;
  color: #fff;
}

/* Blog Single CSS */
.blog-single {
  background: #fff;
  padding: 70px 0 100px;
}

.blog-single .blog-single-main {
  margin-top: 30px;
  background: #fff;
}

.blog-single .blog-detail {
  background: #fff;
}

.blog-single .image {
  position: relative;
}

.blog-single .image img {
  width: 100%;
  height: 100%;
}

.blog-single .blog-title {
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 40px 0 15px 0;
}

.blog-single .blog-meta {
  margin-bottom: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(221, 221, 221, 0.431372549);
  padding-bottom: 20px;
  margin-bottom: 25px;
}

.blog-single .blog-meta .author i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 13px;
}

.blog-single .blog-meta .author a {
  font-size: 13px;
  border-right: 1px solid #ddd;
  padding: 0px 15px;
}

.blog-single .blog-meta .author a:first-child {
  padding-left: 0;
}

.blog-single .blog-meta .author a:last-child {
  padding-right: 0;
  border: none;
}

.blog-single .blog-meta span {
  display: inline-block;
  font-size: 14px;
  color: #666;
}

.blog-single .blog-meta span a i {
  margin-right: 10px;
  color: var(--primary-color);
}

.blog-single .blog-meta span a:hover {
  color: var(--primary-color);
}

.blog-single .content p {
  margin-bottom: 25px;
  line-height: 26px;
}

.blog-single .content p:last-child {
  margin: 0;
}

.blog-single blockquote {
  position: relative;
  font-size: 13px;
  font-weight: 400;
  padding-left: 20px;
  padding: 10px 20px;
  background: #F6F6F6;
  padding: 30px 40px 30px 70px;
  color: #555;
  border: none;
  margin-bottom: 25px;
  border-left: 3px solid var(--primary-color);
}

.blog-single blockquote i {
  font-size: 30px;
  color: var(--primary-color);
  position: absolute;
  left: 20px;
  top: 20px;
}

.blog-single .content .img-post {
  margin-bottom: 25px;
}

.blog-single .share-social .content-tags {
  position: relative;
  margin-top: 25px;
}

.blog-single .share-social .content-tags h4 {
  position: absolute;
  left: 0;
  top: 7px;
  font-size: 15px;
  font-weight: 500;
}

.blog-single .share-social .content-tags .tag-inner {
  padding-left: 60px;
}

.blog-single .share-social .content-tags .tag-inner li {
  display: inline-block;
  margin-right: 7px;
  margin-bottom: 10px;
  margin-top: 4px;
}

.blog-single .share-social .content-tags .tag-inner li:last-child {
  margin-right: 0px;
  margin-bottom: 0px;
}

.blog-single .share-social .content-tags .tag-inner li a {
  border-radius: 30px;
  padding: 5px 15px;
  background: #f4f7fc;
  font-size: 13px;
}

.blog-single .share-social .content-tags .tag-inner li a:hover {
  color: #fff;
  background: var(--primary-color);
}

/* Comments */
.blog-single .comments {
  margin-top: 40px;
}

.blog-single .comments .comment-title {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 30px;
  display: block;
  background: #fff;
  padding-left: 12px;
}

.blog-single .comments .comment-title:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  height: 100%;
  width: 3px;
  background: var(--primary-color);
}

.blog-single .comments .single-comment {
  position: relative;
  margin-bottom: 40px;
  border-radius: 5px;
  padding-left: 95px;
}

.blog-single .comments .single-comment.left {
  margin-left: 110px;
}

.blog-single .comments .single-comment img {
  height: 70px;
  width: 70px;
  border-radius: 100%;
  position: absolute;
  left: 0;
}

.blog-single .single-comment .content h4 {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  display: inline-block;
  margin-bottom: 18px;
  text-transform: capitalize;
}

.blog-single .single-comment .content h4 span {
  display: inline-block;
  font-size: 13px;
  color: #8D8D8D;
  margin: 0;
  font-weight: 400;
  text-transform: capitalize;
  display: block;
  margin-top: 5px;
}

.blog-single .single-comment .content p {
  color: #666;
  font-weight: 400;
  display: block;
  margin: 0;
  margin-bottom: 20px;
  line-height: 22px;
}

.blog-single .single-comment .content .btn {
  display: inline-block;
  color: #666;
  font-weight: 400;
  color: #6a6a6a;
  border-radius: 4px;
  text-transform: capitalize;
  font-size: 14px;
  background: transparent;
  padding: 0;
}

.blog-single .single-comment .content a i {
  display: inline-block;
  margin-right: 5px;
}

.blog-single .single-comment .content a:hover {
  color: var(--primary-color);
}

/* Comment Form */
.blog-single .reply form {
  padding: 40px;
  border: 1px solid #eee;
}

.blog-single .reply .reply-title {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 30px;
  display: block;
  background: #fff;
  padding-left: 12px;
}

.blog-single .reply .reply-title:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  height: 100%;
  width: 3px;
  background: var(--primary-color);
}

.blog-single .reply .form-group {
  margin-bottom: 20px;
}

.blog-single .reply .form-group input {
  width: 100%;
  height: 45px;
  line-height: 50px;
  padding: 0 20px;
  border-radius: 0px;
  color: #333 !important;
  border: none;
  border: 1px solid #eee;
}

.blog-single .reply .form-group textarea {
  width: 100%;
  height: 200px;
  line-height: 50px;
  padding: 0 20px;
  border-radius: 0px;
  color: #333 !important;
  border: none;
  border: 1px solid #eee;
}

.blog-single .reply .form-group label {
  color: #333;
  position: relative;
}

.blog-single .reply .form-group label span {
  color: #ff2c18;
  display: inline-block;
  position: absolute;
  right: -12px;
  top: 4px;
  font-size: 16px;
}

.blog-single .reply .button {
  text-align: left;
  margin-bottom: 0px;
}

.blog-single .reply .button .btn {
  height: 50px;
  border: none;
}

:root {
  --summer: #ffa500;
  --winter: #007dff;
  --all_season: #8b0000;
}

.product-filters-top {
  padding: 20px 0;
}

.product-area .nav-tabs {
  text-align: center;
  display: inline-block;
  width: 100%;
  border: none;
}
.product-area .nav-tabs .nav-item {
  margin-bottom: -1px;
  display: inline-block;
}
.product-area .nav-tabs li a {
  color: #333;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  margin-right: 5px;
  font-weight: 500;
  background: #fff;
  color: #333;
  padding: 3px 14px;
  border-radius: 3px;
  font-size: 13px;
}
.product-area .nav-tabs li a i {
  margin-right: 10px;
}
.product-area .nav-tabs li a.active {
  background: var(--primary-color);
  color: #fff;
  border-color: transparent;
}
.product-area .nav-tabs li:last-child a {
  border-color: transparent;
}
.product-area .nav-tabs li:hover  a {
  background: var(--primary-color);
  color: #fff;
  border-color: transparent;
}

.single-product {
  margin-top: 50px;
}
.single-product .product-img {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  padding: 10px;
  text-align: center;
  /* background-color: #333; */
}
.single-product .product-img:hover img.hover-img {
  opacity: 1;
}
.single-product .product-img:hover.default-overlay::before {
  background-color: rgba(38, 38, 38, 0.2);
  z-index: 9;
  transition: all 250ms ease-out;
  pointer-events: none;
  opacity: 1;
}
.single-product .product-img:hover.metro-overlay::before {
  background-color: rgba(38, 38, 38, 0.4);
  z-index: 9;
  transition: all 250ms ease-out;
  pointer-events: none;
  opacity: 1;
}
.single-product .product-img a {
  display: block;
  position: relative;
}
.single-product .product-img a img {
  width: 100%;
}
.single-product .product-img a img.hover-img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
}
.single-product .product-img span.price-dec {
  background-color: #f6931d;
  display: inline-block;
  font-size: 11px;
  color: #fff;
  right: 20px;
  top: 20px;
  padding: 1px 16px;
  font-weight: 700;
  border-radius: 0;
  text-align: center;
  position: absolute;
  text-transform: uppercase;
  border-radius: 30px;
  height: 26px;
  line-height: 25px;
}
.single-product .product-img span.new {
  background-color: #8493ca;
  display: inline-block;
  font-size: 11px;
  color: #fff;
  right: 20px;
  top: 20px;
  padding: 1px 16px;
  font-weight: 700;
  border-radius: 0;
  text-align: center;
  position: absolute;
  text-transform: uppercase;
  border-radius: 30px;
  height: 26px;
  line-height: 24px;
}
.single-product .product-img span.out-of-stock {
  background-color: #ed1b24;
  display: inline-block;
  font-size: 11px;
  color: #fff;
  right: 20px;
  top: 20px;
  padding: 1px 16px;
  font-weight: 700;
  border-radius: 0;
  text-align: center;
  position: absolute;
  text-transform: uppercase;
  border-radius: 30px;
  height: 26px;
  line-height: 24px;
}
.single-product .product-img span.season {
  display: inline-block;
  font-size: 28px;
  color: #fff;
  right: 20px;
  top: 20px;
  padding: 4px 16px;
  font-weight: 700;
  border-radius: 0;
  text-align: center;
  position: absolute;
  text-transform: uppercase;
  border-radius: 30px;
  height: 36px;
  line-height: 24px;
}
.single-product .product-img span.season.summer {
  background-color: var(--summer);
}
.single-product .product-img span.season.winter {
  background-color: var(--winter);
}
.single-product .product-img span.season.all-season {
  background-color: var(--all_season);
}
.single-product .product-img .product-action {
  display: inline-block;
  position: absolute;
  right: 5px;
  bottom: 0;
  z-index: 99;
  border-radius: 3px;
}
.single-product .product-img .product-action a {
  background-color: transparent;
  color: #333;
  display: block;
  font-size: 16px;
  display: inline-block;
  margin-right: 15px;
  text-align: right;
  height: 52px;
  position: relative;
  top: 2px;
}
.single-product .product-img .product-action a:last-child {
  margin-right: 0;
  border: none;
}
.single-product .product-img .product-action a:hover {
  color: var(--primary-color);
}
.single-product .product-img .product-action a:hover span {
  visibility: visible;
  opacity: 1;
  color: #333;
  background: #fff;
  margin-top: -12px;
}
.single-product .product-img .product-action a i {
  line-height: 40px;
}
.single-product .product-img .product-action a span {
  visibility: hidden;
  position: absolute;
  background: var(--primary-color) !important;
  color: #fff !important;
  text-align: center;
  padding: 5px 12px;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.6s, margin 0.3s;
  font-size: 11px;
  right: 0;
  line-height: 14px;
  top: -12px;
  margin-top: -5px;
  margin-right: 0;
  display: inline-block;
  width: 120px;
  border-radius: 15px 0 0 15px;
}
.single-product .product-content {
  margin-top: 20px;
}
.single-product .product-content h3 {
  line-height: 22px;
}
.single-product .product-content h3 a {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}
ù .single-product .product-content h3 a:hover {
  color: var(--primary-color);
}
.single-product .product-content .product-price {
  margin: 6px 0 0 0;
}
.single-product .product-content .product-price span {
  font-size: 15px;
  font-weight: 500;
}
.single-product .product-content .product-price span.old {
  text-decoration: line-through;
  opacity: 0.6;
  margin-right: 2px;
}

.product-content span.quality-class, .product-content span.advised {
  display: inline-block;
  font-size: 11px;
  color: #fff;
  padding: 1px 16px;
  border-radius: 0;
  text-align: center;
  text-transform: uppercase;
  border-radius: 30px;
  height: 26px;
  line-height: 24px;
}
.product-content span.quality-class {
  background-color: #8493ca;
}
.product-content span.advised {
  background-color: var(--primary-color);
}

.shop-sidebar .single-widget {
  margin-top: 30px;
  background: #F6F7FB;
  padding: 30px;
}
.shop-sidebar .single-widget:first-child {
  margin-top: 0;
}
.shop-sidebar .single-widget .title {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 25px;
  display: block;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}
.shop-sidebar .single-post {
  position: relative;
  margin-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ddd;
}
.shop-sidebar .single-post.first {
  padding-top: 0px;
}
.shop-sidebar .single-post:last-child {
  padding-bottom: 0px;
  border: none;
}
.shop-sidebar .single-post .image img {
  height: 80px;
  width: 80px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100%;
}
.shop-sidebar .single-post .content {
  padding-left: 100px;
}
.shop-sidebar .single-post .content h5 {
  line-height: 18px;
}
.shop-sidebar .single-post .content h5 a {
  color: #222;
  font-weight: 500;
  font-size: 14px;
  font-weight: 500;
  display: block;
}
.shop-sidebar .single-post .content h5 a:hover {
  color: var(--primary-color);
}
.shop-sidebar .single-post .content .price {
  display: block;
  color: #333;
  font-weight: 500;
  margin: 5px 0 0px 0;
  text-transform: uppercase;
  font-size: 14px;
}
.shop-sidebar .single-post .reviews li {
  display: inline-block;
}
.shop-sidebar .single-post .reviews li.yellow i {
  color: var(--primary-color);
}
.shop-sidebar .single-post .reviews li i {
  color: #999;
}

.shop.single {
  padding: 70px 0 100px;
}
.shop.single .product-gallery {
  margin-top: 30px;
}
.shop.single .product-gallery .slides li {
  position: relative;
}
.shop.single .product-gallery .slides li img {
  width: 100%;
}
.shop.single .flexslider-thumbnails {
  position: relative;
}
.shop.single .flex-control-nav {
  margin-top: 15px;
}
.shop.single .flex-control-thumbs li {
  width: 20%;
  position: relative;
  margin: 0 8px 10px -3px;
}
.shop.single .flex-control-thumbs li img {
  border: none;
  padding: 0;
  border: 1px solid transparent;
}
.shop.single .flex-control-thumbs li img.flex-active {
  border-color: var(--primary-color);
}
.shop.single .flex-direction-nav {
  display: none;
}
.shop.single .product-icons {
  margin-top: 16px;
}
.shop.single .product-icons > div {
  text-align: center;
}
.shop.single .product-icons i {
  font-size: 30px;
}
.shop.single .product-icons i.summer {
  color: var(--summer);
}
.shop.single .product-icons i.winter {
  color: var(--winter);
}
.shop.single .product-icons i.all-season {
  color: var(--all_season);
}
.shop.single .product-des {
  margin-top: 30px;
}
.shop.single .product-des span.quality-class, .shop.single .product-des span.advised {
  display: inline-block;
  font-size: 11px;
  color: #fff;
  padding: 1px 16px;
  border-radius: 0;
  text-align: center;
  text-transform: uppercase;
  border-radius: 30px;
  height: 26px;
  line-height: 24px;
}
.shop.single .product-des span.quality-class {
  background-color: #8493ca;
}
.shop.single .product-des span.advised {
  background-color: var(--primary-color);
}
.shop.single .product-des .short h4 {
  font-size: 22px;
  font-weight: 600;
  margin-top: -5px;
  line-height: 28px;
}
.shop.single .product-des .short .description {
  font-size: 14px;
  color: #555555;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.shop.single .product-des .total-review {
  font-size: 14px;
  font-weight: 500;
  margin-left: 10px;
  display: inline-block;
}
.shop.single .product-des .total-review:hover {
  color: var(--primary-color);
}
.shop.single .product-des .rating {
  margin-top: 20px;
  display: inline-block;
}
.shop.single .product-des .rating li {
  display: inline-block;
}
.shop.single .product-des .rating li i {
  color: var(--primary-color);
}
.shop.single .product-des .rating li.dark i {
  color: #555;
}
.shop.single .product-des .price {
  font-size: 20px;
  color: #333;
  font-weight: 600;
  margin-top: 15px;
}
.shop.single .product-des .price a {
  color: #333;
}
.shop.single .product-des .price span {
  display: inline-block;
  margin-right: 15px;
  color: var(--primary-color);
}
.shop.single .product-des .service {
  font-size: 14px;
  color: #333;
  margin-top: 15px;
}
.shop.single .product-des .product-buy {
  margin-top: 40px;
}
.shop.single .product-des .color {
  display: inline-block;
  margin-right: 50px;
}
.shop.single .product-des .color h4 {
  font-size: 18px;
  font-weight: 600;
}
.shop.single .product-des .color h4 span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-top: 4px;
}
.shop.single .product-des .color ul {
  margin-top: 10px;
}
.shop.single .product-des .color ul li {
  display: inline-block;
  margin-right: 5px;
}
.shop.single .product-des .color ul li:last-child {
  margin-right: 0;
}
.shop.single .product-des .color ul li a {
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  display: block;
  background: #333;
}
.shop.single .product-des .color ul li a i {
  font-size: 11px;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.shop.single .product-des .color ul li a:hover i {
  opacity: 1;
  visibility: visible;
}
.shop.single .product-des .size {
  display: inline-block;
}
.shop.single .product-des .size h4 {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-top: 0px;
}
.shop.single .product-des .size ul {
  display: inline-block;
  margin-top: 10px;
}
.shop.single .product-des .size ul li {
  display: inline-block;
  margin-right: 5px;
}
.shop.single .product-des .size ul li:last-child {
  margin-right: 0;
}
.shop.single .product-des .size ul li a {
  display: block;
  height: 30px;
  width: 36px;
  border: 1px solid #eee;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
}
.shop.single .product-des .size ul li a:hover {
  color: var(--primary-color);
}
.shop.single .eu-label img {
  width: 100%;
}
.shop.single .quantity {
  display: inline-block;
  margin-right: 10px;
}
.shop.single .quantity h6 {
  display: inline-block;
  margin-right: 10px;
  font-size: 15px;
  font-weight: 500;
}
.shop.single .quantity .input-group {
  width: 151px;
  display: inline-block;
}
.shop.single .quantity .button {
  display: inline-block;
  position: absolute;
  top: 0;
  display: inline-block;
}
.shop.single .quantity .button.minus {
  left: 0;
  border-radius: 0;
  overflow: hidden;
}
.shop.single .quantity .button.plus {
  right: 0;
  border-radius: 0;
  overflow: hidden;
}
.shop.single .quantity .button .btn {
  padding: 0;
  width: 35px;
  height: 45px;
  line-height: 45px;
  border-radius: 0px;
  background: transparent;
  color: #282828;
  font-size: 12px;
  border: none;
}
.shop.single .quantity .button .btn:hover {
  color: var(--primary-color);
}
.shop.single .quantity .input-number {
  border: 1px solid #eceded;
  width: 100%;
  text-align: center;
  height: 45px;
  border-radius: 0px;
  overflow: hidden;
  padding: 0px 38px;
}
.shop.single .add-to-cart {
  display: inline-block;
}
.shop.single .cat {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-top: 30px;
}
.shop.single .cat a {
  display: inline-block;
  margin-left: 10px;
}
.shop.single .cat a:hover {
  color: var(--primary-color);
}
.shop.single .availability {
  color: #333;
  font-size: 14px;
  margin-top: 6px;
}
.shop.single .product-info {
  margin-top: 50px;
}
.shop.single .nav-tabs {
  border: none;
}
.shop.single .nav-tabs li {
  margin-right: 10px;
}
.shop.single .nav-tabs li:last-child {
  margin-right: 0;
}
.shop.single .nav-tabs li a {
  border: 0px solid;
  border-radius: 0px;
  background: #fff;
  color: #333;
  padding: 10px 30px;
  font-weight: 500;
  font-size: 14px;
  border: 1px solid #eee;
}
.shop.single .nav-tabs li a i {
  margin-right: 10px;
}
.shop.single .nav-tabs li a.active {
  background: var(--primary-color);
  color: #fff;
  border-color: transparent;
}
.shop.single .nav-tabs li:hover a {
  background: var(--primary-color);
  color: #fff;
  border-color: transparent;
}
.shop.single .single-des {
  margin-top: 35px;
}
.shop.single .single-des h4 {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 22px;
}
.shop.single .single-des ul li {
  color: #555;
  display: block;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}
.shop.single .single-des ul li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 9px;
  height: 7px;
  width: 7px;
  background: var(--primary-color);
  border-radius: 50%;
}
.shop.single .item-info {
  width: 100%;
}
.shop.single .item-info table tbody tr td {
  border: 1px solid #e6e6e6;
  padding: 10px;
}
.shop.single .avg-rating {
  margin-bottom: 20px;
}
.shop.single .avg-rating h4 {
  color: #333;
  font-size: 18px;
  margin: 0;
}
.shop.single .avg-rating h4 span {
  font-size: 14px;
}
.shop.single .single-rating {
  margin-bottom: 20px;
}
.shop.single .single-rating:last-child {
  margin: 0;
  border: none;
  padding: 0;
}
.shop.single .ratings .rate-count {
  display: inline-block;
  color: #666;
  font-size: 13px;
}
.shop.single .rating-author {
  float: left;
  margin-right: 10px;
  padding: 20px;
  padding-right: 10px;
}
.shop.single .rating-author img {
  width: 60px;
  border-radius: 100%;
  height: 60px;
}
.shop.single .rating-des {
  padding-left: 72px;
  background: #f9f8f8;
  padding: 17px 20px 17px 107px;
}
.shop.single .rating-des .ratings {
  margin: 0;
}
.shop.single .rating-des h6 {
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
}
.shop.single .rating-des p {
  margin-top: 5px;
}
.shop.single .rating-main .single-rating ul {
  display: inline-block;
  margin-right: 5px;
}
.shop.single .rating-main .single-rating ul li i {
  color: var(--primary-color);
  font-size: 14px;
}
.shop.single .review-inner label {
  display: inline-block;
  margin: 0 5px 0 0;
}
.shop.single .review-inner .ratings {
  overflow: visible;
  display: inline-block;
  margin: 0;
}
.shop.single .review-inner .ratings ul {
  display: inline-block;
}
.shop.single .comment-review {
  margin-bottom: 30px;
}
.shop.single .comment-review h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 7px;
  margin-top: 20px;
}
.shop.single .comment-review .add-review {
  margin-top: 30px;
}
.shop.single .comment-review .add-review h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 7px;
}
.shop.single .comment-review .add-review p {
  color: #333;
}
.shop.single .comment-review .review-inner {
  margin-bottom: 15px;
  display: block;
}
.shop.single .comment-review .rating li {
  display: inline-block;
}
.shop.single .comment-review .rating li i {
  color: var(--primary-color);
  font-size: 14px;
}

.shop-list .list-content {
  margin-top: 50px;
}
.shop-list .list-content .title {
  line-height: 20px;
}
.shop-list .list-content .title a {
  font-size: 18px;
  font-weight: 600;
}
.shop-list .list-content .title a:hover {
  color: var(--primary-color);
}
.shop-list .list-content .product-price {
  margin: 20px 0 4px 0;
  font-size: 16px;
}
.shop-list .list-content .product-price i {
  margin-left: 10px;
}
.shop-list .list-content .product-price i:first-child {
  margin-left: 0;
}
.shop-list .list-content .product-price span {
  font-weight: 600;
}
.shop-list .list-content .product-price span.old {
  text-decoration: line-through;
  opacity: 0.6;
  margin-right: 2px;
}
.shop-list .list-content .rating {
  margin: 5px 0 8px 0;
}
.shop-list .list-content .rating li {
  display: inline-block;
}
.shop-list .list-content .rating li i {
  color: var(--primary-color);
}
.shop-list .list-content .rating li.total {
  color: #333;
  font-size: 12px;
  margin-left: 3px;
}
.shop-list .list-content .btn {
  margin-top: 22px;
  height: 42px;
  line-height: 15px;
  color: #333;
  background: transparent;
  border: 1px solid #cecece;
  font-size: 13px;
  border-radius: 30px;
  height: auto;
  line-height: a;
  padding: 13px 32px;
}
.shop-list .list-content .btn:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: transparent;
}
.shop-list .list-content .product-tech-data {
  margin-top: 20px;
}

.product-pagination {
  margin-top: 10px;
  padding: 15px;
  border-radius: 8px;
  background-color: #F6F7FB;
}
.product-pagination .product-pagination-total {
  text-align: center;
}

.pagination {
  text-align: left;
  margin: 20px 0;
  display: block;
}
.pagination.center {
  text-align: center;
}
.pagination .pagination-list li {
  margin-right: 5px;
  display: inline-block;
}
.pagination .pagination-list li:last-child {
  margin-right: 0px;
}
.pagination .pagination-list li a {
  background: white;
  color: #666;
  padding: 6px 18px;
  font-weight: 400;
  border: 1px solid var(--primary-color);
  font-size: 16px;
  border-radius: 0px;
}
.pagination .pagination-list li a i {
  font-size: 13px;
}
.pagination .pagination-list li:hover a, .pagination .pagination-list li.active a {
  background: var(--primary-color);
  color: var(--primary-color-contrast);
  border-color: transparent;
}

.shop-services.section {
  padding: 80px 0 0px 0;
  background: #fff;
}
.shop-services.home {
  padding: 60px 0;
  background: #F6F7FB;
}
.shop-services .single-service {
  position: relative;
  padding-left: 65px;
}
.shop-services .single-service i {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  color: #333;
  background: transparent;
  border-radius: 100%;
  display: block;
  font-size: 32px;
  position: absolute;
  left: 0;
  top: 0;
}
.shop-services .single-service h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 22px;
  color: #333;
}
.shop-services .single-service p {
  color: #898989;
  line-height: 28px;
  font-size: 14px;
}

.related-product {
  padding-top: 30px;
  background-color: #F6F7FB;
}
.related-product .section-title {
  text-align: center;
  margin-bottom: 0;
  padding: 0;
}
.related-product .section-title h2 {
  font-size: 25px;
  margin-bottom: 0;
  text-transform: capitalize;
  position: relative;
  color: #2c2d3f;
  font-weight: 700;
  padding-bottom: 15px;
}

.shopping-cart {
  background: #f6f6f6;
  padding: 50px 0;
}
.shopping-cart .table.shopping-summery {
  background: #fff;
}
.shopping-cart .table.shopping-summery tr.not-selected td {
  background-color: var(--light-gray);
}
.shopping-cart .table .remove-icon {
  font-size: 16px;
}
.shopping-cart .table p {
  font-size: 14px;
  color: #666;
}
.shopping-cart .table td {
  vertical-align: middle;
  border-top: 1px solid #eee;
  padding: 10px 25px;
}
.shopping-cart .table td:first-child {
  padding: 10px;
}
.shopping-cart .table .qty .input-group {
  width: 165px;
  display: inline-block;
  max-width: 100%;
}
.shopping-cart .table .qty .button {
  display: inline-block;
  position: absolute;
  top: 0;
}
.shopping-cart .table .qty .button.minus {
  left: 0;
  border-radius: 0;
  overflow: hidden;
}
.shopping-cart .table .qty .button.plus {
  right: 0;
  border-radius: 0;
  overflow: hidden;
}
.shopping-cart .table .qty .button .btn {
  padding: 0;
  width: 44px;
  height: 47px;
  line-height: 50px;
  border-radius: 0px;
  background: transparent;
  color: #282828;
  border: none;
  font-size: 12px;
}
.shopping-cart .table .qty .button .btn:hover {
  color: var(--primary-color);
}
.shopping-cart .table .qty .input-number {
  border: 1px solid #eceded;
  width: 100%;
  text-align: center;
  height: 47px;
  border-radius: 0;
  overflow: hidden;
  padding: 0px 45px;
}
.shopping-cart .total-amount {
  margin-top: 50px;
}
.shopping-cart .total-amount .left .coupon form input {
  width: 300px;
  display: inline-block;
  height: 48px;
  color: #333;
  padding: 0px 20px;
  border: none;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.0392156863);
}
.shopping-cart .total-amount .left .coupon form .btn {
  display: inline-block;
  height: 48px;
  border: navajowhite;
  margin-left: 4px;
  background: transparent;
  color: #333;
  background: #fff;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.0705882353);
}
.shopping-cart .total-amount .left .coupon form .btn:hover {
  background: #fff;
  color: var(--primary-color);
}
.shopping-cart .total-amount .left label {
  font-size: 22px;
  font-weight: 500;
  color: #333;
}
.shopping-cart .total-amount .right {
  padding-left: 100px;
}
.shopping-cart .total-amount .right ul li {
  font-size: 15px;
  font-weight: 400;
  color: #333;
  margin-bottom: 12px;
}
.shopping-cart .total-amount .right ul li.last {
  padding-top: 12px;
  border-top: 1px solid #c8c8c8;
  color: #333;
  font-size: 15px;
  font-weight: 400;
}
.shopping-cart .total-amount .right ul li span {
  display: inline-block;
  float: right;
}
.shopping-cart .total-amount .right .button5 .btn {
  text-align: center;
  border-radius: 0;
  width: 100%;
  margin-top: 10px;
  height: 46px;
  line-height: 18px;
  font-size: 13px;
  color: #fff;
}

.shopping-summery thead {
  background: var(--primary-color);
  color: #fff;
}
.shopping-summery thead .main-hading {
  padding: 0px 50px;
}
.shopping-summery thead tr th {
  border: none;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
.shopping-summery tbody tr {
  border-bottom: 1px solid var(--primary-color);
  margin-top: 20px;
}
.shopping-summery tbody tr:last-child {
  border: none;
}
.shopping-summery tbody tr img {
  border-radius: 0;
  width: 120px;
  height: 120px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.shopping-summery tbody .product img {
  max-width: 70px;
  border-radius: 100%;
  max-height: 65px;
  border: 1px solid #e6e6e6;
  padding: 4px;
}
.shopping-summery tbody .product:hover img {
  border-color: var(--primary-color);
  transform: rotate(360deg);
}
.shopping-summery tbody .product-name a {
  font-weight: 600;
  color: #282828;
  font-weight: 600;
  font-size: 17px;
}
.shopping-summery tbody .product-name a:hover {
  color: var(--primary-color);
}
.shopping-summery tbody .price {
  text-align: center;
}
.shopping-summery tbody .total-amount {
  text-align: center;
}
.shopping-summery tbody .action {
  text-align: center;
}
.shopping-summery tbody .action a:hover {
  color: var(--primary-color);
}

.shop.checkout {
  padding: 0;
  background: #fff;
  padding-top: 20px;
  padding-bottom: 50px;
}
.shop.checkout .checkout-form {
  margin-top: 30px;
}
.shop.checkout .checkout-form h2 {
  font-size: 25px;
  color: #333;
  font-weight: 700;
  line-height: 27px;
}
.shop.checkout .checkout-form p {
  font-size: 16px;
  color: #333;
  font-weight: 400;
  margin-top: 12px;
  margin-bottom: 30px;
}
.shop.checkout .order-details {
  margin-top: 30px;
  background: #fff;
  padding: 15px 0 30px 0;
  border: 1px solid #eee;
}
.shop.checkout .single-widget {
  margin-bottom: 30px;
}
.shop.checkout .single-widget:last-child {
  margin: 0;
}
.shop.checkout .single-widget h2 {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 30px;
  line-height: 24px;
  text-transform: uppercase;
  color: #333;
  padding-bottom: 5px;
}
.shop.checkout .single-widget h2:before {
  position: absolute;
  content: "";
  left: 30px;
  bottom: 0;
  height: 2px;
  width: 50px;
  background: var(--primary-color);
}
.shop.checkout .single-widget .content ul {
  margin-top: 30px;
}
.shop.checkout .single-widget .content ul li {
  display: block;
  padding: 0px 30px;
  font-size: 15px;
  font-weight: 400;
  color: #333;
  margin-bottom: 12px;
}
.shop.checkout .single-widget .content ul li.last {
  padding-top: 12px;
  border-top: 1px solid #ebebeb;
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #333;
}
.shop.checkout .single-widget .content ul li span {
  display: inline-block;
  float: right;
}
.shop.checkout .single-widget .checkbox {
  text-align: left;
  margin: 0;
  padding: 0px 18px;
  margin-top: 30px;
}
.shop.checkout .single-widget .checkbox label {
  color: #555555;
  position: relative;
  font-size: 14px;
  padding-left: 20px;
  margin-top: -5px;
  font-weight: 400;
  display: block;
  margin-bottom: 15px;
}
.shop.checkout .single-widget .checkbox label:last-child {
  margin-bottom: 0;
}
.shop.checkout .single-widget .checkbox label:hover {
  cursor: pointer;
}
.shop.checkout .single-widget.payement {
  padding: 0px 38px;
  text-align: center;
  margin-top: 30px;
}
.shop.checkout .single-widget.get-button {
  text-align: center;
  padding: 0px 35px;
}
.shop.checkout .single-widget.get-button .btn {
  height: 46px;
  width: 100%;
  line-height: 19px;
  text-align: center;
  border-radius: 0;
  text-transform: uppercase;
  color: #fff;
}

.friend-invitation h2 {
  text-align: center;
  margin-bottom: 20px;
}
.friend-invitation h4 {
  text-align: center;
}
.friend-invitation img.friend-invitation-header {
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.shop.login {
  padding: 100px 0;
}
.shop.login .login-form h2 {
  position: relative;
  font-size: 35px;
  color: #333;
  font-weight: 400;
  line-height: 27px;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-bottom: 20px;
  text-align: center;
}
.shop.login .login-form h2:before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  height: 2px;
  width: 50px;
  background: var(--primary-color);
  margin-left: -25px;
}
.shop.login .login-form p {
  font-size: 14px;
  color: #333;
  font-weight: 400;
  text-align: center;
  margin-bottom: 50px;
}
.shop.login .login-form .checkbox {
  text-align: left;
  margin: 0;
  margin-top: 20px;
  display: inline-block;
}
.shop.login .login-form .lost-pass {
  display: inline-block;
  margin-left: 25px;
  color: #333;
  font-size: 14px;
  font-weight: 400;
}
.shop.login .login-form .lost-pass:hover {
  color: var(--primary-color);
}
.shop.login .form {
  margin-top: 30px;
}
.shop.login .form .form-group {
  margin-bottom: 22px;
}

.maintenance-container {
  display: flex;
  position: fixed;
  z-index: 100;
  bottom: 15px;
  left: 15px;
  color: white;
  border-radius: 10px;
  background: black;
}
.maintenance-container > button {
  background: transparent;
  border: 1px solid lightslategray;
  border-radius: 7px;
}
.maintenance-container span {
  font-size: 30px;
}
.maintenance-container i {
  border-radius: 100%;
  padding: 8px;
  color: white;
}
.maintenance-container .description {
  display: flex;
  flex-direction: column;
  padding: 0 10px;
}
.maintenance-container .description > * {
  font-size: 12px;
}
.maintenance-container .description > p {
  margin: 0;
  color: white;
}
.maintenance-container .description > p > a {
  text-decoration: underline;
  color: white;
}

.page .page-title {
  text-align: center;
  margin-bottom: 50px;
}
.page .page-title h1 {
  font-size: 36px;
  margin-bottom: 0;
  text-transform: capitalize;
  position: relative;
  color: #2c2d3f;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 15px;
}
.page .page-title h1::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 50px;
  background: var(--primary-color);
  left: 50%;
  bottom: 0;
  margin-left: -25px;
}

/*
 * Error page
 */
.error-page {
  background: #fff;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.error-page .error-inner {
  text-align: center;
  flex-direction: initial;
  height: auto;
  text-align: center;
}
.error-page .error-inner h2 {
  color: var(--primary-color);
  margin-bottom: 0;
  font-weight: 700;
  font-size: 100px;
  display: inline-block;
  font-size: 120px;
}
.error-page .error-inner h5 {
  display: block;
  color: #444;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: capitalize;
}
.error-page .error-inner p {
  color: #666;
  font-weight: 400;
  line-height: 22px;
  font-size: 15px;
  padding: 0 30px;
}
.error-page .error-inner button {
  margin-top: 30px;
}

/*
 * Mail Success
 */
.mail-success .mail-inner {
  text-align: center;
  background: #fff;
  padding: 0px 30px;
}
.mail-success .mail-inner h2 {
  margin-bottom: 10px;
  display: block;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 30px;
}
.mail-success .mail-inner p {
  font-size: 14;
  color: #333;
  margin-bottom: 30px;
  line-height: 22px;
}

/*
 * About us
 */
.about-us {
  background: #fff;
}
.about-us .about-content {
  padding-right: 50px;
}
.about-us .about-content h3 {
  font-size: 30px;
  font-weight: 600;
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.about-us .about-content h3::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 60px;
  background: var(--primary-color);
}
.about-us .about-content h3 span {
  display: inline-block;
  font-weight: 700;
  color: var(--primary-color);
}
.about-us .about-content p {
  line-height: 26px;
  margin-bottom: 10px;
}
.about-us .about-content p:last-child {
  margin: 0;
}
.about-us .about-content .button {
  margin-top: 40px;
}
.about-us .about-content .button:last-child {
  margin: 0;
}
.about-us .about-content .story {
  display: block;
  color: #04AAF4;
  margin-bottom: 20px;
  font-size: 17px;
}
.about-us .about-content .story i {
  color: #04AAF4;
  margin-right: 5px;
  font-size: 22px;
}
.about-us .about-img {
  position: relative;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  border: 10px solid #fff;
}
.about-us .about-img:before {
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.about-us .about-img:hover:before {
  opacity: 0.6;
  visibility: visible;
}
.about-us .about-img:hover .video {
  transform: scale(1);
}
.about-us .about-img .video {
  height: 64px;
  width: 64px;
  line-height: 64px;
  background: var(--primary-color);
  color: #fff;
  font-size: 20px;
  border-radius: 100%;
  display: block;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -32px;
  margin-top: -32px;
  padding-left: 4px;
  transform: scale(0);
  transition: all 0.4s ease;
}
.about-us .about-img .video:hover {
  background: #fff;
  color: var(--primary-color);
}
.about-us .about-img img {
  height: 100%;
  width: 100%;
}

.team {
  background: #F6F7FB;
}
.team .title-line {
  margin-bottom: 40px;
}
.team .single-team {
  margin-top: 30px;
  position: relative;
  transition: all 500ms ease;
  display: inline-block;
  overflow: hidden;
  text-align: center;
  background: #fff;
}
.team .single-team .info-head {
  padding: 35px 30px;
}
.team .single-team .image img {
  height: 100%;
  width: 100%;
}
.team .single-team .info-box {
  text-align: center;
}
.team .single-team .info-box .name {
  display: block;
  font-size: 17px;
  color: #333;
  font-weight: 500;
  margin-bottom: 3px;
  text-transform: capitalize;
}
.team .single-team .info-box .designation {
  color: #aaa;
  font-size: 13px;
}
.team .single-team .social-links {
  transition: all 500ms ease;
  margin-top: 15px;
}
.team .single-team .social-links .social li {
  display: inline-block;
  margin-right: 15px;
}
.team .single-team .social-links .social li:last-child {
  margin-right: 0px;
}
.team .single-team .social-links .social li a {
  color: #666;
  display: block;
  font-size: 14px;
}
.team .single-team .social-links .social li a:hover {
  color: var(--primary-color);
}

/*
 * Contact
 */
#myMap {
  height: 500px;
  width: 100%;
}

.contact-us {
  position: relative;
  z-index: 43;
}
.contact-us .title {
  margin-bottom: 30px;
}
.contact-us .title h4 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--primary-color);
}
.contact-us .title h3 {
  font-size: 25px;
  text-transform: capitalize;
  font-weight: 600;
}
.contact-us .single-head {
  padding: 50px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1019607843);
  height: 100%;
}
.contact-us .single-info {
  text-align: left;
  margin-bottom: 30px;
}
.contact-us .single-info i {
  color: #fff;
  font-size: 18px;
  display: inline-block;
  margin-bottom: 15px;
  height: 40px;
  width: 40px;
  display: block;
  text-align: center;
  border-radius: 3px;
  line-height: 40px;
  background: var(--primary-color);
}
.contact-us .single-info ul li {
  margin-bottom: 5px;
}
.contact-us .single-info ul li:last-child {
  margin-bottom: 0;
}
.contact-us .single-info ul li a {
  font-weight: 400;
}
.contact-us .single-info ul li a:hover {
  color: var(--primary-color);
}
.contact-us .single-info .title {
  margin-bottom: 10px;
  font-weight: 500;
  color: #333;
  font-size: 18px;
}
.contact-us .form-main {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1019607843);
  padding: 50px;
}

.sitemap {
  padding-top: 40px;
  padding-bottom: 20px;
}
.sitemap h1 {
  margin-bottom: 14px;
}
.sitemap ul {
  padding: 0 20px;
}
.sitemap ul li {
  padding: 0;
  line-height: normal;
}
.sitemap .brands {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.sitemap .brands > .brand {
  width: 33.3333333333%;
  text-align: center;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .sitemap .brands > .brand {
    width: 100%;
  }
}
.sitemap .products {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.sitemap .products > .product {
  width: 50%;
  padding-right: 20px;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .sitemap .products > .product {
    width: 100%;
    padding-right: 0;
  }
}
