:root {
    --font-primary: "Inter", sans-serif;
    --font-secondary: "Dosis", sans-serif;
    --seconds-color: #8fc743;
    --color-primary: #233a95;
    --color-secondary-green: #2AB254;
    --color-secondary: #CC0000;
    --color-price: #d51243;
    --color-rating: #ffcd00;
    --color-cart: #ffcd00;
    --dark-color: #222222;
    --text-color: #202435;
    --color-text: #202435;
    --color-text-light: #3e445a;
    --color-text-lighter: #71778e;
    --color-light: #f7f8fd;
    --color-lighter: #fbfcfe;
    --color-border: #e4e5ee;
    --color-border-dark: #d9d9e9;
    --color-border-light: #edeef5;
    --color-info: #c2c2d3;
    --color-success: #00b853;
    --color-success-dark: #038e42;
    --color-success-light: #e5f8ed;
    --color-danger: #d51243;
}
*, ::after, ::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: var(--text-color);
    font-weight: 400;
}
ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
.container {
    width: 100%;
    max-width: 1320px;
}
.container-fluid {
  padding: 0 50px;
}
.form-control, .btn {
    font-size: inherit;
}
.form-control:focus {
    box-shadow: none;
}
.form-control:focus, 
.form-select:focus {
    box-shadow: none;
}
.form-check-input:checked {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}
.form-check-input:focus {
    box-shadow: none;
}
.btn-base {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff;
}
.btn-base:hover, 
.btn-base:focus {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    color: #fff;
}
.btn-dark {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    color: #fff;
}
.btn-dark:hover,
.btn-dark:focus {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff;
}
.btn-primary {
    border-radius: 4px;
    padding: .5rem 2rem;
    color: #fff;
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}
.btn-primary:hover,
.btn-primary:focus {
    color: #fff;
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    box-shadow: none;
}
.alert {
    padding: .25rem 1rem;
    border-radius: 0;
}
.text-10 {
    font-size: 10px;
}
.text-11 {
    font-size: 11px;
}
.text-12 {
    font-size: 12px;
}
.text-13 {
    font-size: 13px;
}
.text-14 {
    font-size: 14px;
}
.text-15 {
    font-size: 15px;
}
.text-16 {
    font-size: 16px;
}
.text-18 {
    font-size: 18px;
}
.text-20 {
    font-size: 20px;
}
.color-secondary {
    color: var(--color-secondary);
}
.header .store-notice {
    background-color: var(--color-primary);
    color: #fff;
    text-align: center;
    font-size: 13px;
    padding: 7px 0;
}
.header-top {
    padding: 8px 0;
    border-bottom: 1px solid #e3e4e6;
    font-size: 12px;
}
.header-top li {
    display: inline-block;
    margin-right: 10px;
    font-size: 12px;
    border-right: 1px solid #edeef5;
    padding-right: 15px;
}
.header-top li:last-child {
    margin-right: 0px;
    border-right: 0;
}
.header-top-links li a {
    color: var(--font-primary);
    text-decoration: none;
}
.header-top-links li a:hover {
    color: var(--color-secondary);
}
.header-nav {
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 20px;
}
.header-nav .navbar-light .navbar-nav .nav-link  {
    position: relative;
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    color: #3e445a;
    padding-left: 1.125rem;
    padding-right: 1.125rem;
    border-radius: 2.5rem;
    text-transform: uppercase;
}

.header-nav .navbar-light .navbar-nav .nav-link:hover, 
.header-nav .navbar-light .navbar-nav .nav-link.active {
    color: var(--color-secondary);
}
.header-nav .navbar-light .navbar-nav .nav-link:hover::before,
.header-nav .navbar-light .navbar-nav .nav-link.active::before {
    content: "";
    position: absolute;
    right: 0;
    top: 52%;
    width: 100%;
    height: 6px;
    -webkit-transition: height .3s ease;
    transition: height .3s ease;
    z-index: 10;
    opacity: 0.3;
    background-color: var(--color-secondary);
}
.header-nav .dropdown-menu.show {
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.25);
    border: 0;
    border-radius: 0;
    font-size: 14px;
    min-width: 12rem;
}
.header-nav .dropdown-menu.show .dropdown-item {
    padding: 0.25rem 2rem;
}
.header-nav .mobile-nav-logo, 
.header-nav .mobile-nav-show {
    display: none;
}
.header-nav .mobile-nav-show {
    position: absolute;
    right: 15px;
    top: 20px;
}
.header-content {
    padding: 30px 0;
}
.header-content .header-search {
    position: relative;
}
.header-content #searchform {
    position: relative;
}
.header-content #searchform .form-control {
    width: 100%;
    height: 100%;
    background-color: #f3f4f7;
    border-radius: 4px;
    padding: .75rem 1rem;
      padding-right: 1rem;
    border-color: #f3f4f7;
    padding-right: 30px;
}
.header-content #searchform .btn {
    position: absolute;
    right: 2px;
    top: 4px;
}
.header-content #searchform .btn:focus {
    box-shadow: none;
}
.header .logo img {
    max-width: 210px;
    max-height: 90px;
}
.header-nav #CategorydropdownMenuLink {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff;
    border-radius: 10rem;
    padding: 12px 60px;
    position: relative;
}
.header-nav #CategorydropdownMenuLink:focus {
    box-shadow: none;
}
.header-nav #CategorydropdownMenuLink::before,
.header-nav #CategorydropdownMenuLink::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
}
.header-nav #CategorydropdownMenuLink::before {
    content: "\f0c9";
    left: 20px;
    font-size: 16px;
}
.header-nav #CategorydropdownMenuLink::after {
    content: "\f078";
    right: 20px;
    font-size: 14px;
}
.header-content .right-nav {
    display: flex;
    justify-content: end;
}
.header-content .right-nav svg {
    width: 22px;
    height: 20px;
    fill: var(--dark-color);
}
.header-content .right-nav li:hover svg {
    fill: var(--color-secondary);
}
.header-content .right-nav svg.svg-wishlist {
    stroke-width: 2;
    stroke: var(--dark-color);
    fill: none;
}
.header-content .right-nav li:hover svg.svg-wishlist {
    stroke-width: 2;
    stroke: var(--color-secondary);
    fill: none;
}
.header-content .btn-check:focus + .btn, 
.header-content .btn:focus {
    box-shadow: none;
}
.header-content .dropdown-item {
    font-size: 14px;
}
.account-page .account-nav {
    border-bottom: 1px solid var(--color-border);
    padding-top: 10px;
    padding-bottom: 10px;
}
.account-page .account-nav li {
    margin-right: 30px;
    position: relative;
}
.account-page .account-nav li a {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--color-info);
    padding: 0;
}
.account-page .account-nav li.active::after,
.account-page .account-nav li:hover:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    bottom: -10px;
    background-color: var(--text-color);
}
.account-page .account-nav li.active a,
.account-page .account-nav li:hover a {
    color: var(--text-color);
}
.account-page .account-content a {
    color: var(--text-color);
}
.account-page .account-content a:hover {
    color: var(--color-secondary);
}
.mini-cart {
    position: relative;
} 
.mini-cart:focus {
    box-shadow: none;
}
.mini-cart span.mini-cart-count {
    display: inline-block;
    background-color: var(--color-secondary);
    height: 18px;
    width: 18px;
    border-radius: 50%;
    text-align: center;
    font-size: 11px;
    font-weight: 400;
    line-height: 18px;
    color: #fff;
    position: absolute;
    bottom: 14px;
    right: -2px;
}
.mini-cart .mini-cart-content {
    color: #666;
    text-align: left;
    width: 320px;
    padding: 20px 15px 20px;
    background: #fff;
    position: absolute;
    top: 110%;
    right: 0;
    z-index: 999;
    -webkit-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
    opacity: 0;
    display: none;
    border: 1px solid rgba(0,0,0,.1);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}
.mini-cart .mini-cart-content:before {
    content: '';
    border-width: 1px 1px 0 0;
    border-color: #e5e5e5;
    border-style: solid;
    background: #fff;
    width: 14px;
    height: 14px;
    position: absolute;
    top: -8px;
    right: 12px;
    margin-left: -7px;
    transform: rotate(-45deg);
    z-index: 1004;
    display: block;
}
.mini-cart:hover .mini-cart-content {
    opacity: 1;
    display: block;
}
.mini-cart-items td {
    border: 0;
}
.mini-cart-items td:nth-child(1) {
    width: 52px;
}
.mini-cart-items .image img {
    max-width: 50px;
    max-height: 50px;
}
.mini-cart .content p {
    margin-bottom: 0;
}
.mini-cart-items .title {
    font-size: 12px;
    margin-bottom: 3px;
}
.mini-cart .content .description {
    color: #777;
    font-size: 11px;
}
.mini-cart .content .price {
    font-size: 13px;
    color: #777;
}
.mini-cart .content .price span {
    font-weight: 600;
}
.mini-cart .edit {
    text-align: right;
}
.mini-cart #mini-cart-del {
    padding: 0;
}
.mini-cart #mini-cart-del svg {
    padding: 2px;
    box-shadow: 0 2px 6px 0 rgba(0,0,0,0.4);
    border-radius: 100%;
    width: 17px;
    height: 17px;
}
.mini-cart .mini-cart #mini-cart-del:focus {
    box-shadow: none;
}
.mini-cart .link-to-checkout {
    border-radius: 0;
    color: #fff;
    width: 100%;
    padding: 10px;
    display: block;
    margin-bottom: 10px;
}
.mini-cart .link-to-cart {
    text-decoration: none;
    text-align: center;
    display: block;
}
.mini-cart .total {
    color: #000;
    font-weight: 600;
    margin-bottom: 20px;
}
.mini-cart .shipping-info {
    text-align: center;
    font-size: 11px;
    margin-top: 5px;
    margin-bottom: 0;
}
.page {
    min-height: 600px;
    margin-bottom: 30px;
}
#sidebarCollapse {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
#sidebarCollapse span {
    background-color: #222;
    height: 2px;
    width: 22px;
    display: block;
    margin-bottom: 4px;
}
.slider {
    margin-bottom: 50px;
}
.slider .swiper-slide{
    background-color: #f4f4f4;
}
.slider .slider-item {
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    display: flex;
    min-height: 500px;
}
.slider .slider-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 7%;
    align-items: start;
}
.slider-content .slider-slug {
    font-weight: 600;
    font-size: 16px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.12rem;
    position: relative;
    padding-left: 20px;
    margin-bottom: 40px;
}
.slider-content .slider-slug:before {
    content: "";
    position: absolute;
    left: 0;
    width: 1px;
    top: 7px;
    bottom: 7px;
    background-color: #222;
  }
.slider-content .slider-title {
    font-size: 90px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1;
}
.slider-content .slider-price {
    text-transform: uppercase;
    color: #777;
    margin-bottom: 30px;
}
.slider-content .slider-price span {
    text-transform: uppercase;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 20px;
    margin-left: 5px;
}
.slider-content .slider-more-link {
    background-color: var(--color-secondary);
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    text-align: center;
    border-radius: 10rem;
}
.shop-filter {
    padding: 15px 0;
}
.search-form {
    position: relative;
    max-width: 200px;
    margin-left: auto;
}
.search-form .form-control{
    border: 1px solid #ddd;
    border-radius: 40px;
    padding: 7px 7px 7px 15px;
}
.search-form .btn-search {
    position: absolute;
    right: 7px;
    top: 3px;
    padding: 4px;
    border-radius: 100%;
    color: #ddd;
}
.sidebar-block {
    margin-bottom: 40px;
}
.sidebar-title {
    position: relative;
    margin-bottom: 20px;
    margin-top: 0;
    font-size: 14px;
    color: #222;
    letter-spacing: 0px;
    text-transform: uppercase;
}
.sidebar-titles::after {
    content: "";
    width: 60px;
    height: 2px;
    background: #222;
    left: 0;
    bottom: 15px;
    position: absolute;
}
.sidebar-list > li {
    position: relative;
    list-style: none;
    padding-left: 15px;
    margin-bottom: 5px;
}
.sidebar-list li a {
    color: #222;
    text-decoration: none;
}
.sidebar-list li.active > a {
    color: var(--color-secondary);
}
.sidebar-list li.active > a::before {
    color: var(--color-secondary);
    content: "-";
    font-size: 18px;
    top: -4px;
}
.sidebar-list li a::before {
    content: "+";
    position: absolute;
    left: 0;
    color: #222;
}
.sidebar-list li a:hover,
.sidebar-list li a:focus,
.sidebar-list li a:hover::before,
.sidebar-list li a:focus::before {
    color: var(--color-secondary);
}
.sidebar-sublist {
    margin-left: 5px;
}
.sidebar-sublist li a::before {
    display: none;
}
.sidebar-sublist li {
    margin-bottom: 2px;
}
.color-list li {
    display: inline-block;
    margin-right: 5px;
}
.color-list li span {
    display: block;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 100%;
    cursor: pointer;
    box-shadow: 0 0 1px 0px rgba(0,0,0,0.4);
}
.color-list li span.color-1 { background-color: #f4f4f4; }
.color-list li span.color-2 { background-color: #edda71; }
.color-list li span.color-3 { background-color: #f2c03b; }
.color-list li span.color-4 { background-color: #ee8d1c; }
.color-list li span.color-5 { background-color: #dd2b0d; }
.color-list li span.color-6 { background-color: #ab230b; }
.color-list li span.color-7 { background-color: #ad0b6e; }
.color-list li span.color-8 { background-color: #f55ba4; }
.color-list li span.color-9 { background-color: #f4bff5; }
.color-list li span.color-10 { background-color: #c7a0ef; }
.color-list li span.color-11 { background-color: #8432df; }
.color-list li span.color-12 { background-color: #0d1d3f; }
.color-list li span.color-13 { background-color: #3343e0; }
.color-list li span.color-14 { background-color: #88b2dc; }
.color-list li span.color-15 { background-color: #53e4e7; }
.color-list li span.color-16 { background-color: #53e79d; }
.color-list li span.color-17 { background-color: #5ee753; }
.color-list li span.color-18 { background-color: #16b10d; }
.color-list li span.color-19 { background-color: #13420e; }
.color-list li span.color-20 { background-color: #5a320f; }
.color-list li span.color-21 { background-color: #b5680e; }
.color-list li span.color-22 { background-color: #6d5644; }
.color-list li span.color-23 { background-color: #bea785; }
.color-list li span.color-24 { background-color: #949494; }
.color-list li span.color-25 { background-color: #3d3d3d; }
.color-list li span.color-26 { background-color: #111; }
.color-list li span.color-27 { background-color: #b9b8b6; }
.color-list li span.color-28 { background-color: #b4810b; }
.price-slider {
    position: relative;
}
.price-slider .ui-slider-horizontal {
    height: .25em;
    border-radius: 0;
    margin-bottom: 15px;
    background-color: #222;
    border: 0;
}
.price-slider .ui-slider .ui-slider-handle {
    border-radius: 100%;
    background-color: #222;
    border-color: #222;
    top: -.45em;
    width: 1em;
    height: 1em;
}
.price-slider .form-range {
    position: absolute;
}
.price-slider .ui-widget-header {
    background: #222;
}
.price-slider label {
    margin-right: 5px;
}
.price-slider .d-flexo {
    border: 1px solid #ced4da;
    border-radius: .25rem;
    padding-left: 8px;
}
.price-slider .form-control {
    border: 0;
    padding-left: 0;
    padding-right: 0;
}
.price-slider #prc_submit {
    cursor: pointer;
}
/** FF*/
input[type="range"]::-moz-range-progress {
    background-color: #878787; 
}
input[type="range"]::-moz-range-track {  
    background-color: transparent;
}
/* IE*/
input[type="range"]::-ms-fill-lower {
    background-color: #878787; 
}
input[type="range"]::-ms-fill-upper {  
    background-color: transparent;
}
.grid-list .item {
    margin-bottom: 20px;
}
.grid-list .item-img {
    overflow: hidden;
    margin-bottom: 10px;
    height: 268px;
}
.grid-list .item-img img {
    max-width: 100%;
}
.grid-list .item-title {
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 5px;
}
.grid-list .item-title a {
    text-decoration: none;
    color: #222;
}
.grid-list .item-title a:hover {
    color: var(--color-secondary);
}
.ui-block {
    margin-bottom: 50px;
}
.ui-block .head {
    margin-bottom: 40px;
}
.ui-block .title {
    font-weight: 600;
    font-size: 40px;
    line-height: 50px;
    color: var(--dark-color);
    text-align: center;
}
.ui-block .description {
    text-align: center;
    color: #777;
    font-size: 16px;
    font-weight: 300;
}
.ui-modal .modal-header {
    border: 0;
}
.ui-modal .modal-header .modal-title {
    font-size: 14px;
    color: var(--dark-color);
}
.ui-modal .modal-body {
    padding-top: 0;
}
.list-sort {
    margin-bottom: 20px;
    background-color: var(--color-light);
    padding: 10px 15px;
    border-radius: .225rem;
}
.breadcrumb .breadcrumb-item, 
.breadcrumb .breadcrumb-item a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
}
.breadcrumb-item + .breadcrumb-item::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 11px;
    content: "\f105";
    margin-top: 2px;
}
.breadcrumb-item.breadcrumb-back {
    width: 100%;
}
.breadcrumb-item.breadcrumb-back a {
    color: var(--color-secondary);
}
.breadcrumb-item.breadcrumb-back::before {
    content: "\f104";
    color: var(--color-secondary);
}
.sort {
    display: flex;
    align-items: center;
}
.sort-text {
    margin-right: 10px;
}
.sort-select select {
    border-radius: 4px;
    font-size: 14px;
    padding: 4px 10px;
}
.list-views {
    display: flex;
}
.list-views svg {
    width: 16px;
    height: 16px;
}
.list-views li {
    margin-right: 10px;
}
.list-views li.active svg {
    fill: var(--color-secondary);
}
.product-detail .product-detail-top {
    margin-bottom: 70px;
}
.product-detail .product-name {
    font-size: 2rem;
    color: #333;
    font-weight: 700;
}
.product-detail .product-price {
    font-size: 30px;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 20px;
}
.product-detail .product-price i {
    color: var(--dark-color);
    font-style: normal;
    font-size: 18px;
}
.product-detail .product-image .image {
    margin-bottom: 20px;
    background-color: #f9f9f9;
    text-align: center;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-detail .thumb-list li {
    width: 100px;
    height: 100px;
    overflow: hidden;
    display: inline-block;
    text-align: center;
    background-color: #f9f9f9;
    margin-right: 8px;
}
.product-detail .thumb-list li img {
    max-width: 100px;
    max-height: 100px;
}
.product-detail .product-rating {
    margin-bottom: 20px;
}
.product-detail .product-add {
    margin-bottom: 30px;
}
.product-detail .btn-add-cart, 
.product-detail .btn-add-buy {
    border-radius: 0;
    width: 100%;
    padding: 15px;
}
.product-detail .btn-add-cart {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    color: #fff;
}
.product-detail .btn-add-cart:hover, 
.product-detail .btn-add-cart:focus {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff;
    box-shadow: none;
}
.product-detail .btn-add-buy {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff;
}
.product-detail .btn-add-buy:hover, 
.product-detail .btn-add-buy:focus {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    color: #fff;
    box-shadow: none;
}
.product-detail .cart-qty {
    position: relative;
    display: flex;
    border: 1px solid #ddd;
    height: 53px;
    align-items: center;
}
.product-detail .cart-qty input {
    border: 0;
    text-align: center;
}
.product-detail .cart-qty .cart-qty-btn .btn {
    padding: 1px 3px;
}
.product-detail .cart-qty .cart-qty-btn .btn:focus {
    box-shadow: none;
}
.product-detail .cart-qty .cart-qty-btn svg {
    width: 16px;
    height: 16px;
    stroke: #777;
}
.product-detail .cart-qty .cart-qty-btn .btn:hover svg {
    stroke: var(--seconds-color);
}
.product-detail .product-buttons {
    display: flex;
    text-transform: uppercase;
    font-size: 11px;
    color: #000;
    font-weight: 500;
    margin-bottom: 20px;
}
.product-detail .product-buttons > .btn {
    margin-right: 20px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 500;
    color: #000;
    padding: 0;
}
.product-detail .product-buttons > .btn:focus {
    box-shadow: none;
}
.product-detail .product-buttons svg {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}
.product-detail .product-vars {
    margin-bottom: 20px;
}
.product-detail .product-vars .vars {
    border: 0;
    color: #777;
    font-size: 13px;
}
.product-detail .product-qty-alert {
    color: #049f26;
    margin-bottom: 30px;
}
.product-detail .product-vars .vars td {
    line-height: 25px;
}
.product-detail .product-vars .vars td:nth-child(1) {
    width: 140px;
}
.product-detail .product-tabs {
    margin-bottom: 80px;
}
.product-detail .share-list {
    display: flex;
}
.product-detail  .share-list li:first-child {
    margin-right: 20px;
}
.product-detail  .share-list li {
    margin-right: 12px;
}
.product-detail  .share-list li a {
    color: #fff;
    font-size: 14px;
    background-color: var(--dark-color);
    width: 30px;
    height: 30px;
    border-radius: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.product-detail  .share-list li a:hover {
    background-color: #777;
}
#detailTabs {
    background-color: #f8f8f8;
    border: 0;
    margin-bottom: 15px;
}
#detailTabs .nav-item {
    margin-right: 15px;
}
#detailTabs .nav-item:last-child {
    margin-right: 0;
}
#detailTabs .nav-item .nav-link {
    color: #666;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: .25rem solid #ececec;
    padding: 10px 25px;
    margin: 0;
}
#detailTabs .nav-item.show .nav-link, #detailTabs .nav-link.active {
    background-color: transparent;
    color: var(--dark-color);
}
.widget {
    margin-bottom: 40px;
}
.widget .title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}
#successcartmodal .modal-content {
    border: 0;
    border-radius: 0;
}
#successcartmodal .modal-header {
    border: 0;
    color: #4f791c;
    text-transform: uppercase;
    text-align: center;
}
#successcartmodal .modal-title {
    font-size: 12px;
    display: flex;
    align-items: center;
}
#successcartmodal .modal-title i {
    font-size: 24px;
    margin-right: 10px;
}
#successcartmodal .btn-close {
    position: absolute;
    right: 20px;
}
#successcartmodal .item-content .item-name {
    font-size: 14px;
    margin-bottom: 2px;
}
#successcartmodal .item-content .item-sku {
    color: #777;
}
#successcartmodal .block-title {
    background: #f9f9f9;
    text-align: center;
    color: #333;
    font-weight: 600;
    padding: 4px;
    margin-bottom: 5px;
}
#successcartmodal .table-success-sum .btn {
    width: 100%;
    border-radius: 0;
}
#successcartmodal .modal-body {
    padding-top: 0;
}
#successcartmodal .input-group input:focus {
    border-color: #ced4da; 
}
#successcartmodal .input-group .btn {
    border-color: #ced4da;
    border-radius: 0;
    border-radius: 0;
    padding: .225rem .5rem;
}
#successcartmodal .input-group .btn:hover, 
#successcartmodal .input-group .btn:focus {
    background-color: #ced4da;
    box-shadow: none;
}
#successcartmodal .input-group .qty {
    max-width: 50px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}
#successcartmodal .table-success-order thead {
    background-color: #f9f9f9;
}
#successcartmodal .table-success-order th {
    padding-top: 4px;
    padding-bottom: 4px;
}
.login-page {
    padding-top: 50px;
}
.login-page label {
    color: #202435;
    font-size: .8125rem;
}
.login-page .form-control {
    padding: .65rem .75rem;
    background-color: #f3f4f8;
    border-color: #f3f4f8;
}
.login-page .block-title {
    font-size: 16px;
    color: #333;
}
.login-page a {
    color: var(--dark-color);
}
.login-page .btn-login {
    padding: 10px 20px;
}
.login-page .block-title {
    font-size: 14px;
    color: #333;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid #efefef;
    text-transform: uppercase;
}
.login-page .block-titles::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--color-secondary);
    bottom: 0;
    left: 0;
}
.login-page .rgst_typ {
    border-bottom: 3px solid #f2f2f2;
    margin-bottom: 10px;
    cursor: pointer;
}
.login-page .rgst_typ.active {
    border-color: var(--dark-color);
    color: var(--dark-color);
}
.login-page .btn-link {
    color: var(--text-color);
    text-decoration: underline;
    padding: 0;
}
.login-page .btn-link:focus {
    box-shadow: none;
}
.account-page .block-title {
    font-size: 14px;
    color: #333;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid #efefef;
    text-transform: uppercase;
}
.account-page label {
    color: #202435;
    font-size: 14px;
}
.account-page .form-control {
    padding: .65rem .75rem;
    background-color: #f3f4f8;
    border-color: #f3f4f8;
    border-radius: 0;
    font-size: inherit;
}
.account-page .form-select {
    padding: .65rem .75rem;
    background-color: #f3f4f8;
    border-color: #f3f4f8;
    border-radius: 0;
    font-size: inherit;
}
.account-page .btn-account {
    padding: 10px 20px;
}
.table.mini-cart-sum > :not(caption) > * > * {
    padding-top: 2px;
    padding-bottom: 2px;
    font-size: 13px;
}
.cart-page .btn-checkout {
    width: 100%;
    padding: 15px 20px;
    border-radius: 0;
}
.table-cart-items th {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    color: var(--color-text-lighter);
}
.table-cart-items td {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}
.table-cart-items td:last-child, 
.table-cart-items th:last-child {
    text-align: right;
}
.table.table-cart-items > :not(:first-child) {
    border-top: 0;
}
.table-cart-items .cart-item-img img {
    max-width: 60px;
    max-height: 60px;
}
.table-cart-items .cart-item-title {
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 2px;
}
.table-cart-items .cart-item-sku {
    color: #777;
    margin-bottom: 0;
    font-size: 12px;
}
.cart-page .cart-sum-title {
    font-size: 16px;
    color: var(--dark-color);
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
}
.cart-page .cart-summary td:first-child {
    padding-left: 0;
}
.cart-page .cart-summary td:last-child {
    padding-right: 0;
}
.cart-page .cart-summary h6 {
    font-size: 14px;
}
.table-success-order .item-img img {
    max-width: 60px;
    max-height: 60px;
}
.table-success-order .item-img {
    width: 70px;
}
.checkout-steps {
    justify-content: center;
    margin-bottom: 30px;
}
.checkout-steps .nav-item {
    margin-right: 10px;
}
.checkout-steps .nav-link {
    position: relative;
    padding-right: 40px;
    color: #777;
    font-size: 16px;
    font-weight: 700;
}
.checkout-steps .nav-link::after {
    content: "\BB";
    font-size: 19px;
    position: absolute;
    right: 0;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    text-align: center;
    top: 4px;
}
.checkout-steps .nav-item:last-child .nav-link::after {
    display: none;
}
.checkout-steps .nav-link.active {
    color: var(--dark-color);
}
.checkout-page .form-control,
.checkout-page .form-select,
.checkout-page .form-check,
.checkout-page .btn {
    font-size: inherit;
}
.checkout-page .form-control,
.checkout-page .form-select {
    padding: .75rem .75rem;
}
.checkout-page .checkout-label {
    font-size: 16px;
    color: #222;
    margin-bottom: 10px;
}
.checkout-page .checkout-submit {
    padding: 1rem 2rem;
    border-radius: 4px;
}
.checkout-page .backto-cart, .checkout-page .backto-checkout {
    color: var(--dark-color);
    text-decoration: none;
}
.checkout-page .backto-cart:hover {
    color: var(--color-secondary);
}
.checkout-page .form-check .form-check-input {
    width: 1.15em;
    height: 1.15em;
    margin-right: .35rem;
}
.checkout-page .btn:focus {
    box-shadow: none;
}
.checkout-page .nav-item {
    display: flex;
    align-items: center;
}
.checkout-page .nav-item .nav-link {
    color: #777;
    font-size: 13px;
    padding: 0;
    margin: 0 .5rem;
}
.checkout-page .nav-item:first-child .nav-link{
    margin-left: 0;
}
.checkout-page .nav-item .nav-link:hover,
.checkout-page .nav-item .nav-link.active {
    color: var(--color-text);
}
.checkout-page .checkout-list,
.checkout-page .checkout-list .btn {
    color: #454545;
}
.checkout-page .checkout-list .btn {
    padding: 0;
}
.checkout-page .checkout-list td {
    padding: 5px 2px;
    font-size: 13px;
}
.checkout-page .shipping-method-list td:last-child {
    text-align: right;
    font-weight: 500;
    white-space: nowrap;
}
.checkout-page .shipping-method label {
    color: var(--dark-color);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: block;
}
.checkout-page .shipping-method p {
    color: var(--dark-color);
    font-weight: normal;
    font-size: 13px;
}
.checkout-page .checkout-coupon .btn {
    padding: .75rem .75rem;
}
.checkout-items {
    line-height: 1.5;
}
.checkout-items tr td:first-child {
    width: 80px;
}
.checkout-items tr td:last-child {
    white-space: nowrap;
}
.checkout-items .item-img {
    width: 70px;
    height: 70px;
    border: 1px solid #ddd;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    position: relative;
}
.checkout-items .item-img img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 4px;
}
.checkout-items .item-title {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: normal;
}
.checkout-items .item-desc {
    color: #666;
    margin-bottom: 0;
    font-size: 13px;
}
.checkout-items .item-sku {
    color: #777;
    margin-bottom: 0;
    font-size: 13px;
}
.checkout-items .item-qty {
    z-index: 9;
    position: absolute;
    background: rgba(0,0,0,.5);
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    right: -10px;
    top: -10px;
    font-size: 13px;
}
.checkout-page hr {
    background-color: #b9bec4;
}
.checkout-page .checkout-login {
    width: 100%;
    padding: 10px;
}
.checkout-page .checkout-logo img {
    max-width: 200px;
    max-height: 60px;
}
.category-block {
    margin-bottom: 50px;
}
.category-block .product-slider {
    border: 1px solid var(--color-border-light);
    overflow: hidden;
    border-radius: 10px;
}
.category-block .head-content {
    margin-bottom: 15px;
}
.category-block .head-content h3 {
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 20px;
}
.category-block .head-content p {
    margin-bottom: 0;
    color: var(--color-text-lighter);
    font-size: 13px;
}
.category-block .head-link a {
    color: #a5a1af;
    border: 1px solid #dedde2;
    text-decoration: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 500;
}
.category-block .item {
    min-width: 0;
    z-index: 1;
    border-left: 1px solid var(--color-border-light);
    -webkit-transition: z-index 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
    transition: z-index 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
}

.category-block .swiper-slide:first-child .item {
    border-left: none;
}
.category-block .item-img {
    height: 200px;
    overflow: hidden;
    padding: 15px;
    text-align: center;
}
.category-block .item-img img {
    max-width: 100%;
    max-height: 100%;
}
.category-block .item .item-title {
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.4;
    height: 40px;
    overflow: hidden;
    margin-bottom: 3px;
}
.category-block .item-title a {
    color: var(--text-color);
    text-decoration: none;
}

.category-block .item-title a:hover {
    color: var(--color-secondary);
}
.category-block .item-content {
    padding: 15px;
}
.item-available {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
}
.item-available.available {
    color: var(--color-success);
}
.item-available.not-available {
    color: var(--color-danger);
}
.category-block .item-price {
    color: var(--color-price);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: var(--font-primary);
}
.category-block .item-rating {
    margin-bottom: 4px;
}
.category-block .item-available {
    margin-bottom: 5px;
}
.category-block .swiper-button-next, 
.category-block .swiper-button-prev {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.20);
    background: #fff;
    color: #484343;
    width: 40px;
    height: 40px;
    border-radius: 100%;
}
.category-block .swiper-button-next::after, 
.category-block .swiper-button-prev::after {
    font-size: 14px;
    font-weight: bold;
}
.category-block .swiper-button-next.swiper-button-disabled, 
.category-block .swiper-button-prev.swiper-button-disabled {
    opacity: 1;
}
.category-block .item-add {
    margin-bottom: 5px;
    
}
.category-block .btn-add-cart {
    background-color: #f4f4f4;
    border-color: #f4f4f4;
    border-radius: 50px;
    padding: 7px 15px;
    width: 100%;
    font-size: 13px;
    
}
.category-block .btn-add-cart:hover, 
.category-block .btn-add-cart:focus {
    background-color: var(--text-color);
    border-color: var(--text-color);
    color: #fff;
}
.category-block .btn-add-cart:focus {
    box-shadow: none;
}
.item-rating {
    position: relative;
    width: 100px;
    height: 20px;
}
.item-rating::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    content: "\f005\f005\f005\f005\f005";
    font-size: 11px;
    letter-spacing: .14rem;
    color: #cacbdb;
}
.item-rating span::before {
    content: "";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    font-size: 11px;
    letter-spacing: .14rem;
    color: #f3c912;
}
.item-rating.rating-0-1 span::before,
.item-rating.rating-0-2 span::before,
.item-rating.rating-0-3 span::before,
.item-rating.rating-0-4 span::before, 
.item-rating.rating-0-5 span::before {
    content: "\f089";
}
.item-rating.rating-1-0 span::before,
.item-rating.rating-1-1 span::before,
.item-rating.rating-1-2 span::before,
.item-rating.rating-1-3 span::before,
.item-rating.rating-1-4 span::before {
    content: "\f005";
}
.item-rating.rating-1-5 span::before,
.item-rating.rating-1-6 span::before,
.item-rating.rating-1-7 span::before,
.item-rating.rating-1-8 span::before,
.item-rating.rating-1-9 span::before {
    content: "\f005\f089";
}
.item-rating.rating-2-0 span::before,
.item-rating.rating-2-1 span::before,
.item-rating.rating-2-2 span::before,
.item-rating.rating-2-3 span::before,
.item-rating.rating-2-4 span::before {
    content: "\f005\f005";
}
.item-rating.rating-2-5 span::before,
.item-rating.rating-2-6 span::before,
.item-rating.rating-2-7 span::before,
.item-rating.rating-2-8 span::before,
.item-rating.rating-2-9 span::before {
    content: "\f005\f005\f089";
}
.item-rating.rating-3-0 span::before,
.item-rating.rating-3-1 span::before,
.item-rating.rating-3-2 span::before,
.item-rating.rating-3-3 span::before,
.item-rating.rating-3-4 span::before {
    content: "\f005\f005\f005";
}
.item-rating.rating-3-5 span::before {
    content: "\f005\f005\f005\f089";
}
.item-rating.rating-4-0 span::before,
.item-rating.rating-4-1 span::before,
.item-rating.rating-4-2 span::before,
.item-rating.rating-4-3 span::before,
.item-rating.rating-4-4 span::before {
    content: "\f005\f005\f005\f005";
}
.item-rating.rating-4-5 span::before,
.item-rating.rating-4-6 span::before,
.item-rating.rating-4-7 span::before,
.item-rating.rating-4-8 span::before,
.item-rating.rating-4-9 span::before {
    content: "\f005\f005\f005\f005\f089";
}
.item-rating.rating-5-0 span::before {
    content: "\f005\f005\f005\f005\f005";
}
.account-order-list thead th:last-child,
.account-order-list tbody td:last-child {
    text-align: right;
}
.account-order-list .table-actions a {
    display: inline-block;
    margin-right: 8px;
}
.account-order-list .table-actions a:last-child {
    margin-right: 0;
}
.account-order-list .order-status {
    font-size: 9px;
    background: #f3f3f3;
    padding: 3px 15px;
    border-radius: 25px;
}
.account-order-list .order-status.status-completed {
    background-color: #00b853;
    color: #fff;
}
.footer {
    background-color: #202226;
    border-color: #202226;
    color: #a8a8a8;
    padding-top: 50px;
    font-size: .8125rem;
}
.footer .footer-logo {
    margin-bottom: 25px;
}
.footer .footer-adress {
    margin-bottom: 25px;
}
.footer .title {
    margin-bottom: 15px;
}
.footer .title h3 {
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
}
.footer-list a {
    text-decoration: none;
    color: #a8a8a8;
}
.footer-list a:hover {
    color: var(--color-secondary);
}
.footer-list li {
    margin: 6px 0;
}
.footer .newsletter-form {
    display: flex;
}
.footer .newsletter-form .form-control {
    border: 0;
    background-color: transparent;
    border-bottom: 2px solid #a8a8a8;
    color: #a8a8a8;
    border-radius: 0;
    padding-left: 0;
}

.footer .newsletter-form .form-control::placeholder {
    color: #a8a8a8;
}
.footer .newsletter-form .btn-nwsltr {
    border: 0;
    border-bottom: 2px solid #a8a8a8;
    color: #a8a8a8;
    border-radius: 0;
    margin-left: 15px;
}
.footer .footer-copyright {
    margin-top: 50px;
    padding: 15px 0;
}

.footer .footer-copyright .container {
    border-top: 1px solid #404040;
    padding-top: 10px;
}
.rg-full-bg {
    position: relative;
}
.rg-full-bg::after {
    background-color: #f4f4f4;
    content: "";
    position: fixed;
    width: 50%;
    height: 100%;
    top: 0;
    z-index: -1;
    border-left: 1px solid #dee2e6;
    right: 0;
}

.ui-grid {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}
.ui-grid::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 1px solid var(--color-border-light);
    border-radius: var(--size-border-radius);
    pointer-events: none;
}
.ui-grid .item {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    min-width: 0;
    z-index: 1;
    border-right: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
    -webkit-transition: z-index 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
    transition: z-index 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
}
.ui-grid .item-img {
    max-width: 100%;
    height: 250px;
    overflow: hidden;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ui-grid .item-img img {
    max-width: 100%;
    max-height: 100%;
}
.ui-grid .item-img .btn-add-cart {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    width: 100%;
    color: #fff;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 0;
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}
.ui-grid .item-img .btn-add-cart:focus {
    box-shadow: none;
}
.ui-grid .item:hover .btn-add-cart {
    display: block;
}
.ui-grid .item:hover .btn-add-cart:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}
.ui-grid .item-title {
    font-size: 14px;
    height: 38px;
    overflow: hidden;
    line-height: 1.4;
}
.ui-grid .item-title a {
    color: var(--color-text);
    text-decoration: none;
}
.ui-grid .item-title a:hover {
    color: var(--color-secondary);
}
.ui-grid .item-available {
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 3px;
}
.ui-grid .item-available.in-stock {
    color: var(--color-success);
}
.ui-grid .item-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-price);
}
.ui-grid.align-center .item-wrapper {
    text-align: center; 
}
.ui-grid .item-wrapper {
    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;
    z-index: 1;
}
#reviewModal .form-control {
    border-radius: 0;
    background: #f8f8f8;
    border-color: #e6e6e6;
    padding: .5rem .75rem;
}
#reviewModal textarea {
    min-height: 130px;
}
#reviewModal table td:first-child {
    width: 150px;
}
#product-rating .btn {
    padding: 0;
    line-height: normal;
}
#product-rating .btn i {
    font-size: 20px;
    color: #cacbdb;
}
#product-rating .btn:focus {
    box-shadow: none;
}
#product-rating.rating-1 .btn:nth-child(1) i {
    color: #f3c912;
}
#product-rating.rating-2 .btn:nth-child(1) i,
#product-rating.rating-2 .btn:nth-child(2) i {
    color: #f3c912;
}
#product-rating.rating-3 .btn:nth-child(1) i,
#product-rating.rating-3 .btn:nth-child(2) i,
#product-rating.rating-3 .btn:nth-child(3) i {
    color: #f3c912;
}
#product-rating.rating-4 .btn:nth-child(1) i,
#product-rating.rating-4 .btn:nth-child(2) i,
#product-rating.rating-4 .btn:nth-child(3) i,
#product-rating.rating-4 .btn:nth-child(4) i {
    color: #f3c912;
}
#product-rating.rating-5 .btn:nth-child(1) i,
#product-rating.rating-5 .btn:nth-child(2) i,
#product-rating.rating-5 .btn:nth-child(3) i,
#product-rating.rating-5 .btn:nth-child(4) i,
#product-rating.rating-5 .btn:nth-child(5) i {
    color: #f3c912;
}
.detail-review-head .review-count {
    display: flex;
    align-items: center;
}
.detail-review-head .count {
    font-size: 30px;
    font-weight: bold;
    margin-right: 10px;
}
.detail-review-head .item-rating::before,
.detail-review-head .item-rating span::before {
    font-size: 14px;
}
.detail-review-list li {
    border-bottom: 1px dotted #ddd;
    padding: 25px 0;
}
.detail-review-list li:last-child {
    border-bottom: 0;
}
.detail-review-list .review-avatar .avatar {
    background: #938c8c;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}
.detail-review-list .review-avatar .avatar span {
    font-size: 40px;
    font-weight: 500;
    color: #fff;
}
.detail-review-list .review-stats {
    font-size: 12px;
    margin-bottom: 5px;
}
.detail-review-list .review-text h3 {
    font-size: 14px;
    margin-bottom: 2px;
}
.detail-review-list .review-text p {
    margin-bottom: 0;
    font-size: 13px;
}
.detail-review-link a {
    text-decoration: none;
    color: var(--dark-color);
    font-size: 13px;
}
#product-ratings .btn:hover {
    color: #f3c912;
}
#product-ratings {
    position: relative;
    width: 100px;
    height: 28px;
}
#product-ratings::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    content: "\f005\f005\f005\f005\f005";
    font-size: 20px;
    letter-spacing: .14rem;
    color: #cacbdb;
}
#product-ratings span::before {
    content: "";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    font-size: 20px;
    letter-spacing: .14rem;
    color: #f3c912;
}
#product-ratings span:hover {
    cursor: pointer;
}
#product-ratings.rating-0-5 span::before {
    content: "\f089";
}
#product-ratings.rating-1-0 span::before {
    content: "\f005";
}
#product-ratings.rating-1-5 span::before {
    content: "\f005\f089";
}
#product-ratings.rating-2-0 span::before {
    content: "\f005\f005";
}
#product-ratings.rating-2-5 span::before {
    content: "\f005\f005\f089";
}
#product-ratings.rating-3-0 span::before {
    content: "\f005\f005\f005";
}
#product-ratings.rating-3-5 span::before {
    content: "\f005\f005\f005\f089";
}
#product-ratings.rating-4-0 span::before {
    content: "\f005\f005\f005\f005";
}
#product-ratings.rating-4-5 span::before {
    content: "\f005\f005\f005\f005\f089";
}
#product-ratings.rating-5-0 span::before {
    content: "\f005\f005\f005\f005\f005";
}
.banner-slider .swiper-slide .item {
    background-color: #f1f2f4;
    border-radius: .225rem;
    overflow: hidden;
    padding: 36px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center right;
}
.banner-slider .swiper-slide .item-slug {
    text-transform: uppercase;
    color: #02ce58;
    font-size: 14px;
    font-weight: 400;
}
.banner-slider .swiper-slide .item-title {
    color: #424153;
    font-size: 24px;
}
.banner-slider .swiper-slide .item-desc {
    font-size: 13px;
    margin-bottom: 25px;
    color: #afadb8;
}
.banner-slider .swiper-slide .item-button a {
    background-color: #b1b0bf;
    color: #fff;
    border-radius: 30px;
    padding: 8px 20px;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
}
.banner-slider .swiper-slide .item-button a:hover, 
.banner-slider .swiper-slide .item-button a:focus {
    background-color: var(--color-secondary);
}
.pagination .page-item {
    margin-right: 5px;
}
.pagination .page-item .page-link {
    border-radius: 0;
    background-color: #f0f0f0;
    border: 0;
    color: var(--dark-color);
    height: 33px;
}
.pagination .page-item .page-link:hover {
    background-color: #d9d9d9;
}
.pagination .page-item .page-link:focus {
    box-shadow: none;
}
.pagination .page-item.active .page-link {
    border-color: var(--color-secondary);
    background-color: var(--color-secondary);
    color: #fff;
}
.filter-recovery {
    margin-bottom: 15px;
}
#filterrecovery {
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
}
#filterrecovery:hover {
    color: var(--color-secondary);
}
#filterrecovery:focus {
    box-shadow: none;
}
.wishlist #deleteWishitem {
    position: absolute;
    z-index: 99;
    right: 10px;
    background: var(--color-secondary);
    color: #fff;
    border-radius: 100%;
    padding: 0;
    width: 25px;
    height: 25px;
    font-size: 11px;
    top: 10px;
}
.wishlist #deleteWishitem:focus {
    box-shadow: none;
}
.wishlist-success {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.wishlist-success .fa-heart {
    font-size: 36px;
}
.wishlist-success .btn {
    background: #f4f4f4;
    margin-bottom: 10px;
    border-radius: 0;
    width: 100%;
}
.wishlist-success .btn:focus {
    box-shadow: none;
}
#wishlistModal .modal-dialog {
    max-width: 320px;
}
#wishlistModal .modal-body {
    padding: 30px;
}
.smallmodal .action-success {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.smallmodal .action-success i {
    font-size: 36px;
}
.smallmodal .action-success .btn {
    background: #f4f4f4;
    margin-bottom: 10px;
    border-radius: 0;
    width: 100%;
}
.smallmodal .action-success .btn:focus {
    box-shadow: none;
}
.smallmodal .modal-dialog {
    max-width: 320px;
}
.smallmodal .modal-body {
    padding: 30px;
}
.detail-product-variants .form-select {
    font-size: inherit;
    border-radius: 0;
    box-shadow: 0 1px 0px rgb(222, 226, 230);
    max-width: 360px;
}
.detail-product-variants  .label {
    font-weight: 600;
    margin-bottom: 5px;
}
.compare-list td {
    width: 25%;
}
.compare-list td:not(:first-child) {
    text-align: center;
}
.compare-list .item-img {
    text-align: center;
    margin-bottom: 10px;
}
.compare-list .item-img img {
    max-height: 200px;
}
.compare-list .item-title {
    font-size: 14px;
}
@media screen and (max-width: 26.25rem) {
    .ui-grid.align-center .item-wrapper .item-meta {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; 
    } 
}
.ui-grid.align-center .item-wrapper .item-meta, 
.ui-grid.align-center .item-wrapper .item-rating {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
.ui-grid.align-center .item-switcher .switcher-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; 
}
.ui-grid.mobile-column-1 .item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; 
}
.list-filter-toggle {
    display: none;
    position: relative;
    cursor: pointer;
    margin-bottom: 10px;
}
.list-filter-toggle svg {
    position: absolute;
    right: 10px;
}
.contact-form {
    max-width: 760px;
}
.contact-form .form-control {
    border-radius: 0;
    padding: .65rem .75rem;
}
.contact-form textarea {
    min-width: 200px;
}
.return-form .form-control {
    border-radius: 0;
    padding: .65rem .75rem;
}
.return-form textarea {
    min-width: 200px;
}
.home-services .item {
    display: flex;
    border-right: 1px solid #edeef5;
}
.home-services .item:last-child {
    border-right: 0;
}
.home-services .item .item-icon {
    margin-right: 15px;
}
.home-services .item .item-icon i {
    font-size: 30px;
}
.home-services .item .item-text h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0px;
}
.home-services .item .item-text p {
    color: #777;
    margin-bottom: 0px;
}
.sidebar-menu {
    display: none;
    background-color: #fff;
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    max-width: 320px;
    padding: 25px;
}
.sidebar-menu .sm-closer {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 10px;
    top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.sidebar-menu .sm-logo {
    margin-bottom: 15px;
}
.sidebar-menu .sm-logo img {
    max-width: 200px;
    max-height: 60px;
}
.sidebar-menu .sm-search {
    position: relative;
    margin-bottom: 10px;
}
.sidebar-menu .sm-search .btn-search {
    position: absolute;
    top: 0px;
    right: -4px;
}
.sidebar-menu.on {
    animation-name: fadeFromLeft;
    animation-duration: 2s;
    display: block;
    z-index: 999;
}
.sidebar-menu .sm-menu {
    margin-bottom: 10px;
}
.sidebar-menu .sm-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar-menu .sm-nav li {
    margin-right: 10px;
}
.sidebar-menu  .sm-nav svg {
    width: 22px;
    height: 20px;
    fill: var(--dark-color);
}
.sidebar-menu .sm-nav svg.svg-wishlist {
    stroke-width: 2;
    stroke: var(--dark-color);
    fill: none;
}
.sidebar-menu .nav-item {
    border-bottom: 1px dotted var(--color-border);
}
.sidebar-menu .nav-item a {
    color: #3e445a;
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
}
@keyframes fadeFromLeft {
    0% {
      width: 0;
    }
    100% {
      width: 100%;   
    }
  }
@media screen and (max-width: 575.98px) {
    .list-filter-toggle {
        display: block;
    }
    .ui-grid.column-4 .item,
    .ui-grid.column-5 .item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%; 
        padding: 10px;
        border: 0;
    } 
    .ui-grid .item-img {
        height: 160px;
    }
    .header-nav {
        display: none;
        position: absolute;
        z-index: 99;
        background: #fff;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }
    .header-content .right-nav {
        justify-content: center;
        align-items: center;
    }
    .header .header-logo {
        text-align: center;
        width: 100%;
        margin-bottom: 10px;
    }
    .header-nav.show,
    .header-nav.show .mobile-nav-logo, 
    .header-nav.show .mobile-nav-show {
        display: block;
    }
    .header-content {
        padding: 15px 0;
    }
    .swiper-button-next, .swiper-button-prev {
        color: #a4a4a4;
    }
    .mini-cart-content {
        transform: translate(-50%, 0);
        left: 50%;
    }
    .rg-full-bg::after {
        display: none;
    }
    .list-filter {
        display: none;
    }
    .list-filter.show {
        display: block;
    }
    .slider-content .slider-title {
        font-size: 46px;
    }
    .slider .slider-item {
        min-height: 360px;
    }
    
.sidebar-menu.on {
    animation-name: fadeFromLeft;
    animation-duration: .5s;
    display: block;
    z-index: 999;
    width: 100%;
    max-width: 100%;
}
}
@media screen and (min-width: 48rem) {
    .ui-grid.column-5 .item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    } 
    .ui-grid .item-wrapper {
      padding: 0 1.25rem 1.25rem;
    }
}
@media screen and (min-width: 75rem) {
    .ui-grid.column-5 .item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%; 
    } 
}
@media screen and (min-width: 48rem) {
    .ui-grid.column-4 .item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    } 
}
@media screen and (min-width: 75rem) {
    .ui-grid.column-4 .item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .ui-grid.column-4 .item .item-img {
        height: 200px;
    }
}
@media screen and (min-width: 48rem) {
    .ui-grid.column-3 .item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media screen and (min-width: 75rem) {
    .ui-grid.column-3 .item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }
}
@media screen and (min-width: 48rem) {
    .ui-grid.column-2 .item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media screen and (min-width: 48rem) {
    .ui-grid.column-1 .item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%; 
    }
    .ui-grid.column-1 .item .item-wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    } 
}
@media (min-width: 1400px){
    .container-fluid {
    padding: 0 105px;
    }
}