body {
    background: var(--main-background);
    color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading-title,
.page-header {
    color: var(--title-color);
}
a {
    text-decoration: none;
    color: var(--link-color);
}
a:hover {
    color: var(--link-hover);
}

a, .btn, .form-control, button {
    transition: 0.2s all;
    box-shadow: none;
    text-shadow: none;
    outline: none !important;
}

.btn.btn-primary {
    background-color: var(--btn-primary-background);
    border-color: var(--btn-primary-background);
    color: var(--btn-primary-color);
}
.btn.btn-primary:hover {
    background-color: var(--btn-primary-hover-background);
    border-color: var(--btn-primary-hover-background);
    color: var(--btn-primary-hover-color);
}

.btn.btn-secondary {
    background-color: var(--btn-secondary-background);
    border-color: var(--btn-secondary-background);
    color: var(--btn-secondary-color);
}
.btn.btn-secondary:hover {
    background-color: var(--btn-secondary-hover-background);
    border-color: var(--btn-secondary-hover-background);
    color: var(--btn-secondary-hover-color);
}

.btn.btn-success {
    background-color: var(--btn-success-background);
    border-color: var(--btn-success-background);
    color: var(--btn-success-color);
}
.btn.btn-success:hover {
    background-color: var(--btn-success-hover-background);
    border-color: var(--btn-success-hover-background);
    color: var(--btn-success-hover-color);
}

.btn.btn-default {
    background-color: var(--btn-default-background);
    border-color: var(--btn-default-background);
    color: var(--btn-default-color);
}
.btn.btn-default:hover {
    background-color: var(--btn-default-hover-background);
    border-color: var(--btn-default-hover-background);
    color: var(--btn-default-hover-color);
}

.btn.btn-warning {
    background-color: var(--btn-warning-background);
    border-color: var(--btn-warning-background);
    color: var(--btn-warning-color);
}
.btn.btn-warning:hover {
    background-color: var(--btn-warning-hover-background);
    border-color: var(--btn-warning-hover-background);
    color: var(--btn-warning-hover-color);
}

.btn.btn-danger {
    background-color: var(--btn-danger-background);
    border-color: var(--btn-danger-background);
    color: var(--btn-danger-color);
}
.btn.btn-danger:hover {
    background-color: var(--btn-danger-hover-background);
    border-color: var(--btn-danger-hover-background);
    color: var(--btn-danger-hover-color);
}
.btn.btn-link {
    text-decoration: none;
    color: var(--link-color);
}
.btn.btn-link:hover {
    text-decoration: none;
    color: var(--link-hover);
}

header {
    position: relative;
    display: block;
    /* background-color: var(--third-color);
    color: #ffffff; */
    z-index: 11;

    padding: 15px 0;
}
.header-top {
    position: relative;
    display: block;
    padding: 15px 25px;
    background: var(--primary-color);
    color: #ffffff;

    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.header-bottom {
    position: relative;
    display: block;
}

.header-logo {
    position: relative;
    display: block;
}
.header-logo img {
    width: auto !important;
    height: auto !important;

    max-width: 100%;
    max-height: 50px;
}

.header-icons {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
}
.header-icon {
    position: relative;
    display: block;
    flex: 0 0 auto;
}
.header-icon-link {
    position: relative;
    display: inline-block;
    color: #ffffff;
}
.header-icon-svg {
    position: relative;
    display: block;
    height: 40px;

    transform: scale(1);
    transition: 0.5s transform;
}
.header-icon-link:hover .header-icon-svg {
    transform: scale(1.2);
}
.header-icon-svg svg {
    height: 100%;
}
.header-icon-svg svg path {
    stroke: #ffffff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}
.header-icon-link:hover .header-icon-svg svg path {
    stroke: var(--secondary-color);
}

.header-icon-badge {
    position: absolute;
    top: -10%;
    right: -16%;
    color: var(--primary-color);
    background: var(--secondary-color);
    border-radius: 100%;
    font-size: 12px;
    line-height: 12px;
    padding: 4px;
    width: 21px;
    height: 21px;
    pointer-events: none;
    text-align: center;

    opacity: 1;
    transition: 0.2s opacity;
}
.header-icon-badge[data-total="0"] {
    opacity: 0;
}

.header-icon-dropdown-wrap {
    position: absolute;
    display: block;
    top: 100%;
    right: 0px;
    z-index: 10;

    padding-top: 10px;

    pointer-events: none;
    transform: translateY(-30px);
    opacity: 0;
    transition: 0.5s opacity, 0.5s transform;
}
.header-icon:hover .header-icon-dropdown-wrap {
    pointer-events: all;
    transform: translateY(0px);
    opacity: 1;
}

.header-icon-dropdown {
    position: relative;
    display: block;
    background: var(--main-background);
    color: var(--text-color);
    font-size: 16px;
    line-height: 24px;
    border-radius: 12px;
    padding: 15px 20px;
    -webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.21);   
    -moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.21);
    box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.21);
    min-width: 200px;
}
.header-login-form {
    position: relative;
    display: block;
    min-width: 250px;
}
.header-icon-title {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    color: var(--primary-color);
}
.header-form-input {
    position: relative;
    display: block;
}
.header-form-input + .header-form-input {
    margin-top: 10px;
}

.header-search {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
}
.header-search input.form-control {
    position: relative;
    display: block;
    flex: 1 1 auto;

    border-radius: 8px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;

    border-right: none;

    background: rgb(69, 55, 128, 0);
    border-color: #ffffff;
    color: #ffffff;
    z-index: 1;
}

@keyframes inputPlaceholderShaker {
    0%   { transform: translateX(  0px) translateY(-50%); }
    75%  { transform: translateX(  0px) translateY(-50%); }
    76%  { transform: translateX(  3px) translateY(-50%); }
    79%  { transform: translateX( -4px) translateY(-50%); }
    82%  { transform: translateX(  5px) translateY(-50%); }
    85%  { transform: translateX( -4px) translateY(-50%); }
    88%  { transform: translateX(  4px) translateY(-50%); }
    91%  { transform: translateX( -3px) translateY(-50%); }
    94%  { transform: translateX(  2px) translateY(-50%); }
    97%  { transform: translateX( -1px) translateY(-50%); }
    100% { transform: translateX(  0px) translateY(-50%); }
}


.header-search .input-placeholder {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 300;
    font-size: 18px;
    color: var(--white-color);
    pointer-events: none;
    opacity: 1;
    margin-top: 0px;
    transition: 0.2s opacity, 0.5s margin-top;
    animation-name: inputPlaceholderShaker;
    animation-duration: 3s;
    animation-delay: 2s;
    animation-iteration-count: infinite;

    z-index: 0;
}
.header-search input.form-control.level-1 {
    background: rgb(69, 55, 128, 0.2);
}
.header-search input.form-control.level-2 {
    background: rgb(69, 55, 128, 1);
}
/* .header-search input.form-control:focus {
    background: rgb(69, 55, 128, 0.2);
}
.header-search input.form-control:valid {
    background: rgb(69, 55, 128, 1);
} */

.header-search .form-control::placeholder,
.header-search .form-control:-ms-input-placeholder,
.header-search .form-control::-ms-input-placeholder {
    color: var(--secondary-color) !important;
    color: #ff0000 !important;
    opacity: 1;
}
.header-search .btn.btn-default {
    position: relative;
    display: block;
    flex: 0 0 auto;

    border-radius: 8px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: none;

    padding: 8px 8px;

    background: var(--primary-color);
    border-color: #ffffff;
    color: #ffffff;
}
.header-search .btn.btn-default svg {
    height: 30px;
    transform: scale(1);
    transition: 0.5s transform;
}
.header-search .btn.btn-default svg path {
    stroke: #ffffff;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: 0.2s stroke;
}
.header-search .btn.btn-default:hover svg {
    transform: scale(1.2);
}
.header-search .btn.btn-default:hover svg path {
    stroke: var(--secondary-color);
}


.header-search .search-error {
    position: absolute;
    top: 100%;
    right: 0px;
    display: block;
    background: #ffffff;
    color: #ff0000;
    padding: 8px 25px;
    border-radius: 25px;

    border: 1px solid #ff0000;
    z-index: 2;

    -webkit-box-shadow: 2px 2px 5px 0px rgb(0 0 0 / 25%);
    -moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.25);
    box-shadow: 2px 2px 5px 0px rgb(0 0 0 / 25%);
}

.header-cart {
    position: relative;
    display: block;
    min-width: 300px;
}
.header-cart-empty {
    position: relative;
    font-size: 16px;
    line-height: 32px;
    text-align: center;
}
.header-cart-products {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 15px;
}
.header-cart-product {
    position: relative;
    display: flex;
    flex: 0 0 auto;
    background: #ffffff;
    border-radius: 6px;
    padding: 5px 5px;
    flex-wrap: nowrap;
    gap: 4px;
}
.header-cart-product-image {
    position: relative;
    display: block;
    flex: 0 0 auto;
}
.header-cart-product-image img {
    height: 50px;
}
.header-cart-caption {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    gap: 4px;
    flex-direction: column;
}
.header-cart-caption-top {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    gap: 4px;
    flex-wrap: nowrap;
    justify-content: center;
}
.header-cart-product-title {
    position: relative;
    display: block;
    flex: 1 1 auto;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-weight: 500;

    width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.header-cart-product-remove {
    position: relative;
    display: block;
    flex: 0 0 auto;
    background: none;
    bordeR: none;
    color: #ff0000;
    font-size: 12px;
    line-height: 12px;
}
.header-cart-product-quantity {
    position: relative;
    display: inline-block;
    background: var(--third-color);
    color: var(--white-color);
    padding: 0px 5px;
    border-radius: 2px;
    font-size: 12px;
    vertical-align: 2px;
    line-height: 17px;
}

.header-cart-caption-bottom {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    flex-wrap: nowrap;
    gap: 4px;
}
.header-cart-caption-bottom-left {
    position: relative;
    display: block;
    flex: 1 1 50%;
    text-align: left;
    font-weight: 300;

}
.header-cart-caption-bottom-right {
    position: relative;
    display: block;
    flex: 1 1 50%;
    text-align: right;
    font-weight: 600;
}
.header-cart-products + .header-cart-totals {
    margin-top: 15px;
}
.header-cart-totals {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.header-cart-total {
    position: relative;
    display: flex;
    flex: 0 0 auto;
    flex-wrap: nowrap;
    gap: 4px;
    justify-content: center;
}
.header-cart-total-label {
    position: relative;
    display: block;
    flex: 1 1 auto;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-weight: 300;
    font-size: 16px;
    line-height: 16px;
    text-align: left;
}
.header-cart-total-value {
    position: relative;
    display: block;
    flex: 0 0 auto;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: var(--primary-color)
}
.header-cart-totals + .header-cart-buttons {
    margin-top: 15px;
}
.header-cart-buttons {
    position: relative;
    display: flex;
    gap: 4px;
    flex-wrap: nowrap;
}
.header-cart-button-left {
    position: relative;
    display: block;
    flex: 0 0 auto;
}
.header-cart-button-right {
    position: relative;
    display: block;
    flex: 1 1 auto;
}

.header-cart-btn-cart {
    padding: 4px 16px;
}
.header-cart-btn-cart svg {
    height: 28px;
}
.header-cart-btn-cart svg path {
    stroke: #ffffff;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-menu {
    position: relative;
    display: block;
    border-top: 1px solid var(--secondary-color);
    background: var(--primary-color);
    color: #ffffff;

    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 0 25px;
}
.header-menu .row {
    flex-wrap: nowrap;
}

.header-menu-link {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 18px;
    line-height: 24px;
    padding: 10px 15px;
}
.header-menu-link:hover {
    color: var(--secondary-color);
}
.header-menu-link span {
    display: inline-block;
    vertical-align: middle;
}
.header-menu-link svg {
    display: inline-block;
    height: 40px;
    margin: -5px 0px;
    vertical-align: middle;
}
.header-menu-link svg path {
    stroke: #ffffff;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-menu-item {
    position: relative;
    display: inline-block;
}
.header-menu-yellow-button {
    margin-bottom: -6px;
}
.header-menu-yellow-button .header-menu-link {
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 500;
    padding: 10px 15px;
    text-transform: uppercase;

    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;

    -webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.34);
    -moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.34);
    box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.34);
}

.header-menu-yellow-button .header-menu-link svg path {
    stroke: var(--primary-color);
}
.header-menu-yellow-button .header-menu-link:hover {
    background-color: var(--third-color);
    color: #ffffff;
}
.header-menu-yellow-button .header-menu-link:hover svg path {
    stroke: var(--secondary-color);
}

.header-menu-blue-button {
    margin-left: 5px;
    margin-bottom: -6px;
}
.header-menu-blue-button .header-menu-link {
    background: var(--fourth-color);
    color: var(--third-color);
    font-size: 24px;
    font-weight: 500;
    padding: 10px 15px;
    text-transform: uppercase;

    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;

    -webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.34);
    -moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.34);
    box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.34);
}

.header-menu-blue-button .header-menu-link svg path {
    stroke: var(--third-color);
    transition: 0.2s stroke;
}
.header-menu-blue-button .header-menu-link:hover {
    background-color: var(--third-color);
    color: #ffffff;
}
.header-menu-blue-button .header-menu-link:hover svg path {
    stroke: var(--secondary-color);
}


.header-menu-telephone .header-menu-link {
    font-size: 23px;
    font-weight: 600;
    line-height: 20px;
}
.header-menu-whatsapp .header-menu-link {
    margin-left: -20px;
}
.header-menu-whatsapp .header-menu-link span {
    vertical-align: 0px;
}
.header-menu-whatsapp .header-menu-link svg {
    margin-top: -31px;
    vertical-align: 0px;
    transform: scale(1);
    transition: 0.2s transform;
}
.header-menu-whatsapp .header-menu-link:hover svg {
    transform: scale(1.2);
}

.breadcrumb {
    border: none;
    margin-bottom: 0px;
}

.added-to-cart {
    position: fixed;
    top: 30px;
    right: 30px;

    max-width: 90%;

    width: 300px;
    padding: 15px;

    z-index: 10000;
    background: #ffffff;

    -webkit-box-shadow: 0px 0px 12px -5px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 12px -5px rgba(0,0,0,0.4);
    box-shadow: 0px 0px 12px -5px rgba(0,0,0,0.4);

        font-size: 14px;
}
.added-to-cart .atc-close {
    position: absolute;
    top: -15px;
    left: -15px;
    border: none;
    -webkit-box-shadow: 0px 0px 12px -5px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 12px -5px rgba(0,0,0,0.4);
    box-shadow: 0px 0px 12px -5px rgba(0,0,0,0.4);
    z-index: 10001;
}
.added-to-cart .atc-close:hover {
    background: #333333;
    color: #ffffff;
}

.added-to-cart.has-image img {
    position: absolute;
    lefT: 15px;
    top: 15px;
    border: 1px solid #dddddd;
}
.added-to-cart span {
    display: block;
}
.added-to-cart.has-image span {
    padding-left: 70px;
}


.added-to-cart.is-cart {
    width: 500px;
    max-width: 90%;
    font-size: 20px;
}
.added-to-cart.is-cart a {
    font-weight: 700;
}
.added-to-cart.is-cart .btn {
    position: relative;
    display: inline-block;
    width: 49%;

    vertical-align: middle;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.pagination .page-link {
    color: var(--primary-color);
}

.new-atc-wrap {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    overflow-y: auto;

    background: rgba( 0, 0, 0, 0.7 );
    z-index: 200000;
}
.new-atc {
    position: relative;
    margin: 0 auto;
    margin-top: 20px;

    display: block;
    width: 100%;
    max-width: 768px;

    background: #ffffff;
    border-radius :12px;
    padding: 10px 15px;

    -webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.22);
    -moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.22);
    box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.22);

    transition: 0.9s all;

    z-index: 2;
}

.new-atc img.new-atc-image {
    border-radius: 12px;
    -webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.22);
    -moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.22);
    box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.22);
}

.new-atc .module-product-blocks {
    padding: 0px 0px;

    margin-top: 10px;
}
.new-atc .product-box {
    margin-bottom: 0px;;
}

.new-atc-name {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 30px;
    font-weight: 300;

    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 12px;
    padding: 15px 15px;
    text-align: center;

    margin-bottom: 10px;
}
.new-atc-name b {
    color: var(--secondary-color);
}

.new-atc-quantity,
.new-atc-total {
    position: relative;
    display: block;
    color: #666666;
    font-size: 16px;
    line-height: 16px;
    font-weight: 300;
    margin-top: 5px;
}
.new-atc .btn {
    font-size: 18px;
    padding: 10px 25px;
}
.new-atc .owl-carousel.owl-theme .owl-stage {
    transition-timing-function: linear !important;
}
.new-atc-close {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;

    z-index: 1;
}

.new-atc-total,
.new-atc-quantity {
    font-size: 18px;
    font-weight: 400;
}

.header-menu-dropdown {
    position: absolute;
    top: 100%;
    /* left: 0; */
    left: calc(-.5 * var(--bs-gutter-x));
    border-radius: 12px;
    padding: 5px 5px;
    background: var(--main-background);
    z-index: 2;
    margin-left: -5px;

    -webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.35);
    -moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.35);
    box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.35);

    transform: translateY(-30px);
    opacity: 0;
    transition: 0.5s all;
    pointer-events: none;
}
.header-menu-item:hover .header-menu-dropdown, 
.header-menu-item .header-menu-dropdown.opened {
    transform: translateY(0px);
    opacity: 1;
    pointer-events: all;
}
.header-menu-dropdown-link {
    position: relative;
    display: block;
    border-radius: 8px;
    padding: 4px 4px;
    opacity: 0;
    transform: translateX(30px) scale(0.7);
    transition: 0.2s all;
}
.header-menu-item:hover .header-menu-dropdown-link, 
.header-menu-item .header-menu-dropdown.opened .header-menu-dropdown-link {
    opacity: 1;
    transform: translateX(0px) scale(1);
    /* transition-delay: 0.3s; */
}
/* .header-menu-item:hover .col:nth-child(2) .header-menu-dropdown-link { transition-delay: 0.325s; }
.header-menu-item:hover .col:nth-child(3) .header-menu-dropdown-link { transition-delay: 0.35s; }
.header-menu-item:hover .col:nth-child(4) .header-menu-dropdown-link { transition-delay: 0.375s; }
.header-menu-item:hover .col:nth-child(5) .header-menu-dropdown-link { transition-delay: 0.4s; }
.header-menu-item:hover .col:nth-child(6) .header-menu-dropdown-link { transition-delay: 0.425s; }
.header-menu-item:hover .col:nth-child(7) .header-menu-dropdown-link { transition-delay: 0.45s; }
.header-menu-item:hover .col:nth-child(8) .header-menu-dropdown-link { transition-delay: 0.475s; }
.header-menu-item:hover .col:nth-child(9) .header-menu-dropdown-link { transition-delay: 0.5s; }
.header-menu-item:hover .col:nth-child(10) .header-menu-dropdown-link { transition-delay: 0.525s; }
.header-menu-item:hover .col:nth-child(11) .header-menu-dropdown-link { transition-delay: 0.55s; }
.header-menu-item:hover .col:nth-child(12) .header-menu-dropdown-link { transition-delay: 0.575s; }
.header-menu-item:hover .col:nth-child(13) .header-menu-dropdown-link { transition-delay: 0.6s; }
.header-menu-item:hover .col:nth-child(14) .header-menu-dropdown-link { transition-delay: 0.625s; }
.header-menu-item:hover .col:nth-child(15) .header-menu-dropdown-link { transition-delay: 0.65s; } */

.header-menu-link:hover + .header-menu-dropdown .col:nth-child(2) .header-menu-dropdown-link { transition-delay: 0.325s; }
.header-menu-link:hover + .header-menu-dropdown .col:nth-child(3) .header-menu-dropdown-link { transition-delay: 0.35s; }
.header-menu-link:hover + .header-menu-dropdown .col:nth-child(4) .header-menu-dropdown-link { transition-delay: 0.375s; }
.header-menu-link:hover + .header-menu-dropdown .col:nth-child(5) .header-menu-dropdown-link { transition-delay: 0.4s; }
.header-menu-link:hover + .header-menu-dropdown .col:nth-child(6) .header-menu-dropdown-link { transition-delay: 0.425s; }
.header-menu-link:hover + .header-menu-dropdown .col:nth-child(7) .header-menu-dropdown-link { transition-delay: 0.45s; }
.header-menu-link:hover + .header-menu-dropdown .col:nth-child(8) .header-menu-dropdown-link { transition-delay: 0.475s; }
.header-menu-link:hover + .header-menu-dropdown .col:nth-child(9) .header-menu-dropdown-link { transition-delay: 0.5s; }
.header-menu-link:hover + .header-menu-dropdown .col:nth-child(10) .header-menu-dropdown-link { transition-delay: 0.525s; }
.header-menu-link:hover + .header-menu-dropdown .col:nth-child(11) .header-menu-dropdown-link { transition-delay: 0.55s; }
.header-menu-link:hover + .header-menu-dropdown .col:nth-child(12) .header-menu-dropdown-link { transition-delay: 0.575s; }
.header-menu-link:hover + .header-menu-dropdown .col:nth-child(13) .header-menu-dropdown-link { transition-delay: 0.6s; }
.header-menu-link:hover + .header-menu-dropdown .col:nth-child(14) .header-menu-dropdown-link { transition-delay: 0.625s; }
.header-menu-link:hover + .header-menu-dropdown .col:nth-child(15) .header-menu-dropdown-link { transition-delay: 0.65s; }

.header-menu-dropdown-link img {
    position: relative;
    display: block;
    height: 64px;
    margin: 0 auto;
    width: auto;
    transition: 0.2s all;
}
.header-menu-dropdown-link span {
    position: relative;
    display: block;
    text-align: center;
    font-weight: 600;
}
.header-menu-dropdown-link:hover {
    transition-delay: 0ms !important;
    background-color: var(--third-color);
    border-color: var(--third-color);
    color: var(--white-color);
}
.header-menu-dropdown-link:hover img {
    filter: brightness(0) invert(1);
}
#mobile-menu-container {
    position: fixed;
    top: 0px;
    left: -100vw;
    right: auto;
    bottom: auto;
    width: 100vw;
    height: 100vh;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    z-index: 1000;
    background-color: #ffffff;
}
.mobile-menu-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 90px 20px 10px;
    overflow: auto;
}
.close-button-line {
    position: absolute;
    top: 30px;
    right: 30px;
    border: none;
    appearance: none;
    padding: 0px;
    font-size: 36px;
    line-height: 0.8;
    background-color: transparent;
    color: var(--primary-color);
    -webkit-transition: color 0.4s ease-in-out;
    -moz-transition: color 0.4s ease-in-out;
    -o-transition: color 0.4s ease-in-out;
    transition: color 0.4s ease-in-out;
}
.close-button-line:hover {
    color: var(--secondary-color);
}
.header-top-mobile-menu-btn {
    border: none;
    appearance: none;
    padding: 0px;
    font-size: 36px;
    line-height: 0.8;
    background-color: transparent;
    color: #fff;
    -webkit-transition: color 0.4s ease-in-out;
    -moz-transition: color 0.4s ease-in-out;
    -o-transition: color 0.4s ease-in-out;
    transition: color 0.4s ease-in-out;
}
.header-top-mobile-menu-btn:hover {
    color: var(--secondary-color);
}
.mobile-menu-content .link-row a {
    padding: 10px 20px;
    width: 100%;
    display: block;
    font-size: 24px;
    text-transform: uppercase;
    border: 1px solid transparent;
    background-color: transparent;
    border-radius: 10px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    border-bottom-color: var(--primary-color);
}
.mobile-menu-content .link-row a:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: var(--secondary-color);
}
.mobile-menu-content .link-row a.link-has-children {
    padding-right: 40px;
    position: relative;
}
.mobile-menu-content .link-row a.link-has-children .mobile-link-has-children {
    position: absolute;
    top: 50%;
    right: 0px;
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    width: 50px;
    height: 50px;
    font-size: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
}
.mobile-menu-content .link-row a:hover .mobile-link-has-children {
    border-color: var(--secondary-color);
}

.mobile-menu-content .link-row .mobile-menu-children-container {
    padding-left: 20px;
    height: 100%;
    max-height: 0px;
    overflow: hidden;
    -webkit-transition: max-height 0.6s ease-in-out;
    -moz-transition: max-height 0.6s ease-in-out;
    -o-transition: max-height 0.6s ease-in-out;
    transition: max-height 0.6s ease-in-out;
}
.mobile-menu-content .link-row.opened .mobile-menu-children-container {
    max-height: 3000px;
}
.mobile-menu-content .link-row.opened a.link-has-children {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}
.mobile-menu-content .link-row.opened a.link-has-children .mobile-link-has-children {
    border-color: var(--secondary-color);
}
.mobile-menu-content .link-row.opened a.link-has-children .mobile-link-has-children i {
    rotate: 180deg;
}
.mobile-menu-content .link-row .mobile-menu-children-container a {
    padding: 5px 10px;
    font-size: 18px;
}

.mobile-menu-content .link-row a.sublink-has-children {
    padding-right: 36px;
    position: relative;
}
.mobile-menu-content .link-row a.sublink-has-children .mobile-sublink-has-children {
    position: absolute;
    top: 50%;
    right: 0px;
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    width: 36px;
    height: 36px;
    font-size: 24px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
}
.mobile-menu-content .link-row .mobile-submenu-children-container {
    padding-left: 20px;
    height: 100%;
    max-height: 0px;
    overflow: hidden;
    -webkit-transition: max-height 0.5s ease-in-out;
    -moz-transition: max-height 0.5s ease-in-out;
    -o-transition: max-height 0.5s ease-in-out;
    transition: max-height 0.5s ease-in-out;
}
.mobile-menu-content .link-row.opened .mobile-menu-children-container .link-row a.sublink-has-children:hover .mobile-sublink-has-children {
    border-color: var(--secondary-color);
}
.mobile-menu-content .link-row.opened .mobile-menu-children-container .link-row.opened .mobile-submenu-children-container {
    max-height: 2000px;
}
.mobile-menu-content .link-row.opened .mobile-menu-children-container .link-row.opened a.sublink-has-children {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}
.mobile-menu-content .link-row.opened .mobile-menu-children-container .link-row.opened a.sublink-has-children .mobile-sublink-has-children {
    border-color: var(--secondary-color);
}
.mobile-menu-content .link-row.opened .mobile-menu-children-container .link-row.opened a.sublink-has-children .mobile-sublink-has-children i {
    rotate: 180deg;
}
.header-mobile-submenu {
    display: none;
}
@media ( max-width: 1399px ) {
    .header-menu-link svg {
        height: 30px;
    }
    .header-menu-link {
        font-size: 16px;
        padding: 8px 12px;
    }
    .header-menu-blue-button .header-menu-link, 
    .header-menu-yellow-button .header-menu-link {
        font-size: 20px;
    }
    .header-menu-telephone .header-menu-link {
        font-size: 20px;
    }
}

@media ( max-width: 1199px ) {
    .header-menu-link svg {
        height: 20px;
    }
    .header-menu-link {
        font-size: 16px;
        padding: 6px 9px;
    }
    .header-menu-blue-button .header-menu-link, 
    .header-menu-yellow-button .header-menu-link {
        font-size: 16px;
    }
    .header-menu-telephone .header-menu-link {
        font-size: 16px;
    }
}

@media ( max-width: 991px ) {
    .noScroll {
        overflow: hidden !important;
    }
    #mobile-menu-container.opened {
        left: 0px;
    }
    .header-mobile-submenu {
        display: flex;
        overflow: hidden;
        padding-bottom: 15px;
    }
    
    .product-page-body .header-mobile-submenu {
        display: none !important;
    }
}

@media ( max-width: 767px ) {
    .header-mobile-submenu .header-mobile-submenu-btn a:after {
        width: 170%;
    }
    .header-mobile-submenu .header-mobile-submenu-btn a .mb-sbm-icon-container img {
        max-height: 60px;
    }
    .header-mobile-submenu .header-mobile-submenu-btn a .mb-sbm-title-container {
        font-size: 36px;
    }
    .header-mobile-submenu .header-mobile-submenu-btn a .mb-sbm-text-container {
        font-size: 17px;
    }
    .header-mobile-submenu .header-mobile-submenu-btn a .mb-sbm-text-container img {
        max-height: 18px;
        margin-right: 8px;
    }
    #cart .header-icon-dropdown-wrap {
        right: -10px;
        max-width: 98vw;
    }
    .header-cart-product-title {
        white-space: wrap;
    }
}

@media ( max-width: 479px ) {
    .header-search input.form-control + .input-placeholder {
        max-width: calc(100% - 50px);
        overflow: hidden;
        white-space: nowrap;
    }
    .header-icon-svg {
        height: 24px;
    }
    .header-top-mobile-menu-btn {
        font-size: 26px;
    }
    .close-button-line {
        font-size: 30px;
    }
    .mobile-menu-content .link-row a {
        padding: 6px 12px;
    }
    .mobile-menu-content .link-row a.link-has-children .mobile-link-has-children {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    .header-mobile-submenu .header-mobile-submenu-btn a:after {
        width: 160%;
    }
    .header-mobile-submenu .header-mobile-submenu-btn a .mb-sbm-icon-container img {
        max-height: 50px;
    }
    .header-mobile-submenu .header-mobile-submenu-btn a .mb-sbm-title-container {
        font-size: 30px;
    }
    .header-mobile-submenu .header-mobile-submenu-btn a .mb-sbm-text-container {
        font-size: 16px;
    }
    .header-mobile-submenu .header-mobile-submenu-btn a .mb-sbm-text-container img {
        max-height: 17px;
        margin-right: 6px;
    }
}

@media ( max-width: 374px ) {   
    .header-mobile-submenu .header-mobile-submenu-btn a:after {
        width: 150%;
    }
    .header-mobile-submenu .header-mobile-submenu-btn a .mb-sbm-icon-container img {
        max-height: 40px;
    }
    .header-mobile-submenu .header-mobile-submenu-btn a .mb-sbm-title-container {
        font-size: 26px;
    }
    .header-mobile-submenu .header-mobile-submenu-btn a .mb-sbm-text-container {
        font-size: 14px;
    }
    .header-mobile-submenu .header-mobile-submenu-btn a .mb-sbm-text-container img {
        max-height: 15px;
        margin-right: 5px;
    }
}
@media ( max-width: 359px ) {
    .header-mobile-submenu .header-mobile-submenu-btn a {
        padding: 6px 4px;
    }
    .header-icon-dropdown-wrap {
        right: -26px;
    }
    .header-icon-dropdown-wrap .header-cart {
        min-width: calc(100vw - 46px);
    }
}

/*  */
.header-mobile-menu-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1000000;

    pointer-events: none;
}
.header-mobile-menu-wrap.active {
    pointer-events: all;
}
.header-mobile-menu-backdrop {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba( 0, 0, 0, 0.7);
    z-index: 1;

    opacity: 0;
    transition: 0.3s opacity;
    pointer-events: none;
}
.header-mobile-menu-wrap.active .header-mobile-menu-backdrop {
    opacity: 1;
}
.header-mobile-menu {
    position: absolute;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 2;

    transform: translateX(-100%);
    transition: 0.3s transform;
}
.header-mobile-menu-wrap.active .header-mobile-menu {
    transform: translateX(0%);
}
.header-mobile-menu-header {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 5px;
    padding: 5px 15px;
    border-bottom: 1px solid #dddddd;
    flex: 0 0 auto;
}
.header-mobile-menu-logo {
    position: relative;
    display: block;
    flex: 1 1 auto;
}
.header-mobile-menu-logo img {
    max-width: 100%;
    max-height: 40px;
}
.header-mobile-menu-close {
    position: relative;
    display: block;
    flex: 0 0 auto;
}
.header-mobile-menu-close button {
    background: none;
    border: none;
    font-size: 28px;
}

.header-mobile-menu-content {
    position: relative;
    display: block;
    overflow-y: auto;
    flex: 1 1 auto;
}

.header-mobile-menu-footer {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    padding: 5px 15px;
    border-top: 1px solid #dddddd;
    flex: 0 0 auto;
}
.header-mobile-menu-social {
    position: relative;
    display: block;
    flex: 0 0 auto;
    padding: 10px 0;
}
.header-mobile-menu-social a {
    position: relative;
    display: inline-block;
    margin: 0 15px;
}
.header-mobile-menu-social a i {
    font-size: 28px;
}

.header-mobile-menu-list {
    position: relative;
    display: none;
    padding: 10px 0;
}
.header-mobile-menu-list.active {
    display: block;
}
.header-mobile-menu-item {
    position: relative;
    display: flex;
    padding: 10px 25px;
    flex-wrap: nowrap;
    align-items: center;
}
.header-mobile-menu-item.hidden {
    display: none;
}
.header-mobile-menu-item > .header-mobile-menu-item-link {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 28px;
    flex: 1 1 auto;
    
    color: #000000;
    font-weight: 300;
    cursor: pointer;
}
.header-mobile-menu-item > button.header-mobile-menu-item-link {
    background: none;
    border: none;
    text-align: left;
    padding: 0;
}
.header-mobile-menu-item > .header-mobile-menu-item-next {
    position: relative;
    display: block;
    flex: 0 0 auto;
    background: none;
    border: none;
    color: #000000;
    padding: 0 15px;
    font-size: 28px;
    line-height: 28px;
}
.header-mobile-menu-item > .header-mobile-menu-item-back {
    position: relative;
    display: block;
    flex: 0 0 auto;
    background: none;
    border: none;
    color: #000000;
    padding: 0 15px;
    font-size: 28px;
    line-height: 28px;
}

header.header-campaign .header-logo {
    display: inline-block;
}
header.header-campaign .header-top {
    border-radius: 15px;
}

.btn.btn-default.btn-go-back {
    border: 1px solid #ffffff;
    border-radius: 8px;
}

.header-mobile-menu-item-link svg {
    height: 30px;
    margin-left: -6px;
}
.header-mobile-menu-item-link svg path {
    stroke: var(--primary-color);
    stroke-width: 1.5;
}
.wishlist-badge {
    position: relative;
    display: inline-block;
    border-radius: 100%;
    padding: 2px;
    font-size: 14px;
    line-height: 14px;
    background: #ff0000;
    color: #ffffff;
    font-weight: 500;
    width: 18px;
    text-align: center;
    vertical-align: 1px;
}

.header-top-mobile-menu-btn {
    position: relative;
}
.header-top-mobile-menu-btn-wishlist {
    position: absolute;
    top: -2px;
    right: -7px;
    font-size: 14px;
    color: #ff0000;
}

.btn.btn-default.special-go-back {
    background: none;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 15px;
    border-radius: 10px;
}


.live-search-blur {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    pointer-events: none;
    transition: 0.3s opacity;
    opacity: 0;
    z-index: 1000;
}
.live-search-input + div + div + button {
    transition: 0.2s all;
}
.live-search-input.focused {
    z-index: 1002 !important;
}
.live-search-input.focused + div + div + button {
    z-index: 1002 !important;   
}

.live-search-input.focused + .live-search-blur {
    opacity: 1;
}

.live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    pointer-events: none;
    opacity: 0;
    transition: 0.3s all;
    z-index: 0;
    background: #ffffff;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    margin-top: -8px;
    padding-top: 8px;
    transform: translateY(-15px);
    overflow: hidden;
    box-shadow: 0px 0px 12px -5px rgba(0,0,0,0.2);
}
.live-search-results > * + * {
    border-top: 1px solid #eeeeee;
}

.live-search-input.focused.has-results + div + .live-search-results {
    pointer-events: all;
    opacity: 1;
    transform: translateY(0px);
    z-index: 1001;
}

.live-search-input + div + .live-search-results:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s all;
}
.live-search-input.loading + div + .live-search-results:after {
    opacity: 0.5;
    pointer-events: all;
}

.live-search-item-product {
    position: relative;
    display: flex;
    padding: 4px 16px;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;

    background: #ffffff;
    transition: 0.2s background;
}
.live-search-item-product:hover {
    background: #efefef;
}
.live-search-item-product-image {
    position: relative;
    display: block;
    flex: 0 0 auto;
    border-radius: 4px;
}
.live-search-item-product-caption {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    flex: 1 1 auto;
}
.live-search-item-product-name {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    color: #453780;
    flex: 0 0 auto;
}
.live-search-item-product-model {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: #000000;
    flex: 0 0 auto;
}
.live-search-item-product-price {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 18px;
    flex: 0 0 auto;
    font-size: 500;
    color: #ff0000;
    text-align: right;
}
.live-search-item-product-price-old {
    color: gray;
    font-weight: 400;
    text-decoration: line-through;
    display: block;
    font-size: 14px;
    line-height: 14px;
}

.live-search-item-category {
    position: relative;
    display: flex;
    padding: 4px 16px;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;

    background: #ffffff;
    transition: 0.2s background;
}
.live-search-item-category:hover {
    background: #efefef;
}
.live-search-item-category-name {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    font-size: 18px;
    line-height: 38px;
    font-weight: 500;
    color: #000000;
}
.live-search-item-category-alt {
    position: relative;
    display: flex;
    flex: 0 0 auto;
    font-size: 18px;
    line-height: 38px;
    font-weight: 500;
    color: #7C91CB;
}