@font-face {
    font-family: "segoeprb";
    src: url("../fonts/segoeprb.eot");
    src: url("../fonts/segoeprb.eot") format("embedded-opentype"),
        url("../fonts/segoeprb.woff2") format("woff2"),
        url("../fonts/segoeprb.woff") format("woff"),
        url("../fonts/segoeprb.ttf") format("truetype"),
        url("../fonts/segoeprb.svg#segoeprb") format("svg");
}

button,
.btn {
    outline: none !important;
    box-shadow: none !important;
}
.grayscale {
    filter: grayscale(1);
}
.outline-none {
    outline: none !important;
}
.border-1 {
    border-width: 1px;
}
.border-2 {
    border-width: 2px;
}
.border-3 {
    border-width: 3px;
}
.border-4 {
    border-width: 4px;
}
.border-5 {
    border-width: 5px;
}
.light {
    font-weight: 300;
}
.medium {
    font-weight: 500;
}
.bold {
    font-weight: 700;
}
.bg-white {
    background-color: white !important;
}
.bg-red {
    background-color: red !important;
}
.bg-orange {
    background-color: var(--orange) !important;
}
.bg-grey {
    background-color: rgba(0, 0, 0, 0.5) !important;
}
.bg-green {
    background-color: var(--green) !important;
}
.bg-color1 {
    background-color: var(--color1) !important;
}
.bg-lightcolor1 {
    background-color: var(--lightcolor1) !important;
}
.bg-transparentcolor1 {
    background-color: var(--transparentcolor1) !important;
}
.bg-darkcolor1 {
    background-color: var(--darkcolor1) !important;
}
.bg-lightgray {
    background-color: var(--lightgray) !important;
}
.bg-darkgray {
    background-color: var(--darkgray) !important;
}
.bg-color2 {
    background-color: var(--color2);
}
.bg-color3 {
    background-color: var(--color3);
}
.bg-color4 {
    background-color: var(--color4);
}
.border-rad-3 {
    border-radius: 3px;
}
.border-rad-8 {
    border-radius: 8px;
}
.border-color1 {
    border-color: var(--color1);
}
.line-height-1 {
    line-height: 1;
}
.line-height-12 {
    line-height: 1.2;
}
.opacity-40 {
    opacity: 0.4;
}
.opacity-50 {
    opacity: 0.5;
}
.opacity-60 {
    opacity: 0.6;
}
.opacity-70 {
    opacity: 0.7;
}
.opacity-80 {
    opacity: 0.8;
}
.text-line-through {
    text-decoration: line-through;
}
.trans {
    transition: all 0.2s;
}
.text-decoration-line-through {
    text-decoration: line-through;
}
.text-red {
    color: red !important;
}
.text-color-inherit {
    color: inherit !important;
}
.text-gray {
    color: var(--darkgray) !important;
}
.text-color1 {
    color: var(--color1) !important;
}
.text-color2 {
    color: var(--color2) !important;
}
.text-color1-dark {
    color: var(--darkcolor1) !important;
}
.text-color1-light {
    color: var(--lightcolor1) !important;
}
.text-facebook {
    color: #4267b2 !important;
}
.text-google {
    color: red !important;
}
.text-small {
    font-size: 11px;
}
.text-medium {
    font-size: 16px;
}
.text-big {
    font-size: 22px;
}
.segoe {
    font-family: "segoeprb";
}
p {
    margin-bottom: 0;
}
.cursor-pointer {
    cursor: pointer;
}
.white-space-nowrap {
    white-space: nowrap;
}
.letter-spacing {
    letter-spacing: 1px;
}
.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.mirror {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
.rotate-90 {
    transform: rotate(-90deg);
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}
body {
    font-family: "Roboto", sans-serif;
    color: #5a5858;
    font-size: 0.87rem;
}
.toast.toast-error {
    background-color: #f44336;
}
/* menu burger starts */
#menu-burger {
    position: relative;
    margin: 0 8px 0 15px;
    cursor: pointer;
}
#menu-burger span {
    display: block;
    width: 22px;
    height: 2px;
    margin-bottom: 4px;
    position: relative;
    background: var(--color1);
    border-radius: 3px;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
        background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

#menu-burger span:last-child {
    transform-origin: 0% 100%;
}
#menu-burger.active span {
    opacity: 1;
    transform: rotate(45deg) translate(3px, -1px);
}
#menu-burger.active span:nth-child(2) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}
#menu-burger.active span:last-child {
    transform: rotate(-45deg) translate(1px, 3px);
}
/* menu burger ends */

/* user account starts */
.profilepic_wraper {
    text-align: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--darkgray);
    display: flex;
}
.profilepic {
    background-color: #e1e1e5;
    border-radius: 50%;
    border: 4px solid white;
    margin: 5px;
    overflow: hidden;
    flex-grow: 1;
}
.profilepic .fa {
    font-size: 50px;
    color: white;
    position: relative;
    top: 15px;
}
#myaccount-wraper {
    background-color: var(--darkgray);
}
.myaccount-tabs {
    background-color: var(--darkgray);
}
.myaccount-tabs .myaccount-menu a {
    font-size: 11px;
    position: relative;
    width: calc(20% - 5px);
    background-color: var(--lightgray);
    padding: 10px 3px;
    height: 70px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: inherit;
}
.myaccount-tabs .myaccount-menu.myaccount-menu-6-cols a {
    width: calc(16% - 2px);
}
.myaccount-tabs .myaccount-menu .ellipsis {
    width: 100%;
}
.myaccount-tabs .myaccount-menu .icon-wraper {
    height: 26px;
}
.myaccount-tabs .myaccount-menu a:hover {
    transition: background-color 0.2s;
    background-color: #d9d9da;
}
.myaccount-tabs .myaccount-menu a.active {
    background-color: white;
    border-radius: 8px 8px 0 0;
    color: var(--color1);
}
.myaccount-tabs .myaccount-menu a.active:before {
    content: "";
    position: absolute;
    right: 0;
    top: 100%;
    height: 0.5rem;
    width: 100%;
    background-color: #fff;
}
/* user account ends */

/* tabs starts */
.custom-tab.nav-tabs {
    border-bottom: 4px solid var(--color1);
}
.custom-tab.nav-tabs .nav-item {
    margin-bottom: -4px;
    /* flex-grow: 1; */
    text-align: center;
    margin-right: 8px;
}
.custom-tab.nav-tabs .nav-item.nav-item-col6 {
    width: calc(50% - 8px / 2);
}
.custom-tab.nav-tabs .nav-item.nav-item-col4 {
    width: calc(33.33% - 16px / 3);
}
.custom-tab.nav-tabs .nav-item:last-child {
    margin-right: 0;
}
.custom-tab.nav-tabs .nav-item .nav-link {
    font-size: 0.8rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
    border-width: 0;
    color: inherit;
    height: 100%;
}
.custom-tab.nav-tabs .nav-item .nav-link:before {
    content: "";
    height: calc(100%);
    position: absolute;
    z-index: -1;
    width: 100%;
    background-color: var(--darkgray);
}
.custom-tab.nav-tabs .nav-item.show .nav-link,
.custom-tab.nav-tabs .nav-link.active {
    color: var(--color1);
    border-color: var(--color1);
    border-bottom: 0;
    border-width: 4px;
    background-color: white;
}
.nav-tabs .nav-link {
}
/* tabs ends */

label.is-invalid {
    width: 100%;
    font-weight: 700;
    margin-top: 0.25rem;
    margin-bottom: 0;
    font-size: 80%;
}
label.is-invalid,
.is-invalid label {
    color: #dc3545;
}
[data-simplebar].simplebar-color1 .simplebar-scrollbar:before {
    background: var(--color1);
}
/* header starts */
#mobile-header-wraper {
    position: relative;
    z-index: 999;
}
.mobile-header {
    background-color: var(--darkcolor1);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    padding: 20px;
    transition: transform 0.5s ease-in-out;
    transform: translateX(-100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.mobile-header .fa-times {
    top: 20px;
    right: 20px;
}
#mobile-header-wraper.open .mobile-header {
    transform: translateX(0%);
}

.header-menu-area,
.header-right-area,
.header-right-area-icon {
    height: 60px;
}
@keyframes smoothScroll {
    0% {
        transform: translateY(-150px);
    }
    100% {
        transform: translateY(0);
    }
}
.header {
    width: 100%;
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    z-index: 999;
    position: relative;
}
.header.h_fixed {
    position: fixed;
    animation: smoothScroll 0.7s forwards;
}
.header .container {
    padding-left: 0;
    padding-right: 0;
}
.header-logo {
    padding: 5px;
}
.header-logo img {
    max-width: 130px;
    max-height: 50px;
}
.header-menu-area > ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}
.header-menu-area > ul > li {
    display: flex;
    font-weight: 700;
    letter-spacing: 1px;
    align-items: center;
    position: relative;
    /* overflow-y: hidden; */
    overflow-x: visible;
}
.header-menu-area > ul > li:before {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #d5d5d5;
    left: -2px;
    top: calc(50% - 2px);
}
.header-menu-area > ul > li:first-child:before {
    display: none;
}
.header-menu-area li > a,
.header-menu-area li > span {
    position: relative;
    background-color: transparent !important;
    color: #7d7979 !important;
    padding: 0 15px;
    margin: 0 4px;
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.2s;
}
.header-menu-area li > a:hover,
.header-menu-area li > span:hover {
    color: black !important;
}
.header-menu-area li > a + .indicator,
.header-menu-area li > span + .indicator {
    position: absolute;
    height: 0px;
    width: 100%;
    left: 0;
    bottom: 0;
    background-color: var(--color1);
    transition: height 0.2s;
}
.header-menu-area li > a:hover + .indicator,
.header-menu-area li.has_submenu:hover .indicator,
.header-menu-area li.active > a + .indicator,
.header-menu-area li > span:hover + .indicator,
.header-menu-area li.active > span + .indicator {
    height: 7px;
}
.header-right-area-item {
    display: flex;
    align-items: center;
    position: relative;
    text-decoration: none !important;
    overflow: hidden;
    background-color: transparent;
    padding: 0;
    border: 0;
}
.header-right-area-btn {
    display: block;
    position: relative;
    width: 45px;
    padding: 0 3px;
    text-align: center;
    color: #bcbcbc;
    transition: color 0.2s;
}
.header-right-area-item.active .header-right-area-btn {
    color: var(--color1);
}
.header-right-area-item:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: white;
    height: 3px;
    width: 100%;
    transition: transform 0.2s, background-color 0.2s;
    transform: translateY(0);
}
.header-right-area-item.active:after {
    background-color: var(--color1);
}
.header-right-area-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-right-area-btn .fa.fa-shopping-cart {
    font-size: 22px;
}
.header-right-area-btn .fa-user,
.header-right-area-btn .fa-heart {
    font-size: 25px;
}
.header-right-area-btn .fa-search {
    font-size: 22px;
}
.header-right-area-item .header-right-area-btn:before,
.header-right-area-item:last-child .header-right-area-btn:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #ededed;
}
.header-right-area-item:last-child .header-right-area-btn:after {
    display: none;
}
.header-right-area-text {
    font-style: italic;
    font-weight: 700;
    font-size: 10px;
    display: block;
}
.svg-icon.header-cart-icon {
    height: 18px;
    margin-top: 5px;
}
.header-cart-quantity {
    font-size: 9px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border-radius: 50%;
    background-color: #bcbcbc;
    color: white;
    right: 0;
    top: 10px;
    position: absolute;
    transition: background-color 0.2s;
}
.header-right-area-item.active .header-cart-quantity {
    background-color: var(--color1);
}
.submenu {
    display: none;
    opacity: 0;
    transition: opacity 0.2s;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    width: 100%;
    color: black;
    list-style: none;
    padding: 10px 0;
    border: 1px solid #ededed;
    width: auto;
}
.has_submenu:hover .submenu {
    display: block;
    opacity: 1;
}
.submenu li {
    padding: 10px 10px;
}
/* header ends */

/* flexslider starts */
.flexslider {
    margin: 0;
    border: 0;
}
.flex-control-nav {
    bottom: 0px;
    z-index: 2;
}
.flex-control-paging li {
    margin: 0 2px;
}
.flex-control-paging li a {
    width: 25px;
    height: 3px;
    border-radius: 0;
    background: white;
    color: transparent;
}
.flex-control-paging li a.flex-active {
    background: var(--color1);
}
/* flexslider ends */
.big_section {
    padding: 60px 0;
}
.section {
    padding: 40px 0;
}
.bg-line,
.bg-line span {
    position: relative;
}
.bg-line:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
}
.bg-line.bg-line-color1:before {
    background-color: var(--color1);
}

/* thumbnail product starts */
.row-collapse-cols > div:nth-child(2n + 1) {
    padding-right: 6px;
}
.row-collapse-cols > div:nth-child(2n) {
    padding-left: 6px;
}
.product-thumbnail {
    margin-bottom: 12px;
    text-align: left;
    position: relative;
    border: 1px solid #ededed;
    border-radius: 3px;
    padding: 10px;
    transition: border-color 0.2s;
}
.product-thumbnail.nostock {
    opacity: 0.6;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
.product-brand {
    font-size: 12px;
}
.product-thumbnail .product-primary-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.product-img {
    height: 0;
    padding-bottom: 100%;
    position: relative;
}

.product-content {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.product-name-box {
    height: 35px;
}
.product-name-box a {
    color: var(--color1);
}
.product-name {
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.product-description-box {
    color: #616161;
    font-size: 14px;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.product-discount {
    position: absolute;
    background-color: red;
    top: 5px;
    white-space: nowrap;
    right: 5px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    font-size: 10px;
    border-radius: 50%;
}
.product-whish {
    cursor: pointer;
    transition: opacity 0.2s;
    color: var(--color1);
    position: absolute;
    font-size: 20px;
    left: 10px;
    top: 10px;
}
.product-thumbnail:hover .product-whish {
    opacity: 1;
}
.price-box {
    font-size: 18px;
}
.price-box-currency {
    font-size: 75%;
}
.price-box-cents {
    font-size: 75%;
}
.product-actions {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: none;
}
/* thumbnail product ends */

.svg-icon {
    fill: currentColor;
}
.icon-medium {
    height: 24px;
    width: auto;
}
.icon-big {
    height: 32px;
    width: auto;
}
/*  buttons starts */
.btn-flex {
    display: flex;
    width: 100%;
}
.btn-inline-flex {
    display: inline-flex;
}
.btn-flex,
.btn-inline-flex {
    align-items: center;
    justify-content: center;
}
.btn-medium {
    font-size: 0.87rem;
    min-width: 110px;
    min-height: 36px;
    border-radius: 5px;
}
.btn-medium svg {
    height: 18px;
    width: auto;
}
.btn-medium .pull-left {
    position: absolute;
    left: 13px;
}
.btn-medium .pull-right {
    position: absolute;
    right: 13px;
}
.btn-big {
    /* font-size: 0.87rem; */
    border-radius: 8px;
    min-height: 45px;
    border-width: 1px;
}
.btn-big svg {
    height: 25px;
    width: auto;
}
.btn-big .pull-left {
    position: absolute;
    left: 15px;
}
.btn-big .pull-right {
    position: absolute;
    right: 15px;
}
.btn.btn-lightgray {
    color: #cdcdd7;
    background-color: var(--lightgray);
    border-color: var(--lightgray);
}
.btn.btn-color1 {
    color: white;
    background-color: var(--color1);
    border-color: var(--color1);
}
.btn-color1:hover {
    color: white;
    background-color: var(--darkcolor1);
    border-color: var(--darkcolor1);
}
.btn.btn-color1-border {
    color: var(--color1);
    background-color: white;
    border-color: var(--color1);
}
.btn.btn-facebook {
    color: white;
    background-color: #4267b2;
    border-color: #4267b2;
}
.btn-facebook:hover {
    color: white;
    background-color: #365492;
    border-color: #365492;
}
.btn.btn-google {
    color: white;
    background-color: #f12a37;
    border-color: #f12a37;
}
.btn-google:hover {
    color: white;
    background-color: #ce222d;
    border-color: #ce222d;
}
/*  buttons ends */

/* modal starts */
.custom-modal .close {
    position: absolute;
    z-index: 1;
    opacity: 1;
    right: 15px;
    top: 10px;
    font-size: 40px;
    transition: opacity 0.2s;
}
/* modal ends */
.btn-goback {
    position: absolute;
    z-index: 1;
    opacity: 1;
    left: 25px;
    top: 25px;
    font-size: 30px;
    transition: opacity 0.2s;
}
/* form starts */
.form-control {
    font-size: 0.87rem;
}
select.form-control {
    -webkit-appearance: none;
    background-image: url(/front/svg/arrow-down.svg);
    background-repeat: no-repeat;
    background-size: 15px auto;
    background-position: right 15px center;
}
.is-invalid > .form-control {
    padding-right: calc(1.5em + 0.75rem);
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
}
.checkbox-color1
    .custom-control-input:focus:not(:checked)
    ~ .custom-control-label::before {
    border-color: var(--color1);
}
.checkbox-color1 .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem var(--transparentcolor1);
}
.checkbox-color1 .custom-control-input:checked ~ .custom-control-label::before {
    border-color: var(--color1);
    background-color: var(--color1);
}
.checkbox-color1
    .custom-control-input:not(:disabled):active
    ~ .custom-control-label::before {
    background-color: var(--lightcolor1);
    border-color: var(--lightcolor1);
}
.input-group-with-icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color1);
    border-radius: 20px;
    color: white;
    padding: 3px 10px;
}
.input-group-with-icon input {
    width: 50px;
    margin-right: 10px;
    flex-grow: 1;
    background-color: transparent;
    border: 0;
    font-weight: 300;
    font-style: italic;
    font-size: 14px;
    outline: none;
    color: white;
}
.input-group-with-icon .input-group-with-icon-btn {
    cursor: pointer;
    color: white;
    font-size: 12px;
}
.input-group-with-icon .btn-icon {
    padding: 0;
}
.input-group-with-icon input::-webkit-input-placeholder,
input.whiteplaceholder::-webkit-input-placeholder {
    /* Edge */
    color: white;
}

.input-group-with-icon input:-ms-input-placeholder,
input.whiteplaceholder:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: white;
}
.input-group-with-icon input::placeholder,
input.whiteplaceholder::placeholder {
    color: white;
}
.input-wraper {
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding: 10px 15px;
    color: #8f8f97;
}
.input-wraper-big {
    height: 45px;
}
.input-wraper .form-control {
    border: 0;
    background-color: transparent;
    box-shadow: none !important;
}
.bg-solid {
    background-color: var(--darkgray);
}
.bg-solid.is-invalid,
.form-control-solid.is-invalid {
    background-color: rgb(220 53 69 / 0.2);
}
.form-control-solid {
    background-color: var(--darkgray);
    border: 0;
    box-shadow: none !important;
}
.form-control-color1 {
    background-color: var(--color1) !important;
    color: white !important;
    border: 0 !important;
    box-shadow: none !important;
}
select.form-control-color1 {
    background-image: url(/front/svg/arrow-down-white.svg);
}
.form-control-big {
    height: 45px;
    padding: 8px 18px;
    border-radius: 8px;
}
textarea.form-control-solid {
    padding: 15px 20px;
    border-radius: 8px;
}
.form-control-solid:focus {
    background-color: var(--darkgray);
}
.textarea-wraper {
    position: relative;
}
.textarea-wraper small {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(-100%);
    margin: 0;
    padding-bottom: 5px;
}
.plus_minus_input_group .additional-price {
    color: var(--color1);
}
.plus_minus_input_group.active .additional-price {
    color: white;
}
.plus_minus_input_group {
    background-color: var(--darkgray);
    cursor: pointer;
    min-height: 45px;
}
.plus_minus_input_group.active {
    background-color: var(--color1);
}
.nomore .plus_minus_input_group:not(.active) {
    opacity: 0.5;
}
.plus_minus_input_group:not(.active) .plus_minus_input_group_buttons {
    visibility: hidden;
    opacity: 0;
    display: none !important;
}
.plus_minus_input_group .plus_minus_input_group_buttons > * {
    border: 0;
    outline: none;
    background-color: var(--lightgray);
    font-weight: 900;
    color: #cdcdd7;
    text-align: center;
    padding: 3px 8px;
    margin: 0 3px;
    border-radius: 0.25rem;
}
.plus_minus_input_group.active,
.plus_minus_input_group.active .plus_minus_input_group_buttons > * {
    color: white;
}
.plus_minus_input_group.active .big_radio {
    border-color: white;
}
.plus_minus_input_group.active .plus_minus_input_group_buttons > * {
    background-color: var(--darkcolor1);
}

.plus_minus_input_group_buttons input {
    width: 50px;
}
.plus_minus_input_group .plus_minus_input_group_buttons {
    height: 30px;
}
.inner_text_input_wraper {
    opacity: 0;
    visibility: hidden;
}
.inner_text_input {
    width: 90px;
    height: 25px;
    border: 0;
    box-shadow: none !important;
    padding: 5px;
    display: inline-block;
}
[data-method].active .inner_text_input_wraper {
    opacity: 1;
    visibility: visible;
}
/* form ends */

/* category starts */
.category-thumbnail {
    margin: auto;
    width: 130px;
    height: 130px;
    overflow: hidden;
}
.category-thumbnail img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* category ends */

/* newsletter starts */
#newsletter-sections {
    padding: 60px 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(/front/img/bg-newsletter.jpg);
    background-color: #fbfbfb;
}
#newsletter-sections h2 {
    font-size: 22px;
}
#newsletter-sections p {
    font-size: 14px;
}
/* newsletter ends */

/* footer starts */
.socialnetwork_item {
    border: 2px solid var(--color1);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    color: var(--color1) !important;
    text-decoration: none !important;
}
.socialnetwork_item i.fa-instagram {
    font-weight: 700;
}
footer .ul li {
    font-size: 14px;
}
/* footer ends */

/* theme starts */
.custom-title {
    color: var(--color1);
    font-size: 1rem;
    font-weight: 700;
    font-style: italic;
    padding: 15px 0;
    border-bottom: 3px solid var(--color1);
}
.ul {
    padding: 0 0 0 15px;
    list-style-type: none;
}
.ul li {
    position: relative;
}
.ul li:before {
    content: "";
    position: absolute;
    left: -15px;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #cfd3ce;
}
.link {
    color: inherit;
}
.link:hover {
    text-decoration: underline;
}
.table.custom-table {
    font-size: 13px;
    border-collapse: separate;
    border-spacing: 5px 15px;
}
.table.custom-table th {
    padding: 15px;
}
.table.custom-table.custom-table-color1 th {
    background-color: var(--color1);
    color: white;
}
.table.custom-table thead th,
.table.custom-table tbody td {
    border-radius: 5px;
    vertical-align: middle;
    border: 0;
    background-color: var(--darkgray);
}
.mask {
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    /* z-index: 1; */
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
.big_radio {
    min-width: 25px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 6px solid #dfdfdf;
    margin-right: 13px;
}
.address-item {
    background-color: var(--lightgray);
    transition: background-color 0.2s;
}
.address-item.active {
    background-color: var(--color1) !important;
    color: white;
}
.address-item.active .text-color1 {
    color: white !important;
}
.address-item .big_radio + .address_details {
    width: calc(100% - 40px);
}
.address-item .address_details:first-child {
    width: calc(100% - 60px);
}
.address-item .address_button {
    width: calc(60px);
}
.address-item.active .big_radio {
    border-color: white;
}
#map {
    display: none;
    height: 350px;
    width: 100%;
}
.map_wraper > input[type="text"] {
    position: absolute;
    left: 5px;
    top: 5px;
    z-index: 1;
    width: 75%;
}
#address_results {
    position: absolute;
    background: #fff;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 250px;
    z-index: 999;
}
#address_results li {
    padding: 8px;
    cursor: pointer;
}
#address_results li:hover {
    background: #eee;
}
.is-invalid #map {
    border: 1px solid #dc3545;
}
.form-group #map {
    border-radius: 8px;
}
/* theme ends */

/* cart starts*/
#minicart {
    position: relative;
    z-index: 1000;
}
#minicart-header {
    border-bottom: 1px solid var(--color1);
}
#minicart_inner {
    background-color: white;
    position: fixed;
    z-index: 1;
    right: 0;
    top: 0;
    height: 100dvh;
    width: 100%;
    padding: 20px;
    transition: transform 0.3s ease-in;
    transform: translateX(100%);
}
#minicart.open #minicart_inner {
    transform: translateX(0%);
}
.minicart-close {
    font-size: 11px;
    cursor: pointer;
}
.minicart-close .fa {
    font-size: 18px;
}
#minicart-content {
    flex-grow: 1;
}
#minicart-footer {
    border-top: 1px solid var(--color1);
}
#minicart-content-inner {
    margin: 0 0 10px;
}
.coupon-wraper input {
    width: auto;
}
/* --- Barra de Progreso Minimalista  --- */
.mc-progress-bar-wrapper {
    height: 6px; /* Barra muy delgada para un look más refinado */
    background-color: #eee; /* Gris muy claro para el fondo de la barra */
    border-radius: 3px;
    overflow: hidden;
    width: 100%; /* Centrar la barra visualmente si el contenedor es estrecho */
    margin-left: auto;
    margin-right: auto;
}

.mc-progress-bar {
    height: 100%;
    /* Utiliza el verde oscuro que se ve en el botón "Continuar compra" */
    background-color: #004d25;
    transition: width 0.4s ease-in-out;
}

.mc-progress-message strong {
    /* Resalta el monto restante con el mismo verde de la marca */
    color: #004d25;
    font-weight: 600;
}

/* Cuando el envío gratis se alcanza, cambia el color del mensaje a verde éxito */
.mc-progress-message.achieved {
    color: #4caf50; /* Un verde de éxito más brillante */
}

.mc-progress-message.achieved strong {
    color: #4caf50;
}
/* barra progreso ends*/

.minicart-empty {
    position: absolute;
    width: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.minicart-product {
    list-style: none;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ededed;
    border-radius: 5px;
}
.minicart-product:last-child {
    margin-bottom: 0;
}
.minicart-product-img {
    position: relative;
    height: 75px;
    width: 75px;
    min-width: 75px;
}
.checkout-product-img {
    position: relative;
    height: 40px;
    width: 40px;
    min-width: 40px;
}
.q_selector_wraper button {
    background-color: transparent;
    border: 0;
    color: #b3b3b3;
    padding: 2px;
    font-size: 15px;
    width: 23px;
    outline: none;
}
.q_selector_wraper span {
    font-size: 13px;
    color: #7b7676;
}
.minicart-product-img img,
.checkout-product-img img {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center;
}
.minicart-product-title {
    font-size: 14px;
    line-height: 1.2;
}
.max-lines-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.minicart-product-delete-btn svg {
    height: 18px;
}
/* cart ends */

/* alert starts */
.alert.alert-flex {
    display: flex;
    align-items: center;
}
.alert-success {
    background-color: #cefbcf;
}
/* alert ends */

/* cards starts */
div.with-card-brand {
    padding-left: 60px;
    position: relative;
}
.with-card-brand:before,
input.with-card-brand {
    -webkit-transition: background-position 0.2s;
    -moz-transition: background-position 0.2s;
    -ms-transition: background-position 0.2s;
    -o-transition: background-position 0.2s;
    transition: background-position 0.2s;
    background-repeat: no-repeat;
    background-image: url(/front/img/cards.png) !important;
}
input.with-card-brand {
    background-size: 33px auto !important;
    padding-left: 60px;
    background-position: left 15px top 10px !important;
}
div.with-card-brand:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 33px;
    height: 24px;
    background-position: left top;
}
div.with-card-brand.visa:before {
    background-position: left top -54px;
}
div.with-card-brand.amex:before {
    background-position: left top -108px;
}
div.with-card-brand.mastercard:before {
    background-position: left top -160px;
}
div.with-card-brand.diners:before {
    background-position: left top -212px;
}
input.with-card-brand.visa {
    background-position: left 15px top -43px !important;
}
input.with-card-brand.amex {
    background-position: left 15px top -97px !important;
}
input.with-card-brand.mastercard {
    background-position: left 15px top -150px !important;
}
input.with-card-brand.diners {
    background-position: left 15px top -194px !important;
}
/* cards ends */

/* breadcrumb starts */
.custom-breadcrumb .breadcrumb {
    background-color: transparent;
    font-size: 11px;
    font-style: italic;
    padding-left: 0;
    padding-right: 0;
}
.custom-breadcrumb .breadcrumb a {
    position: relative;
    color: #5a5858;
    text-decoration: none;
}
.custom-breadcrumb .breadcrumb svg {
    margin: 0 6px;
    width: 8px;
}
.custom-breadcrumb .breadcrumb a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #5a5858;
}
.breadcrumb-item + .breadcrumb-item:before {
    display: none;
}
/* breadcrumb ends */

/* search starts */
.nice-select {
    position: relative;
}
.nice-select select {
    outline: none;
    border-radius: 0;
    background-color: white;
    color: inherit;
    padding: 10px 8px;
    padding-right: 28px;
    -webkit-appearance: none;
    border: 0;
    border-bottom: 1px solid var(--color1);
}
.nice-select .arrow {
    position: absolute;
    color: var(--color1);
    right: 0;
    top: 50%;
    transition: transform 0.2s;
    transform: translateY(-50%);
}
.nice-select select:focus ~ .arrow {
    transform: translateY(-50%) rotate(180deg);
}
.search-banner-area-wraper {
    position: relative;
    height: 0;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}
.search-banner-area {
    position: absolute;
    left: 50%;
    top: 50%;
    height: auto;
    transform: translate(-50%, -50%);
}
.search-banner-area.search-banner-area-lg {
    width: 100%;
}
.search-banner-area.search-banner-area-xs {
    height: 100%;
}
/* search ends */

/* skeleton starts */
#skeleton {
    width: 100%;
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
}
#skeleton .item-skeleton {
    margin-bottom: 12px;
    width: calc(50% - 6px);
    overflow: hidden;
}
#skeleton .thumbnail-skeleton {
    height: 270px;
    background-color: #ddd;
}
/* skeleton ends */

/* checkout starts */
.checkout-wizard-wraper.checkout-wizard-2cols .wizard-item {
    width: calc(50% - 12px / 2);
}
.checkout-wizard-wraper.checkout-wizard-3cols .wizard-item {
    width: calc(33% - 12px / 3);
}
.checkout-wizard-wraper.checkout-wizard-4cols .wizard-item {
    width: calc(25% - 20px / 4);
}
.checkout-wizard-wraper .wizard-item {
    background-color: var(--darkgray);
    padding: 3px 10px;
    border-radius: 8px;
    height: 80px;
    color: inherit;
    text-decoration: none;
}
.checkout-wizard-wraper .wizard-item.active {
    background-color: var(--color1);
    color: white;
}
.checkout-icon-wraper {
    height: 30px;
}
.wizard-title {
    font-size: 12px;
    line-height: 1;
    /* height: 25px; */
}
.wizard-title + div {
    font-size: 11px;
}
.order-summary {
    line-height: 1.2;
    box-shadow: 0 0px 10px 0px rgba(0, 0, 0, 0.2);
    border-bottom: 4px solid var(--color1);
    border-radius: 8px 8px 0 0;
}
.order-summary .dishicon {
    width: 37px;
    height: auto;
}
.order-summary .btn.btn-order-see {
    width: 57px;
    height: 50px;
}
.btn-order-see span {
    font-size: 10px;
}
.btn-order-see .fa-chevron-down {
    font-size: 8px;
    transition: transform 0.2s;
}

.order-summary.active .fa-chevron-down {
    transform: rotate(180deg);
}
.order-summary.active .seemore,
.order-summary.active .fa-eye {
    display: none;
}
.order-summary:not(.active) .seeless,
.order-summary:not(.active) .fa-eye-slash {
    display: none;
}
#order-fullsummary {
    display: none;
}
/* checkout ends */

/* dmtop starts */
.dmtop {
    position: fixed;
    z-index: 1;
    cursor: pointer;
    right: -55px;
    bottom: 15px;
    transition: right 0.5s;
}
.dmtop.active {
    right: 15px;
}
.dmtop > div {
    background-color: var(--color1);
    padding: 15px;
    border-radius: 8px;
    color: white;
    box-shadow: 0 0 15px 3px rgba(0, 0, 0, 0.5);
}
/* dmtop ends */

.red {
    color: red;
}
.text-white {
    color: white;
}
.orange {
    color: var(--orange);
}
.green {
    color: var(--green);
}
.strength-lines {
    position: relative;
    top: 0;
    left: 0;
    height: 2px;
    z-index: 3;
}
.strength-lines .line:first-of-type {
    left: 4px;
    right: 68%;
}
.strength-lines .line:not(:first-of-type):not(:last-of-type) {
    left: 33%;
    right: 33%;
}
.strength-lines .line {
    position: absolute;
    background-color: transparent;
    height: 2px;
    border-radius: 2px;
}
.strength-lines .line:last-of-type {
    left: 68%;
    right: 4px;
}
@media (min-width: 576px) {
    /* header starts */
    .header .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .header-right-area-item:last-child .header-right-area-btn:after {
        display: block;
        left: unset;
        right: 0;
    }
    /* header ends */

    /* buttons starts */

    /* buttons ends */

    /* thumbnail product starts */
    .product-thumbnail {
        padding: 12px;
        border-width: 2px;
    }
    .product-name-box {
        height: 50px;
    }
    .product-name {
        font-size: 16px;
    }
    /* thumbnail product ends */

    /* skeleton starts */
    #skeleton .thumbnail-skeleton {
        height: 370px;
    }
    /* skeleton ends */
}

@media (min-width: 767px) {
    /* helpers starts */
    .border-md-0 {
        border: 0 !important;
    }
    /* helpers ends */

    /* header starts */

    .header-menu-area,
    .header-right-area {
        height: 90px;
    }
    #menu-burger span {
        width: 33px;
        height: 4px;
        margin-bottom: 5px;
    }
    #menu-burger.active span {
        transform: rotate(45deg) translate(2px, -1px);
    }
    #menu-burger.active span:last-child {
        transform: rotate(-45deg) translate(1px, 4px);
    }
    .header-right-area-btn {
        width: 65px;
        padding: 0 5px;
    }
    .header-logo {
        padding: 10px;
        width: auto;
    }
    .header-logo img {
        max-width: 182px;
        max-height: 70px;
    }
    .header-right-area-btn .fa-heart {
        font-size: 28px;
    }
    .header-right-area-btn .fa-user {
        font-size: 30px;
    }
    .svg-icon.header-cart-icon {
        height: 23px;
    }
    .header-cart-quantity {
        top: 0;
    }
    .header-right-area-icon {
        height: 35px;
        align-items: flex-end;
    }
    .header-right-area-item:after {
        height: 7px;
    }
    /* header ends */

    /* form starts */
    .input-group-with-icon {
        padding: 7px 15px;
    }
    .input-group-with-icon .input-group-with-icon-btn {
        font-size: 1rem;
    }
    /* form ends */

    /* cart starts */
    .minicart-close {
        font-size: 13px;
    }
    .minicart-close .fa {
        font-size: 25px;
    }
    #minicart-content {
        margin-top: 20px;
    }
    #minicart_inner {
        width: 600px;
    }
    .minicart-product {
        padding: 15px;
        margin-bottom: 15px;
    }
    .minicart-product-img {
        min-width: 100px;
        width: 100px;
        height: 100px;
    }
    .q_selector_wraper button {
        font-size: 20px;
        padding: 4px;
        width: auto;
    }
    .q_selector_wraper span {
        font-size: 20px;
    }
    .minicart-product-title,
    .minicart-product-subtotal {
        font-size: 16px;
    }
    .minicart-product-delete-btn svg {
        height: 25px;
    }
    .coupon-wraper input {
        width: 100%;
    }
    .coupon-wraper svg {
        width: 50px;
    }
    /* cart ends */
    /* thumbnail product starts */
    .row-collapse-cols > div {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .product-thumbnail {
        margin-bottom: 20px;
    }
    /* thumbnail product ends */

    /* skeleton starts */
    #skeleton .item-skeleton {
        width: calc(33% - 24px / 3);
        overflow: hidden;
    }
    /* skeleton ends */

    /* checkout starts */
    #order-fullsummary {
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
        border-bottom: 4px solid var(--color1);
    }
    .order-summary {
        box-shadow: none;
        border-bottom-width: 0;
    }
    #order-fullsummary .order-fullsummary-cart {
        border-bottom-width: 0px;
    }
    /* checkout ends */

    /* category starts */
    .category-thumbnail {
        width: 356px;
        height: 150px;
    }
    /* category ends */
}

@media (min-width: 992px) {
    /* helpers starts */
    .border-lg-0 {
        border: 0 !important;
    }
    .w-lg-100 {
        width: 100% !important;
    }
    .w-lg-auto {
        width: auto !important;
    }
    /* helpers ends */

    /* header starts */
    .header-right-area-item:after {
        transform: translateY(100%);
    }

    .header-right-area-item.active:after {
        transform: translateY(0);
    }
    .header-right-area-item.header-right-area-color1 .header-right-area-btn {
        color: #bcbcbc;
    }
    .header-right-area-item:hover:not(.active) .header-right-area-btn {
        color: #616161;
    }
    .header-right-area-item:hover:not(.active) .header-cart-quantity {
        background-color: #616161;
    }
    .header-right-area-item.header-right-area-color1:hover
        .header-right-area-btn {
        color: var(--color1);
    }
    .header-right-area-item.header-right-area-color1 .header-cart-quantity {
        background-color: #bcbcbc;
    }
    .header-right-area-item.header-right-area-color1:hover
        .header-cart-quantity {
        background-color: var(--color1);
    }
    /* header ends */

    /* theme starts */
    body {
        font-size: 1rem;
    }
    .text-small {
        font-size: 13px;
    }
    .text-medium {
        font-size: 22px;
    }
    .text-big {
        font-size: 36px;
    }
    /* theme ends */

    /* cards starts */
    input.with-card-brand {
        background-position: left 15px top 15px !important;
    }
    input.with-card-brand.visa {
        background-position: left 15px top -39px !important;
    }
    input.with-card-brand.amex {
        background-position: left 15px top -92px !important;
    }
    input.with-card-brand.mastercard {
        background-position: left 15px top -145px !important;
    }
    input.with-card-brand.diners {
        background-position: left 15px top -194px !important;
    }
    /* cards ends */

    /* filter starts */
    .nice-ul li {
        font-size: 13px;
        position: relative;
        background-color: #f7f7f7;
        border-radius: 8px;
        color: inherit;
        padding: 11px 20px;
        padding-left: 25px;
        margin-bottom: 10px;
        cursor: pointer;
        transition: background-color 0.2s;
    }
    .nice-ul li:hover {
        background-color: #bcbcbc;
    }
    .nice-ul li.active {
        background-color: var(--color1);
        color: white;
    }
    .nice-ul li.active .svg-icon {
        color: white;
    }
    .nice-ul li .svg-icon {
        color: var(--color1);
        position: absolute;
        left: 8px;
        top: 12px;
        width: 12px;
    }
    /* filter ends */

    /* user account starts */
    .profilepic_wraper {
        margin: auto;
        margin-top: -60px;
        width: 120px;
        height: 120px;
    }
    .profilepic {
        margin: 11px;
    }
    .profilepic .fa {
        font-size: 70px;
        top: 20px;
    }
    #myaccount-wraper {
        background-color: transparent;
    }
    .myaccount-tabs {
        border-bottom: 4px solid var(--color1);
        border-radius: 5px 5px 0 0;
    }
    .myaccount-tabs .myaccount-menu a {
        margin: 0 20px 15px;
        width: auto !important;
        font-size: 18px;
    }
    .myaccount-tabs .myaccount-menu .ellipsis {
        width: auto;
    }
    .myaccount-tabs .myaccount-menu a.active {
        border-radius: 8px 0 0 8px;
    }
    .myaccount-tabs .myaccount-menu a.active:before {
        right: 0;
        top: 0;
        height: 100%;
        width: 20px;
        transform: translateX(100%);
    }
    /* user account ends */

    /* tabs starts */
    .custom-tab.nav-tabs .nav-item .nav-link {
        height: 70px;
        font-size: 1rem;
        flex-direction: row;
    }
    /* tabs ends */

    /* form starts */
    .form-control-big {
        height: 55px;
    }
    .input-wraper-big {
        height: 55px;
    }
    /* form ends */

    /* buttons starts */
    .btn-big {
        font-size: 20px;
        min-height: 55px;
        border-width: 2px;
    }
    .btn-big svg {
        height: 25px;
        width: auto;
    }
    .btn-big .pull-right,
    .btn-big .pull-left {
        line-height: 1.2;
        font-size: 12px;
    }
    .btn-medium {
        min-height: 45px;
        font-size: 14px;
        border-radius: 8px;
        min-width: 150px;
    }
    .btn-medium svg {
        height: 20px;
        width: auto;
    }
    .btn.btn-color1-border:hover {
        color: white;
        background-color: var(--color1);
    }
    /* buttons ends */

    /* footer starts */
    #footer-payment-info {
        height: 90px;
    }
    /* footer ends */

    /* flexslider starts */
    .flex-control-nav {
        bottom: 70px;
        text-align: right;
        width: 960px;
        left: 50%;
        transform: translateX(-50%);
    }
    .flex-control-paging li {
        margin: 0 6px;
    }
    .flex-control-paging li a {
        width: 35px;
    }
    /* flexslider ends */

    /* thumbnail product starts */
    .product-thumbnail:hover {
        border-color: var(--color1);
    }
    .product-thumbnail:hover .product-actions {
        display: block;
    }
    .price-box {
        font-size: 24px;
        transition: color 0.2s;
    }
    .product-brand {
        font-size: 16px;
    }
    .product-discount {
        width: 40px;
        height: 40px;
        font-size: 13px;
    }
    .product-thumbnail:hover .price-box {
        color: var(--color1);
    }
    .product-name {
        font-size: 20px;
    }
    .product-whish {
        opacity: 0;
    }
    /* thumbnail product ends */
    /* checkout starts */
    .wizard-title,
    .checkout-icon-wraper {
        height: auto;
    }
    .wizard-title {
        font-size: 15px;
    }
    .wizard-title + div {
        font-size: 13px;
    }
    /* checkout ends */

    .address-item.cursor-pointer:hover {
        background-color: var(--darkgray);
    }
    .coupon-wraper svg {
        width: 70px;
    }
    .coupon-wraper .middle-text-code {
        width: 100%;
    }
}

@media (min-width: 1200px) {
    /* flexslider starts */
    .flex-control-nav {
        width: 1140px;
    }
    /* flexslider ends */
    .icon-medium {
        height: 30px;
    }
    .icon-big {
        height: 50px;
    }
    /* skeleton starts */
    #skeleton .thumbnail-skeleton {
        height: 415px;
    }
    /* skeleton ends */
    /* checkout starts */
    .wizard-title {
        font-size: 18px;
    }
    .wizard-title + div {
        font-size: inherit;
    }
    /* checkout ends */
    .coupon-wraper input,
    .coupon-wraper svg,
    .coupon-wraper .middle-text-code {
        width: auto;
    }
}
