:root, [data-theme="default"] {
    --font-family:              Inter, sans-serif;
    --color-white:              #ffffff;
    --color-black:              #000000;
    --color-primary:            #1F3346;
    --color-secondary:          #87552B;
    --color-placeholder:        #66737E;
    --color-border:             #E3E3E3;
    --bs-primary: #1F3346;
    --bs-secondary: #87552B;
  }
  
  .nav-btn {
    width: 28px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    right: 0;
    z-index: 0;
    padding: 0;
    border: none;
    margin-left: 5px;
  }
  
  @media only screen and (min-width: 992px) {
    .nav-btn {
      display: none;
    }
  }
  
  .nav-btn span {
    display: block;
    border-radius: 100px;
    height: 3px;
    background-color: var(--color-primary);
    margin-bottom: 5px;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  .nav-btn span:last-child {
    margin-bottom: 0;
  }
  
  .nav-btn span:nth-child(2) {
    margin-left: 6px;
  }
  
  .nav-btn:hover span:nth-child(2) {
    margin-left: 0;
  }
  
  .nav-btn[aria-expanded="true"] span {
    height: 4px;
  }
  
  .nav-btn[aria-expanded="true"] span:nth-child(1) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 9px;
  }
  
  .nav-btn[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-btn[aria-expanded="true"] span:last-child {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    bottom: 9px;
  }
  
  .nav-btn.nav-ham {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    width: 49px;
    height: 49px;
    padding: 12px;
  }
  
  .nav-btn.nav-ham span {
    height: 4px;
  }
  
  .nav-btn.nav-ham span:nth-child(1) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 9px;
  }
  
  .nav-btn.nav-ham span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-btn.nav-ham span:last-child {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    bottom: 9px;
  }
  
  .container {
    position: relative;
    max-width: 1260px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  header {
    padding-top: 15px;
    position: fixed;
    left: 0;
    /*top: 0;*/
    right: 0;
    z-index: 99;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  @media only screen and (max-width: 991px) {
    header {
      padding-top: 0;
    }
  }
  
  header.sticky {
    padding-top: 0;
  }
  
  header.sticky .header-inner {
    max-width: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  header .header-inner {
    margin: 0 auto;
    max-width: 1220px;
    background-color: var(--color-white);
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  header .navbar {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 0;
    max-width: 1220px;
    padding: 7px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  @media only screen and (max-width: 991px) {
    header .navbar {
      padding-left: 15px;
      padding-right: 15px;
    }
  }
  
  header .navbar-brand {
    margin-right: 0;
    padding: 0;
    max-width: 61px;
  }
  
  header .navbar-brand img {
    max-width: 100%;
    height: auto;
  }
  
  header .header-get-quote-btn
   {
    border-radius: 8px;
    background: linear-gradient(135deg, #46311F 31%, #9A6434 130%);
    line-height: 40px;
    padding: 0 17px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    white-space: nowrap;
    margin-right: 10px;
  }
  
  header .header-get-quote-btn:hover, header .header-get-quote-btn:focus, header .header-get-quote-btn:active {
    color: var(--color-white);
  }
  
  header .header-navbar {
    -webkit-box-flex: initial;
        -ms-flex-positive: initial;
            flex-grow: initial;
    margin-right: 26px;
  }
  
  @media only screen and (max-width: 991px) {
    header .header-navbar {
      position: fixed;
      background-color: var(--color-white);
      padding: 10px 20px;
      width: 250px;
      left: -250px;
      top: 0;
      bottom: 0;
      height: 100% !important;
      -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
              box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
      -webkit-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
      z-index: 9999;
      margin-right: 0;
    }
    header .header-navbar.show {
      left: 0;
    }
  }
  
  header .header-navbar ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  @media only screen and (max-width: 991px) {
    header .header-navbar ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: stretch;
          -ms-flex-align: stretch;
              align-items: stretch;
    }
  }
  
  header .header-navbar ul li {
    margin-right: 45px;
  }
  
  @media only screen and (max-width: 1149px) {
    header .header-navbar ul li {
      margin-right: 25px;
    }
  }
  
  @media only screen and (max-width: 991px) {
    header .header-navbar ul li {
      margin-right: 0;
    }
  }
  
  header .header-navbar ul li:last-child {
    margin-right: 0;
  }
  
  header .header-navbar ul li a {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
  }
  
  @media only screen and (max-width: 991px) {
    header .header-navbar ul li a {
      font-size: 20px;
      font-weight: 500;
      line-height: 40px;
      color: var(--color-primary);
    }
  }
  
  header .header-navbar ul li a:hover, header .header-navbar ul li a:focus, header .header-navbar ul li a:active {
    color: var(--color-secondary);
  }
  
  header .header-navbar ul li.current_page_item a {
    color: var(--color-secondary);
  }
  
  header .header-search-cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  
  header .header-search-cart .cart-section {
    position: relative;
  }
  
  header .header-search-cart .cart-section .icon-cart {
    width: 26px;
    height: 26px;
    margin-right: 15px;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    cursor: pointer;
  }
  
  header .header-search-cart .cart-section .icon-cart svg path {
    fill: var(--color-primary);
  }
  
  header .header-search-cart .cart-section .icon-cart .cart-numbring {
    background: var(--color-secondary);
    font-size: 12px;
    font-weight: 700;
    color: var(--color-white);
    position: absolute;
    right: -8px;
    top: -4px;
    border-radius: 100px;
    padding: 0 5px;
  }
  
  header .header-search-cart .cart-section .icon-cart:hover {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
  
  header .header-search-cart .cart-section .cart-dropdown {
    border: none;
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
    min-width: 300px;
    padding: 25px;
    margin-top: 25px;
    margin-right: -7px;
  }
  
  header .header-search-cart .cart-section .cart-dropdown .item-count-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: var(--color-border) 1px solid;
    padding: 0 0 10px;
    margin-bottom: 10px;
  }
  
  header .header-search-cart .cart-section .cart-dropdown .item-count-section .item-count, header .header-search-cart .cart-section .cart-dropdown .item-count-section .view-cart {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
  }
  
  header .header-search-cart .cart-section .cart-dropdown .item-count-section .view-cart {
    text-decoration: underline;
  }
  
  header .header-search-cart .cart-section .cart-dropdown .item-count-section .view-cart:hover {
    color: var(--color-secondary);
  }
  
  header .header-search-cart .cart-section .cart-dropdown .header-cart-items {
    max-height: 300px;
    overflow: auto;
  }
  
  header .header-search-cart .cart-section .cart-dropdown .header-cart-items .header-cart-item {
    padding: 10px 0;
    border-bottom: var(--color-border) 1px solid;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  header .header-search-cart .cart-section .cart-dropdown .header-cart-items .header-cart-item .image-wd-times {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  header .header-search-cart .cart-section .cart-dropdown .header-cart-items .header-cart-item .image-wd-times .header-cart-item-image {
    overflow: hidden;
    border-radius: 5px;
    width: 70px;
    height: 70px;
    background-color: var(--color-border);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  
  header .header-search-cart .cart-section .cart-dropdown .header-cart-items .header-cart-item .image-wd-times .header-cart-item-cross {
    width: 12px;
    height: 12px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin: 0 13px 0 5px;
  }
  
  header .header-search-cart .cart-section .cart-dropdown .header-cart-items .header-cart-item .header-cart-details {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0 0 0 10px;
  }
  
  header .header-search-cart .cart-section .cart-dropdown .header-cart-items .header-cart-item .header-cart-details h2 {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 3px;
    max-height: 33px;
    overflow: hidden;
  }
  
  header .header-search-cart .cart-section .cart-dropdown .header-cart-items .header-cart-item .header-cart-details h2 a {
    color: var(--color-secondary);
  }
  
  header .header-search-cart .cart-section .cart-dropdown .header-cart-items .header-cart-item .header-cart-details p {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
    margin: 0;
  }
  
  header .header-search-cart .cart-section .cart-dropdown .header-cart-subtotal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 0 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-secondary);
  }
  
  header .header-search-cart .cart-section .cart-dropdown .header-checkout-dd-btn {
    border-radius: 8px;
    background: linear-gradient(135deg, #46311F 31%, #9A6434 130%);
    line-height: 40px;
    padding: 0 17px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    white-space: nowrap;
    margin-right: 10px;
    width: 100%;
    border: none;
  }
  
  header .header-search-cart .cart-section .cart-dropdown .header-checkout-dd-btn:hover, header .header-search-cart .cart-section .cart-dropdown .header-checkout-dd-btn:focus, header .header-search-cart .cart-section .cart-dropdown .header-checkout-dd-btn:active {
    color: var(--color-white);
  }
  
  .hero-section {
    background: var(--color-primary) url(/wp-content/themes/fivox-wptheme/images/hero-main-full-bg.png) center center no-repeat;
    background-size: cover;
    padding: 125px 0 62px;
  }
  
  @media only screen and (max-width: 991px) {
    .hero-section {
      padding: 105px 0 62px;
    }
  }
  
  .hero-section .hero-inner-slider-sec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  @media only screen and (max-width: 575px) {
    .hero-section .hero-inner-slider-sec {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
    }
  }
  
  .hero-section .hero-inner-slider-sec .hero-inner-slider-left {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 1%;
    padding: 0 0 0 50px;
  }
  
  @media only screen and (max-width: 575px) {
    .hero-section .hero-inner-slider-sec .hero-inner-slider-left {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2;
      width: 100%;
      padding: 0 10px;
    }
  }
  
  .hero-section .hero-inner-slider-sec .hero-inner-slider-right {
    margin-left: 70px;
    margin-right: 35px;
  }
  
  @media only screen and (max-width: 991px) {
    .hero-section .hero-inner-slider-sec .hero-inner-slider-right {
      max-width: 290px;
      margin-left: 40px;
    }
  }
  
  @media only screen and (max-width: 575px) {
    .hero-section .hero-inner-slider-sec .hero-inner-slider-right {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1;
      margin: 0 0 15px;
    }
  }
  
  .hero-section .hero-inner-slider-sec .hero-inner-slider-right img {
    max-width: 100%;
    height: auto;
  }
  
  .hero-section .hero-main-title {
    font-size: 52px;
    font-weight: 900;
    color: var(--color-white);
    display: inline-block;
    margin-bottom: 27px;
    text-shadow: 0 2px 7px rgba(0, 0, 0, 0.5);
  }
  
  @media only screen and (max-width: 991px) {
    .hero-section .hero-main-title {
      font-size: 39px;
    }
  }
  
  @media only screen and (max-width: 575px) {
    .hero-section .hero-main-title {
      font-size: 28px;
      margin-bottom: 15px;
    }
  }
  
  .hero-section .hero-main-desc {
    font-size: 24px;
    font-weight: 600;
    color: #8BC5FA;
    margin-bottom: 34px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  @media only screen and (max-width: 991px) {
    .hero-section .hero-main-desc {
      font-size: 19px;
      margin-bottom: 25px;
    }
  }
  
  @media only screen and (max-width: 575px) {
    .hero-section .hero-main-desc {
      font-size: 18px;
    }
  }
  
  .hero-section .carousel-control-next, .hero-section .carousel-control-prev {
    width: auto;
  }
  
  .hero-section .carousel-control-next {
    right: -20px;
  }
  
  @media only screen and (max-width: 991px) {
    .hero-section .carousel-control-next {
      right: -8px;
    }
  }
  
  .hero-section .carousel-control-prev {
    left: -20px;
  }
  
  @media only screen and (max-width: 991px) {
    .hero-section .carousel-control-prev {
      left: -8px;
    }
  }
  
  .hero-section .carousel-control-prev-icon {
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='14' viewBox='0 0 16 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 7C16 6.44522 15.7972 5.97986 15.3917 5.60392C14.9875 5.22928 14.4862 5.04196 13.8878 5.04196L7.12871 5.04196L9.0297 3.27972C9.41694 2.92075 9.61056 2.46387 9.61056 1.90909C9.61056 1.35431 9.41694 0.897436 9.0297 0.538461C8.64246 0.179487 8.14961 5.97443e-07 7.55115 6.23603e-07C6.95269 6.49762e-07 6.45985 0.179487 6.07261 0.538461L0.580857 5.62937C0.369636 5.82518 0.21967 6.0373 0.130957 6.26573C0.0436526 6.49417 -3.17392e-07 6.73893 -3.0598e-07 7C-2.94568e-07 7.26107 0.0436527 7.50583 0.130957 7.73427C0.21967 7.9627 0.369636 8.17483 0.580857 8.37063L6.07261 13.4615C6.45985 13.8205 6.95269 14 7.55115 14C8.14961 14 8.64246 13.8205 9.0297 13.4615C9.41694 13.1026 9.61056 12.6457 9.61056 12.0909C9.61056 11.5361 9.41694 11.0793 9.0297 10.7203L7.12871 8.95804L13.8878 8.95804C14.4862 8.95804 14.9875 8.77007 15.3917 8.39413C15.7972 8.01949 16 7.55478 16 7Z' fill='white'/%3E%3C/svg%3E");
    background-size: auto;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: rgba(107, 107, 107, 0.3);
    border-radius: 5px;
  }
  
  .hero-section .carousel-control-next-icon {
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='14' viewBox='0 0 16 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.0598e-07 7C3.3023e-07 6.44522 0.202773 5.97986 0.608318 5.60392C1.01245 5.22928 1.51375 5.04196 2.11221 5.04196L8.87129 5.04196L6.9703 3.27972C6.58306 2.92075 6.38944 2.46387 6.38944 1.90909C6.38944 1.35431 6.58306 0.897436 6.9703 0.538461C7.35754 0.179487 7.85039 5.97443e-07 8.44885 6.23603e-07C9.04731 6.49762e-07 9.54015 0.179487 9.92739 0.538461L15.4191 5.62937C15.6304 5.82518 15.7803 6.0373 15.869 6.26573C15.9563 6.49417 16 6.73893 16 7C16 7.26107 15.9563 7.50583 15.869 7.73427C15.7803 7.9627 15.6304 8.17483 15.4191 8.37063L9.92739 13.4615C9.54015 13.8205 9.04731 14 8.44885 14C7.85039 14 7.35754 13.8205 6.9703 13.4615C6.58306 13.1026 6.38944 12.6457 6.38944 12.0909C6.38944 11.5361 6.58306 11.0793 6.9703 10.7203L8.87129 8.95804L2.11221 8.95804C1.51375 8.95804 1.01245 8.77007 0.608318 8.39413C0.202773 8.01949 2.8173e-07 7.55478 3.0598e-07 7Z' fill='white'/%3E%3C/svg%3E");
    background-size: auto;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: rgba(107, 107, 107, 0.3);
    border-radius: 5px;
  }
  
  .grdnt-btn, .hbspt-form #hsForm_d27fa088-001e-4145-a152-66d5ed3dceea > div > div.actions > input.hs-button {
    border-radius: 8px;
    background: linear-gradient(135deg, #46311F 31%, #9A6434 130%);
    position: relative;
    padding: 0 24px;
    display: inline-block;
    line-height: 60px;
    height: 60px;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  }

  #hsForm_4244d0c2-4c8e-4017-a820-b7100f84b8ad > div > div.actions
  {
    display: none;
  }
  
  @media only screen and (max-width: 991px) {
    .grdnt-btn {
      line-height: 55px;
      height: 55px;
      font-size: 17px;
    }
  }
  
  .grdnt-btn:hover, .grdnt-btn:focus, .grdnt-btn:active {
    color: var(--color-white);
  }
  
  .main-subscription-sec {
    background-color: #EFEFEF;
    border-top: 2px solid var(--color-white);
  }
  
  .main-subscription-sec.brdr-none {
    border: none;
  }
  
  .main-subscription-sec .news-subsc-sec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin-bottom: 25px;
  }

  .home .main-subscription-sec .news-subsc-sec
  {
    margin-top: -35px;
    margin-bottom: 20px;
  }
  
  @media only screen and (max-width: 767px) {
    .main-subscription-sec .news-subsc-sec {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: stretch;
          -ms-flex-align: stretch;
              align-items: stretch;
    }
  }
  
  .main-subscription-sec .news-subsc-sec.hero-marg {
    margin-top: -35px;
  }
  
  .main-subscription-sec .news-subsc-sec .news-subsc-left {
    background-color: var(--color-primary);
    padding: 0 40px;
    height: 98px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  
  @media only screen and (max-width: 991px) {
    .main-subscription-sec .news-subsc-sec .news-subsc-left {
      padding: 0 20px;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .main-subscription-sec .news-subsc-sec .news-subsc-left {
      height: auto;
      padding: 20px;
    }
  }
  
  .main-subscription-sec .news-subsc-sec .news-subsc-left .frst-ttl {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    text-shadow: 0 2px 7px rgba(0, 0, 0, 0.5);
    margin-bottom: 6px;
  }
  
  .main-subscription-sec .news-subsc-sec .news-subsc-left .scnd-ttl {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-white);
    text-shadow: 0 2px 7px rgba(0, 0, 0, 0.5);
  }
  
  .main-subscription-sec .news-subsc-sec .news-subsc-cnt-icon {
    width: 0px;
    position: relative;
    z-index: 1;
  }
  
  @media only screen and (max-width: 767px) {
    .main-subscription-sec .news-subsc-sec .news-subsc-cnt-icon {
      display: none;
    }
  }
  
  .main-subscription-sec .news-subsc-sec .news-subsc-cnt-icon .cnt-icon-bg {
    width: 69.55px;
    height: 69.55px;
    background-color: var(--color-white);
    -webkit-transform: rotate(128deg);
            transform: rotate(128deg);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(135deg);
            transform: translate(-50%, -50%) rotate(135deg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .main-subscription-sec .news-subsc-sec .news-subsc-cnt-icon .cnt-icon-bg .cnt-icon {
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
  
  .main-subscription-sec .news-subsc-sec .news-subsc-right {
    background-color: var(--color-secondary);
    padding: 0 38px 0 80px;
    height: 98px;
    max-height: 98px;
    /*
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    */
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    position: relative;
  }
  
  @media only screen and (max-width: 991px) {
    .main-subscription-sec .news-subsc-sec .news-subsc-right {
      padding: 0 20px 0 60px;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .main-subscription-sec .news-subsc-sec .news-subsc-right {
      padding: 20px 20px 5px;
    }
  }
  
  @media only screen and (max-width: 575px) {
    .main-subscription-sec .news-subsc-sec .news-subsc-right {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: stretch;
          -ms-flex-align: stretch;
              align-items: stretch;
    }
  }
  
  .main-subscription-sec .news-subsc-sec .news-subsc-right .input-alerts.ssucs {
    position: absolute;
    left: 80px;
    right: 38px;
    top: 7px;
    margin: 0;
    font-size: 12px;
    padding: 1px 7px;
  }
  
  @media only screen and (max-width: 767px) {
    .main-subscription-sec .news-subsc-sec .news-subsc-right .input-alerts.ssucs {
      left: 20px;
      right: 20px;
    }
  }
  
  .main-subscription-sec .news-subsc-sec .news-subsc-right .subsc-hero-name-main,
  .main-subscription-sec .news-subsc-sec .news-subsc-right div.input {
    position: relative;
    margin: 0 20px 0 0;
  }
  
  @media only screen and (max-width: 575px) {
    .main-subscription-sec .news-subsc-sec .news-subsc-right .subsc-hero-name-main,
    .main-subscription-sec .news-subsc-sec .news-subsc-right div.input {
      margin: 0;
    }
  }
  
  .main-subscription-sec .news-subsc-sec .news-subsc-right .subsc-hero-name,
  .main-subscription-sec .news-subsc-sec .news-subsc-right .hs-input {
    border: none;
    border-bottom: 2px solid #E1AD82;
    height: 45px;
    line-height: 45px;
    margin: 0;
    background-color: transparent;
    font-size: 18px;
    font-weight: 500;
    color: #FFE1C8;
    width: 100%;
  }
  
  .main-subscription-sec .news-subsc-sec .news-subsc-right .subsc-hero-email-main {
    position: relative;
  }
  
  .main-subscription-sec .news-subsc-sec .news-subsc-right .subsc-hero-email {
    border: none;
    border-bottom: 2px solid #E1AD82;
    height: 45px;
    line-height: 45px;
    margin: 0 30px 0 0;
    background-color: transparent;
    font-size: 18px;
    font-weight: 500;
    color: #FFE1C8;
    width: 100%;
  }
  
  .main-subscription-sec .news-subsc-sec .news-subsc-right .subsc-hero-name-main .input-alerts, 
  .main-subscription-sec .news-subsc-sec .news-subsc-right .subsc-hero-email-main .input-alerts/*,
  .main-subscription-sec .news-subsc-sec .news-subsc-right .hs-error-msgs*/ {
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    font-size: 11px;
    padding: 1px 8px;
  }
  
  @media only screen and (max-width: 575px) {
    .main-subscription-sec .news-subsc-sec .news-subsc-right .subsc-hero-name-main .input-alerts, 
    .main-subscription-sec .news-subsc-sec .news-subsc-right .subsc-hero-email-main .input-alerts/*,
    .main-subscription-sec .news-subsc-sec .news-subsc-right .hs-error-msgs*/ {
      position: relative;
      top: 0;
    }
  }

  .hbspt-form div.actions > input,
  .hbspt-form label:not(.hs-error-msg)
  {
    display: none;
  }

  .hbspt-form .hs-error-msgs, .hbspt-form .hs-error-msgs li {
    margin-bottom: 0px;
    color: var(--bs-warning);
    line-height: 12px;
  }

  .hbspt-form .hs-error-msgs label
  {
    display: block;
    font-size: 10px;
    color: var(--bs-warning);
    margin-bottom: 2px;
  }

  .hbspt-form input.invalid::placeholder
  {
    color: var(--bs-warning) !important;
  }

  .main-subscription-sec .news-subsc-sec .news-subsc-right .subsc-hero-btn {
    border: none;
    background-color: transparent;
    width: 45px;
    height: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
  }
  
  @media only screen and (max-width: 575px) {
    .main-subscription-sec .news-subsc-sec .news-subsc-right .subsc-hero-btn {
      width: 100%;
    }
  }
  
  .main-subscription-sec .news-subsc-sec .news-subsc-right .subsc-hero-btn span {
    display: none;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white);
    padding-right: 10px;
  }
  
  @media only screen and (max-width: 575px) {
    .main-subscription-sec .news-subsc-sec .news-subsc-right .subsc-hero-btn span {
      display: initial;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .main-subscription-sec .news-subsc-sec .news-subsc-right .subsc-hero-btn svg {
      width: 25px;
      height: 25px;
    }
  }
  
  @media only screen and (max-width: 575px) {
    .main-subscription-sec .news-subsc-sec .news-subsc-right .subsc-hero-btn svg {
      width: 20px;
      height: 20px;
    }
  }
  
  .hero-bottom-navigations {
    padding: 20px;
    padding-bottom: 0;
    margin-bottom: 30px;
    background-color: var(--color-white);
  }
  
  .hero-bottom-navigations .navigations-ttl-sec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 15px;
  }
  
  .hero-bottom-navigations .navigations-ttl-sec .ttls-sec {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 1%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  
  .hero-bottom-navigations .navigations-ttl-sec .ttls-sec .sml-ttl {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 2px;
    text-transform: uppercase;
  }
  
  .hero-bottom-navigations .navigations-ttl-sec .ttls-sec .lg-ttl {
    font-size: 24px;
    font-weight: 900;
    color: var(--color-primary);
  }
  
  .hero-bottom-navigations .navigations-ttl-sec .view-all-btn {
    width: 70px;
    height: 25px;
    border-radius: 5px;
    background-color: #6B6B6B;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .hero-bottom-navigations .navigations-ttl-sec .view-all-btn:hover {
    background-color: #403F3F;
  }
  
  .hero-bottom-navigations .hero-bottom-navs-blocks {
    min-height: calc(100% - 25px);
    margin-bottom: 25px;
    border: #EFEFEF 1px solid;
    border-radius: 20px;
    padding: 11px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  .hero-bottom-navigations .hero-bottom-navs-blocks .icon {
    width: 70px;
    height: 70px;
    border-radius: 100px;
    background-color: #EFEFEF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 13px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  .hero-bottom-navigations .hero-bottom-navs-blocks .text {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
  }
  
  .hero-bottom-navigations .hero-bottom-navs-blocks:hover {
    border-color: var(--color-primary);
    border-radius: 10px;
  }
  
  .hero-bottom-navigations .hero-bottom-navs-blocks:hover .icon {
    background-color: var(--color-primary);
  }
  
  .hero-bottom-navigations .hero-bottom-navs-blocks:hover .icon svg path {
    fill: var(--color-white);
  }
  
  .home-quote-section, .home-info-section {
    padding: 50px 0;
    background-color: var(--color-primary);
  }
  
  @media only screen and (max-width: 767px) {
    .home-quote-section, .home-info-section {
      padding: 40px 0;
    }
  }
  
  .home-quote-section .quote-main-image, .home-info-section .info-main-image {
    text-align: center;
  }
  
  @media only screen and (max-width: 991px) {
    .home-quote-section .quote-main-image, .home-info-section .info-main-image {
      margin-bottom: 30px;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .home-quote-section .quote-main-image, .home-info-section .info-main-image {
      display: none;
    }
  }
  
  .home-quote-section .quote-main-image img, .home-info-section .info-main-image img {
    max-width: 100%;
    height: auto;
  }
  
  .home-quote-section .quote-title-section h4, .home-info-section .info-title-section h4 {
    font-size: 17px;
    font-weight: 700;
    color: #8BC5FA;
    margin-bottom: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  @media only screen and (max-width: 767px) {
    .home-quote-section .quote-title-section h4, .home-info-section .info-title-section h4 {
      font-size: 15px;
    }
  }
  
  @media only screen and (max-width: 575px) {
    .home-quote-section .quote-title-section h4, .home-info-section .info-title-section h4 {
      font-size: 14px;
    }
  }
  
  .home-quote-section .quote-title-section h3, .home-info-section .info-title-section h3 {
    font-size: 45px;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 50px;
    text-shadow: 0 2px 7px rgba(0, 0, 0, 0.5);
  }
  
  @media only screen and (max-width: 767px) {
    .home-quote-section .quote-title-section h3, .home-info-section .info-title-section h3 {
      font-size: 35px;
      margin-bottom: 30px;
    }
  }
  
  @media only screen and (max-width: 575px) {
    .home-quote-section .quote-title-section h3, .home-info-section .info-title-section h3 {
      font-size: 30px;
      line-height: 1;
    }
  }
  
  .quote-radio-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 10px;
  }
  
  @media only screen and (max-width: 767px) {
    .quote-radio-main {
      margin-bottom: 15px;
    }
  }
  
  .form-check.quote-radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    border: 2px solid var(--color-white);
    border-radius: 8px;
    margin: 0 10px 10px 0;
    height: 34px;
    padding: 5px 3px;
  }
  
  @media only screen and (max-width: 767px) {
    .form-check.quote-radio {
      height: 36px;
    }
  }
  
  .form-check.quote-radio .form-check-label {
    font-size: 17px;
    font-weight: 500;
    color: var(--color-primary);
    padding-right: 5px;
  }
  
  @media only screen and (max-width: 767px) {
    .form-check.quote-radio .form-check-label {
      font-size: 16px;
    }
  }
  
  .form-check.quote-radio .form-check-input {
    width: 24px;
    height: 24px;
    border-radius: 100px;
    background-color: #898989;
    border: none;
    margin: 0 7px 0 0;
  }
  
  .form-check.quote-radio .form-check-input:focus {
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  
  .form-check.quote-radio .form-check-input:checked {
    background-color: #20AE61;
    border: none;
  }
  
  .form-check.quote-radio .form-check-input:checked[type=radio] {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.4536 0.371155C12.1186 0.916676 12.186 1.86432 11.6041 2.48777L6.00411 8.48776C5.71251 8.80019 5.29582 8.98535 4.85324 8.99917C4.41065 9.01298 3.98175 8.85422 3.66862 8.56066L0.468628 5.56067C-0.156209 4.97488 -0.156209 4.02514 0.468628 3.43935C1.09347 2.85357 2.10653 2.85357 2.73137 3.43935L4.72205 5.30562L9.19586 0.512262C9.77775 -0.111191 10.7886 -0.174367 11.4536 0.371155Z' fill='white'/%3E%3C/svg%3E");
    background-position: center center;
    background-size: auto;
  }
  
  .our-partners-sec {
    background-color: #F2EDE8;
    padding: 50px 0;
  }
  
  @media only screen and (max-width: 767px) {
    .our-partners-sec {
      padding: 35px 0;
    }
  }
  
  .text-title-section {
    margin-bottom: 41px;
    padding-right: 100px;
  }
  
  @media only screen and (max-width: 767px) {
    .text-title-section {
      margin-bottom: 30px;
    }
  }
  
  .text-title-section .text-title-small {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 3px;
    text-transform: uppercase;
  }
  
  @media only screen and (max-width: 991px) {
    .text-title-section .text-title-small {
      font-size: 14px;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .text-title-section .text-title-small {
      font-size: 15px;
      margin-bottom: 0;
    }
  }
  
  @media only screen and (max-width: 575px) {
    .text-title-section .text-title-small {
      font-size: 14px;
    }
  }
  
  .text-title-section .text-title-lrg {
    font-size: 45px;
    font-weight: 900;
    color: var(--color-primary);
  }
  
  @media only screen and (max-width: 991px) {
    .text-title-section .text-title-lrg {
      font-size: 38px;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .text-title-section .text-title-lrg {
      font-size: 35px;
    }
  }
  
  @media only screen and (max-width: 575px) {
    .text-title-section .text-title-lrg {
      line-height: 1;
      font-size: 30px;
    }
  }
  
  .text-title-section.inverse .text-title-small {
    color: var(--color-primary);
  }
  
  .text-title-section.inverse .text-title-lrg {
    color: var(--color-secondary);
  }
  
  .prof-team-inner {
    position: relative;
  }
  
  .prof-team-inner .prof-team-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 12px;
    background-color: var(--color-white);
    border-bottom: 2px solid var(--color-secondary);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  .prof-team-inner .prof-team-block:hover {
    -webkit-box-shadow: 4px 4px 25px rgba(0, 0, 0, 0.2);
            box-shadow: 4px 4px 25px rgba(0, 0, 0, 0.2);
  }
  
  .prof-team-inner .prof-team-block .team-img {
    margin-bottom: 13px;
    position: relative;
  }
  
  .prof-team-inner .prof-team-block .team-img img {
    max-width: 100%;
    height: auto;
  }
  
  .prof-team-inner .prof-team-block .team-user-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-secondary);
    text-align: center;
    margin-bottom: 5px;
  }
  
  .prof-team-inner .prof-team-block .team-user-det {
    font-size: 17px;
    font-weight: 500;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 40px;
  }
  
  .prof-team-inner .prof-team-block .team-user-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .prof-team-inner .prof-team-block .team-user-social a {
    padding: 0 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  
  @media only screen and (max-width: 991px) {
    .prof-team-inner .prof-team-block .team-user-social a {
      padding: 0 12px;
    }
  }
  
  .prof-team-inner .prof-team-block .team-user-social a:hover svg path {
    fill: var(--color-primary);
  }
  
  .prof-team-inner .owl-nav {
    position: absolute;
    right: 0;
    top: -80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  
  .prof-team-inner .owl-nav .owl-prev {
    position: initial;
    margin-right: 5px;
    background-color: #6B6B6B !important;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  .prof-team-inner .owl-nav .owl-prev:hover {
    background-color: #484848 !important;
  }
  
  .prof-team-inner .owl-nav .owl-next {
    position: initial;
    margin-right: 0;
    background-color: #6B6B6B !important;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  .prof-team-inner .owl-nav .owl-next:hover {
    background-color: #484848 !important;
  }
  
  .home-testimonials {
    background-color: #FFFBF8;
    padding: 50px 0;
  }
  
  .home-testimonials .home-testimonials-inner {
    position: relative;
  }
  
  .home-testimonials .home-testimonials-block {
    position: relative;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    background-color: #EFEFEF;
    border-bottom: 2px solid var(--color-secondary);
  }
  
  .home-testimonials .home-testimonials-block .testimonials-quote-icon {
    margin-bottom: 23px;
  }
  
  .home-testimonials .home-testimonials-block .testimonials-quote-icon img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  
  .home-testimonials .home-testimonials-block .testimonials-quotes {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 39px;
    color: var(--color-primary);
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 1%;
    min-height: 162px;
  }
  
  @media only screen and (max-width: 767px) {
    .home-testimonials .home-testimonials-block .testimonials-quotes {
      font-size: 16px;
      line-height: 1.3;
    }
  }
  
  .home-testimonials .home-testimonials-block .testimonials-quote-user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  
  .home-testimonials .home-testimonials-block .testimonials-quote-user .testimonials-quote-user-icon {
    width: 45px;
    height: 45px;
    border-radius: 100px;
    background-color: #D9D9D9;
    margin-right: 15px;
  }
  
  .home-testimonials .home-testimonials-block .testimonials-quote-user .testimonials-quote-user-icon img {
    max-width: 100%;
    height: auto;
  }
  
  .home-testimonials .home-testimonials-block .testimonials-quote-user .testimonials-quote-user-txt-sec {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 1%;
  }
  
  .home-testimonials .home-testimonials-block .testimonials-quote-user .testimonials-quote-user-txt-sec .quts-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  
  .home-testimonials .home-testimonials-block .testimonials-quote-user .testimonials-quote-user-txt-sec .quts-founder {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  
  .home-testimonials .owl-nav {
    position: absolute;
    right: 0;
    top: -80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  
  .home-testimonials .owl-nav .owl-prev {
    position: initial;
    margin-right: 5px;
    background-color: #6B6B6B !important;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  .home-testimonials .owl-nav .owl-prev:hover {
    background-color: #484848 !important;
  }
  
  .home-testimonials .owl-nav .owl-next {
    position: initial;
    margin-right: 0;
    background-color: #6B6B6B !important;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  .home-testimonials .owl-nav .owl-next:hover {
    background-color: #484848 !important;
  }
  
  footer {
    padding: 25px 0;
    background-color: var(--color-primary);
  }
  
  @media only screen and (max-width: 991px) {
    footer {
      padding: 18px 0;
    }
  }
  
  @media only screen and (max-width: 767px) {
    footer {
      padding: 10px 0;
    }
  }
  
  footer .footer-copyright-sec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  @media only screen and (max-width: 767px) {
    footer .footer-copyright-sec {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
    }
  }
  
  footer .footer-copyright-sec .footer-logo {
    margin-right: 10px;
  }
  
  footer .footer-copyright-sec .footer-logo img {
    max-width: 100%;
    height: auto;
  }
  
  footer .footer-copyright-sec .footer-copyright-text {
    font-size: 15px;
    font-weight: 400;
    color: var(--color-white);
  }
  
  footer .footer-copyright-sec .footer-copyright-text a {
    color: var(--color-white);
  }
  
  footer .footer-copyright-sec .footer-copyright-text a:hover, footer .footer-copyright-sec .footer-copyright-text a:focus, footer .footer-copyright-sec .footer-copyright-text a:active {
    color: var(--color-white);
    text-decoration: underline;
  }
  
  @media only screen and (max-width: 767px) {
    footer .footer-social {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      float: none;
    }
  }
  
  .footer-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    float: right;
  }
  
  .footer-social a {
    border-radius: 5px;
    border: 1px solid var(--color-white);
    width: 32px;
    height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 10px;
  }
  
  .footer-social a svg path {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  .footer-social a:hover {
    background-color: var(--color-white);
  }
  
  .footer-social a:hover svg path {
    fill: var(--color-primary);
  }
  
  .others-heros {
    padding: 143px 0 62px;
    background-color: var(--color-primary);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  @media only screen and (max-width: 991px) {
    .others-heros {
      padding: 113px 0 35px;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .others-heros {
      padding: 93px 0 15px;
    }
  }
  
  .others-heros .smll-txt {
    font-size: 24px;
    font-weight: 600;
    color: #8BC5FA;
    margin-bottom: 5px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
  }
  
  @media only screen and (max-width: 991px) {
    .others-heros .smll-txt {
      font-size: 20px;
      margin-bottom: 0;
    }
  }
  
  @media only screen and (max-width: 575px) {
    .others-heros .smll-txt {
      font-size: 18px;
    }
  }
  
  .others-heros .lrg-txt {
    font-size: 52px;
    font-weight: 900;
    color: var(--color-white);
    text-align: center;
    text-shadow: 0 2px 7px rgba(0, 0, 0, 0.5);
  }
  
  @media only screen and (max-width: 991px) {
    .others-heros .lrg-txt {
      font-size: 45px;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .others-heros .lrg-txt {
      line-height: 1.2;
    }
  }
  
  @media only screen and (max-width: 575px) {
    .others-heros .lrg-txt {
      font-size: 35px;
    }
  }
  
  .f8bg {
    background-color: #FFFBF8;
  }
  
  .f8bg.wd-padd {
    padding: 30px 0;
  }
  
  .about-text-sec {
    background-color: #EFEFEF;
    padding: 25px;
    border-bottom: 2px solid var(--color-secondary);
  }
  
  .about-text-sec .about-text-det {
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    color: var(--color-primary);
    margin-bottom: 15px;
  }
  
  .about-text-sec .about-text-det strong {
    font-weight: 700;
  }
  
  .about-text-sec .about-text-det-subtitle {
    font-size: 17px;
    line-height: 25px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
  }
  
  .about-text-inner-block {
    min-height: 100%;
    background-color: var(--color-white);
    padding: 20px;
  }
  
  .about-text-inner-block .sbs-ttl {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    margin-bottom: 5px;
  }
  
  .about-text-inner-block .sbs-det {
    font-size: 17px;
    font-weight: 500;
    color: var(--color-primary);
  }
  
  .our-partners-sec-btn-padd {
    padding-bottom: 90px;
  }
  
  .our-services-main-sec {
    padding: 30px 0 0;
  }
  
  .our-services-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    background-color: var(--color-white);
    min-height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 25px;
  }
  
  .our-services-block .our-services-icon {
    border: 1px solid #EFEFEF;
    width: 82px;
    height: 82px;
    background-color: var(--color-white);
    position: relative;
    margin-bottom: 11px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 100px;
  }
  
  .our-services-block .our-services-icon::before {
    content: '';
    border-radius: 100px;
    position: absolute;
    inset: 6px;
    background-color: #EFEFEF;
  }
  
  .our-services-block .our-services-icon span {
    position: relative;
    z-index: 1;
  }
  
  .our-services-block .our-services-block-title {
    font-size: 26px;
    font-weight: 900;
    color: var(--color-secondary);
    margin-bottom: 16px;
  }
  
  .our-services-block .our-services-block-det {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--color-primary);
    margin-bottom: 20px;
  }
  
  .our-services-block .our-services-block-btn {
    border-radius: 7px;
    background-color: var(--color-secondary);
    padding: 0 17px;
    line-height: 40px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
  }
  
  .our-services-block .our-services-block-btn:hover {
    background-color: #5C381B;
  }
  
  .audeo-video-hero {
    background-size: cover;
    padding: 121px 0 30px;
    background-color: var(--color-primary);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  @media only screen and (max-width: 575px) {
    .audeo-video-hero {
      padding: 91px 0 17px;
    }
  }
  
  .audeo-video-hero .audio-video-hero-image {
    position: relative;
  }
  
  .audeo-video-hero .audio-video-hero-image .see-dmo-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 10px;
    font-size: 25px;
    font-weight: 700;
    color: var(--color-white);
    padding: 0 38px;
    background-color: rgba(28, 49, 68, 0.76);
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    height: 70px;
    white-space: nowrap;
  }
  
  @media only screen and (max-width: 767px) {
    .audeo-video-hero .audio-video-hero-image .see-dmo-btn {
      font-size: 18px;
      height: 55px;
      padding: 0 28px;
    }
  }
  
  @media only screen and (max-width: 575px) {
    .audeo-video-hero .audio-video-hero-image .see-dmo-btn {
      font-size: 16px;
      height: 50px;
      padding: 0 25px;
    }
  }
  
  .audeo-video-hero .audio-video-hero-image .see-dmo-btn .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin-right: 10px;
  }
  
  .audeo-video-hero .audio-video-hero-image .see-dmo-btn .text {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  }
  
  .audeo-video-hero .audio-video-hero-image .see-dmo-btn:hover {
    background-color: rgba(28, 49, 68, 0.9);
  }
  
  .audeo-video-hero .audio-video-hero-image img {
    max-width: 100%;
    height: auto;
  }
  
  .audio-video-section {
    padding: 50px 0;
  }
  
  .audio-video-gallery-section {
    padding: 25px;
    background-color: var(--color-white);
    margin-bottom: 30px;
  }
  
  .audio-video-gallery-section .audio-video-gallery-block {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 10px;
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .audio-video-gallery-section .audio-video-gallery-block .gallery-icon {
    border-radius: 100px;
    width: 50px;
    height: 50px;
    background-color: #EFEFEF;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 12px;
  }
  
  .audio-video-gallery-section .audio-video-gallery-block .gallery-icon-text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 1%;
  }
  
  .audio-video-gallery-section .audio-video-gallery-block .gallery-icon-text .gallery-icon-title {
    font-size: 16px;
    font-weight: 700;
    color: #404040;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-bottom: 3px;
  }
  
  .audio-video-gallery-section .audio-video-gallery-block .gallery-icon-text .gallery-icon-dt-time {
    font-size: 13px;
    font-weight: 500;
    color: #5B5B5B;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
  
  .audio-video-gallery-section .audio-video-gallery-block:hover .gallery-icon-text .gallery-icon-title {
    color: var(--color-secondary);
  }
  
  .default-page-section {
    padding: 30px 0;
  }

  .product-page-section {
    padding: 30px 0;
  }

  .notransition {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
  }

  div.mailpoet_form_columns.mailpoet_paragraph.mailpoet_column_with_background.mailpoet_stack_on_mobile.last > div.mailpoet_form_column.mailpoet_vertically_align_center.\.cnt-icon-bg {
    width: 69.55px;
    height: 69.55px;
    background-color: var(--color-white);
    -webkit-transform: rotate(128deg);
    transform: rotate(128deg);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(135deg);
    transform: translate(-50%, -50%) rotate(135deg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 0;
  }
  
  div.mailpoet_form_columns.mailpoet_paragraph.mailpoet_column_with_background.mailpoet_stack_on_mobile.last > div.mailpoet_form_column.mailpoet_vertically_align_center.\.cnt-icon-bg > p.mailpoet_form_paragraph  {
    content: url("data:image/svg+xml,%3Csvg%20width%3D%2233%22%20height%3D%2222%22%20viewBox%3D%220%200%2033%2022%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%09%09%09%09%09%09%09%09%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M24.204%209.52378C23.7481%209.94127%2023.0401%209.91013%2022.6226%209.45423C22.2051%208.99833%2022.2362%208.29031%2022.6921%207.87282L28.8447%202.23862H3.53098L9.50051%207.73762C9.95517%208.15645%209.98423%208.86456%209.5654%209.31923C9.14656%209.7739%208.43845%209.80295%207.98378%209.38412L2.23862%204.0918V17.6649L7.98378%2012.3726C8.43845%2011.9537%209.14656%2011.9828%209.5654%2012.4375C9.98423%2012.8921%209.95517%2013.6002%209.50051%2014.0191L9.01606%2014.4653C9.00469%2014.4767%208.99301%2014.488%208.98105%2014.499L3.53196%2019.5181H28.8447L25.631%2016.5752L23.312%2014.4518L23.2952%2014.4361L22.6921%2013.8839C22.2362%2013.4664%2022.2051%2012.7584%2022.6226%2012.3025C23.0401%2011.8466%2023.7481%2011.8154%2024.204%2012.2329L27.1417%2014.9231L30.1014%2017.633V4.12325L24.204%209.52378ZM31.9891%201.68077C31.968%201.56686%2031.9289%201.45482%2031.871%201.34882C31.5039%200.675684%2030.7999%200%2029.8095%200H2.52899C1.56816%200%200.870164%200.636759%200.491087%201.29794C0.4165%201.42803%200.370592%201.56797%200.352132%201.70976C0.135348%201.91388%200%202.20354%200%202.5248V18.5037C0%2019.1932%200.166208%2019.8635%200.465479%2020.4115C0.473603%2020.4274%200.482139%2020.4431%200.491087%2020.4588C0.870164%2021.1199%201.56816%2021.7567%202.52899%2021.7567H29.8095C30.7785%2021.7567%2031.4733%2021.1099%2031.8467%2020.4516C31.8526%2020.4419%2031.8583%2020.4321%2031.8639%2020.4222C32.1818%2019.859%2032.34%2019.1885%2032.34%2018.5037V2.49466C32.34%202.174%2032.2052%201.88483%2031.9891%201.68077ZM22.3593%2011.4437C22.8137%2011.0246%2022.8424%2010.3165%2022.4233%209.86207C22.0042%209.40763%2021.2961%209.37898%2020.8416%209.79807L18.1323%2012.2967C18.0217%2012.397%2017.9173%2012.4823%2017.833%2012.541C17.8225%2012.5483%2017.812%2012.5558%2017.8018%2012.5635C16.7411%2013.3568%2015.5787%2013.3586%2014.5093%2012.5664C14.4944%2012.5554%2014.4793%2012.5448%2014.4639%2012.5346C14.3732%2012.4741%2014.274%2012.3966%2014.1671%2012.2987L14.1654%2012.2972L11.4744%209.81083C11.0203%209.39132%2010.3122%209.41931%209.89265%209.87336C9.47315%2010.3274%209.50114%2011.0356%209.95519%2011.4551L12.6495%2013.9444L12.6527%2013.9474C12.8272%2014.1073%2013.009%2014.2531%2013.1985%2014.3813C15.0493%2015.7394%2017.2812%2015.7394%2019.1277%2014.3672C19.314%2014.2362%2019.4918%2014.0862%2019.641%2013.9505L22.3593%2011.4437Z%22%20fill%3D%22%231F3346%22%3E%3C%2Fpath%3E%0A%09%09%09%09%09%09%09%3C%2Fsvg%3E");
    width: 33px;
    height: 33px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
  }
  
  .product-page-section .left-cats-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  
  .product-page-section .left-cats-sec {
    background-color: var(--color-white);
    padding: 20px;
    margin-bottom: 25px;
  }
  
  .product-page-section .left-cats-block {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 10px;
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .product-page-section .left-cats-block .left-cats-icon {
    border-radius: 5px;
    width: 50px;
    height: 50px;
    background-color: #EFEFEF;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-right: 12px;
  }
  
  .product-page-section .left-cats-block .left-cats-icon-text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 1%;
  }
  
  .product-page-section .left-cats-block .left-cats-icon-text .left-cats-icon-title {
    font-size: 16px;
    font-weight: 700;
    color: #676767;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-bottom: 3px;
  }
  
  .product-page-section .left-cats-block .left-cats-icon-text .left-cats-icon-dt-time {
    font-size: 13px;
    font-weight: 500;
    color: #838383;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  .product-page-section .left-cats-block:hover .left-cats-icon-text .left-cats-icon-title {
    color: #1C3144;
  }
  
  .product-page-section .left-cats-block:hover .left-cats-icon-text .left-cats-icon-dt-time {
    color: var(--color-secondary);
  }
  
  .left-cats-nav {
    margin-bottom: 0;
    padding-left: 15px;
  }
  
  .left-cats-nav li a {
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 500;
    padding: 6px 0;
    display: block;
  }
  
  .money-backgrnt-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    background-color: var(--color-white);
    min-height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 25px;
  }
  
  .money-backgrnt-block .money-backgrnt-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    position: relative;
    margin-bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 100px;
  }
  
  .money-backgrnt-block .money-backgrnt-icon span {
    position: relative;
    z-index: 1;
  }
  
  .money-backgrnt-block .money-backgrnt-block-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 12px;
    line-height: 1.2;
  }
  
  .money-backgrnt-block .money-backgrnt-block-det {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
  }
  
  .productpage-title {
    font-size: 24px;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 20px;
  }
  
  .product-sec-block {
    background-color: var(--color-white);
    padding: 10px;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-bottom: 2px solid var(--color-secondary);
    overflow: hidden;
    min-height: calc(100% - 30px);
    margin-bottom: 30px;
  }
  
  .product-sec-block:hover {
    -webkit-box-shadow: 4px 4px 25px rgba(0, 0, 0, 0.2);
            box-shadow: 4px 4px 25px rgba(0, 0, 0, 0.2);
  }
  
  .product-sec-block .tag-featured {
    padding: 0 16px;
    line-height: 26px;
    background-color: var(--color-secondary);
    border-radius: 0 0 5px 0;
    font-size: 14px;
    font-weight: 700;
    position: absolute;
    left: 1px;
    top: 1px;
    color: var(--color-white);
  }
  
  .product-sec-block .tag-sale {
    width: 44px;
    height: 44px;
    background-color: var(--color-primary);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    position: absolute;
    right: 15px;
    top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: var(--color-white);
  }
  
  .product-sec-block .product-block-image {
    max-height: 208px;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .product-sec-block .product-block-image img {
    max-width: 100%;
    height: auto;
  }
  
  .product-sec-block .product-block-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 8px;
    line-height: 1.2;
  }
  
  .product-sec-block .product-block-title a {
    color: var(--color-secondary);
  }
  
  .product-sec-block .product-block-title a:hover, .product-sec-block .product-block-title a:focus, .product-sec-block .product-block-title a:active {
    color: var(--color-primary);
  }
  
  .product-sec-block .product-block-price {
    font-size: 17px;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 7px;
  }
  
  .product-sec-block .product-block-price span {
    text-decoration: line-through;
    font-size: 15px;
    color: #757575;
  }
  
  .product-sec-block .product-block-add-btn {
    line-height: 35px;
    background-color: var(--color-secondary);
    text-align: center;
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    margin: 0 -10px -10px -10px;
    position: relative;
    bottom: -35px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  @media only screen and (max-width: 767px) {
    .product-sec-block .product-block-add-btn {
      bottom: 0;
    }
  }
  
  .product-sec-block:hover .product-block-add-btn {
    bottom: 0;
  }
  
  .product-paging {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  
  .product-paging a {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 5px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-primary);
    margin: 2px;
    min-width: 35px;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  .product-paging a:hover {
    color: var(--color-white);
    background-color: var(--color-primary);
  }
  
  .product-paging a:hover svg path {
    fill: var(--color-white);
  }
  
  .prod-page-breadcrumb {
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-primary);
  }
  
  .prod-page-breadcrumb a {
    color: var(--color-primary);
  }
  
  .prod-page-breadcrumb a:hover, .prod-page-breadcrumb a:focus, .prod-page-breadcrumb a:active {
    color: var(--color-secondary);
  }
  
  .product-single-sec {
    background-color: var(--color-white);
    padding: 20px;
    margin-bottom: 30px;
  }
  
  .product-single-sec .product-single-images-sec .product-single-images-large {
    margin-bottom: 15px;
    position: relative;
  }
  
  .product-single-sec .product-single-images-sec .product-single-images-large img {
    max-width: 100%;
    height: auto;
  }
  
  .product-single-sec .product-single-images-sec .product-single-images-large .zoom-icon {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background-color: rgba(255, 255, 255, 0.8);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    right: 10px;
    top: 10px;
  }
  
  .product-single-sec .product-single-images-sec .product-single-images-small-sec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  
  .product-single-sec .product-single-images-sec .product-single-images-small-sec a {
    width: 85px;
    height: 55px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 10px;
    border: 1px solid #A6A6A6;
    margin-bottom: 10px;
  }
  
  .product-single-sec .product-single-images-sec .product-single-images-small-sec a:hover, .product-single-sec .product-single-images-sec .product-single-images-small-sec a.active {
    border-color: var(--color-primary);
  }
  
  .shop-right-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
    text-align: left;
  }
  
  .shop-right-section .prices-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-direction: column;
        flex-direction: column;
    justify-content: start;
  }
  
  .shop-right-section .prices-section .main-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 5px;
  }
  
  .shop-right-section .prices-section .main-price span {
    padding-left: 7px;
    font-size: 18px;
    font-weight: 500;
    color: #757575;
    text-decoration: line-through;
  }
  
  .shop-right-section .prices-section .stars-rating {
    margin-bottom: 10px;
  }
  
  .shop-right-section .prices-section .stars-rating .stars svg.active path {
    fill: #CB991A;
  }
  
  .shop-right-section .description {
    line-height: 20px;
    font-size: 14px;
    color: var(--color-primary);
    text-align: left;
  }
  
  .shop-right-section .shop-social {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  
  .shop-right-section .shop-right-addtocart-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  
  .shop-right-section .shop-right-addtocart-section .quantity {
    margin-right: 15px;
  }
  
  .shop-right-section .shop-right-addtocart-section .quantity input {
    width: 71px;
    height: 40px;
    border-radius: 7px;
    background-color: #EFEFEF;
    border: 1px solid #A6A6A6;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-black);
    text-align: center;
  }
  
  .shop-right-section .add-to-cart-btn {
    width: 131px;
    height: 40px;
    border-radius: 7px;
    background-color: var(--color-secondary);
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
  }
  
  .shop-right-section .add-to-cart-btn:hover, .shop-right-section .add-to-cart-btn:focus, .shop-right-section .add-to-cart-btn:active {
    background-color: #663F1E;
  }
  
  .shop-right-section .categoriesed {
    line-height: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-black);
  }
  
  @media only screen and (max-width: 991px) {
    .shop-right-section .categoriesed {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      text-align: left;
    }
  }
  
  .shop-right-section .categoriesed a {
    color: var(--color-black);
  }
  
  .shop-right-section .categoriesed span {
    min-width: 102px;
    color: #1C3144;
    font-weight: 500;
    text-align: left;
    font-size: 14px;
  }
  
  .custom-tabs a {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 35px;
    margin: 0 25px 20px 0;
    position: relative;
  }
  
  @media only screen and (max-width: 767px) {
    .custom-tabs a {
      font-size: 17px;
      margin: 0 20px 10px 0;
    }
  }
  
  .custom-tabs a:last-child {
    margin-right: 0;
  }
  
  .custom-tabs a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    background: var(--color-secondary);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0;
  }
  
  .custom-tabs a:hover, .custom-tabs a:active, .custom-tabs a.active {
    color: var(--color-secondary);
  }
  
  .custom-tabs a:hover:after, .custom-tabs a:active:after, .custom-tabs a.active:after {
    bottom: 0;
    opacity: 1;
  }
  
  .shop-description {
    background: var(--color-white);
    margin-bottom: 30px;
    padding: 20px;
    text-align: left;
  }
  
  .shop-description .shopdesc-subtitle {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 7px;
  }
  
  .shop-description .shopdesc-minititle {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 700;
  }
  
  .shop-description .description {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 20px;
    margin-bottom: 15px;
  }
  
  .user-reviews .user-review {
    border-bottom: var(--color-border) 1px solid;
    padding-bottom: 13px;
    margin-bottom: 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  
  .user-reviews .user-review:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  
  .user-reviews .user-review .icon {
    width: 50px;
    height: 50px;
    background: var(--color-border);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 5px;
    margin-right: 12px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  .user-reviews .user-review .text-sec {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 1%;
  }
  
  .user-reviews .user-review .text-sec .rev-username {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .user-reviews .user-review .text-sec .rev-username .usrnm {
    font-size: 16px;
    color: var(--color-primary);
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .user-reviews .user-review .text-sec .rev-username .reviews-stars {
    margin-left: auto;
  }
  
  .user-reviews .user-review .text-sec .rev-username .reviews-stars .stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .user-reviews .user-review .text-sec .rev-username .reviews-stars .stars svg {
    margin: 0 1px;
  }
  
  .user-reviews .user-review .text-sec .user-rev {
    font-size: 15px;
    font-weight: 400;
    color: var(--color-primary);
  }
  
  .loadmore-revs {
    background-color: var(--color-secondary);
    border-radius: 5px;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
    padding: 0 20px;
    line-height: 35px;
    display: inline-block;
  }
  
  .loadmore-revs:hover, .loadmore-revs:focus, .loadmore-revs:active {
    background-color: #5E391B;
    color: var(--color-white);
  }
  
  .review-inputs-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
  }
  
  .review-textarea {
    background-color: #EFEFEF;
    border: 1px solid #A6A6A6;
    font-size: 15px;
    color: var(--color-primary);
    border-radius: 10px;
  }
  
  .review-textarea:focus {
    border-color: var(--color-primary);
  }
  
  .review-inputs {
    background-color: #EFEFEF;
    border: 1px solid #A6A6A6;
    height: 50px;
    font-size: 15px;
    color: var(--color-primary);
    border-radius: 10px;
  }
  
  .review-inputs:focus {
    border-color: var(--color-primary);
  }
  
  .add-review-btn {
    height: 43px;
    border-radius: 7px;
    background-color: var(--color-secondary);
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    padding: 0 27px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  .add-review-btn:hover, .add-review-btn:focus, .add-review-btn:active {
    background-color: #663F1E;
  }
  
  *, body {
    font-family: var(--font-family);
  }
  
  html, body {
    padding: 0;
    margin: 0;
  }
  
  body {
    overflow-x: hidden;
    background: #EFEFEF;
    font-size: 16px;
  }
  
  body, p, form, input, h1, h2, h3, h4, h5, h6, p, form, ul, li, ol, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    font-family: var(--font-family);
    color: var(--color-black);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  a {
    color: var(--color-secondary);
    text-decoration: none;
    font-family: var(--font-family);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  a:hover, a:focus, a:active {
    text-decoration: none;
    color: var(--color-primary);
  }
  
  button, a, input, textarea {
    outline: 0 !important;
  }
  
  .form-control, .btn.focus, .btn:focus, .custom-select:focus, .form-control:focus, .form-select:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  
  label {
    color: var(--color-white);
    font-size: 15px;
    margin-bottom: 5px;
  }
  
  .custom-label {
    color: var(--color-white);
    font-size: 18px;
    margin-bottom: 7px;
    font-weight: 700;
  }
  
  .form-select {
    background-size: 35px 17px;
  }
  
  .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
  }
  
  .form-check .form-check-input {
    width: 16px;
    height: 16px;
    background-color: var(--color-grey);
    border-color: var(--color-grey);
    margin: 0 14px 0 0;
  }
  
  .form-check .form-check-input[type=checkbox] {
    border-radius: 4px;
  }
  
  .form-check .form-check-input[type=radio] {
    border-radius: 50%;
  }
  
  .form-check .form-check-input:active {
    -webkit-filter: brightness(90%);
            filter: brightness(90%);
  }
  
  .form-check .form-check-input:focus {
    border-color: var(--color-grey);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  
  .form-check .form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
  }
  
  .form-check .form-check-input:checked[type=checkbox] {
    background-size: 12px 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cg id='Group_440' data-name='Group 440' transform='translate(-322 -367)'%3E%3Cg id='check' transform='translate(313.727 358.859)'%3E%3Cpath id='Path_662' data-name='Path 662' d='M17.762,10.956A.934.934,0,1,1,19.1,12.264l-4.972,6.215a.934.934,0,0,1-1.345.025l-3.295-3.3a.934.934,0,1,1,1.32-1.32l2.608,2.607,4.325-5.511a.294.294,0,0,1,.025-.027Z' transform='translate(0 0)' fill='%23fff' stroke='%23fff' stroke-width='1' fill-rule='evenodd'/%3E%3C/g%3E%3Crect id='Rectangle_77' data-name='Rectangle 77' width='12' height='12' transform='translate(322 367)' fill='none'/%3E%3C/g%3E%3C/svg%3E%0A");
  }
  
  .form-check .form-check-input:checked[type=radio] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
  }
  
  .form-check .form-check-input[type=checkbox]:indeterminate {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
  }
  
  .form-check label {
    margin-bottom: 0;
  }
  
  .form-check.form-switch {
    padding-left: 2.5em;
  }
  
  .form-check.form-switch .form-check-input {
    width: 40px;
    margin-left: -40px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
    background-position: left center;
    border-radius: 40px;
    -webkit-transition: background-position .15s ease-in-out;
    transition: background-position .15s ease-in-out;
  }
  
  .form-check.form-switch .form-check-input:checked {
    background-position: right center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  }
  
  .form-check.form-switch .form-check-input:checked[type="checkbox"] {
    background-size: 18px 18px;
  }
  
  .form-check-input:focus ~ .form-check-label:before, .form-check-input:checked, .form-check-input:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  @media only screen and (max-width: 991px) {
    .form-group {
      margin-bottom: 15px;
    }
  }
  
  .custom-input {
    height: 55px;
    font-weight: 500;
    padding-left: 19px;
    padding-right: 19px;
    font-size: 18px;
    border: 2px solid var(--color-white);
    border-radius: 100px;
    color: #000;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-box-shadow: none;
            box-shadow: none;
    width: 100%;
  }
  
  @media only screen and (max-width: 991px) {
    .custom-input {
      height: 45px;
      padding: 0 15px;
      font-size: 15px;
    }
  }

  input.subsc-hero-name:-moz-placeholder, 
  input.subsc-hero-email:-moz-placeholder,
  input.hs-input:-moz-placeholder
  {
    color: #b1723b;
  }

  input.subsc-hero-name:-ms-input-placeholder, 
  input.subsc-hero-email:-ms-input-placeholder,
  input.hs-input:-ms-input-placeholder
  {
    color: #b1723b;
  }

  input.subsc-hero-name::placeholder, 
  input.subsc-hero-email::placeholder,
  input.hs-input::placeholder
  {
    color: #b1723b;
  }
  
  .custom-input.placeholder {
    color: #66737E;
    opacity: 1;
  }
  
  .custom-input:-moz-placeholder {
    color: #66737E;
    opacity: 1;
  }
  
  .custom-input::-moz-placeholder {
    color: #66737E;
    opacity: 1;
  }
  
  .custom-input:-ms-input-placeholder {
    color: #66737E;
    opacity: 1;
  }
  
  .custom-input::-webkit-input-placeholder {
    color: #66737E;
    opacity: 1;
  }
  
  .custom-input:focus, .custom-input:active {
    -webkit-box-shadow: none;
            box-shadow: none;
    background-color: rgba(255, 255, 255, 0.5);
    border-color: var(--color-white);
    color: #000;
  }
  
  .custom-input:focus.placeholder, .custom-input:active.placeholder {
    color: #66737E;
    opacity: 1;
  }
  
  .custom-input:focus:-moz-placeholder, .custom-input:active:-moz-placeholder {
    color: #66737E;
    opacity: 1;
  }
  
  .custom-input:focus::-moz-placeholder, .custom-input:active::-moz-placeholder {
    color: #66737E;
    opacity: 1;
  }
  
  .custom-input:focus:-ms-input-placeholder, .custom-input:active:-ms-input-placeholder {
    color: #66737E;
    opacity: 1;
  }
  
  .custom-input:focus::-webkit-input-placeholder, .custom-input:active::-webkit-input-placeholder {
    color: #66737E;
    opacity: 1;
  }
  
  .custom-input.form-select:focus {
    color: var(--color-primary);
  }
  
  .custom-textarea {
    font-weight: 500;
    padding: 15px 27px;
    font-size: 18px;
    border: 2px solid var(--color-white);
    border-radius: 20px;
    color: #000;
    background-color: rgba(255, 255, 255, 0.8);
    resize: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    width: 100%;
  }
  
  @media only screen and (max-width: 991px) {
    .custom-textarea {
      padding: 10px 15px;
      font-size: 15px;
      border-radius: 20px;
    }
  }
  
  .custom-textarea.placeholder {
    color: #66737E;
    opacity: 1;
  }
  
  .custom-textarea:-moz-placeholder {
    color: #66737E;
    opacity: 1;
  }
  
  .custom-textarea::-moz-placeholder {
    color: #66737E;
    opacity: 1;
  }
  
  .custom-textarea:-ms-input-placeholder {
    color: #66737E;
    opacity: 1;
  }
  
  .custom-textarea::-webkit-input-placeholder {
    color: #66737E;
    opacity: 1;
  }
  
  .custom-textarea:focus, .custom-textarea:active {
    -webkit-box-shadow: none;
            box-shadow: none;
    background-color: rgba(255, 255, 255, 0.5);
    border-color: var(--color-white);
    color: #000;
  }
  
  .custom-textarea:focus.placeholder, .custom-textarea:active.placeholder {
    color: #66737E;
    opacity: 1;
  }
  
  .custom-textarea:focus:-moz-placeholder, .custom-textarea:active:-moz-placeholder {
    color: #66737E;
    opacity: 1;
  }
  
  .custom-textarea:focus::-moz-placeholder, .custom-textarea:active::-moz-placeholder {
    color: #66737E;
    opacity: 1;
  }
  
  .custom-textarea:focus:-ms-input-placeholder, .custom-textarea:active:-ms-input-placeholder {
    color: #66737E;
    opacity: 1;
  }
  
  .custom-textarea:focus::-webkit-input-placeholder, .custom-textarea:active::-webkit-input-placeholder {
    color: #66737E;
    opacity: 1;
  }
  
  .btn-secondary:not(:disabled):not(.disabled).active:focus, .btn-secondary:not(:disabled):not(.disabled):active:focus, .show > .btn-secondary.dropdown-toggle:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  
  .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  
  .position-relative {
    position: relative;
  }
  
  .img-responsivee {
    max-width: 100%;
    height: auto;
  }
  
  svg path {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  hr {
    background-color: var(--color-border);
    margin: 20px 0;
    opacity: 1;
  }
  
  hr.small-marg {
    margin: 15px 0;
  }
  
  @media only screen and (max-width: 991px) {
    hr.small-marg {
      margin: 10px 0;
    }
  }
  
  .nav-overflow {
    overflow: hidden;
  }
  
  .input-alerts {
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 500;
    padding: 5px 11px;
    margin-top: 5px;
    border-radius: 100px;
  }
  
  .input-alerts.alert-danger {
    background-color: var(--bs-danger);
    color: var(--color-white);
  }
  
  .input-alerts.alert-success {
    background-color: var(--bs-success);
    color: var(--color-white);
  }

  .page-others-content-section {
    padding: 25px;
    background-color: var(--color-white);
    margin-bottom: 30px;
  }

  div.summary.entry-summary td.label > label
  {
    color: black;
  }

  .woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt
  {
    background-color: #87552b;
  }

  .woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover
  {
    background-color: #46311F;
  }

  /**********************/
  /*===== * Cart =====*/

#yith-quick-view-modal .yith-wcqv-wrapper {
  display: inline-flex;
  align-items: center;
}

#yith-quick-view-modal div.yith-wcqv-main {
  padding: 25px;
  max-width: 80%;
  max-height: 80%;
  box-shadow: none;
  padding: 25px;
  margin: auto;
  overflow-x: hidden;
  border-radius: 5px;
}

#yith-quick-view-modal #yith-quick-view-close {
  top: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
  line-height: 21px;
  border-radius: 4px;
  color: var(--bs-white);
  background-color: var(--bs-primary);
  opacity: 1;
  font-size: 80%;
  font-weight: 600;
}

.widget_shopping_cart_content .cart-header i,
.cart-wrapper .cart-icon-wrap i {
  display: inline-block;
  color: inherit;
  vertical-align: middle;
}

.cart-icon-wrap,
.cart-wrapper {
  position: relative;
}

.cart-wrapper .cart-icon-wrap .cart-count span {
  position: absolute;
  top: 20px;
  right: 0;
  width: 20px;
  height: 20px;
  line-height: 2.05;
  display: inline-block;
  font-size: 10px;
  color: var(--bs-white);
  border-width: 1px;
  border-style: solid;
  border-radius: 50%;
  text-align: center;
  background-color: var(--bs-primary);
}

.widget_shopping_cart_content .cart-header,
.shopping-cart .cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--bs-primary);
  border-bottom: 1px solid #E8E8E8;
  padding-bottom: 15px;
}

.shopping-cart .cart-badge {
  color: var(--bs-white);
  font-size: 10px;
  margin: 0;
  width: 16px;
  height: 16px;
  line-height: 1.6;
  text-align: center;
  vertical-align: super;
  border-radius: 100px;
  display: inline-block;
  background-color: var(--bs-primary);
}

.widget_shopping_cart_content ul.cart-items,
div.shopping-cart ul.cart-items {
  padding: 0;
  margin: 0;
  list-style: none;
  max-height: 320px;
  overflow-x: hidden;
  overflow-y: auto;
}

.widget_shopping_cart ul.cart-items li,
div.shopping-cart ul.cart-items li {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 30px !important;
  list-style: none;
  font-size: 15px;
  position: relative;    
  border-bottom: 1px solid var(--bs-gray-light);
}

.widget_shopping_cart ul.cart-items li:last-child,
div.shopping-cart ul.cart-items li:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.widget_shopping_cart ul.cart-items li a:not(.remove),
div.shopping-cart ul.cart-items li a:not(.remove) {
  line-height: 10px;
}

.shopping-cart .cart-items .item-img {
  float: left;
  margin-right: 12px;
  width: 68px;
  height: 68px;
  text-align: center;
  border-radius: 0;
  line-height: 4.5;
  border: 1px solid var(--bs-gray-light);
}

.shopping-cart .cart-items .item-img img {
  margin: 0;
  width: 100%;
  vertical-align: baseline;
  border-radius: 0;
  float: none;
}

.shopping-cart .cart-items .item-name {
  display: block;
  font-weight: 600;
  font-size: 1rem;
}

.shopping-cart .cart-items a:not(:hover,:focus) .item-name {
  color: var(--bs-secondary);
}

.shopping-cart .cart-items .amount {
  font-size: 12px;
  font-weight: 600;
  margin-right: 0;
  color: #222;
}

.shopping-cart .cart-items .item-price {
  margin-top: 5px;
  margin-right: 0;
  color: var(--bs-secondary-dark);
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  vertical-align: text-bottom;
}

.shoppingcart-bottom .btn {
  padding: 11px 60px;
  line-height: 20px;
  font-size: 97%;
  letter-spacing: 0.35px;
}

.widget_shopping_cart .btn i,
.shopping-cart .btn i {
  font-size: 12px;
  margin-left: 2px;
  position: relative;
  top: -1px;
}

.widget_shopping_cart ul a.remove,
div.shopping-cart ul a.remove {
  float: right;
  margin-top: 0;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 100%;
  color: var(--bs-white) !important;
  background-color: var(--bs-primary);
  box-shadow: 0 0 10px rgb(0 0 0 / 0.15);
}

.shopping-cart-total {
  display: flex;
  font-size: 20px;
  font-weight: 600;
  justify-content: space-between;
  align-items: center;
}

.shoppingcart-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.woocommerce .widget_shopping_cart .cart_list li a.remove, .woocommerce.widget_shopping_cart .cart_list li a.remove {
  top: 10px;
  left: 10px;
}

.widget_shopping_cart_content .shoppingcart-bottom .btn {
  padding: 5px 20px;
}

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

.select2-container--default .select2-results__option[aria-selected=true], .select2-container--default .select2-results__option[data-selected=true] {
  background-color: var(--bs-primary-light);
}

.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[data-selected] {
  background-color: var(--bs-primary);
}

.logo-content .container.woo-container {
  padding: 0;
}

.woo-container .row {
  width: 100%;
  flex-basis: 100%;
}

.logo-content .woocommerce div.product {
  margin-bottom: 0;
}

.woocommerce div.product:after {
  content: "";
  display: table;
  clear: both;
}

.woocommerce form.woocommerce-ordering {
  margin: 0 0 2em;
}

.logo-content .page-title {
  font-size: 25px;
  margin-bottom: 1.25rem;
}

#product-content .woocommerce-result-count {
  display: inline-block;
  vertical-align: middle;
}

/* Woo Product Style */
.woocommerce ul.products.owl-carousel li.product {
  float: none;
  width: 100%;
  margin: 0;
}

.woocommerce .woocommerce-ordering select.orderby {
  background-color: var(--bs-white);
  border-color: #e8e8e8;
  cursor: pointer;
}

.woocommerce p.woocommerce-result-count {
  margin: 0;
  padding: 13px 16px;
  float: right;
  margin-left: 15px;
  background-color: var(--bs-white);
  border: 1px solid #e8e8e8;
}

.woocommerce .gridlist-toggle {
  float: left;
  display: inline-block;
  line-height: 50px;
}

.woocommerce .gridlist-toggle a {
  width: 50px;
  height: 50px;
  display: inline-block;
  text-align: center;
  font-size: 18px;
  margin-right: 11px;
  color: var(--bs-secondary);
  background-color: var(--bs-white);
  border: 1px solid #e8e8e8;
}

.woocommerce .gridlist-toggle a:hover,
.woocommerce .gridlist-toggle a:focus,
.woocommerce .gridlist-toggle a.active {
  color: var(--bs-primary);
}

.product-single {
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  position: relative;
  z-index: 0;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
}

.woocommerce ul.products.columns-1 li.product {
  width: 100%;
  float: none;
  clear: both;
  margin: 0 0 2.992em;
}

@media (min-width: 768px) and (max-width: 991px) {
  .woocommerce ul.products.columns-3:not(.owl-carousel) li.product,
  .woocommerce-page ul.products.columns-3:not(.owl-carousel) li.product,
  .woocommerce ul.products.columns-4:not(.owl-carousel) li.product,
  .woocommerce-page ul.products.columns-4:not(.owl-carousel) li.product {
      width: 30.75%;
      float: left;
      margin: 0 2.58% 1.2em 0;
      clear: none !important;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .woocommerce ul.products.columns-3:not(.owl-carousel) li.product,
  .woocommerce-page ul.products.columns-3:not(.owl-carousel) li.product,
  .woocommerce ul.products.columns-4:not(.owl-carousel) li.product,
  .woocommerce-page ul.products.columns-4:not(.owl-carousel) li.product {
      width: 48%;
  }
}

@media (max-width: 575px) {
  .woocommerce ul.products.columns-2:not(.owl-carousel) li.product,
  .woocommerce-page ul.products.columns-2:not(.owl-carousel) li.product,
  .woocommerce ul.products.columns-3:not(.owl-carousel) li.product,
  .woocommerce-page ul.products.columns-3:not(.owl-carousel) li.product,
  .woocommerce ul.products.columns-4:not(.owl-carousel) li.product,
  .woocommerce-page ul.products.columns-4:not(.owl-carousel) li.product {
      width: 100%;
  }
}

.product-img {
 position: relative;
 overflow: hidden;
 text-align: center;
}

.woocommerce ul.products li.product a {
  display: inline-block;
}

.product-single .product-content a {
  color: var(--bs-secondary);
}

.product-single .product-content a:hover,
.product-single .product-content a:focus {
  color: var(--bs-primary);
}

.woocommerce-Price-amount.amount,
ins .woocommerce-Price-amount.amount bdi {
  color: var(--bs-primary);
}

.woocommerce ul.products li.product .product-img a img {
  margin-bottom: 0;
  -webkit-transition: all 1.5s ease;
  transition: all 1.5s ease;
}

.woocommerce ul.products li.product .product-single:hover .product-img a img,
.woocommerce ul.products li.product .product-single:focus-within .product-img a img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.woocommerce ul.products li.product .product-single .product-img {
  padding: 12px;
  min-height: 268px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.woocommerce ul.products li.product .product-single .product-img .button.quickview-trigger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -10%);
  margin: 0;
  white-space: nowrap;
  color: var(--bs-secondary);
  background: var(--bs-secondary);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
}

.woocommerce ul.products li.product .product-single .product-img .button.quickview-trigger:after {
  content: "\f06e";
  font-family: var(--bs-font-awesome);
  position: absolute;
  top: 5px;
  left: 11px;
  color: #fff;
  font-size: 18px;
  z-index: 0;
}

.woocommerce ul.products li.product .product-single:hover .product-img .button.quickview-trigger,
.woocommerce ul.products li.product .product-single:focus-within .product-img .button.quickview-trigger {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

.woocommerce ul.products li.product .product-single .product-content {
  padding: 15px 12px 16px;
}

.woocommerce ul.products li.product .product-single .product-content-outer {
  text-align: center;
  position: relative;
  z-index: 0;
}

.woocommerce ul.products li.product .star-rating {
  max-width: 300px;
  display: inline-block;
}

.woocommerce .star-rating span::before, .woocommerce .star-rating::before {
  color: var(--bs-yellow);
  height: 1.2em;
  top: 0.5px;
}

.woocommerce ul.products li.product .product-single h3 {
  font-size: 18px;
  padding: 0;
  margin-bottom: 7px;
  font-weight: 600;
}

.woocommerce ul.products li.product div.price {
  font-size: 15px;
  line-height: 1.2;
  color: var(--bs-primary);
}

.woocommerce .product-single .product-action,
.woocommerce ul.products li.product .product-action {
  
}

.woocommerce ul.products li.product .product-action .button {
  margin-top: 0;
  white-space: nowrap;
  min-width: 45px;
border-radius: 0;
}

.product-action {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  padding: 0;
  transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  border-top: 1px solid #e8e8e8;
  margin: 0 auto;
  height: max-content;
  text-align: center;
  z-index: 0;
}

.woocommerce .product-action>* {
  flex: auto;
}

.woocommerce ul.products li.product .product-action .button.add_to_cart_button {
  border-radius: 0;
  white-space: nowrap;
  background-color: #ffff;
  color: #303030;
}


.woocommerce ul.products li.product .product-action .button.add_to_cart_button.added {
  display: none;
}


.woocommerce ul.products li.product .product-action .added_to_cart {
  border-radius: 0;
  line-height: 2.5;
}

.product-action a.button.yith-wcqv-button {
  display: none !important;
}

.woocommerce ul.products li.product .product-action .button.add_to_cart_button:hover,
.woocommerce ul.products li.product .product-action .button.add_to_cart_button:focus {
  background-color: #303030;
  color: #fff;
}

.woocommerce ul.products li.product .product-action a.button.product_type_external/*,
.woocommerce ul.products li.product .product-action .button.product_type_grouped*/ {
  max-width: 45px;
  white-space: nowrap;
  color: var(--bs-primary);
}

.woocommerce ul.products li.product .product-action a.button.product_type_external:before {
  content: "\f19a";
  font-family: var(--bs-font-awesome);
  margin-right: 0;
  margin-left: 5px;
  color: #ffffff;
}

.woocommerce ul.products li.product a.delete_item:hover,
.woocommerce ul.products li.product a.delete_item:focus {
  color: var(--bs-primary);
}

.woocommerce ul.products li.product .product-action .button.product_type_grouped:before,
.woocommerce ul.products.list li.product.outofstock .product-action .button:before {
  content: "\f06e";
  font-family: var(--bs-font-awesome);
  margin-right: 0;
  margin-left: 5px;
  color: #ffffff;
}

.woocommerce ul.products li.product a.wc-forward {
  margin-top: 0;
  margin-left: 5px;
  font-weight: 600;
  display: inline-block;
  padding: 0 16px;
  line-height: 35px;
  border-radius: 3px;
  white-space: nowrap;
  background-color: var(--bs-secondary);
  color: #ffffff;
}

.woocommerce-page.woocommerce-cart #content table.cart td.actions .coupon input.input-text[type="text"] {
  min-height: 41px;
  margin-right: 12px;
}

.woocommerce #reviews #comments h3 {
  font-size: 28px;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.woocommerce div.product .woocommerce-tabs .panel h3 {
  font-size: 30px;
  margin-bottom: 10px;
}

.related.products h3 {
  text-transform: capitalize;
}

.product .product-single ul.rate {
  margin-top: 15px;
  font-size: 16px;
}

.product .product-single ul.rate li i.fa.fa-star:before {
  margin-right: 5px;
}

.product .product-single ul.rate {
  transform: translateX(-100%);
  margin-top: -40px;
  font-size: 16px;
  width: 100%;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s;
  transition: .3s;
}

.product .product-single ul.rate li {
  background-color: rgb(17 17 17 / 0.7);
  display: inline-block;
  text-align: center;
  color: var(--bs-white);
  min-height: 40px;
  line-height: 40px;
  padding: 0 17px;
  border-radius: 0 20px 0 0;
}

.product .product-single:hover ul.rate,
.product .product-single:focus-within ul.rate {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

p.woocommerce-notice.woocommerce-notice--success {
  margin-bottom: 15px;
  padding: 15px;
  border-top: 2px solid transparent;
}

.woocommerce ul.order_details {
  padding: 15px 15px 0;
  background-color: var(--bs-white);
  border: 1px solid #d3ced2;
}

.woocommerce ul.order_details li {
  margin-bottom: 15px;
}

.woocommerce .woocommerce-order h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.woocommerce section.woocommerce-customer-details address {
  border-radius: 0;
  border: 1px solid #d3ced2;
  padding: 22px;
}

p.woocommerce-notice.woocommerce-notice--success,
div.woocommerce-info,
p.woocommerce-info,
li.woocommerce-info {
  line-height: 41px;
  border: 0;
  background-color: #f9f9f9;
  box-shadow: none;
}

.woocommerce .woocommerce-info::before {
  font-family: FontAwesome;
  content: "\f096";
  text-shadow: 5px 5px var(--bs-primary);
}

p.woocommerce-notice.woocommerce-notice--success a,
div.woocommerce-info a,
p.woocommerce-info a,
li.woocommerce-info a,
p.woocommerce-notice.woocommerce-notice--success:before,
div.woocommerce-info:before,
p.woocommerce-info:before,
li.woocommerce-info:before {
  color: var(--bs-primary);
}

.product .product-single a.added_to_cart.wc-forward {
  font-weight: 600;
  letter-spacing: 0.5px;
  display: block;
}

.dark-product .product-single {
  background-color: var(--bs-primary);
}

.dark-product .product-single h2,
.dark-product .product-single .woocommerce-Price-amount.amount {
  color: var(--bs-white);
}

.woocommerce .dark-product div.product-single a.button,
.woocommerce div.product-single .dark-product a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
  color: var(--bs-primary);
  background-color: var(--bs-white);
}

.dark-product .product-single a.added_to_cart.wc-forward {
  color: var(--bs-white);
}

.single-product .product .product_title.entry-title {
  letter-spacing: 0.65px;
  font-size: 34px;
  margin-bottom: 3px;
}

.single-product .product p.price {
  margin-bottom: 10px;
}

.single-product .product .product_meta > span {
  display: block;
}

.single-product .product .single_add_to_cart_button {
  margin-left: 6px;
}

span.woocommerce-input-wrapper {
  width: 100%;
}

.select2-container--default span.select2-selection--single {
  height: 34px;
  border-radius: 0;
  background-color: #fbfbfb;
  border-color: #e9e9ea;
}

.select2-container--default .select2-selection--single span.select2-selection__rendered {
  line-height: 34px;
}

.select2-container--default .select2-selection--single span.select2-selection__arrow {
  height: 30px;
}

.woocommerce form p.form-row {
  margin: 0 0 25px;
  padding: 0;
}

.woocommerce form p.form-row:not(.form-row-first):not(.form-row-last) {
  clear: both;
}

.woocommerce-checkout-review-order li {
  position: relative;
}

.woocommerce-checkout-review-order li label {
  margin-bottom: 0;
  vertical-align: middle;
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
}

.woocommerce-checkout div#payment.woocommerce-checkout-payment {
  background-color: var(--bs-white);
  border: 1px solid #d8d8d8;
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
body.woocommerce-checkout #payment div.payment_box {
  background-color: var(--bs-primary-light);
  border: 2px solid var(--bs-primary);
}

#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
body.woocommerce-checkout #payment div.payment_box::before {
  border-color: var(--bs-primary);
  border-right-color: transparent !important;
  border-left-color: transparent !important;
  border-top-color: transparent !important;
  top: -0.95em;
}

.woocommerce-checkout-review-order #payment ul.payment_methods label img {
  height: 38px;
  margin-left: 0.75em;
}

.woocommerce-checkout #payment .payment_method_paypal a.about_paypal {
  padding: 0 10px;
  background-color: var(--bs-white);
  line-height: 30px;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0 0 10px -2px rgb(0 0 0 / 0.2);
}

.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
  margin-bottom: 18px;
}

.woocommerce form .form-row textarea.input-text {
  padding: 7px;
}

.woocommerce .quantity .qty {
  padding: .25rem;
  min-height: 34px;
}

.woocommerce table.shop_table a.remove,
.storely-woowishlist-remove {
  background-color: #fff;
  color: var(--bs-secondary) !important;
  font-weight: 300;
  border: 1px solid var(--bs-secondary);
}

.woocommerce form .form-row input.input-checkbox,
.woocommerce form .form-row input.input-checkbox#terms {
  outline: none;
  outline-offset: unset;
  display: inline-block;
}

.woosl-button.add-to-cart,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.xoo-wsc-ft-buttons-cont a.button {
  font-weight: 600;
  color: var(--bs-white);
  background-color: var(--bs-primary);
  border-radius: 4px;
  overflow: hidden;
  font-size: 14px;
  padding: .608em .75em !important;
  line-height: 1.7;
}

.woosl-button.add-to-cart {
  border: none;
}

.woocommerce-page.woocommerce-cart #content table.cart td.actions .coupon input.input-text[type="text"] {
  padding: 6px 16px 6px;
  width: 100%;
  max-width: 182px;
}

.woocommerce #respond input#submit.disabled,
.woocommerce #respond input#submit:disabled,
.woocommerce #respond input#submit:disabled[disabled],
.woocommerce a.button.disabled, .woocommerce a.button:disabled,
.woocommerce a.button:disabled[disabled],
.woocommerce button.button.disabled,
.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled],
.woocommerce input.button.disabled,
.woocommerce input.button:disabled,
.woocommerce input.button:disabled[disabled] {
  color: var(--bs-white);
}

@media only screen and (min-width:992px) {
  .woocommerce-checkout #payment .payment_method_paypal a.about_paypal {
      position: absolute;
      right: 0;
  }
}

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

  .woocommerce ul.order_details li {
      float: none;
      border-right: 0;
      padding-bottom: 10px;
      border-bottom: 1px dashed #d3ced2;
  }

  .woocommerce .gridlist-toggle {
      float: none;
      display: block;
      margin-bottom: 12px;
  }

  .woocommerce p.woocommerce-result-count {
      display: block;
      text-align: center;
      width: 100%;
      margin-left: 0;
      margin-bottom: 13px;
  }

  .woocommerce .woocommerce-ordering {
      display: block;
      width: 100%;
      margin-top: 0.5em;
  }

  .woocommerce .col2-set div.col-2, .woocommerce-page .col2-set div.col-2,
  .woocommerce .col2-set div.col-1, .woocommerce-page .col2-set div.col-1 {
      width: 100%;
      max-width: 100%;
  }

}

.product .sale-ribbon {
  top: 25px;
  left: 15px;
}

.woocommerce span.onsale {
  top: 35px;
  left: 35px;
}

.product .sale-ribbon, .woocommerce span.onsale {
  position: absolute;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 0 10px;
  line-height: 24px;
  display: inline-block;
  border-radius: 4px 4px 0;
  color: var(--bs-white);
  background: var(--bs-primary);
  z-index: 1;
}

.product .sale-ribbon:after,
.woocommerce div.product span.onsale:after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  width: 13px;
  height: 8px;
  background: var(--bs-primary);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  z-index: -1;
}

.product-action .yith-wcwl-add-button {
  margin-bottom: 0;
}

/*.woocommerce ul.products li.product a.delete_item,
.woocommerce ul.products li.product .yith-wcwl-wishlistexistsbrowse,
.woocommerce ul.products li.product .compare,*/
.woocommerce ul.products li.product a.add_to_wishlist,
.woocommerce ul.products li.product .add_to_wishlist {
  width: 45px;
  height: 40px;
  line-height: 2.55;
  border-radius: 0;
  overflow: hidden;
  text-align: center;
  color: #767676;
  position: relative;
  background-color: #ffffff;
  vertical-align: bottom;
  border: 0;
}

.woocommerce ul.products li.product .product-action .yith-wcwl-add-to-wishlist,
.woocommerce ul.products li.product .product-action > a {
  margin-right: 0;
}

.woocommerce ul.products li.product .compare.button {
  padding: 5px 10px;
  line-height: 1.4;
  position: relative;
  z-index: 0;
}

.woocommerce ul.products li.product a.compare.button {
  color: #ffffff;
  overflow: hidden;
  white-space: nowrap;
  max-width: 45px;
  height: 40px;
  vertical-align: middle;
  background-color: #fff;
  border: 0;
}

.woocommerce ul.products li.product a.add_to_wishlist:before,
.woocommerce ul.products li.product .add_to_wishlist:before,
.woocommerce ul.products li.product a.compare.button:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 80%;
  margin: auto;
  background: #e8e8e8;
}

.woocommerce ul.products li.product a.add_to_wishlist:before,
.woocommerce ul.products li.product .add_to_wishlist:before {
  right: unset;
  left: 0;
}

.woocommerce ul.products li.product a.compare.button:after {
  content: "\f021";
  color: #000000;
  font-family: 'FontAwesome';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 40px;
}

.woocommerce ul.products li.product a.compare.button:hover:after,
.woocommerce ul.products li.product a.compare.button:focus:after {
  color: var(--bs-primary);
}

.yith-wcwl-add-to-wishlist span.feedback {
  display: inline-block;
  line-height: 34px;
}

.woocommerce ul.products li.product .yith-wcwl-wishlistexistsbrowse i,
.woocommerce ul.products li.product .compare:hover,
.woocommerce ul.products li.product .add_to_wishlist:hover,
.woocommerce ul.products li.product .compare:focus,
.woocommerce ul.products li.product .add_to_wishlist:focus {
  color: var(--bs-primary);
}

.woocommerce ul.products li.product .yith-wcwl-wishlistexistsbrowse i,
.woocommerce ul.products li.product .add_to_wishlist i {
  margin-right: 0;
}

.woocommerce .yith-wcwl-wishlistexistsbrowse span {
  margin-left: 5px;
}

.yith_magnifier_gallery {
  padding: 0;
  list-style: none;
  margin-bottom: 0;
}

.yith_magnifier_gallery li {
  display: inline-block;
  padding: 6px;
}

.yith_magnifier_gallery li a {
  padding: 5px;
  border: 1px solid var(--bs-gray-light);
}

.yith_magnifier_zoom_magnifier {
  border: 5px solid #ffffff !important;
  box-shadow: 0 0 25px rgb(0 0 0 / 15%);
}

.single-product.woocommerce .thumbnails div#slider-prev,
.single-product.woocommerce .thumbnails div#slider-next {
  width: 26px;
  height: 25px;
  overflow: hidden;
  color: var(--bs-secondary);
  background-color: #ffffff;
  background-image: none;
  border-radius: 3px;
  margin-top: -5px;
  opacity: 1;
  visibility: visible;
  display: block !important;
  border: 1px solid var(--bs-gray-light);
  -webkit-transition: all .35s cubic-bezier(.645,.045,.355,1);
  transition: all .35s cubic-bezier(.645,.045,.355,1);
}

.single-product.woocommerce .thumbnails div#slider-prev:hover,
.single-product.woocommerce .thumbnails div#slider-next:hover {
  background-color: var(--bs-primary);
  color: #ffffff;
}

.single-product.woocommerce .thumbnails div#slider-prev:after,
.single-product.woocommerce .thumbnails div#slider-next:after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  line-height: 23px;
  text-align: center;
  font-family: var(--bs-font-awesome);
}

.single-product.woocommerce .thumbnails div#slider-prev {
  left: -7px;
}

.single-product.woocommerce .thumbnails div#slider-next {
  right: -3px;
}

.single-product.woocommerce .thumbnails:hover div#slider-prev {
  left: -6px;
}

.single-product.woocommerce .thumbnails:hover div#slider-next {
  right: -2px;
}

.single-product.woocommerce .thumbnails div#slider-prev:after {
  content: "\f104";
}

.single-product.woocommerce .thumbnails div#slider-next:after {
  content: "\f105";
}

.stock-progressbar-status {
  margin-bottom: 6px;
  line-height: 1.2;
  font-size: 92%;
}

.stock-progressbar-status span.total-sold {
  color: #82b735;
}

.stock-progressbar-status span.instock {
  color: var(--bs-primary);
}

.therm.outer-therm, .therm.inner-therm {
  border-radius: 100px;
}

.therm.outer-therm {
  margin-top: 8px;
  height: 11px !important;
  background: #efefef !important;
}

.therm.outer-therm .therm.inner-therm {
  height: 11px !important;
  background-color: var(--bs-primary) !important;
}

.therm.outer-therm .therm.inner-therm span {
  font-size: 10px;
  margin-top: -2px;
}

.yith-wcwl-add-button {
  margin-bottom: 0;
  display: inline-block;
}

.yith-wcwl-add-to-wishlist {
  vertical-align: top;
  display: inline-block;
}

.woocommerce ul.products li.product .product-action .yith-wcwl-add-to-wishlist {
  max-width: 45px;
  margin-top: 0;
  vertical-align: bottom;
}

.woocommerce ul.products li.product .product-action .yith-wcwl-add-to-wishlist i {
  margin-right: 0;
  margin-left: -1px;
}

.woocommerce a.compare.button {
  display: inline-block;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid var(--bs-gray-light);
  border-radius: 5px;
  line-height: 1.5;
  padding: 5px 10px !important;
  color: var(--bs-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  -webkit-transition: all .35s cubic-bezier(.645,.045,.355,1);
  transition: all .35s cubic-bezier(.645,.045,.355,1);
}

.woocommerce a.compare.button:hover,
.woocommerce a.compare.button:focus {
  border-color: var(--bs-primary);
  background-color: var(--bs-primary);
  color: #ffffff;
}

.woocommerce div.product .yith-wcwl-add-to-wishlist {
  margin-left: 7px;
}

.woocommerce div.product .widget_social_widget {
  margin-top: 20px;
}

.woocommerce div.product .widget_social_widget li a {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: transparent;
  color: var(--bs-secondary);
  border: 1px solid #e8e8e8;
}

.quickview-overlay div.product .widget_social_widget li a{
width: 30px;
  height: 30px;
}

.woocommerce div.product .widget_social_widget li a:hover,
.woocommerce div.product .widget_social_widget li a:focus {
  border-color: var(--bs-primary);
  color: var(--bs-primary);
}

.yith-wcwl-add-to-wishlist .yith-wcwl-add-button a {
  display: inline-block;
  white-space: nowrap;
  width: 40px;
  height: 40px;
  line-height: 41px;
  background: var(--bs-secondary);
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 100%;
}

.yith-wcwl-add-to-wishlist .yith-wcwl-add-button a span {
  display: none;
}

.woocommerce .wishlist_table tr td,
.woocommerce .wishlist_table tr th.product-checkbox,
.woocommerce .wishlist_table tr th.wishlist-delete {
  text-align: left;
}

.woosl-button.remove,
.woosl-button.add {
  border: 1px solid var(--bs-gray-light);
  background-color: #ffffff;
  color: var(--bs-secondary);
  border-radius: 5px;
  line-height: 20px;
  padding: 5px 10px;
  font-size: 14px;
}

.woosl-button.add:hover, .woosl-button.add:focus {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #ffffff;
}

.woosl-btn {
  display: inline-block;
  vertical-align: middle;
  margin-left: 3px;
}

button.woosl-button.remove {
  color: #ffffff;
  width: 32px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  z-index: 0;
}

button.woosl-button.remove:after {
  content: "\f014";
  color: var(--bs-secondary);
  font-family: 'FontAwesome';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: 1.8;
  font-size: 16px;
  -webkit-transition: all .35s cubic-bezier(.645,.045,.355,1);
  transition: all .35s cubic-bezier(.645,.045,.355,1);
}

.woosl-button.remove:hover, .woosl-button.remove:focus {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: var(--bs-primary);
}

.woosl-button.remove:hover:after, .woosl-button.remove:focus:after {
  color: #ffffff;
}

/* My Account Page Start */

.woocommerce-account .addresses .title .edit,
.woocommerce table.my_account_orders td.woocommerce-orders-table__cell-order-number a,
.woocommerce-account .woocommerce-MyAccount-content p a {
  color: var(--bs-primary);
}

.woocommerce-MyAccount-navigation ul {
  background-color: #f5f5f5;
  border: 1px solid #e5e5e5;
  padding: 0;
  list-style: none;
  margin: 0;
}

.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 10px 20px;
  line-height: 1.5;
  border-width: 0;
  border-style: solid;
  border-left-width: 2px;
  border-left-color: transparent;
  border-bottom-width: 1px;
  border-bottom-color: #e5e5e5;
  color: #2c3145;
  -webkit-transition: .3s all;
  transition: .3s all;
}

.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li a:focus {
  background-color: var(--bs-white);
  border-left-color: var(--bs-primary);
}

.woocommerce-account .woocommerce-MyAccount-content {
  border: 1px solid #e5e5e5;
  padding: 20px;
  background-color: #fbfbfb;
  min-height: 254px;
}

.woocommerce .woocommerce-Addresses {
  margin-top: 15px;
}

.woocommerce .woocommerce-Addresses .woocommerce-Address {
  border: 1px solid #e5e5e5;
  padding: 15px;
}

.woocommerce-account .addresses address {
  margin-bottom: 0;
}

.woocommerce-account .edit-account .woocommerce-form-row input.woocommerce-Input {
  min-height: 38px;
  padding: 8px 15px;
}

.woocommerce-account .edit-account .woocommerce-form-row em {
  margin-top: 5px;
  display: block;
}

.woocommerce-account .edit-account .woocommerce-form-row {
  display: inline-block;
}

.woocommerce-account .edit-account .woocommerce-Button {
  margin-top: 10px;
}

.woocommerce-Address-title {
  position: relative;
}

.woocommerce-Address-title a.edit {
  position: absolute;
  top: 0;
  right: 0;
}

@media only screen and (max-width:991px) {
  .woocommerce .woocommerce-Addresses .woocommerce-Address {
      width: 100% !important;
      float: none !important;
  }
  .woocommerce .woocommerce-Addresses .woocommerce-Address:not(:last-child) {
      margin-bottom: 15px;
  }
}

/* My Account Page End */

.woocommerce-account .post-content .woocommerce h2 {
  font-size: 35px;
}

.woocommerce form .show-password-input, .woocommerce-page form .show-password-input {
  top: .45em;
}

.woocommerce span.onsale {
  min-height: auto;
z-index: 9;
}

.woocommerce form .form-row select,
.woocommerce form .form-row input.input-text {
  min-height: 40px;
  padding: 7px 16px;
  border-radius: 4px;
}

.woocommerce table.shop_table th {
  color: var(--bs-secondary);
  background-color: #f9f9f9;
  font-size: 20px;
  font-weight: 500;
  padding: 24.5px 12px;
}

.woocommerce .blockUI.blockOverlay {
  z-index: 1 !important;
}

.woocommerce form .woocommerce-address-fields .form-row label {
  display: inline-block;
}

/* YIth Plugin */

.woocommerce table.wishlist_table {
  border: 0;
  border-radius: 0;
  border-collapse: collapse;
}

.woocommerce table.wishlist_table th {
  font-size: 18px;
  font-weight: 600;
}

.woocommerce table.wishlist_table td {
  padding: 12.5px 12px;
}

.woocommerce .wishlist-title.wishlist-title-with-form {
  margin-bottom: 21px;
}

.woocommerce .wishlist-title h2 {
  line-height: 1.4;
  font-size: 25px;
  margin-bottom: 1.25rem;
  display: inline-block;
  vertical-align: sub;
}

.hidden-title-form {
  margin-bottom: 30px !important;
}

.woocommerce .wishlist-title a.show-title-form {
  margin-left: 10px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}

.woocommerce .wishlist-title a.show-title-form i {
  margin-right: 3px;
}

.woocommerce table.wishlist_table .button.yith-wcqv-button {
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
}

.wishlist_table .product-add-to-cart a {
  padding: 8px 10px;
  background-color: var(--bs-primary);
  color: #ffffff;
  display: inline-block !important;
  border-radius: 4px;
  white-space: nowrap;
  text-decoration: none;
}

.woocommerce table.wishlist_table .product-stock-status .wishlist-in-stock {
  color: var(--bs-primary);
  position: relative;
  z-index: 0;
}

.woocommerce table.wishlist_table .product-stock-status .wishlist-in-stock:before {
  content: "\f00c";
  font-family: 'FontAwesome';
  margin-right: 5px;
}

a.save-title-form,
a.hide-title-form {
  box-shadow: 0 0 7px 3px rgb(0 0 0 / 15%) !important;
  border-radius: 100%;
  font-size: 15px;
}

a.save-title-form:hover,
a.hide-title-form:hover,
a.save-title-form:focus,
a.hide-title-form:focus {
  background-color: var(--bs-primary);
  color: #ffffff;
}

a.save-title-form {
  margin-left: 3px;
}

.yith_wcwl_wishlist_footer {
  text-align: right;
}

.yith_wcwl_wishlist_footer div.yith-wcwl-share {
  float: right;
  clear: both;
}

.yith_wcwl_wishlist_footer .yith-wcwl-share .yith-wcwl-share-title {
  display: inline-block;
  font-size: 16px;    
  padding: 10.42px;
}

.yith_wcwl_wishlist_footer .yith-wcwl-share ul {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0;
}

.yith_wcwl_wishlist_footer .yith-wcwl-share ul li.share-button {
  display: inline-block;
}

.yith_wcwl_wishlist_footer .yith-wcwl-share ul li.share-button a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 4px;
  display: inline-block;
  border: 1px solid #d8d8d8;
  color: var(--bs-secondary);
  margin: 0 2px;
}

.yith_wcwl_wishlist_footer .yith-wcwl-share ul li.share-button a:hover,
.yith_wcwl_wishlist_footer .yith-wcwl-share ul li.share-button a:focus {
  color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.yith_wcwl_wishlist_footer .yith-wcwl-share ul li.share-button a:hover i,
.yith_wcwl_wishlist_footer .yith-wcwl-share ul li.share-button a:focus i {
  -webkit-animation: jello-horizontal 0.9s both;
  animation: jello-horizontal 0.9s both;
}

.yith-wcwl-share li a {
  border-radius: 100%;
  min-width: 34px;
  min-height: 34px;
  line-height: 1.5;
}

.woocommerce #content table.cart td.actions .input-text, .woocommerce table.cart td.actions .input-text, .woocommerce-page #content table.cart td.actions .input-text, .woocommerce-page table.cart td.actions .input-text {
  width: 133px;
  display: inline-block;
  height: 34px;
  min-height: 34px;
}

@media only screen and (max-width: 767px) {
  .woocommerce table.wishlist_table thead {
      display: none;
  }
  .woocommerce table.wishlist_table th,
  .woocommerce table.wishlist_table td {
      display: block;
      text-align: right;
  }
  html .woocommerce table.wishlist_table td {
      padding: 15.5px 12px;
  }
  .woocommerce table.wishlist_table tr:nth-child(2n) td,
  .woocommerce-page table.wishlist_table tr:nth-child(2n) td {
      background-color: rgba(0, 0, 0, .025);
  }
}

/* Login / Register */
.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
  border: none;
  padding: 0;
  margin-top: .5em;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme span {
  vertical-align: middle;
  margin-left: 2px;
}

.woocommerce-form-coupon-toggle {
  margin-bottom: 1.5rem;
}

.woocommerce-notices-wrapper {
  margin-bottom: 15px;
}

/* Product Single Page */

.logo-deals-products .single-product {
  padding: 20px;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
}

.logo-deals-products .single-product div.product div.summary {
  margin-bottom: 0;
}

.logo-deals-products div.product div.images {
  width: 40%;
}

.logo-deals-products div.product div.summary {
  width: 55%;
}

.woocommerce div.product form.cart {
  margin-bottom: 0;
  display: inline-block;
  vertical-align: middle;
}

.woocommerce div.product form.cart+a.compare.button {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
}

.woocommerce div.product .product_meta {
  margin-top: 1.2rem
}

.woocommerce div.product p.price, .woocommerce div.product span.price {
  color: var(--bs-primary);
}

.woocommerce div.product form.cart .button, .woocommerce div.product form.cart+a.compare.button {
  white-space: nowrap;
  margin-bottom: 8px;
}

.woocommerce #content div.product div.summary {
  padding: 0 30px;
  margin-bottom: 3em;
}

/* Product Details Tab */

.woocommerce div.product .woocommerce-tabs .panel {
  padding: 40px 25px;
  margin-top: 30px;
  border: 1px solid #e8e8e8;
  border-radius: 0;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
  font-size: 20px;
  margin-bottom: 18px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
  padding-top: 60px;
  overflow: hidden;
  margin: 0 auto;
  display: block;
  width: 100%;
  max-width: max-content;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li:before,
.woocommerce div.product .woocommerce-tabs ul.tabs:before {
  display: none!important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 0;
  background-color: #ffffff;
  padding: 0;
  margin: 10px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 13px 19px;
  border-radius: 4px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  background: var(--bs-secondary);
  color: #ffffff;
}

/* Product Gallery */
.woocommerce div.product form.cart.variations_form {
  padding: 20px 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
  margin-top: 20px;
  border-color: #e8e8e8;
width: 100%;
margin-bottom: 20px;
}

.woocommerce div.product form.cart .variations {
  margin-bottom: 20px;
z-index: 999;
}

.woocommerce div.product form.cart .variations td.label {
  padding: 20px 0 20px;
  width: 20%;
  border-bottom: 1px solid #e8e8e8;
}

.woocommerce div.product form.cart .variations tr:first-child td.label {
  padding-top: 0;
}

.woocommerce div.product form.cart .variations td.value {
  position: relative;
  padding: 20px 0 20px;
  border-bottom: 1px solid #e8e8e8;
}

.woocommerce div.product form.cart .variations tr:first-child td.value {
  padding-top: 0;
}

.woocommerce div.product form.cart .variations select {
  min-height: 40px;
}

.woocommerce div.product form.cart .variations label {
  line-height: 40px;
}

.woocommerce div.product form.cart .variations .reset_variations {
  /*display: block;
  float: left;*/
  margin-top: 18px;
  font-size: 13px;
  color: var(--bs-primary);
  font-weight: normal;
  border: 2px solid #e8e8e8;
  padding: 0px 10px;
  border-radius: 3px;
  text-decoration: none;
  visibility: hidden;
}

.navbar h1
{
    /* font-weight: 600; */
    color: var(--color-primary);
    display: inline-block;
    /* text-shadow: 0 2px 7px rgb(0 0 0 / 50%); */
    transition: none;
    margin-left: 10px;
    vertical-align: middle;
    font-size: 40px;
    font-family: "signalistw00-signalistregular";
}

@media only screen and (max-width: 575px) {
  .navbar h1 {
    display: none;
    font-size: 20px;
    vertical-align: middle;
  }
}

@media only screen and (max-width: 500px) {
  .navbar h1 {
    font-size: 16px;
    vertical-align: middle;
  }
}

@media only screen and (max-width: 360px) {
  .navbar h1 {
    font-size: 16px;
    vertical-align: middle;
    white-space: normal;
  }
}

footer a
{
  color: var(--bs-white);
}

.woocommerce #respond input#submit.alt.disabled, .woocommerce #respond input#submit.alt.disabled:hover, .woocommerce #respond input#submit.alt:disabled, .woocommerce #respond input#submit.alt:disabled:hover, .woocommerce #respond input#submit.alt:disabled[disabled], .woocommerce #respond input#submit.alt:disabled[disabled]:hover, .woocommerce a.button.alt.disabled, .woocommerce a.button.alt.disabled:hover, .woocommerce a.button.alt:disabled, .woocommerce a.button.alt:disabled:hover, .woocommerce a.button.alt:disabled[disabled], .woocommerce a.button.alt:disabled[disabled]:hover, .woocommerce button.button.alt.disabled, .woocommerce button.button.alt.disabled:hover, .woocommerce button.button.alt:disabled, .woocommerce button.button.alt:disabled:hover, .woocommerce button.button.alt:disabled[disabled], .woocommerce button.button.alt:disabled[disabled]:hover, .woocommerce input.button.alt.disabled, .woocommerce input.button.alt.disabled:hover, .woocommerce input.button.alt:disabled, .woocommerce input.button.alt:disabled:hover, .woocommerce input.button.alt:disabled[disabled], .woocommerce input.button.alt:disabled[disabled]:hover
{
  background-color: var(--color-placeholder);
}

.woocommerce div.product form.cart .variations .reset_variations:before {
  display: inline-block;
  font-family: "fontawesome";
  font-weight: normal;
  font-style: normal;
  letter-spacing: normal;
  text-rendering: auto;
  content: "\f00d";
  margin-right: 5px;
  color: red;
  vertical-align: top;
  font-style: normal;
  letter-spacing: normal;
  font-weight: 600;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.woocommerce div.product form.cart div.quantity {
  margin-right: 10px;
}

.woocommerce div.product .alg-wc-cp-default-btn-wrapper {
  margin-top: 26px;
}

.woocommerce div.product .product_title.entry-title {
  font-size: 18px;
}

.woocommerce div.product .woocommerce-review-link {
  text-decoration: none;
  color: var(--bs-secondary);
}

.woocommerce #content div.product div.images ol.product-control-nav,
.woocommerce.single-product div.images ol.product-control-nav{
  display: block;
  list-style: none;
  padding: 0;
  margin: 13px auto 0;
  max-width: 85%;
  z-index: 0;
}

.woocommerce div.product div.images .owl-nav {
  margin: 0;
}

.woocommerce div.product div.images .owl-nav button {
  position: absolute;
  bottom: -99px;
  width: 30px;
  height: 86px;
  background: #f9f9f9;
  font-size: 20px;
  margin: 0;
  z-index: 1;
}

.woocommerce.single-product div.product div.images .owl-nav button {
  width: 15px;
  height: 66px;
bottom: -86px;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper.owl-theme .owl-nav button:hover,
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper.owl-theme .owl-nav button:focus {
  color: var(--bs-primary);
  background: #f9f9f9;
}

.woocommerce div.product div.images .owl-nav button.owl-prev {
  left: 0;
}

.woocommerce div.product div.images .owl-nav button.owl-next {
  right: 0;
}

.woocommerce div.product div.images .product-control-nav li {
  display: inline-block;
  padding: 10px;
  background: #f9f9f9;
  height: 86px;
  width: 86px;
  border-radius: 3px;
  margin: auto;
  text-align: center;
  overflow: hidden;
  border: 1px solid transparent;
}

.woocommerce.single-product div.product div.images .product-control-nav li {
  background: none;
padding: 5px;
width: 72px;
}

.woocommerce div.product div.images .product-control-nav .owl-item.active.current li {
  border-color: var(--bs-primary);
}

.woocommerce div.product div.images .product-control-nav li img {
  width: auto;
  height: 66px;
  display: inline-block;
}

.woocommerce-product-gallery__wrapper.owl-carousel .woocommerce-product-gallery__image {
  box-sizing: content-box;
  padding: 30px;
  background: #f9f9f9;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(1) {
  max-height: 440px;
}

.woocommerce-product-gallery__image {
  position: relative;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(1) img {
  max-width: 100%;
  width: auto;
  margin: auto;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2) {
  width: 30%;
  margin-top: 10px;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2) {
  margin-right: 9px;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image:last-child {
  margin-right: 0;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2) a {
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  display: inline-block;
  -webkit-transition: all .35s cubic-bezier(.645,.045,.355,1);
  transition: all .35s cubic-bezier(.645,.045,.355,1);
}

.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2) a:hover,
.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2) a:focus {
  border-color: var(--bs-primary);
}

.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2) img {
  padding: 4px;
}

.woocommerce.widget_recent_reviews .product_list_widget li {
  padding: 10px 16px;
}

.woocommerce div.product form.cart .variations td.label {
  white-space: nowrap;
}

/* Cart Page  */

ul.wishlist_table.mobile {
  padding: 0;
}

.woocommerce #content table.cart .product-thumbnail a,
.woocommerce table.cart .product-thumbnail a,
.woocommerce-page #content table.cart .product-thumbnail a,
.woocommerce-page table.cart .product-thumbnail a {
  display: inline-block;
  background: #eee;
  width: 70px;
  height: 70px;
  text-align: center;
  padding: 10px;
}

.woocommerce #content table.cart img,
.woocommerce table.cart img,
.woocommerce-page #content table.cart img,
.woocommerce-page table.cart img {
  height: 48px;
  width: auto;
  display: inline-block;
}

.woocommerce table.shop_table td {
  padding: 24.5px 12px;
  border: 0;
}

.woocommerce table.shop_table.cart.woocommerce-cart-form__contents {
  border: 0;
}

.woocommerce-cart .post-items {
  border: 0;
}

.woocommerce-cart .post-items .post-content {
  padding: 0;
}

.woocommerce .cart-collaterals .cart_totals h2, .woocommerce-page .cart-collaterals .cart_totals h2 {
  font-size: 20px;
  text-align: center;
  padding: 24.5px 12px;
  background: #f9f9f9;
  margin-bottom: 0;
  font-weight: 500;
  border: 1px solid transparent;
}

.woocommerce .cart-collaterals table.shop_table {
  border-color: #d8d8d8;
  border-radius: 0;
}

.woocommerce .cart-collaterals table.shop_table th {
  background-color: transparent;
  font-size: 18px;
  font-weight: 600;
  padding: 32px 30px;
}

.woocommerce .cart-collaterals table.shop_table .woocommerce-Price-amount.amount,
.woocommerce .cart-collaterals table.shop_table ins .woocommerce-Price-amount.amount bdi {
  color: var(--bs-secondary);
}

.woocommerce .cart-collaterals table.shop_table .order-total .woocommerce-Price-amount.amount {
  color: var(--bs-primary);
}

.woocommerce .wc-proceed-to-checkout a.checkout-button.button {
  display: inline-block;
  font-size: 18px;
  padding: 0.5395em 1.15em !important;
}

.woocommerce table.cart td.actions,
.woocommerce-page #content table.cart td.actions,
.woocommerce-page table.cart td.actions {
  border: 1px solid #d8d8d8;
  padding: 15px 28px;
}

.woocommerce table.shop_table td.product-name a {
  text-decoration: none;
  color: var(--bs-secondary);
  font-weight: 500;
}

.woocommerce table.shop_table td.product-name p {
  margin: 0;
}

.woocommerce table.shop_table td.product-price .woocommerce-Price-amount.amount {
  color: var(--bs-secondary);
}

.woocommerce table.shop_table td.product-subtotal .woocommerce-Price-amount.amount {
  font-weight: 700;
}

.woocommerce .quantity .qty {
  padding: 0.3rem;
  min-height: 40.8px;
  border-color: #d8d8d8;
  border-radius: 0;
}

@media only screen and (max-width: 767px) {
  .woocommerce table.shop_table_responsive .quantity input.qty,
  .woocommerce-page table.shop_table_responsive .quantity input.qty {
      float: right;
  }
  .woocommerce-page.woocommerce-cart #content table.cart td.actions .coupon input.input-text[type="text"] {
      float: none;
      width: 100%;
      max-width: 100%;
      display: inline-block;        
      margin-right: 0;
  }
  .woocommerce-page.woocommerce-cart #content table.cart td.actions .coupon .button {
      float: none;
      width: 100%;
      margin-top: 15px;
      display: inline-block;
  }
  .woocommerce .wc-proceed-to-checkout a.checkout-button.button {
      width: 100%;
  }
}

/* Grid / List  */

.woocommerce ul.products.list li.product {
  width: 100% !important;
  float: none !important;
  margin-right: 0 !important;
  margin-bottom: 1.6rem !important;
}

.woocommerce ul.products.list li.product .product-single {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
}

.woocommerce ul.products.list li.product .product-single .product-img,
.woocommerce ul.products.list li.product .product-single .product-content-outer {
  display: inline-flex;
  align-items: center;
}

.woocommerce ul.products.list li.product .product-single .product-img {
  flex-shrink: 0;
  padding: 20px;
  flex-basis: 30%;
  border-right: 1px solid #e8e8e8;
}

.woocommerce ul.products.list li.product .product-single .product-content-outer {
  flex: auto;
  padding: 30px;
}

.woocommerce ul.products.list li.product .product-single .product-content-outer .product-content {
  padding: 0;
  flex: auto;
  text-align: left;
}

.woocommerce ul.products.list li.product .product-single .product-content-outer .product-action {
  flex-wrap: wrap;
  width: 45px;
  border: 0;
}

.woocommerce ul.products.list li.product a.add_to_wishlist:before,
.woocommerce ul.products.list li.product .add_to_wishlist:before,
.woocommerce ul.products.list li.product a.compare.button:before {
  display: none;
}

.woocommerce ul.products.list li.product .product-action a.button.add_to_cart_button {
  width: 45px;
  white-space: nowrap;
  color: #fff;
  background-color: #fff;
  height: 40px;
  margin: 12px 0;
font-size: 0;
}

.woocommerce ul.products.list li.product .product-action a.button.add_to_cart_button:after {
  content: "\f07a";
  color: #000000;
  font-family: 'FontAwesome';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 18px;
  text-align: center;
  line-height: 40px;
}

.woocommerce ul.products.list li.product .product-action .button.add_to_cart_button,
.woocommerce ul.products.list li.product a.add_to_wishlist,
.woocommerce ul.products.list li.product .add_to_wishlist,
.woocommerce ul.products.list li.product a.compare.button {
  border: 1px solid #e8e8e8;
  border-radius: 4px;
}

.woocommerce ul.products.list li.product .product-action a.button.add_to_cart_button:after,
.woocommerce ul.products.list li.product .product-action .button.add_to_cart_button,
.woocommerce ul.products.list li.product a.add_to_wishlist,
.woocommerce ul.products.list li.product .add_to_wishlist,
.woocommerce ul.products.list li.product a.compare.button:after {
  color: var(--bs-secondary);
}

.woocommerce ul.products.list li.product .product-action a.button.add_to_cart_button:hover:after,
.woocommerce ul.products.list li.product .product-action .button.add_to_cart_button:hover,
.woocommerce ul.products.list li.product a.add_to_wishlist:hover,
.woocommerce ul.products.list li.product .add_to_wishlist:hover,
.woocommerce ul.products.list li.product a.compare.button:hover:after {
  color: #fff;
}

.woocommerce ul.products.list li.product .product-action a.button.add_to_cart_button:hover,
.woocommerce ul.products.list li.product .product-action .button.add_to_cart_button:hover,
.woocommerce ul.products.list li.product a.compare.button:hover {
  background: var(--bs-primary);
  color: var(--bs-primary);
}

.woocommerce ul.products.list li.product a.add_to_wishlist:hover,
.woocommerce ul.products.list li.product .add_to_wishlist:hover {
  background: var(--bs-primary);
  color: #fff;
}

.woocommerce ul.products.list li.product .sale-ribbon {
  min-width: 50px;
max-width: 100px;
  height: 50px;
  right: 20px;
  left: auto;
  word-break: break-all;
  text-align: center;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  padding: 9px 6px;
}

.woocommerce ul.products.list li.product .sale-ribbon:after {
  display: none;
}

/* Woo Pagination  */

.woocommerce nav.woocommerce-pagination ul.page-numbers {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul.page-numbers li {
  border: 0;
  overflow: visible;
}

.woocommerce nav.woocommerce-pagination ul.page-numbers li .page-numbers {
  font-weight: 600;
  border: 0;
  color: var(--bs-secondary);
  background-color: #fff;
  display: flow-root;
  font-size: 16px;
  line-height: 40px;
  width: 40px;
  height: 40px;
  padding: 0;
  text-align: center;
  vertical-align: baseline;
  white-space: nowrap;
  position: relative;
  text-decoration: none;
  border-radius: 100%;
  cursor: pointer;
  margin-right: 12px;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 15%);
  -webkit-transition: all .35s cubic-bezier(.645,.045,.355,1);
  transition: all .35s cubic-bezier(.645,.045,.355,1);
}

.woocommerce nav.woocommerce-pagination ul.page-numbers li a.prev.page-numbers {
  margin-right: 20px;
}

.woocommerce nav.woocommerce-pagination ul.page-numbers li a.next.page-numbers {
  margin-left: 8px;
}

.woocommerce nav.woocommerce-pagination ul.page-numbers li a:hover,
.woocommerce nav.woocommerce-pagination ul.page-numbers li a:focus,
.woocommerce nav.woocommerce-pagination ul.page-numbers li .page-numbers.current {
  color: #fff;
  background-color: var(--bs-primary);
}


/* Checkout Start */

.woocommerce-checkout form.checkout {
  display: inline-block;
  width: 100%;
  margin-top: 30px;
}

.woocommerce-checkout>.col2-set>.col-1 {
  float: none;
  width: 100%;
  margin-bottom: 30px;
}

.woocommerce-checkout>.col2-set>.col-2 {
  float: none;
  width: 100%;
}

.woocommerce-checkout>.col2-set {
  float: left;
  width: 48%;
}

.woocommerce form.woocommerce-checkout h3#order_review_heading,
.woocommerce-checkout #order_review {
  float: right;
  width: 48%;
}

@media only screen and (max-width: 959px) {
  .woocommerce-checkout>.col2-set>.col-1,
  .woocommerce-checkout>.col2-set>.col-2,
  .woocommerce-checkout>.col2-set,
  .woocommerce form.woocommerce-checkout h3#order_review_heading,
  .woocommerce-checkout #order_review {
      float: none;
      width: 100%;
  }
  .woocommerce-checkout #customer_details {
      margin-bottom: 30px;
  }
}

.woocommerce form.woocommerce-checkout .woocommerce-additional-fields,
.woocommerce form.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce form.woocommerce-checkout .woocommerce-billing-fields {
  padding: 25px;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
}

.woocommerce form.woocommerce-checkout .woocommerce-form__label .input-checkbox,
.woocommerce form.woocommerce-checkout .woocommerce-form__label .input-checkbox+span {
  display: inline-block;
  vertical-align: middle;
}

.woocommerce form.woocommerce-checkout .woocommerce-shipping-fields + div {
  margin-top: 30px;
}

.woocommerce form.woocommerce-checkout .woocommerce-form__label .input-checkbox {
  margin-right: 3px;
}

.woocommerce form.woocommerce-checkout h3 {
  font-size: 18px;
  padding-bottom: 15px;
  margin-bottom: 18px;
  border-bottom: 1px solid #d8d8d8;
  display: block;
  width: 100%;
}

.woocommerce table.woocommerce-checkout-review-order-table {
  border-collapse: collapse;
}

.woocommerce table.woocommerce-checkout-review-order-table th,
.woocommerce table.woocommerce-checkout-review-order-table td {
  padding: 14.5px 12px;
  background: transparent;
}

.woocommerce table.woocommerce-checkout-review-order-table td {
  border-bottom: 1px solid rgb(216 216 216);
}

.woocommerce table.woocommerce-checkout-review-order-table th {
  font-size: 16px;
  font-weight: 600;
}

.woocommerce-checkout .post-items,
.woocommerce-checkout .post-items .post-content {
  border: 0;
  padding: 0;
  background: transparent;
}

.woocommerce-checkout .woocommerce .woocommerce-info {
  padding: 15px 20px 15px 47px;
}

.woocommerce-checkout .woocommerce .woocommerce-info::before {
  content: "\f097";
  text-shadow: none;
  color: var(--bs-secondary);
}

/* Checkout End */

.related.products {
  text-align: center;
}

.related.products h2 {
  font-size: 24px;
  text-align: center;
  position: relative;
  padding-bottom: 6px;
  display: inline-block;
  margin-bottom: 30px;
  margin-top: 10px;
  z-index: 0;
}

.related.products h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 2px solid var(--bs-primary);
}

.woocommerce ul.products li.product a.compare.button.in_compare:before, ul.products li.product a.compare.button.in_compare:after{
display:none;
}
.woocommerce ul.products li.product a.compare.button{
color:#000;
}

#cart-add-check {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  box-shadow: 0 0 4px 4px #00000025;
  background-color: #ffffff;
  border-radius: 4px;
  z-index: 11;
  padding: 0 10px;
}

#cart-add-check svg.checkmark {
  width: 40px;
  height: 40px;
  margin: 1em auto;
}

#cart-add-check p {
  font-size: 16px;
  color: var(--bs-primary);
}


/* Paths inside SVG. Each path will be animated using stroke property
        and 'stroke' animation */

svg>.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 3;
  stroke-miterlimit: 10;
  stroke: #3a74cb;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

svg>.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-width: 3;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

svg.checkmark {
  width: 75px;
  height: 75px;
  margin: 2em auto;
  border-radius: 50%;
  display: block;
  stroke-width: 4;
  stroke: #3a74cb;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #7ac142;
  transition: 1s all ease;
}


@keyframes stroke {
  100% {
      stroke-dashoffset: 0;
  }
}



.product-img .info {
  -webkit-transform: translate(265px, 145px) rotate(45deg);
  -moz-transform: translate(265px, 145px) rotate(45deg);
  -ms-transform: translate(265px, 145px) rotate(45deg);
  -o-transform: translate(265px, 145px) rotate(45deg);
  transform: translate(265px, 145px) rotate(45deg);
  background: #333;
  background: rgba(0, 0, 0, .6);
  visibility: hidden;
  opacity: 0;
  transition: all .35s ease-in;
  position: absolute;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  right: 0;
  text-align: center;
  bottom: 0;
  top: 0;
  left: 0;
  overflow: hidden;
  background-size: contain !important;
}

.product-single:hover .info {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition-delay: .2s;
  -moz-transition-delay: .2s;
  transition-delay: .2s;
  visibility: visible;
  opacity: 1;
  -webkit-transition-delay: .2s;
  -moz-transition-delay: .2s;
  transition-delay: .2s;
}




.footer-cart-wrapper .cart {
width: 55px;
  line-height: 55px;
  border-radius: 50%;
  text-align: center;
  background-color: var(--bs-primary);
  color: #ffffff;
  position: relative;
}



.footer-cart-wrapper .cart a {
color: #ffffff;
}

.footer-cart-wrapper .cart:before {
  position: absolute;
  content: "";
  inset: 0 0 0 0;
  border-radius: 50%;
  box-shadow: 0 0 rgb(247 124 41 / 20%), 0 0 0 5px rgb(247 124 41 / 20%), 0 0 0 10px rgb(247 124 41 / 20%), 0 0 0 15px rgb(247 124 41 / 20%);
  z-index: -1;
  animation: ripples 5s linear infinite;
  transition: 0.7s;
  transform: scale(0.5);
}


.footer-cart-wrapper .cart .count {
position: absolute;
height: 30px;
width: 30px;
background-color: var(--bs-secondary);
border-radius: 500px;
font-size: 14px;
display: inline-flex;
justify-content: center;
align-items: center;
top: 0px;
right: 0px;
color: #fff;
transform: translate(50%, -50%);
z-index: 1;
}

.add_to_cart_button  .count {
 position: absolute;
 height: 20px;
 width: 20px;
 display: inline-flex;
 top: 0;
 left: 100%;
 transform: translate(-50%, -50%);
 background-color: #000;
 justify-content: center;
 align-items: center;
 color: #212121;
 font-size: 14px;
 border-radius: 400px;
 transition: all ease 1s;
 z-index: 9999999;
}

.add_to_cart_button, .woocommerce div.product, body{
overflow:visible !important;
}



.footer-cart-wrapper {
  position: fixed;
  bottom: 55px;
  left: 30px;
  background: 0 0;
  color: #000;
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  transition: .9s;
  border-radius: 100%;
  font-size: 30px;
  border: none;
  z-index: 5;
  overflow: visible;
}

@keyframes ripples {
  to {
      box-shadow: 0 0 0 5px rgba(247, 124, 41, 0.2), 0 0 0 10px rgba(247, 124, 41, 0.2), 0 0 0 15px rgba(247, 124, 41, 0.2), 0 0 0 20px rgba(247, 124, 41, 0.2);
      transform: scale(1);
  }
}

.remaining-out-stock {
  color: #ff0000;
  font-size: 16px;
  font-weight: 600;
}

.remaining-stock,
.remaining-low-stock {
  color: var(--bs-secondary);
  font-size: 16px;
  font-weight: 600;
}

.storely-stocks {
  margin: 10px auto;
}

.stock-count{
color: var(--bs-primary);
}

.barline {
height: 12px;
background: var(--bs-primary-light);
border-radius: 20px;
}

.stock-countbar {
height: 12px;
background: var(--bs-primary);
border-top-left-radius: 20px;
border-bottom-left-radius: 20px;
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
position: relative;
}


.storely-product-sharing .widget_social_widget {
  display: flex;
  align-items: self-end;
  justify-content: space-between;
}


.storely-product-sharing:after {
  content: '';
  background: url(/wp-content/themes/fivox-wptheme/images/product-share.png);
  width: 118px;
  height: 47px;
  display: block;
  position: relative;
  left: 52px;
}


.woocommerce-demo-store header {
  top: 50px;
}
.entry-summary .woo-multi-currency {
  display: none;
}


.woocommerce ul.products.list li.product .product-action .button.product_type_grouped,
.woocommerce ul.products.list li.product.outofstock .product-action .button {
  background: none;
  border: 1px solid #e8e8e8;
  margin: 10px;
}

.woocommerce ul.products.list li.product .product-action .button.product_type_grouped:before,
.woocommerce ul.products.list li.product.outofstock .product-action .button:before{
color: var(--bs-secondary);
}

.header-widget .woo-multi-currency.wmc-shortcode .wmc-currency {
  background-color: #F9F9F9;
}

.woocommerce label
{
  color: #212121;
}

  /*# sourceMappingURL=style.css.map */