@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes progress-bar-stripes {
    0% {
        background-position: 1rem 0
    }
    to {
        background-position: 0 0
    }
}

@keyframes progress-bar-stripes {
    0% {
        background-position: 1rem 0
    }
    to {
        background-position: 0 0
    }
}

.s-ttl img {
    width: 220px;
    height: 50px;
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}


::-webkit-scrollbar {
    -webkit-appearance: none;
    appearance: none
}

::-webkit-scrollbar:horizontal {
    background: var(--theme-color);
    height: .2rem
}

::-webkit-scrollbar:vertical {
    background: var(--theme-color);
    width: .2rem
}

body::-webkit-scrollbar:horizontal, body::-webkit-scrollbar:vertical {
    width: .6rem;
}

::-webkit-scrollbar-thumb {
    background: var(--theme-text-color);
    border: 0;
    border-radius: 0
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

[data-animate="fadeIn"].show {
    animation: fadeIn 0.5s ease-in-out forwards;
}


.preloader {
    background: rgba(255, 255, 255, 0.5);
    display: none;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 102;
}

.preloader:before {
    content: '';
    display: block;
    padding-top: 100%;
}

.circular {
    -webkit-animation: rotate 2s linear infinite;
    -o-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    height: 10rem;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 10vh;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
    width: 10rem;
}

.path {
    -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    -o-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
}


@keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -3.5rem;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -12.4rem;
    }
}

@keyframes color {
    100%, 0% {
        stroke: var(--theme-color-red);
    }
    40% {
        stroke: var(--theme-color-blue-darker);
    }
    66% {
        stroke: var(--theme-color-green-darker);
    }
    80%, 90% {
        stroke: var(--theme-color-yellow);
    }
}

#google_translate_element {
    margin-left: 20px;
}

#google_translate_element a {
    color: #999;
    line-height: 40px;
    padding-right: 23px;
}

.goog-te-gadget-simple {
    border: 0 !important;
}

ol, ul {
    list-style: none;
}

.ratio-22-9 {
    aspect-ratio: 22 / 9;
}

.af_filter ul {
    padding: 2px 5px;
}

.cart-recommended {
    padding: 30px;
}

.cart-recommended h2 {
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 20px;
}

.cart-recommended a {
    color: var(--theme-text-color);
}

.cart-recommended img {
    width: 100%;
    height: auto;
    padding: 20px;
}

.cart-recommended button {
    margin-top: 14px;
    padding: 3px 10px;
    height: 30px;
    display: block;
}

.cart-recommended .material-icons {
    font-size: 16px;
    margin-top: -5px;
    margin-right: 4px;
}

.has-tooltip {
    position: relative;
    cursor: help;
}

.has-tooltip em {
    background: var(--theme-text-color);
    width: 18px;
    height: 18px;
    text-align: center;
    color: var(--theme-color-white);
    border-radius: 100%;
    font-weight: 800;
    font-size: 12px;
    line-height: 1.5;
    top: -8px;
    padding: 2px 8px;
    font-style: italic;
    font-family: times new roman, sans-serif;
    position: relative;
}

.has-tooltip:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    text-align: left;
    bottom: 100%;
    left: 50%;
    display: block;
    transform: translateX(-50%);
    white-space: normal;
    word-wrap: break-word;
    width: 300px;
    height: auto;
    border-top-color: var(--theme--black-opacity-75);
    color: var(--theme-color-white);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85em;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out;
    z-index: 10;
    opacity: 1;
    background: rgba(0, 0, 0, 0.75);
}

.theme-color {
    color: var(--theme-color);
}

.cf-select {
    padding: 3px 10px 3px 10px;
    border-radius: 3px;
}

#js-product-list .quantity-wrapper.alert-cart-quantity {
    border: 3px solid var(--theme-color-red);
}

.add-to-cart-form-item {
    display: flex;
    align-items: center;
}

.add-to-cart-form-item .quantity-wrapper {
    width: 20%;
    margin-right: 10px;
}

.add-to-cart-form-item button[submit] {
    width: calc(80% - 10px);
}

.add-to-cart-form-item input {
    width: 100%;
    height: 38px;
    padding: 0 10px;
    color: var(--theme-text-color);
    background-color: var(--theme-color-white);
    margin-right: 10px;
    border-radius: 3px;
    text-align: center;
}

.thumbnail-top img {
    width: 100%;
    height: auto;
}

.product-price-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.product-in-cart {
    margin-left: 10px;
}

.planed-delivery {
    background: var(--theme-color-green-darker);
    color: var(--theme-color-white);
    text-transform: uppercase;
    display: inline-block;
    font-size: 13px;
    border-radius: 4px;
    padding: 1px 7px;
}

.product-flags {
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 2;
}

.product-flag, .product-on-order {
    padding: 0 6px;
    margin: 0 5px 5px 0;
    box-shadow: none;
    line-height: 20px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    border-radius: 3px;
}

.prices-logging {
    text-transform: none;
    padding: 5px 10px;
    margin: 10px auto;
    display: block;
    border: 2px solid var(--theme-color-grey-lighter);
    background: var(--theme-color-white);
    color: var(--theme-text-color);
    white-space: normal;
}

.product-on-order {
    display: table-caption;
    line-height: 120%;
    padding: 3px 6px 3px;
    background: var(--theme-color-orange-darker);
    color: var(--theme-color-white);
}

.product-flag.new {
    background: var(--theme-color-blue);
    color: var(--theme-color-white);
}

.product-flag.on-order {
    background: var(--theme-color-orange-darker);
    color: var(--theme-color-white);
}

.product-flag.delivery {
    background: var(--theme-color-green-darker);
    color: var(--theme-color-white);
}

.featured-products {
    width: 100%;
}

.featured-products h2 {
    font-weight: 600;
    margin-bottom: 50px;
    font-size: 25px;
    text-transform: uppercase;
    text-align: center;
}

.thumbnail-container .product-in-cart span {
    display: none
}

.product-prices-additional {
    display: flex;
}

.product-prices-additional .add-to-wishlist {
    margin-top: 26px;
    margin-left: 10px;
}

.cart-message-wrap, .new-customer-wrap {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--theme--black-opacity-30);
    width: 100%;
    height: 100%;
    z-index: 10002;
}


.cart-message, .new-customer {
    display: block;
    background: var(--theme-color-white);
    padding: 20px;
    max-width: 500px;
    margin: -30px auto 0;
    top: 50%;
    transform: translateY(-50%);
    position: relative;
    text-align: right;
}

.new-customer p {
    text-align: left;
}

.cart-message-close, .new-customer-close {
    cursor: pointer;
    display: inline-block;
}

.cart-message span {
    display: block;
    font-weight: bold;
    text-align: left;
}

.cart-message span span {
    font-weight: 400;
}

.cart-message .added-list {
    list-style: decimal;
    font-weight: 400;
    text-align: left;
    overflow-x: auto;
    padding: 5px 0;
    max-height: 80vh;
    padding-inline-start: 20px;
}

.cart-message .added-list small {
    font-size: 15px;
    font-weight: 700;
}

.process-available .available-text {
    overflow: hidden;
    color: var(--theme-text-color);
    text-align: left;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 14px;
}

#product .process-available {
    margin-top: 10px;
}

.process-available .available-text.available-text-none {
    color: var(--theme-color-orange-darker);
}

.process-available .available-total {
    height: 3px;
    border-radius: 3px;
    background-color: var(--theme-color-grey-lighter);
    position: relative;
    display: block;
    margin-top: 5px;
    margin-bottom: 0;
}

.process-available .available-total .process {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    border-radius: 3px;
    display: block;
    background: var(--theme-text-color);
}

.process-available {
    padding-right: 7px;
    max-width: 200px;
}

.thumbnail-top {
    position: relative;
}

.thumbnail-top .discount {
    background: var(--theme-color-red);
    color: var(--theme-color-white);
    position: absolute;
    z-index: 9;
    top: 10px;
    right: 10px;
    font-weight: 700;
    padding: 10px;
    border-radius: 100%;
    height: 50px;
    width: 50px;
    line-height: 181%;
    text-align: center;
}

.thumbnail-container {
    width: 100%;
    position: relative;
}

.thumbnail.product-thumbnail {
    position: relative;
    display: block;
    overflow: hidden;
}

.thumbnail.product-thumbnail .product-image-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.thumbnail.product-thumbnail:hover .product-image-hover {
    opacity: 1;
}

.js-product {
    margin-bottom: 15px;
}

.for-list {
    display: none;
}

.block {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.psgdprgetdatabtn17 {
    float: none;
}

.d-table {
    display: table;
}

.d-table-cell {
    display: table-cell;
    vertical-align: middle;
}

.d-table-header {
    display: table-row;
}

.d-table-row {
    display: table-row;
}

.d-table {
    width: 100%;
}

.d-table .d-table-row .d-table-cell {
    border-bottom: 1px solid var(--theme-color);
}

.d-table-mobile-title {
    display: none;
}

.d-table-cell {
    padding: 10px 5px;
    text-align: center;
}

.d-table-header {
    background: var(--theme-color);
    color: var(--theme-color-white);
    font-weight: 500;
    text-align: center;
}

.d-table-header .d-table-cell:first-of-type {
    text-align: left;
}

.d-table.coworkers .d-table-header .d-table-cell:first-of-type {
    text-align: center;
}

.d-table-row:hover {
    background: var(--theme-color-grey-bg);
}

.d-table-row .d-table-cell:first-of-type {
    text-align: left;
    width: 25%;
}

.d-table.coworkers .d-table-row .d-table-cell:first-of-type {
    text-align: center;
}

.d-table .input-group-btn-vertical {
    position: absolute;
    z-index: 999;
    top: 0;
    right: 20px;
}

.grey {
    background: var(--theme-color-grey-bg);
    padding: 40px;
}

.overdue-wrap {
    background: var(--theme-color);
    padding: 20px;
    text-align: center;
    color: var(--theme-color-white);
    text-transform: uppercase;
}

#header .overdue-wrap a {
    color: var(--theme-color-white);
}

#index .overdue-wrap {
    margin-bottom: 20px;
}

.overdue-wrap .red {
    color: var(--theme-color-red);
}

span.switch.prestashop-switch.fixed-width-lg {
    position: relative;
    display: inline-block;
    width: 120px;
    height: 44px;
    line-height: 44px;
    border-radius: 22px;
    background: #f8f8f8;
    overflow: hidden;
    vertical-align: middle;
    font-size: 0;
}

span.switch.prestashop-switch input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    margin: 0;
    padding: 0;
}

#customer-dropshipping button[type="submit"] {
    display: block;
    font-size: 22px;
    margin: 21px auto;
}

#module-ze_store-dropshipping .form-wrapper .form-group .control-label {
    width: calc(100% - 200px);
}

span.switch.prestashop-switch > label {
    display: inline-block;
    width: 50%;
    height: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #7a7a7a;
    line-height: 44px;
    position: relative;
    z-index: 2;
    user-select: none;
    cursor: pointer;
}

span.switch.prestashop-switch > .slide-button {
    position: absolute;
    top: 2px;
    left: 2px;
    width: calc(50% - 4px);
    height: 40px;
    background: var(--theme-color-white);
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
    transition: left .25s ease;
    z-index: 1;
}

span.switch.prestashop-switch input[type="radio"]:first-of-type:checked + label {
    color: #333;
}

span.switch.prestashop-switch input[type="radio"]:last-of-type:checked + label {
    color: #333;
}

span.switch.prestashop-switch input[type="radio"]:first-of-type:checked ~ .slide-button {
    left: 2px;
}

span.switch.prestashop-switch input[type="radio"]:last-of-type:checked ~ .slide-button {
    left: calc(50% + 2px);
}

span.switch.prestashop-switch.fixed-width-sm {
    width: 90px;
    height: 34px;
    line-height: 34px;
}

span.switch.prestashop-switch.fixed-width-sm > .slide-button {
    height: 30px;
    border-radius: 15px;
}

span.switch.prestashop-switch.fixed-width-lg.on {
    background: var(--theme-color-green-darker);
}

span.switch.prestashop-switch.fixed-width-lg.off {
    background: var(--theme-color-red);
}

span.switch.prestashop-switch.fixed-width-lg.on > label {
    color: var(--theme-color-white);
}

span.switch.prestashop-switch.fixed-width-lg.off > label {
    color: var(--theme-color-white);
}

.dropshipping-form ul {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
}

.dropshipping-form input {
    opacity: 0;
    position: absolute;
}

.dropshipping-form label {
    background: var(--theme-color-white);
    border: 2px solid var(--theme-color-grey-lighter);
    color: var(--theme-text-color);
    font-size: 15px;
    font-weight: 400;
    line-height: 2px;
    margin: 3px 3px 3px 0;
    padding: 13px 8px;
    text-transform: none;
    position: relative;
    display: block;
    border-radius: 6px;
    cursor: pointer;
}

.dropshipping-form label:hover {
    background: var(--theme-color-grey);
    border: 2px solid var(--theme-color-grey);
    color: var(--theme-color-white);
}

.dropshipping-form input:checked + label {
    background: var(--theme-color-blue-darker);
    border: 2px solid var(--theme-color-blue-darker);
    color: var(--theme-color-white);
}

.bootstrap .btn.btn-primary.dropshipping-action-save, .bootstrap .btn.btn-primary.dropshipping-action-cancel {
    float: right;
    margin: 0 20px 1px 0;
}

.all-items {
    background: var(--theme-color-white);
    font-size: 15px;
    font-weight: 400;
    line-height: 2px;
    margin: 3px 3px 3px 0;
    padding: 13px 8px;
    text-transform: none;
    position: relative;
    display: inline-block;
    border-radius: 6px;
    background: var(--theme-color-blue-darker);
    border: 2px solid var(--theme-color-blue-darker);
    color: var(--theme-color-white);
}

#customer-dropshipping .dropshipping-form .btn-primary {
    padding: 5px 10px 5px 10px;
    margin-top: -1px;
    border-radius: 5px;
}

.dropshipping-bg {
    background: #f8f8f8;
    padding: 15px;
    width: 100%;
    position: relative;
}

.copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .4rem .6rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: var(--theme-color-white);
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}

.copy-btn:hover {
    background: #f7f7f7;
}

.copy-toast {
    margin-left: .6rem;
    font-size: .9rem;
    color: var(--theme-color-green-darker);
    position: absolute;
    right: 10px;
    top: 50px;
}

.copy-toast.show {
    display: inline;
}

.dropshipping-bg p {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-all;
}

.language-selector li a {
    display: flex;
    align-items: flex-start;
    line-height: 120%;
}

.language-selector .dropdown-item {
    padding: 5px 10px;
}

.language-selector li a img {
    margin-right: 5px;
    border: 1px solid #f8f8f8;
    padding: 1px;
    width: 23px;
    height: auto;
}

.language-selector-wrapper .expand-more img {
    border: 1px solid #f8f8f8;
    padding: 1px;
    width: 23px;
    height: auto;
}

.product-miniature .bootstrap-touchspin input.form-control, .product-miniature .bootstrap-touchspin input.input-group {
    margin: 0;
}

.product-miniature button[type="submit"] {
    margin: 0 5px;
}

@media (max-width: 991px) {
    .d-table-cell {
        display: -ms-flexbox;
        display: flex;
    }

    .d-table-header {
        display: none;
    }

    .d-table-cell {
        padding: 0;
    }

    .d-table-cell-first {
        display: block;
        padding: 1rem 0;
        font-weight: 600;
    }

    .d-table-mobile-text {
        align-items: center;
        border-bottom: 0;
        display: -ms-flexbox;
        display: flex;
        justify-content: center;
        padding: 5px;
        width: 50%;
    }

    .d-table-mobile-title {
        align-items: center;
        background: var(--theme-color-grey-bg);
        border-bottom: 0;
        display: -ms-flexbox;
        display: flex;
        font-weight: 500;
        padding: 5px;
        text-align: left;
        width: 100%;
    }

    .d-table-header .d-table-cell:first-of-type {
        text-align: center;
    }

    .d-table-row:hover {
        background: var(--theme-color-grey-bg);
    }

    .d-table-row .d-table-cell {
        display: block;
        text-align: center;
        width: 100%;
    }

    .d-table.coworkers .d-table-row .d-table-cell:first-of-type {
        width: 100%
    }

    .d-table-row .d-table-cell .d-table-mobile-text {
        width: 100%;
        font-weight: 500;
        padding: 10px 0;
    }

    .d-table-row .d-table-cell:last-of-type > div {
        border-bottom: 1px solid rgba(0, 0, 0, 0);
    }
}

@media (max-width: 767px) {
    .block-category h1, h1, .h1 {
        font-size: 20px;
        margin-top: 20px;
    }

    .spinner-border {
        margin-right: 0;
    }

    .product-miniature .product-title a {
        font-size: 15px;
        word-break: break-word;
    }

    .products-selection {
        margin-top: 20px
    }

    .product-price-wrap {
        display: block;
    }

    .product-miniature .product-price-and-shipping {
        text-align: left;
    }

    .thumbnail-container .btn-primary {
        padding: 6px 30px;
    }

    .thumbnail-container .btn-primary .material-icons {
        margin-right: 0;
    }

    #subcategories {
        margin-top: 30px;
    }

    #_desktop_top_menu_mobile {
        display: none !important;
    }

    #_mobile_import_selector, .multiply-add-to-cart, #amazzing_filter .compact-toggle {
        height: 44px !important;
    }

    #new-products #_mobile_import_selector,
    #search #_mobile_import_selector,
    #prices-drop #_mobile_import_selector,
    #best-sales #_mobile_import_selector,
    #new-products #amazzing_filter .compact-toggle,
    #search #amazzing_filter .compact-toggle,
    #prices-drop #amazzing_filter .compact-toggle,
    #best-sales #amazzing_filter .compact-toggle {
        width: 50% !important;
        z-index: 9999999 !important;
    }

    #new-products #amazzing_filter .compact-toggle,
    #search #amazzing_filter .compact-toggle,
    #prices-drop #amazzing_filter .compact-toggle,
    #best-sales #amazzing_filter .compact-toggle {
        left: -50% !important;
    }
}