@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary: #EC1C24;
    --secondary: #FACF14;
    --hover: #BF202F;
    --bs-success: #00ba00;
    --bs-success-rgb: 0,186,0;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
}

body {
    line-height: 1.6;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Heebo', sans-serif;
    color: #424243;
    position: relative;
    background-color: #fff;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Heebo', sans-serif;
    color: #242424;
    font-weight: 600;
}

a {
    color: var(--primary);
    text-decoration: none;
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

a:hover {
    color: var(--hover);
}

.btn {
    border-radius: 0;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.py__50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.py__40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.py__30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.pt__30 {
    padding-top: 30px;
}

.pb__50 {
    padding-bottom: 50px;
}

.pb__30 {
    padding-bottom: 30px;
}

.mw-0{
    min-width: 0 !important;
}

.fs-13{
    font-size: 13px; 
}

.fs-14{
    font-size: 14px;
}

.h-100{
    height: 100px;
}

.text-justify {
    text-align: justify;
}

.cursor-pointer {
    cursor: pointer;
}

.bg__theme__color {
    background-color: var(--primary);
}

.text__theme__color {
    color: var(--primary) !important;
}

.border-dashed{
    border-bottom: 2px dashed #E0E2E3;
}

.form-label {
    font-weight: 600;
}

.form-control,
.form-select {
    border-radius: 0;
    font-size: 12px;
    border: 2px solid #f6f6f6;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
}

.form-check-input {
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.15em;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgb(236 28 36 / 25%);
}

.form-check-input[type=checkbox] {
    border-radius: 0;
}

.btn-icon {
    cursor: pointer;
    font-size: 0.8125rem;
    line-height: 36px;
    width: calc(2.02rem + 2px);
    height: calc(2.02rem + 2px);
    display: inline-block;
}

.btn-soft-info {
    background-color: rgba(37, 188, 241, 0.15);
    color: #25bcf1;
}

.btn-soft-info:hover {
    background-color: #25bcf1;
    border-color: #25bcf1;
    color: #fff;
}

.table thead.table-secondary th{
    background-color: #F8F8F8;
}

.modal .modal-content {
    border-radius: 0;
}

.modal .btn-close {
    position: absolute;
    top: -15px;
    right: -15px;
    z-index: 1;
    width: 28px;
    height: 28px;
    font-size: 12px;
    line-height: 28px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    background-color: #fff;
    opacity: 1;
    -webkit-box-shadow: 0px 5px 12px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 5px 12px 0px rgba(0, 0, 0, 0.2);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.text-truncate-2{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.section__title {
    margin-bottom: 20px;
}

.section__title .main__title {
    display: inline-block;
    position: relative;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #242424;
}

.section__title .main__title span {
    color: var(--primary);
}

.btn {
    border-radius: 1px;
    padding: 9px 18px;
}

.btn__theme {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 9px 18px;
    border-radius: 1px;
    color: #fff;
    background-color: var(--primary);
    border: 2px solid var(--primary);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.btn__theme:hover,
.btn__theme:focus {
    color: var(--primary);
    background-color: #fff;
    border: 2px solid var(--primary);
}

.custom__arrow__list ul {
    margin: 25px 0;
}

.custom__arrow__list ul li {
    padding: 6px 0;
    position: relative;
    padding-left: 32px;
}

.custom__arrow__list ul li:before {
    content: "\f061";
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--primary);
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
    font-weight: 900;
}

/* SPINNER ANIMATION */

.loading {
    position: fixed;
    z-index: 99999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
  }
  
  .loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0, .8)); */
    background-color: rgba(255,255,255,0.7);
  }
  
  /* :not(:required) hides these rules from IE9 and below */
  .loading:not(:required) {
    /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
  }
  
  .loading:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    -webkit-animation: spinner 150ms infinite linear;
    -moz-animation: spinner 150ms infinite linear;
    -ms-animation: spinner 150ms infinite linear;
    -o-animation: spinner 150ms infinite linear;
    animation: spinner 150ms infinite linear;
    border-radius: 0.5em;
    -webkit-box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
    box-shadow: rgba(0, 0, 51, 0.3) 1.5em 0 0 0, rgba(0, 0, 51, 0.3) 1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) 0 1.5em 0 0, rgba(0, 0, 51, 0.3) -1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) -1.5em 0 0 0, rgba(0, 0, 51, 0.3) -1.1em -1.1em 0 0, rgba(0, 0, 51, 0.3) 0 -1.5em 0 0, rgba(0, 0, 51, 0.3) 1.1em -1.1em 0 0;
  }
  
  @-webkit-keyframes spinner {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @-moz-keyframes spinner {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @-o-keyframes spinner {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @keyframes spinner {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }

/*=============================================
   - HEADER TOP BAR        
=============================================*/

.header__top {
    background-color: #101010;
    padding: 0px 0;
    height: 36px;
    overflow: hidden;
    z-index: 1;
    position: relative;
}

.header__top .exclusive__offer__wrapper {
    position: relative;
    padding: 9px;
}

.header__top .exclusive__offer__wrapper:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    height: 100%;
    width: 100%;
    background-color: #f00;
    content: "";
    transform: skew(35deg);
    z-index: -1;
}


.header__top .exclusive__offer__wrapper .offer__title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    background: var(--primary);
    padding: 8px 20px;
    color: #ffffff;
    display: inline-block;
    position: absolute;
    top: 3px;
    margin: 0;
    z-index: 9;
    line-height: 1.2;
}

.header__top .exclusive__offer__wrapper .marquee-list {
    overflow: hidden;
    color: white;
    position: relative;
    font-size: 12px;
    line-height: 1.5em;
}

.header__top .exclusive__offer__wrapper .marquee-list ul {
    visibility: hidden;
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    white-space: nowrap;
    display: inline;

}

.header__top .exclusive__offer__wrapper .marquee-list li {
    padding-left: 1em;
    text-indent: -1em;
    display: inline;
}

.header__top .exclusive__offer__wrapper .marquee-list li i {
    font-size: 12px;
    margin-right: 3px;
}

.header__top .exclusive__offer__wrapper .marquee-list li:before {
    content: "";
    padding-right: 5px;
    display: inline-block;
    width: 15px;
}

.header__top .call__support {
    text-align: right;
    display: flex;
    justify-content: right;
}

.header__top .call__support h6 {
    color: #fff;
    font-weight: 400;
    margin-bottom: 0;
    font-size: 13px;
}

.header__top .call__support h6 i {
    color: #fff;
}

.header__top .call__support span {
    font-weight: 600;
}

.header__top .call__support span a {
    color: #fff;
    padding-left: 10px;
}

.header__top .call__support span a:hover,
.header__top .call__support span a:focus {
    color: var(--secondary);
}

.header__middle .header__logo {
    padding: 5px 0;
}

.header__middle .header__search__form{
    position: relative;
}

.header__middle .header__search__form .input-group {
    border: 0.085rem solid var(--primary);
    height: 42px;
}

.header__middle .header__search__form .input-group-text {
    border-radius: 0;
    position: relative;
    text-align: left;
}

.header__middle .header__search__form .category__search {
    padding: 0;
    border: none;
    padding-right: 8px;
    background-color: transparent;
}

.header__middle .header__search__form .category__search:before {
    border-left: 0.085rem solid #d7d7d7;
    content: "";
    height: 20px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
    z-index: 1;
}

.header__middle .header__search__form .category__search .SumoSelect>.CaptionCont {
    border: none;
    font-size: 13px;
    font-weight: 600;
}

.header__middle .header__search__form .category__search .SumoSelect>.CaptionCont>span {
    padding-right: 26px;
}

.header__middle .header__search__form .category__search .SumoSelect>.optWrapper>.options li.opt {
    font-size: 14px;
    font-weight: 500;
}

.header__middle .header__search__form .form-control {
    border: none;
    font-size: 14px;
    font-weight: 500;
}

.header__middle .header__search__form .search__btn {
    color: #fff;
    background-color: var(--primary);
    border: none;
    padding: 10px 15px;
}

.header__middle .header__search__form .typed-search-box{
    min-height: 200px;
    z-index: 5;
}

.header__middle .header__search__form .typed-search-box .search-tag-title{
    background-color: #f5f5f5;
    font-size: 12px;
    text-align: right;
    padding: 6px 5px 2px 5px;
}

.header__middle .header__search__form .typed-search-box .typed-search-product-list .search-product img{
    width: 60px;
    height: 60px;
    padding: 4px;
    object-fit: contain;
    object-position: center;
    border: 1px solid #f1f1f1;
}

.header__middle .header__search__form .typed-search-box .typed-search-product-list .search-product > div{
    width: 60px;
}

.header__middle .header__search__form .typed-search-box .typed-search-product-list .search-product .product-name{
    font-size: 15px;
}

.header__middle .header__widget__group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.header__middle .header__widget__group .header__widget {
    margin-left: 15px;
}

.header__middle .header__widget__group .header__widget:first-child {
    margin-left: 0px;
}

.header__middle .header__widget__group .header__widget {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.header__middle .header__widget__group .header__widget .circle {
    width: 40px;
    height: 40px;
    font-size: 15px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    color: #555;
    background: #f5f5f5;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.line-bar

.header__middle .header__widget__group .header__widget:hover .circle,
.header__middle .header__widget__group .header__widget:focus .circle {
    color: #fff;
    background: var(--primary);
    text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
}

.header__middle .header__widget__group .header__widget sup {
    position: absolute;
    top: -12px;
    left: 20px;
    width: 24px;
    height: 24px;
    font-size: 12px;
    line-height: 20px;
    border-radius: 50%;
    text-align: center;
    color: #dfff;
    background: var(--primary);
    border: 2px solid #fff;
    text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
}

/*=============================================
   - MAIN HEADER      
=============================================*/

.header__bottom .navbar {
    background: #101010;
    padding: 2px 0;
    border-bottom: 1px solid rgb(228 228 228 / 0%);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, .075) !important;
}

.header__bottom .navbar.fixed-top {
    box-shadow: 0px 0px 2px rgba(33, 51, 102, 0.3);
    transition: all 0.3s ease;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

.header__bottom .navbar .navbar-nav .nav-link {
    position: relative;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 12px 34px;
}

.header__bottom .navbar .navbar-nav .nav-item:hover .nav-link,
.header__bottom .navbar .navbar-nav .nav-item:focus .nav-link {
    color: var(--primary);
}

.header__bottom .navbar .navbar-nav .nav-link:hover,
.header__bottom .navbar .navbar-nav .nav-link:focus,
.header__bottom .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.header__bottom .navbar .navbar-nav .nav-link.active+.sub-arrow {
    color: var(--primary);
}

.header__bottom .navbar .navbar-nav .nav-item .sub-arrow {
    color: #fff;
    position: absolute;
    top: 12px;
    right: 12px;
}

.header__bottom .navbar .navbar-nav .nav-item:hover .sub-arrow,
.header__bottom .navbar .navbar-nav .nav-item:focus .sub-arrow {
    color: var(--primary);
}

.header__bottom .navbar .navbar-nav .dropdown-menu {
    -webkit-box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
    border: 1px solid #ddd;
    border-radius: 0px;
    margin-top: 0;
    padding: 0;
}

.header__bottom .navbar .navbar-nav .dropdown-menu::after {
    content: '';
    width: 13px;
    height: 13px;
    background: #ffff;
    position: absolute;
    top: -6px;
    left: 16px;
    transform: rotate(45deg);
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
}

.header__bottom .navbar .navbar-nav .dropdown-menu li {
    position: relative;
    font-size: 14px;
}

.header__bottom .navbar .navbar-nav .dropdown-menu li:hover:before,
.header__bottom .navbar .navbar-nav .dropdown-menu li:focus:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 3px;
    background: var(--primary);
    left: 0px;
    top: 12px;
}

.header__bottom .navbar .navbar-nav .dropdown-menu li:hover .dropdown-item,
.header__bottom .navbar .navbar-nav .dropdown-menu li:focus .dropdown-item {
    padding-left: 24px;
}

.header__bottom .navbar .navbar-nav .dropdown-menu .dropdown-item {
    font-weight: 600;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.header__bottom .navbar .navbar-nav .dropdown-menu.sub-menu {
    margin-top: 0;
}

.header__bottom .navbar .navbar-nav .dropdown-menu.sub-menu::after {
    display: none;
}

.header__bottom .navbar .navbar-nav .dropdown-menu .dropdown-item.active,
.header__bottom .navbar .navbar-nav .dropdown-menu .dropdown-item:active {
    background-color: var(--primary);
}

.header__bottom .navbar-toggler {
    border: 0.1rem solid #fff;
    padding: 0.1rem 0.5rem;
    border-radius: 1px;
}

.header__bottom .navbar-toggler:focus {
    box-shadow: none;
}

.header__bottom .navbar-toggler-icon {
    filter: brightness(0) invert(1);
    width: 1.2em;
    height: 1.5em;
}

.header__bottom .offcanvas-header .btn-close {
    opacity: 1;
    width: 1em;
    height: 1em;
    border: 1px solid var(--primary);
    border-radius: 50%;
    background-size: 10px;
}

.header__bottom .offcanvas-header .user-header-authentication {
    display: flex;
    align-items: center;
}

.header__bottom .offcanvas-header .user-header-authentication .user-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 3px solid #f1f1f1;
}

.header__bottom .offcanvas-header .user-header-authentication .user-icon img {
    border-radius: 50%;
}

.header__bottom .offcanvas-header .user-header-authentication h5 {
    margin-left: 10px;
    font-size: 15px;
    margin-bottom: 0;
}

.header__bottom .offcanvas-header .user-header-authentication h5 a {
    color: #101010;
}

.header__bottom .offcanvas-header .user-header-authentication h5 a:hover,
.header__bottom .offcanvas-header .user-header-authentication h5 a:focus {
    color: var(--primary);
}

.header__bottom .offcanvas-header .user-header-authentication h5 .divider {
    color: #bebebe;
    padding: 0 10px;
}

.header__bottom .navbar .offcanvas.show .navbar-nav .nav-link {
    color: #000;
    padding: 0.8rem 1rem;
    display: inline-block;
}

.header__bottom .offcanvas.show .dropdown-toggle::after {
    float: right;
}

.header__bottom .navbar .offcanvas.show .navbar-nav .nav-item .sub-arrow {
    color: #000;
    top: 12px;
    width: 20px;
    height: 20px;
    line-height: 42px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
}

.header__bottom .navbar .offcanvas.show .navbar-nav .dropdown-menu {
    box-shadow: none;
}

.header__bottom .navbar .offcanvas.show .navbar-nav .dropdown-menu::after {
    display: none;
}

/*Mobile Banner*/

.mobile__footer nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
    z-index: 1030;
}

.nav__box {
    display: flex;
    padding: 8px;
    background-color: #fff;
    box-shadow: 0px 0px 16px 0px #e6e6e6;
}

.nav__container {
    display: flex;
    width: 100%;
    list-style: none;
    justify-content: space-around;
}

.nav__item {
    display: flex;
    position: relative;
    padding: 2px;
}

.nav__item.active .nav__item__icon {
    color: var(--primary);
    margin-top: -26px;
    box-shadow: 0px 0px 16px 0px #d3d3d3;
}

.nav__item.active .nav__item__text {
    color: var(--primary);
    transform: scale(1);
}

.nav__item__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #2f3046;
    text-decoration: none;
}

.nav__item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6em;
    background-color: #fff;
    border-radius: 50%;
    height: 46px;
    width: 46px;
    transition: margin-top 250ms ease-in-out, box-shadow 250ms ease-in-out;
}

.nav__item__text {
    font-size: 15px;
    font-weight: 600;
    position: absolute;
    bottom: 0;
    transform: scale(0);
    transition: transform 250ms ease-in-out;
}


/*=============================================
   - BANNER    
=============================================*/

.banner__section .banner__carousel {
    padding: 30px 0;
}

.banner__section .owl-carousel .owl-nav {
    margin-top: 0;
}

.banner__section .owl-carousel .owl-nav .owl-prev,
.banner__section .owl-carousel .owl-nav .owl-next {
    position: absolute;
    width: 45px;
    height: 45px;
    display: block;
    z-index: 1000;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    background: rgb(255 255 255 / 20%) !important;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.banner__section .owl-carousel .owl-nav .owl-prev {
    left: 25px;
    top: 43%;
}

.banner__section .owl-carousel .owl-nav .owl-next {
    right: 25px;
    top: 43%;
}

.banner__section .owl-carousel .owl-nav .owl-prev span,
.banner__section .owl-carousel .owl-nav .owl-next span {
    font-size: 1.2rem;
    color: #fff;
}

.banner__section .owl-carousel .owl-nav .owl-prev:focus,
.banner__section .owl-carousel .owl-nav .owl-next:focus {
    outline: 0;
}

.banner__section .owl-carousel .owl-nav .owl-prev:hover,
.banner__section .owl-carousel .owl-nav .owl-next:hover,
.banner__section .owl-carousel .owl-nav .owl-prev:focus,
.banner__section .owl-carousel .owl-nav .owl-next:focus {
    background: var(--primary) !important;
}

.banner__section:hover .owl-carousel .owl-prev,
.banner__section:focus .owl-carousel .owl-prev {
    left: 10px;
    opacity: 1;
}

.banner__section:hover .owl-carousel .owl-next,
.banner__section:focus .owl-carousel .owl-next {
    right: 10px;
    opacity: 1;
}

/*=============================================
   - COMBO OFFER    
=============================================*/

.combo__offer {
    background-color: #F8F8F8;
    background-image: url('../images/banner-1.1.png');
    padding: 20px 30px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

.combo__offer.full__combo {
    padding: 90px 40px;
    height: 528px;
}

.combo__offer.full__combo .offer__thumb {
    text-align: center;
}

.combo__offer.full__combo .offer__detail {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.combo__offer.full__combo .offer__detail .title {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 18px;
}

.combo__offer.full__combo .offer__info {
    display: flex;
    align-items: center;
}

.combo__offer.full__combo .offer__info h5 {
    font-size: 16px;
    padding-right: 15px;
    margin-right: 15px;
}

.combo__offer.full__combo .offer__info h5:first-child {
    border-right: 3px solid #ddd;
}

.combo__offer.full__combo .offer__info h5.offer__price {
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
}

.combo__offer.full__combo .offer__detail .offer__btn {
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    background-color: var(--primary);
    border-radius: 50%;
    text-align: center;
    color: #fff;
}

.combo__offer.half__combo .offer__thumb {
    text-align: center;
}

.combo__offer.half__combo .offer__thumb img {
    width: 300px;
}

.combo__offer.half__combo .offer__detail {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.combo__offer.half__combo .offer__detail .title {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 14px;
}

.combo__offer.half__combo .offer__detail .offer__info {
    display: flex;
    align-items: center;
}

.combo__offer.half__combo .offer__detail .offer__info h5 {
    font-size: 16px;
    padding-right: 15px;
    margin-right: 15px;
    margin-bottom: 0;
}

.combo__offer.half__combo .offer__detail .offer__info h5:first-child {
    border-right: 3px solid #ddd;
}

.combo__offer.half__combo .offer__detail .offer__info h5.offer__price {
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
}

.combo__offer.half__combo .offer__detail .offer__btn {
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    background-color: var(--primary);
    border-radius: 50%;
    text-align: center;
    color: #fff;
}

/* Ads */

.advertisement__banner{
    position: relative;
    overflow: hidden;
}

.advertisement__banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    width: 50%;
    height: 100%;
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 42556, 255, 0)), to(rgba(255, 255, 255, .3)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.advertisement__banner:hover::before {
    -webkit-animation: shine 1.3s;
    animation: shine 1.3s;
}

@-webkit-keyframes shine {
    100% {
      left: 125%;
    }
  }
  
  @keyframes shine {
    100% {
      left: 125%;
    }
  }

/*=============================================
   - CATEGORY   
=============================================*/

.product__category__section {
    position: relative;
    overflow: hidden;
}

.product__category__carousel .product__category__item {
    padding: 20px;
    margin: 10px 1px;
    border: 1px solid #E5E5E5;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.product__category__carousel .product__category__item:hover{
    border: 1px solid var(--primary);
}

.product__category__carousel .product__category__item .category__thumb__img {
    margin-bottom: 22px;
    text-align: center;
}

.product__category__carousel .product__category__item .category__thumb__img img {
    height: 100px;
    width: 100%;
    object-fit: contain;
}

.product__category__carousel .product__category__item .category__detail {
    text-align: center;
}

.product__category__carousel .product__category__item .category__detail h3 {
    font-size: 15px;
    margin-bottom: 0;
    font-weight: 700;
}

.product__category__carousel {
    position: relative;
}

.product__category__carousel.owl-carousel.owl-theme .owl-nav {
    position: absolute;
    right: 0;
    top: -60px;
    margin-top: 0;
}

.product__category__carousel.owl-carousel.owl-theme .owl-nav button.owl-prev,
.product__category__carousel.owl-carousel.owl-theme .owl-nav button.owl-next {
    font-size: 15px;
    height: 36px;
    width: 36px;
    line-height: 36px;
    color: #252525;
    margin: 0 0 0 5px;
    background-color: #fff;
    border: 2px solid #e2e2e2;
    border-radius: 3px;
    text-align: center;
}

/*=============================================
   - PRODUCT LIST   
=============================================*/

.featured__product__filter__button {
    text-align: right;
    margin-bottom: 25px;
}

.featured__product__filter__button .btn__group__filter li {
    display: inline-block;
    font-weight: 600;
    padding: 0 16px;
    cursor: pointer;
    position: relative;
    border-right: 2px dotted #d2d1d1;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.featured__product__filter__button .btn__group__filter li:last-child {
    border-right: none;
    padding-right: 0;
}

.featured__product__filter__button .btn__group__filter li:after {
    position: absolute;
    bottom: -5px;
    height: 2px;
    width: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    content: "";
    background-color: var(--primary);
    transition: all 300ms ease;
}

.featured__product__filter__button .btn__group__filter li:hover,
.featured__product__filter__button .btn__group__filter li:focus,
.featured__product__filter__button .btn__group__filter li.active {
    color: var(--primary);
}

.featured__product__filter__button .btn__group__filter li:hover:after,
.featured__product__filter__button .btn__group__filter lifocus:after,
.featured__product__filter__button .btn__group__filter li.active:after {
    width: 30%;
}

.featured__product__filter__mobile.dropdown {
    text-align: right;
    margin-bottom: 20px;
}

.featured__product__filter__mobile.dropdown .btn {
    color: var(--primary);
    font-weight: 700;
    font-size: 20px;
    border: none;
    margin-bottom: 0.5rem;
}

.featured__product__filter__mobile.dropdown .dropdown-menu {
    -webkit-box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
    border: 0 solid #e9ecef;
    border-radius: 0px;
    font-size: 12px;
}

.featured__product__filter__mobile.dropdown .dropdown-menu li {
    padding: 3px 10px;
}

.featured__product__filter__mobile.dropdown .dropdown-menu li.active {
    color: var(--primary);
}

.product__wrap {
    position: relative;
    padding: 20px;
    height: 100%;
    border: 1px solid #E5E5E5;
}

.product__wrap .product__wish {
    text-align: center;
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 18px;
    color: #ccc;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 100%;
    width: 33px;
    height: 33px;
    line-height: 38px;
    cursor: pointer;
    z-index: 1;
}

.product__wrap .product__wish a {
    color: #ccc;
}

.product__wrap .product__wish a.active {
    color: var(--primary);
}

.product__wrap .product__img {
    text-align: center;
    margin-bottom: 30px;
}

.product__wrap .product__img {
    position: relative;
    overflow: hidden;
}

.product__wrap .product__img img {
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.product__wrap .product__img .product__hover__img {
    opacity: 0;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    transition: all 0.4s ease-out 0s;
    -webkit-transition: all 0.4s ease-out 0s;
}

.product__wrap:hover .product__img img,
.product__wrap:focus .product__img img {
    opacity: 0;
}

.product__wrap:hover .product__img .product__hover__img,
.product__wrap:focus .product__img .product__hover__img {
    opacity: 1;
    z-index: 0;
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.product__wrap .product__img img {
    height: 150px;
    object-fit: contain;
}

.product__wrap .product__info .product__category {
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 600;
}

.product__wrap .product__info .product__title {
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product__wrap .product__info .product__title a {
    color: #231F20;
}

.product__wrap .product__info .rating__wrap {
    display: flex;
    align-items: center;
}

.product__wrap .product__info .rating__wrap .rating {
    padding: 0;
    margin-bottom: 4px;
    margin-right: 20px;
}

.product__wrap .product__info .rating__wrap .rating .product__rate {
    display: inline-block;
}

.product__wrap .product__info .rating__wrap .rating .product__rate span {
    color: #ECECEC;
    font-size: 12px;
}

.product__wrap .product__info .rating__wrap .rating .product__rate.fill span {
    color: #FDC040;
}

.product__wrap .product__info .rating__wrap .rating__num {
    font-size: 12px;
    color: #7E7E7E;
    display: inline-flex;
    align-items: center;
}

.product__wrap .product__info .product__price {
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 600;
}

.product__wrap .product__info .product__price .price {
    color: var(--primary);
    font-weight: 700;
    font-size: 15px;
}

.product__wrap .product__info .product__price del {
    font-size: 14px;
    margin-right: 5px;
    margin-left: 5px;
    color: #7E7E7E;
}

.product__wrap .product__info .product__price .on__sale {
    display: inline-block;
    color: #119744;
    font-size: 14px;
}

.product__wrap .product__info .product__add {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.product__wrap .product__info .product__add .add__to__cart__btn span {
    margin-right: 5px;
}

.product__wrap .product__info .product__add .add__to__cart__btn {
    padding: 8px 28px;
    text-align: center;
    position: relative;
    display: inline-table;
    color: var(--primary);
    background-color: #FFF4F4;
    border: 1px solid var(--primary);
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
    z-index: 1;
    overflow: hidden;
    transition: all ease .5s;
}

.product__wrap .product__info .product__add .add__to__cart__btn:hover,
.product__wrap .product__info .product__add .add__to__cart__btn:focus{
    color: #fff;
    background-color: var(--primary);
}

.product__wrap .product__info .product__add .compare__btn {
    padding: 8px 15px;
    text-align: center;
    position: relative;
    display: inline-table;
    color: #1A1918;
    background-color: #F3F3F3;
    border: 1px solid #1A1918;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
    z-index: 1;
    overflow: hidden;
    transition: .5s all ease;
}

.product__wrap .product__info .product__add .compare__btn:hover,
.product__wrap .product__info .product__add .compare__btn:focus,
.product__wrap .product__info .product__add .compare__btn.added {
    color: #119744;
    background-color: #CDFFE0;
    border: 1px solid #119744;
}

.product__wrap .product__info .product__add .compare__btn:hover span,
.product__wrap .product__info .product__add .compare__btn:focus span {
    animation: fav-hover .5s infinite;
}


@keyframes fav-hover {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/*=============================================
   - FILTER  
=============================================*/

.top__filter {
    position: relative;
    padding: 12px 20px;
    border: 1px solid #E5E5E5;
    background-color: #f5f6f7;
    margin-bottom: 18px;
}

.top__filter .filter__show h6 {
    font-weight: 600;
}


.top__filter .mobile__sort h6,
.top__filter .mobile__filter h6 {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 14px;
}

.top__filter .mobile__filter h6 {
    border-left: 1px solid #e8e8e8;
    justify-content: end;
}

.top__filter .mobile__sort h6 img,
.top__filter .mobile__filter h6 img {
    margin-right: 6px;
    width: 28px;
}

/* Offcanvas Bottom */

.top__filter .mobile__sort__offcanvas.offcanvas.offcanvas-bottom {
    height: 34vh;
}

.top__filter .mobile__sort__offcanvas .offcanvas-header {
    border-bottom: 1px solid #dee2e6;
}

.top__filter .mobile__sort__offcanvas .offcanvas-header .offcanvas-title {
    color: #878787;
    font-size: 15px;
}

.top__filter .mobile__sort__offcanvas .form-check {
    padding-left: 0;
    font-size: 14px;
    margin-bottom: 10px;
}

.top__filter .mobile__sort__offcanvas .form-check .form-check-input {
    float: right;
}

/* Offcanvas Right */

.top__filter .mobile__filter__offcanvas.offcanvas.offcanvas-end {
    width: 80%;
}

.top__filter .mobile__filter__offcanvas .offcanvas-header {
    border-bottom: 1px solid #dee2e6;
}

.top__filter .mobile__filter__offcanvas .offcanvas-header .offcanvas-title {
    color: #878787;
    font-size: 15px;
}

.top__filter .mobile__filter__offcanvas .advanced__filter {
    padding: 0;
    border: none;
}

/* Advanced Filter  */

.advanced__filter {
    position: relative;
    padding: 20px;
    border: 1px solid #E5E5E5;
}

.advanced__filter .shop__widget h5 {
    margin-bottom: 0;
    font-weight: 700;
}

.advanced__filter .shop__widget .clear {
    color: #119744;
    font-weight: 600;
}

.advanced__filter .accordion .accordion-item {
    border-bottom: 1px dashed #dee2e6;
}

.advanced__filter .accordion .accordion-item:last-child {
    border-bottom: none;
}

.advanced__filter .accordion .accordion-item .accordion-button {
    font-weight: 700;
    padding-left: 0;
    padding-right: 0;
    color: #000;
    font-size: 16px;
}

.advanced__filter .accordion .accordion-item .accordion-button::after {
    background-size: 1rem;
}

.advanced__filter .price__slider .price__input {
    width: 100%;
    display: flex;
    margin: 30px 0 0;
}

.advanced__filter .price__slider .price__input .field {
    display: flex;
    width: 100%;
    height: 35px;
    align-items: center;
}

.advanced__filter .price__slider .price__input .field input {
    width: 100%;
    height: 100%;
    outline: none;
    font-size: 14px;
    margin-left: 12px;
    border-radius: 1px;
    text-align: center;
    font-weight: 600;
    border: 1px solid #e5e5e5;
    -moz-appearance: textfield;
}

.advanced__filter .price__slider input[type="number"]::-webkit-outer-spin-button,
.advanced__filter .price__slider input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.advanced__filter .price__slider .price__input .separator {
    width: 130px;
    display: flex;
    font-size: 19px;
    align-items: center;
    justify-content: center;
}

.advanced__filter .price__slider .price__slider__progress {
    margin-top: 15px;
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
}

.advanced__filter .price__slider .price__slider__progress .progress {
    height: 100%;
    left: 25%;
    right: 25%;
    position: absolute;
    border-radius: 5px;
    background: var(--primary);
}

.advanced__filter .price__slider .range__input {
    position: relative;
}

.advanced__filter .price__slider .range__input input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    cursor: w-resize;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.advanced__filter .price__slider input[type="range"]::-webkit-slider-thumb {
    height: 17px;
    width: 17px;
    border-radius: 1px;
    background: var(--primary);
    pointer-events: auto;
    -webkit-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.advanced__filter .price__slider input[type="range"]::-moz-range-thumb {
    height: 17px;
    width: 17px;
    border: none;
    border-radius: 1px;
    background: var(--primary);
    pointer-events: auto;
    -moz-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

/*=============================================
   - PRODUCTS VIEW  
=============================================*/

.product__view__detail {
    position: relative;
}

.product__view__detail .product__category {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.product__view__detail .product__title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
}

.product__view__detail .product__review li span {
    color: #ECECEC;
}

.product__view__detail .product__review li.fill span {
    color: #FDC040;
}

.product__view__detail .product__review .review__total,
.product__view__detail .product__review .review__total a {
    color: #101010;
}

.product__view__detail .product__review .review__total:hover a {
    color: var(--primary);
}

.product__view__detail .product__review .product-details-stock span {
    display: inline-block;
    font-size: 15px;
    color: #0989ff;
    background-color: rgba(9, 137, 255, 0.06);
    line-height: 1;
    padding: 4px 12px;
    margin-right: 10px;
}

.product__view__detail .product__price {
    margin-top: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.product__view__detail .product__price .price {
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
}

.product__view__detail .product__price del {
    font-size: 16px;
    margin-right: 8px;
    margin-left: 8px;
    color: #7E7E7E;
}

.product__view__detail .product__price .on__sale {
    display: inline-block;
    color: #119744;
    font-size: 18px;
}

.product__variant {
    margin-top: 20px;
}

.product__variant .product__variant__list {
    margin-bottom: 20px;
}

.product__variant .product__variant__list .product__variant__title {
    font-size: 15px;
    margin-bottom: 12px;
    font-weight: 700;
}

.product__variant .product__variant__list .variant__size--list {
    margin-right: 14px;
    margin-bottom: 5px;
}

.product__variant .product__variant__list .variant__size--list .variant__size--value {
    width: 100%;
    min-width: 52px;
    height: 36px;
    line-height: 32px;
    padding: 2px 5px;
    display: inline-block;
    border-radius: 1px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.product__variant .product__variant__list .variant__size--list input[type=radio] {
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
    position: absolute;
    height: 1px;
    width: 1px;
}

.product__variant .product__variant__list .variant__size--list input[type=radio]+label {
    border: 2px solid #E5E5E5;
}

.product__variant .product__variant__list .variant__size--list input[type=radio]:checked+label {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.product__variant .product__variant__list .quantity__box {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.product__variant .product__variant__list .quantity__box .quantity__value {
    display: inline-block;
    border: 1px solid #E5E5E5;
    margin: 0;
    width: 45px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    padding: 0;
    background: #F7F7F7;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.product__variant .product__variant__list .quantity__box .quantity__value:hover,
.product__variant .product__variant__list .quantity__box .quantity__value:focus {
    background-color: var(--primary);
    color: #fff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.product__variant .product__variant__list .quantity__box .quantity__number {
    border: none;
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
    margin: 0;
    width: 50px;
    height: 38px;
    text-align: center;
}

.product__variant .product__variant__list .quantity__box .quantity__number:focus-visible {
    outline: none;
}

.product__variant .product__variant__list .check__availability__btn input[type=number]::-webkit-inner-spin-button,
.product__variant .product__variant__list .check__availability__btn input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.product__variant .product__variant__list .check__availability__btn .input-group-append .btn:hover,
.product__variant .product__variant__list .check__availability__btn .input-group-append .btn:focus {
    background-color: #cd1017;
    color: #fff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.product__variant .product__variant__list .delivery__time {
    margin-top: 5px;
    color: #119744;
    font-style: italic;
    display: block;
    font-weight: 600;
    font-size: 13px;
}

.product__variant .product__variant__list .desc {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.add__cart__section .add__to__cart__btn {
    padding: 8px 30px;
    text-align: center;
    position: relative;
    display: inline-table;
    color: #FFF4F4;
    background-color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
    z-index: 1;
    overflow: hidden;
    transition: all ease .5s;
}

.add__cart__section .compare__btn {
    padding: 8px 30px;
    text-align: center;
    position: relative;
    display: inline-table;
    color: #555555;
    background-color: #f5f5f5;
    border: 1px solid #f5f5f5;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
    z-index: 1;
    overflow: hidden;
    transition: all ease .5s;
}

.out-of-stock-btn{
    padding: 8px 30px;
    text-align: center;
    position: relative;
    display: inline-table;
    color: #fff;
    background-color: #F8941E;
    border: 1px solid #F8941E;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
    z-index: 1;
    overflow: hidden;
    transition: all ease .5s;
}
/*=============================================
   - PRODUCT PREVIEW  
=============================================*/

.product__preview__box {
    position: relative;
}

.product__preview__box .product__wish {
    text-align: center;
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 18px;
    color: #ccc;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 100%;
    width: 35px;
    height: 35px;
    line-height: 35px;
    cursor: pointer;
    z-index: 1;
}

.product__preview__box .product__wish a {
    color: #ccc;
}

.product__preview__box .product__wish a.active {
    color: var(--primary);
}

.product__preview__box .preview__cover__image {
    text-align: center;
    height: 400px;
    background: #f2f2f2;
    cursor: crosshair;
}

.product__preview__box .preview__cover__image img {
    height: 400px;
    padding: 30px;
    object-fit: contain;
}

.product__preview__box .preview__thumb__list {
    margin-top: 20px;
}

.product__preview__box .preview__thumb__list .thumbnail__img {
    height: 100px;
    border: 1px solid #ededed;
    background-color: #f8f8f8;
}

.product__preview__box .preview__thumb__list .thumbnail__img img {
    height: 100px;
    padding: 10px 10px;
    object-fit: contain;
}

/*Description*/

.description__section {
    position: relative;
}

.description__container .nav-tabs {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 2px;
    border-bottom: 2px solid #f6f6f6;
}

.description__container .nav-tabs .nav-link {
    color: #b3b3b3;
    font-size: 16px;
    padding: 7px 30px 7px 0;
    border: none;
    font-weight: 600;
    position: relative;
}

.description__container .nav-tabs .nav-link.active {
    color: var(--primary);
}

.description__container .nav-tabs .nav-link::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -0.15rem;
    width: 0;
    border-bottom: 2px solid var(--primary);
    transition: width .3s ease;
    z-index: 1;
}

.description__container .nav-tabs .nav-link.active::before {
    left: 0;
    width: 42px;
}

.description__container .product__description img{
    max-width: 100%;
    height: auto;
}

.description__container .specification__table .table thead th {
    color: var(--primary);
    background-color: #f5f6f7;
}

/*=============================================
   - REVIEW  
=============================================*/

.review__section {
    position: relative;
}

.review__total__container {
    margin-top: 20px;
}

.review__total__container .rating__wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #FFF4F4;
    padding: 14px 30px;
    border: 1px dashed var(--primary);
}

.review__total__container .rating__wrap .rating {
    padding: 0;
    margin: 0;
    margin-right: 20px;
}

.review__total__container .rating__wrap .rating__num {
    font-size: 15px;
    color: #101010;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
}

.review__total__container .rating__wrap .overall {
    margin-bottom: 0;
    margin-right: 20px;
    font-weight: 600;
}

.review__total__container .rating__wrap .rating .product__rate span {
    color: #dedede;
    font-size: 15px;
    font-weight: 600;
}

.review__total__container .rating__wrap .rating .product__rate.fill span {
    color: #FDC040;
}

.product__testimonial {
    padding: 20px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}

.product__testimonial ul {
    list-style: none;
    display: flex;
    float: right;
}

.product__testimonial .client-info .client-detail h6 {
    font-weight: 600;
    font-size: 15px;
}

.product__testimonial .client-info .client-detail p {
    font-size: 14px;
    font-weight: 500;
}

.product__testimonial .client-info .client-image img {
    border-radius: 50%;
    border: 3px solid #f5f6f7;
    width: 65px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    object-fit: cover;
}

.product__testimonial .comments p {
    padding-top: 15px;
    text-align: justify;
    margin-bottom: 0;
    font-size: 15px;
}

/*=============================================
   - SIMILAR PRODUCT  
=============================================*/

.similar__section {
    position: relative;
    overflow: hidden;
}

.similar__product__carousel {
    position: relative;
}

.similar__product__carousel.owl-carousel.owl-theme .owl-nav {
    position: absolute;
    right: 0;
    top: -60px;
    margin-top: 0;
}

.similar__product__carousel.owl-carousel.owl-theme .owl-nav button.owl-prev,
.similar__product__carousel.owl-carousel.owl-theme .owl-nav button.owl-next {
    font-size: 16px;
    height: 36px;
    width: 36px;
    line-height: 30px;
    color: #252525;
    margin: 0 0 0 5px;
    background-color: #fff;
    border: 2px solid #e2e2e2;
    border-radius: 3px;
    text-align: center;
}

/**/

/*=============================================
   - MODAL PRODUCTS VIEW  
=============================================*/

.modal__product__view .product__view__detail {
    position: relative;
}

.modal__product__view .product__view__detail .product__category {
    font-size: 13px;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.modal__product__view .product__view__detail .product__title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
}

.modal__product__view .product__view__detail .product__review li span {
    color: #ECECEC;
}

.modal__product__view .product__view__detail .product__review li.fill span {
    color: #FDC040;
}

.modal__product__view .product__view__detail .product__review .review__total,
.modal__product__view .product__view__detail .product__review .review__total a {
    color: #101010;
}

.modal__product__view .product__view__detail .product__review .review__total:hover a {
    color: var(--primary);
}

.modal__product__view .product__view__detail .product__review .product-details-stock span {
    display: inline-block;
    font-size: 13px;
    color: #0989ff;
    background-color: rgba(9, 137, 255, 0.06);
    line-height: 1;
    padding: 4px 12px;
    margin-right: 10px;
}

.modal__product__view .product__view__detail .product__price {
    margin-top: 14px;
    margin-bottom: 6px;
    font-weight: 600;
}

.modal__product__view .product__view__detail .product__price .price {
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
}

.modal__product__view .product__view__detail .product__price del {
    font-size: 16px;
    margin-right: 8px;
    margin-left: 8px;
    color: #7E7E7E;
}

.modal__product__view .product__view__detail .product__price .on__sale {
    display: inline-block;
    color: #119744;
    font-size: 16px;
}

.modal__product__view .product__variant {
    margin-top: 15px;
}

.modal__product__view .product__variant .product__variant__list {
    margin-bottom: 20px;
}

.modal__product__view .product__variant .product__variant__list .product__variant__title {
    font-size: 15px;
    margin-bottom: 12px;
    font-weight: 700;
}

.modal__product__view .product__variant .product__variant__list .variant__size--list {
    margin-right: 14px;
    margin-bottom: 5px;
}

.modal__product__view .product__variant .product__variant__list .variant__size--list .variant__size--value {
    width: 100%;
    min-width: 52px;
    height: 34px;
    line-height: 30px;
    padding: 2px 5px;
    display: inline-block;
    border-radius: 1px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.modal__product__view .product__variant .product__variant__list .variant__size--list input[type=radio] {
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
    position: absolute;
    height: 1px;
    width: 1px;
}

.modal__product__view .product__variant .product__variant__list .variant__size--list input[type=radio]+label {
    border: 2px solid #E5E5E5;
}

.modal__product__view .product__variant .product__variant__list .variant__size--list input[type=radio]:checked+label {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.modal__product__view .product__variant .product__variant__list .quantity__box {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.modal__product__view .product__variant .product__variant__list .quantity__box .quantity__value {
    display: inline-block;
    border: 1px solid #E5E5E5;
    margin: 0;
    width: 38px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    padding: 0;
    background: #F7F7F7;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.modal__product__view .product__variant .product__variant__list .quantity__box .quantity__value:hover,
.modal__product__view .product__variant .product__variant__list .quantity__box .quantity__value:focus {
    background-color: var(--primary);
    color: #fff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.modal__product__view .product__variant .product__variant__list .quantity__box .quantity__number {
    border: none;
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
    margin: 0;
    width: 48px;
    height: 34px;
    text-align: center;
}

.modal__product__view .product__variant .product__variant__list .quantity__box .quantity__number:focus-visible {
    outline: none;
}

.modal__product__view .add__cart__section .add__to__cart__btn {
    padding: 8px 30px;
    text-align: center;
    position: relative;
    display: inline-table;
    color: #FFF4F4;
    background-color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
    z-index: 1;
    overflow: hidden;
    transition: all ease .5s;
}

.modal__product__view .add__cart__section .compare__btn {
    padding: 8px 30px;
    text-align: center;
    position: relative;
    display: inline-table;
    color: #555555;
    background-color: #f5f5f5;
    border: 1px solid #f5f5f5;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
    z-index: 1;
    overflow: hidden;
    transition: all ease .5s;
}

.modal__product__view .product__preview__box {
    position: relative;
}

.modal__product__view .product__preview__box .product__wish {
    text-align: center;
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 18px;
    color: #ccc;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 100%;
    width: 35px;
    height: 35px;
    line-height: 35px;
    cursor: pointer;
    z-index: 1;
}

.modal__product__view .product__preview__box .product__wish a {
    color: #ccc;
}

.modal__product__view .product__preview__box .product__wish a.active {
    color: var(--primary);
}

.modal__product__view .product__preview__box .preview__cover__image {
    text-align: center;
    height: 285px;
    background: #f2f2f2;
    cursor: crosshair;
}

.modal__product__view .product__preview__box .preview__cover__image img {
    height: 285px;
    padding: 15px;
    object-fit: contain;
}

.modal__product__view .product__preview__box .preview__thumb__list {
    margin-top: 20px;
}

.modal__product__view .product__preview__box .preview__thumb__list .thumbnail__img {
    height: 70px;
    border: 1px solid #ededed;
    background-color: #f8f8f8;
}

.modal__product__view .product__preview__box .preview__thumb__list .thumbnail__img img {
    height: 70px;
    padding: 5px 5px;
    object-fit: contain;
}

.modal__product__view .modal-content {
    border-radius: 0;
}

.modal__product__view .btn-close {
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 1;
    width: 24px;
    height: 24px;
    font-size: 12px;
    line-height: 28px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    background-color: #fff;
    opacity: 1;
    -webkit-box-shadow: 0px 5px 12px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 5px 12px 0px rgba(0, 0, 0, 0.2);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.added-cart-item-list {
    display: flex;
}

.added-cart-item-list img{
    width: 80px;
    height: 80px;
    border: 1px solid #f1f1f1;
    padding: 3px;
}

/*=============================================
   - DEALS  
=============================================*/

.deal__box__wrap {
    position: relative;
    overflow: hidden;
}

.deal__box__wrap .promo__banner__inner {
    position: relative;
}

.deal__box__wrap .promo__banner__inner:before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    background: -webkit-linear-gradient(right, rgb(0 0 0 / 15%), rgb(0 0 0 / 75%));
    background: -moz-linear-gradient(right, rgb(0 0 0 / 15%), rgb(0 0 0 / 75%));
    background: -o-linear-gradient(right, rgb(0 0 0 / 15%), rgb(0 0 0 / 75%));
    background: -ms-linear-gradient(right, rgb(0 0 0 / 15%), rgb(0 0 0 / 75%));
}

.deal__box__wrap .promo__banner__inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.deal__box__wrap .banner__content {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    padding: 0 3rem;
}

.deal__box__wrap .banner__content .sub__title {
    display: block;
    color: #eee;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 10px;
}

.deal__box__wrap .banner__content h3 {
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 28px;
}

.deal__box__wrap .banner__content .explore__btn {
    display: inline-block;
    color: #fff;
    padding: 6px 20px;
    border-radius: 0;
    background-color: transparent;
    transition: transform .3s ease-out;
    border: 1px solid #f1f1f1;
}

.deal__box__wrap .banner__content .explore__btn span {
    margin-left: 14px;
}

.deal__box__wrap .banner__content .explore__btn:hover,
.deal__box__wrap .banner__content .explore__btn:focus {
    background-color: #f1f1f1;
    color: #000;
}


/*=============================================
   - TRENDING PRODUCT  
=============================================*/

.trending__section {
    position: relative;
    overflow: hidden;
}

.trending__section:before {
    position: absolute;
    content: "";
    background: rgb(255, 124, 8);
    background: radial-gradient(circle, rgba(255, 124, 8, 0.4066001400560224) 0%, rgba(0, 0, 0, 0) 83%);
    width: 700px;
    height: 700px;
    top: -150px;
    left: -350px;
    z-index: -1;
    opacity: .4;
}

.trending__product__carousel {
    position: relative;
}

.trending__product__carousel.owl-carousel.owl-theme .owl-nav {
    position: absolute;
    right: 0;
    top: -60px;
    margin-top: 0;
}

.trending__product__carousel.owl-carousel.owl-theme .owl-nav button.owl-prev,
.trending__product__carousel.owl-carousel.owl-theme .owl-nav button.owl-next {
    font-size: 16px;
    height: 36px;
    width: 36px;
    line-height: 30px;
    color: #252525;
    margin: 0 0 0 5px;
    background-color: #fff;
    border: 2px solid #e2e2e2;
    border-radius: 3px;
    text-align: center;
}

/*=============================================
   - CART PAGE  
=============================================*/

.step__wizard {
    text-align: center;
    position: relative;
    margin-top: 10px;
}

.step__wizard #progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey
}

.step__wizard #progressbar .active {
    color: #119744
}

.step__wizard #progressbar li {
    list-style-type: none;
    font-size: 15px;
    width: 33%;
    float: left;
    position: relative;
    font-weight: 400;
}

.step__wizard #progressbar li span {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 20px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 5px auto;
    padding: 2px;
    position: relative;
}

.step__wizard #progressbar li.active span {
    background: #119744;
}

.step__wizard #progressbar li:before {
    content: '';
    width: 50%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1
}

.step__wizard #progressbar li:after {
    content: '';
    width: 50%;
    height: 2px;
    background: lightgray;
    position: absolute;
    right: 0;
    top: 25px;
    z-index: -1
}

.step__wizard #progressbar li:first-child:before,
.step__wizard #progressbar li:last-child:after {
    display: none;
}

.step__wizard #progressbar li.active:before,
.step__wizard #progressbar li.active:after {
    background: #119744;
}

.step__wizard .progress {
    height: 10px;
}

.step__wizard .progress-bar {
    background-color: #119744
}

.cart__wrap__container {
    position: relative;
    margin-top: 30px;
}

.cart__wrap__container fieldset {
    background: white;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    position: relative
}

.cart__wrap__container fieldset:not(:first-of-type) {
    display: none;
}

.cart__wrap__container .cart__inner__container {
    margin-bottom: 20px;
}

.cart__wrap__container .btn__theme {
    float: right;
}

/* Cart */

.cart-items__list .cart-items__heading {
    padding: 12px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    background-color: #f8f8f8;
}

.cart-items__list .cart-item {
    padding: 10px 10px;
    border-bottom: 1px solid #E5E5E5;
}

.cart-items__list .cart-item .cart-item__media .cart-item__image {
    width: 120px;
    height: 100px;
    object-fit: contain;
}

.cart-items__list .cart-item__details .cart-item__name {
    font-size: 15px;
    margin-bottom: 8px;
    color: #000;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
}

.cart-items__list .cart-item__details .product__option {
    display: inline-flex;
    font-size: 14px;
    line-height: 14px;
}

.cart-items__list .cart-item__details .product__option dt {
    font-weight: 600;
    margin-right: 8px;
    color: #124a2f;
}

.cart-items__list .cart-item__total .cart-item__total__title {
    font-size: 15px;
    font-weight: 700;
}

.cart-items__list .cart-item__total .cart-item__price {
    margin: 0;
}

.cart-items__list .cart-item__total .cart-item__price .product__price {
    font-size: 15px;
    color: #000;
    font-weight: 700;
}

.cart-items__list .cart-item__total .cart-item__price .remove__item {
    color: var(--primary);
    margin-bottom: 8px;
}

.cart-items__list .cart-item .mobile__item__option {
    background-color: #f7f7f7;
    padding: 8px 0;
    margin-top: 5px;
    display: none;
}

.cart-items__list .cart-item__quantity .quantity__box {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.cart-items__list .cart-item__quantity .quantity__box .quantity__value {
    display: inline-block;
    border: 1px solid #E5E5E5;
    margin: 0;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    padding: 0;
    background: #F7F7F7;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.cart-items__list .cart-item__quantity .quantity__box .quantity__value:hover,
.cart-items__list .cart-item__quantity .quantity__box .quantity__value:focus {
    background-color: var(--primary);
    color: #fff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.cart-items__list .cart-item__quantity .quantity__box .quantity__number {
    border: none;
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
    margin: 0;
    width: 40px;
    height: 32px;
    text-align: center;
}

.cart-items__list .cart-item__quantity .quantity__box .quantity__number:focus-visible {
    outline: none;
}

.cart-items__list .cart-item__quantity .check__availability__btn input[type=number]::-webkit-inner-spin-button,
.cart-items__list .cart-item__quantity .check__availability__btn input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.cart-items__list .cart-item__quantity .check__availability__btn .input-group-append .btn:hover,
.cart-items__list .cart-item__quantity .check__availability__btn .input-group-append .btn:focus {
    background-color: #cd1017;
    color: #fff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

/* Summary */

.cart__summary {
    padding: 1rem;
    background-color: #f8f8f8;
}

.cart__summary h6,
.cart__summary span.amount {
    color: #000;
    font-weight: 600;
    margin: 12px 0;
}

.cart__summary h6 span.p {
    font-size: 15px;
}

.cart__summary .tax .button {
    position: relative;
    display: flex;
}

.cart__summary .tax .button::after {
    content: "[+]";
    font-weight: 700;
    margin-left: 10px;
    font-size: 17px;
    top: 8px;
    position: relative;
}

.cart__summary .tax .button:not(.collapsed)::after {
    content: "[-]";
    font-weight: 700;
    margin-left: 10px;
    font-size: 17px;
    top: 8px;
    position: relative;
}

.cart__summary .separate-tax {
    margin-bottom: 10px;
}

.cart__summary .separate-tax p {
    margin-bottom: 5px;
    font-size: 12px;
}

.cart__summary .separate-tax p span {
    float: right;
}

.cart__summary .coupon-btn {
    background-color: #ebfaff;
    color: #00bbff;
    padding: 6px 10px;
    border: 2px solid #00bbff;
    border-radius: 1px !important;
    display: inline-block;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
}

.cart__summary .grand-total {
    padding: 1.6rem 0;
}

.cart__summary .grand-total h6,
.cart__summary .grand-total span.amount {
    color: #000;
    font-weight: 700;
    margin: 0;
    font-size: 16px;
}

/* Shiping Address */

.shipping__address__container {
    margin-bottom: 20px;
}

.shipping__address__container .card {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: none;
    margin-bottom: 30px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.shipping__address__container [class*="col-"]:first-child .card {
    border: 2px solid #e6e6e6;
}

.shipping__address__container .card input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    height: 100%;
    width: 100%;
    border-radius: 3px;
    position: absolute;
    border: 2px solid #e6e6e6;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.03);
    cursor: pointer;
    outline: none;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.shipping__address__container .card input[type="radio"]:before {
    content: "";
    position: absolute;
    height: 22px;
    width: 22px;
    background-color: #f9fafd;
    border: 1px solid #e2e6f3;
    border-radius: 50%;
    top: 20px;
    right: 20px;
}

.shipping__address__container .card input[type="radio"]:after {
    content: "";
    position: absolute;
    height: 13px;
    width: 13px;
    background-color: transparent;
    border-radius: 50%;
    top: 24.5px;
    right: 24.5px;
}

.shipping__address__container .card input[type="radio"]:checked {
    border: 2px solid var(--primary);
}

.shipping__address__container .card input[type="radio"]:checked:after {
    background-color: var(--primary);
}

.shipping__address__container .card label {
    margin: 20px;
    cursor: pointer;
}

.shipping__address__container .card h6 {
    color: #558309;
    font-weight: 700;
    font-size: 16px;
    margin: 8px 0 15px 0;
}

.shipping__address__container .card p {
    margin-bottom: 0;
}

.shipping__address__container .card .btn-link{
    color: #8f8f8f;
    padding: 0;
    font-size: 14px;
    position: absolute;
    bottom: 10px;
    right: 20px;
    text-decoration: none;
    font-weight: 500;
    z-index: 10;
}

.shipping__address__container .card .btn-link:hover,
.shipping__address__container .card .btn-link:focus{
    color: #0989ff;
}

.add__new__address__modal .form-control,
.add__new__address__modal .form-select {
    font-size: 14px;
    height: 38px;
    font-weight: 500;
    border: 2px solid #dee2e6;
}

.add__new__address__modal .SumoSelect>.CaptionCont {
    border: 2px solid #dee2e6;
}

/* Checkout  */

.checkout__container {
    margin-bottom: 30px;
}

.cart__wrap__container .action-button-previous {
    width: 100px;
    background: #616161;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    float: right;
}

.cart__wrap__container .action-button-previous:hover,
.cart__wrap__container .action-button-previous:focus {
    background-color: #000000;
}


/*=============================================
   - NEWSLETTER SECTION 
=============================================*/

.newsletter__inner__container {
    position: relative;
    background-color: #DAFFF4;
    overflow: hidden;
    background-image: url('../images/shape-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.newsletter__inner__container .main__title {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
}

.newsletter__inner__container p {
    font-size: 16px;
    font-weight: 600;
}

.newsletter__inner__container .news__form {
    width: 100%;
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.newsletter__inner__container .news__form input {
    width: 100%;
    height: 50px;
    font-weight: 600;
    padding: 0px 20px;
    line-height: 50px;
    border: 2px solid #ECECEC;
}

.newsletter__inner__container .news__form input:focus-visible {
    outline: none;
}

.newsletter__inner__container .news__form .subscribe__btn {
    font-weight: 600;
    padding: 12px 18px;
    border-radius: 0;
    text-align: center;
    display: inline-block;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid var(--primary);
    text-wrap: nowrap;
    background: var(--primary);
}


/*=============================================
   - FEATURE BOX
=============================================*/

.feature__box {
    position: relative;
}

.feature__box .feature__inner__box {
    background: #fff;
    height: 100%;
    padding: 25px;
    display: flex;
    align-items: center;
    border: 2px solid #ff9898;
    border-radius: 3px;
    -webkit-box-shadow: 0 5px 20px rgba(102, 102, 102, .06);
    box-shadow: 0 5px 20px rgba(102, 102, 102, .06);
}

.feature__box .feature__inner__box img {
    width: 55px;
}

.feature__box .feature__inner__box h6 {
    padding-left: 20px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature__box .feature__inner__box p {
    padding-left: 20px;
    margin-bottom: 0;
}

/*=============================================
   - FOOTER SECTION      
=============================================*/

.footer {
    background: #f7f7f7;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.footer__link__widget .footer__title {
    margin-bottom: 30px;
}

.footer__link__widget .footer__title h3 {
    font-size: 18px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
}

.footer__link__widget .footer__widget__list ul li {
    padding: 7px 0;
}

.footer__link__widget .footer__widget__list ul li a {
    color: #231F20;
}

.footer__link__widget .footer__widget__list ul li a::before {
    content: "\f054";
    display: inline-block;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    margin-right: 10px;
}

.footer__link__widget .footer__widget__list ul li:hover a,
.footer__link__widget .footer__widget__list ul li:focus a {
    color: var(--primary);
    padding-left: 10px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.footer__link__widget .contact__info .icon {
    position: relative;
    width: 45px;
    height: 45px;
    border: 2px solid var(--primary);
    border-radius: 2px;
    line-height: 45px;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.footer__link__widget .contact__info .icon:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--primary);
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-property: all;
    transition-property: all;
    opacity: 1;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
}

.footer__link__widget .contact__info .icon:hover:after,
.footer__link__widget .contact__info .icon:foucs:after {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.footer__link__widget .contact__info .icon span {
    color: var(--primary);
    font-size: 18px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer__link__widget .contact__info .icon:hover span,
.footer__link__widget .contact__info .icon:focus span {
    color: var(--primary);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer__link__widget .contact__info p,
.footer__link__widget .contact__info p a {
    color: #231F20;
    font-size: 14px;
}

.footer__link__widget .contact__info p:hover a,
.footer__link__widget .contact__info p:focus a {
    color: var(--hover);
}

.copyright__section {
    background: #eee;
    padding: 10px 0;
}

.copyright__section .hotline__footer {
    position: relative;
}

.copyright__section .hotline__footer .image__hotline {
    color: var(--primary);
    width: 40px;
    font-size: 40px;
    margin-right: 10px;
}

.copyright__section .hotline__footer .wrap__text label {
    font-weight: 600;
    margin-bottom: 4px;

}

.copyright__section .hotline__footer .wrap__text .h4 {
    color: #000;
    font-weight: 700;
    font-size: 20px;
}

.copyright__section p {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    color: #101010;
}

.copyright__section p a {
    color: var(--primary);
}

.footer__social__links {
    margin-top: 10px;
    display: inline-block;
}

.footer__social__links li {
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px;
}

.footer__social__links li a {
    display: inline-block;
    font-size: 12px;
    text-align: center;
    color: #231F20;
    border: 1px solid #101010;
    line-height: 32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.footer__social__links li a:hover {
    color: #fff;
    background: var(--primary);
    border: 1px solid var(--primary);
}

/*=============================================
   - ABOUT US SECTION      
=============================================*/

.about__us__section {
    position: relative;
}

.about__us__section .about__img__box {
    position: relative;
    margin-bottom: 15px;
}

.about__us__section .about__img__box img {
    width: 100%;
    padding: 5px;
}

.about__vision__section {
    position: relative;
    background-color: #FFF4F4;
}

.about__vision__section .about__vision__wrapper {
    height: 100%;
}

.about__vision__section .about__us__img__box {
    padding: 10px 8px;
}

.about__vision__section .about__us__content__box {
    position: relative;
    padding: 30px 25px 35px;
    background: #fff;
    margin: -38px 20px 0;
    box-shadow: 0 15px 20px rgba(0, 0, 0, .03);
}

.about__vision__section .about__vision__wrapper .about__us__content__box::after {
    content: '';
    width: 0;
    height: 2px;
    position: absolute;
    left: auto;
    right: 0;
    bottom: 0;
    background-color: var(--primary);
    transition: all .5s cubic-bezier(.645, .045, .355, 1);
}

.about__vision__section .about__vision__wrapper:hover .about__us__content__box::after {
    width: 100%;
    left: 0;
    right: auto;
}

.about__vision__section .about__us__content__box h5 {
    color: var(--primary);
    font-weight: 700;
}

.about__vision__section .about__us__content__box p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/*=============================================
   - OUR TEAM SECTION
=============================================*/

.team__card {
    position: relative;
    overflow: hidden;
    text-align: center;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}

.team__card .team__info__wrap {
    position: relative;
    -webkit-transition: 400ms;
    transition: 400ms;
}

.team__card .team__info__wrap .overlay__icon {
    position: relative;
}

.team__card .team__info__wrap .team__img {
    position: relative;
    overflow: hidden;
    border: 5px solid #e9e9e9;
    border-radius: 1px;
}

.team__card .team__info__wrap:hover .team__img {
    border: 5px solid var(--primary);
    transition: all 0.5s ease;
}

.team__card .team__info__wrap .team__img img {
    width: 100%;
    border-radius: 1px;
    transition: all 0.5s ease;
}

.team__card .team__info__wrap:hover .team__img img {
    transform: scale(1.03);
}

.team__card .team__info__wrap .team__info {
    position: relative;
    width: 100%;
    padding: 20px 25px;
    margin-top: 6px;
    -webkit-transition: 350ms;
    transition: 350ms;
}

.team__card .team__info__wrap .team__info h3 {
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 700;
    color: #000;
}

.team__card .team__info__wrap .team__info p {
    font-size: 14px;
    margin-bottom: 0;
    cursor: pointer;
    font-style: italic;
}

/*=============================================
   - CONTACT SECTION      
=============================================*/

.google__map__section iframe {
    width: 100% !important;
    height: 500px !important;
}

.contact__section {
    margin-top: -200px;
}

.contact__detail {
    background: #fff;
    padding: 70px 50px 50px;
    position: relative;
    z-index: 0;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.10);
    height: 100%;
}

.contact__detail h3 {
    color: #000;
    margin: 0 0 30px;
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
}

.contact__detail .ci__box {
    margin-bottom: 25px;
    position: relative;
}

.contact__detail .ci__box .icon .box {
    width: 65px;
    font-size: 25px;
    height: 65px;
    line-height: 65px;
    border-radius: 3px;
    background-color: #FFF4F4;
    border: 1px solid var(--primary);
    color: #fff;
    text-align: center;
}

.contact__detail .ci__box .icon .box i,
.contact__detail .ci__box .icon .box svg {
    color: var(--primary);
}

.contact__detail .ci__box .detail {
    margin: 5px 0 0 20px;
}

.contact__detail .ci__box .detail h4 {
    font-weight: 500;
    font-size: 18px;
    color: #000;
    font-style: normal;
    margin: 0 0 8px;
}

.contact__detail .ci__box .detail p {
    font-size: 15px;
    margin-bottom: 0;
    font-weight: 600;
}

.contact__detail .ci__box .detail a {
    color: #000;
}

.contact__detail .ci__box .detail a:hover {
    color: var(--primary);
}

.enquiry__form.contact {
    background: #fff;
    padding: 70px 50px 50px;
    position: relative;
    z-index: 0;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.10);
    height: 100%;
}

.enquiry__form h3 {
    color: #000;
    margin: 0 0 30px;
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
}

.enquiry__form .form-control {
    border: 1px solid #ced4da;
    padding: 10px 24px;
    height: 55px;
    font-weight: 600;
    font-size: 15px;
}

.enquiry__form .form-select {
    border: 2px solid #ced4da;
    padding: 10px 24px;
    height: 55px;
    font-weight: 600;
}

.enquiry__form .form-control:focus,
.enquiry__form .form-select:focus {
    border: 1px solid var(--primary);
}

.enquiry__form textarea.form-control {
    height: initial;
}

.text-instead{
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
}

.iti {
    display: block;
    width: 100%;
}

.alert{
    border-radius: 2px;
}

.alert-btn-close{
    position: absolute;
    right: 5px !important;
    top: 0px !important;
    z-index: 1033;
    font-weight: 500;
    border: none;
    padding: 0;
    background-color: transparent;
    color: var(--primary);
}

.file-preview-item{
    width: 100px;
    float: left;
    margin-right: 0.5rem;
    padding: 0;
    display: block;
    border: 1px solid #ebedf2;
    position: relative;
}

.file-preview-item img{
    height: 80px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.file-preview-item h6 {
    font-size: 13px;
    margin-bottom: 0;
}

.file-preview-item p {
    font-size: 10px;
    color: #8392a5;
    margin-bottom: 0;
}

.file-preview.box .remove {
    position: absolute;
    top: -6px;
    right: -6px;
    width: auto;
    max-width: 100%;
}

.file-preview.box .remove .btn {
    padding: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    color: #fff;
    font-size: 10px;
}

.product-review-rating label {
    cursor: pointer;
}

.product-review-rating i {
    color: #c3c3c5;
    font-size: 1rem;
    letter-spacing: -1px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.product-review-rating  input {
    display: none;
}

.product-review-rating i.hover,
.product-review-rating i.active{
    color: #ffa707;
}

.iti--allow-dropdown input {
    padding-left: 95px !important;
}

.iti--separate-dial-code .iti__selected-flag,
.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background: #fff;
    border-right: 2px solid #dfdfe6;
    height: 92%;
    margin: 2px;
    padding: 5px 5px 5px 5px;
}

/* Common Code */
.modal-auth-login .form-control{
    height: 45px;
    font-weight: 500;
    border: 2px solid #E0E2E3;
    font-size: 12px;
}

.media-uploader .modal-header{
    background-color: #b90000;
    color: #fff;
    padding-bottom: 0;
    border-radius: 0;
}

.uppy-modal-nav .nav-item .nav-link{
    color: #fff;
    border-radius: 0;
    font-weight: 600;
    border-bottom: none;
}

.uppy-modal-nav .nav-item .nav-link:hover,
.uppy-modal-nav .nav-item .nav-link:focus{
    background-color: #fff;
    color: var(--primary);
}

.uppy-modal-nav .nav-item .nav-link.active{
    color: var(--primary);
}

.aiz-uploader-all {
    margin-left: -10px;
    margin-right: -10px;
    overflow-y: auto;
    height: calc(100vh - 325px);
}

.aiz-uploader-all .aiz-file-box-wrap {
    padding: 0 10px;
    width: 50%;
    float: left;
}

.aiz-uploader-all .aiz-file-box-wrap .aiz-file-box {
    position: relative;
}

.aiz-uploader-all .aiz-file-box-wrap .aiz-file-box .card-file {
    padding: 8px;
    position: relative;
    border-color: rgb(223, 224, 228);
    transition: all 0.2s ease-in-out;
    margin-bottom: 20px;
    border-radius: 0;
    cursor: pointer;
    overflow: hidden;
    opacity: 1;
}

.aiz-uploader-all .aiz-file-box-wrap .aiz-file-box .card-file .card-file-thumb {
    height: 135px;
    background-color: #f5f6fa;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100% - 50px);
}

.aiz-uploader-all .aiz-file-box-wrap .aiz-file-box .card-file .card-file-thumb img{
    height: 140px;
    object-fit: cover;
    width: 100%;
}

.aiz-uploader-all .aiz-file-box-wrap .aiz-file-box .card-file .card-body {
    padding: 10px 0 0;
}

.aiz-uploader-all .aiz-file-box-wrap .aiz-file-box .card-file .card-body h6 {
    font-size: 0.8rem;
    margin-bottom: 0;
}

.aiz-uploader-all .aiz-file-box-wrap .aiz-file-box .card-file .card-body p {
    margin-bottom: 0;
    font-size: 9px;
    color: #8392a5;
}

.aiz-uploader-all .aiz-file-box-wrap[data-selected="true"] .aiz-uploader-select {
    border-color: #007bff;
    background: rgba(0, 123, 255, 0.05);
}

.uppy-Dashboard-inner {
    width: 100% !important;
    height: calc(100vh - 240px) !important;
}

.uppy-Root {
    height: 100% !important;
}

.uppy-DashboardAddFiles{
    border: 2px dashed #dfdfdf;
    background: #f0ffff;
}

.uppy-Dashboard-dropFilesHereHint:before {
    background-image: url("../images/cloud-upload.png");
    position: absolute;
    content: "";
    top: 27%;
    left: 47%;
    width: 78px;
    background-size: 70px;
    height: 76px;
    margin: 0 auto;
    text-align: center;
    visibility: visible;
    background-repeat: no-repeat;
}

 @media (min-width: 576px) {
    .aiz-uploader-all .aiz-file-box-wrap {
        width: 33.3333%;
    }
}
@media (min-width: 768px) {
    .aiz-uploader-all .aiz-file-box-wrap {
        width: 25%;
    }
   
}
@media (min-width: 992px) {
    .aiz-uploader-all .aiz-file-box-wrap {
        width: 20%;
    }
}
