/* default general */

b,
strong {
    font-weight: 600;
}


/* forms */

input[type=datetime],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=url] {
    background: #fff;
    background-clip: padding-box;
    border: 1px solid var(--theme-line-color);
    font-family: var(--theme-primary-font-family);
    font-size: var(--theme-primary-font-size);
    height: 48px;
    line-height: var(--theme-primary-line-height);
    padding: 12px 20px;
    vertical-align: baseline;
    width: 100%;
    box-sizing: border-box;
}

input[type=datetime]:disabled,
input[type=email]:disabled,
input[type=number]:disabled,
input[type=password]:disabled,
input[type=search]:disabled,
input[type=tel]:disabled,
input[type=text]:disabled,
input[type=url]:disabled {
    opacity: 0.5;
}

input[type=datetime]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=text]::-moz-placeholder,
input[type=url]::-moz-placeholder {
    color: #999;
    opacity: 1;
}

input[type=datetime]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder {
    color: #999;
}

input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

input[type=search],
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
    -webkit-appearance: none;
    appearance: none;
}

select {
    background: #fff;
    background-clip: padding-box;
    border: 1px solid #272727;
    font-family: var(--theme-primary-font-family);
    font-size: 16px;
    height: 48px;
    line-height: 44px;
    padding: 0 2.4rem 0 1.2rem;
    vertical-align: baseline;
    width: 100%;
    box-sizing: border-box;
    background-image: url(../images/down.svg);
    background-position: 100%;
    background-size: 23px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-repeat: no-repeat;
}

select:disabled {
    opacity: 0.5;
}

select::-ms-expand {
    display: none;
}

select[multiple=multiple] {
    height: auto;
    background-image: none;
    padding: 0;
}

textarea {
    background: #fff;
    background-clip: padding-box;
    border: 1px solid #b0b7c1;
    border-radius: 4px;
    font-family: var(--theme-primary-font-family);
    height: auto;
    line-height: 2.4rem;
    margin: 0;
    padding: 10px;
    vertical-align: baseline;
    width: 100%;
    box-sizing: border-box;
    resize: vertical;
}

textarea:disabled {
    opacity: .5;
}

textarea::-moz-placeholder {
    color: #999;
}

textarea::-webkit-input-placeholder {
    color: #999;
}

textarea:-ms-input-placeholder {
    color: #999;
}

input[type=checkbox] {
    margin: 2px 5px 0 0;
}

input[type=checkbox]:disabled {
    opacity: .5;
}

input[type=radio] {
    margin: 2px 5px 0 0;
}

input[type=radio]:disabled {
    opacity: .5;
}

input.mage-error,
input.validation-failed,
select.mage-error,
select.validation-failed,
textarea.mage-error,
textarea.validation-failed {
    border-color: #ed8380;
}

div.mage-error[generated] {
    color: #e02b27;
    font-size: 1.3rem;
}

input[type=button],
input[type=reset],
input[type=submit] {
    cursor: pointer;
    -webkit-appearance: button;
    appearance: button;
}

address {
    font-style: normal;
}


/* /forms */


/* top bar */

header.page-header .panel.wrapper {
    background-color: var(--theme-primary-color);
    border-bottom: 4px solid var(--theme-support-color);
    padding: 0;
    margin: 0;
}

header.page-header .panel.header {
    padding: 0 8px;
    margin: 0;
    position: relative;
    margin: 0 auto;
}

header.page-header .panel.header a.logo {
    display: none;
}

header.page-header .header.content a.logo {
    display: inline-block;
}

header.page-header .panel.header .contentmanager-usps {
    list-style-type: none;
    margin: 0;
    padding: 0;
    height: 42px;
    width: calc(100% - 40px);
    overflow: hidden;
    padding: 0;
    box-sizing: border-box;
}

header.page-header .panel.header .contentmanager-usps li {
    float: left;
    margin: 0;
    height: 42px;
    position: relative;
    padding: 0 var(--theme-content-horizontal-padding);
    box-sizing: border-box;
}

header.page-header .panel.header .contentmanager-usps li span {
    color: #fff;
    display: inline-block;
    max-width: 100%;
    line-height: 42px;
    font-size: 11px;
    height: 42px;
    padding-left: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    box-sizing: border-box;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.59625 11.9063L3.46875 8.77875L2.40375 9.83625L6.59625 14.0288L15.5962 5.02875L14.5387 3.97125L6.59625 11.9063Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 18px 18px;
}

@media only screen and (max-width: 768px) {
    header.page-header .panel.header {
        padding: 0;
    }
    header.page-header .panel.header .contentmanager-usps {
        display: block;
        width: 100%;
        position: relative;
        overflow: hidden;
    }
    header.page-header .panel.header .contentmanager-usps li {
        display: block;
        width: 100%;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        text-align: center;
        overflow: hidden;
        animation-duration: 12s;
        animation-iteration-count: infinite;
        padding: 0 12px;
    }
    header.page-header .panel.header .contentmanager-usps li.item-1 {
        animation-name: usps-schedule-1;
    }
    header.page-header .panel.header .contentmanager-usps li.item-2 {
        animation-name: usps-schedule-2;
    }
    header.page-header .panel.header .contentmanager-usps li.item-3 {
        animation-name: usps-schedule-3;
    }
    header.page-header #switcher-language {
        display: none;
    }
    header.page-header .header.content {
        background-color: #fff;
    }
}

@keyframes usps-schedule-1 {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    33.33% {
        transform: translateX(-100%);
        opacity: 0;
    }
    66.66% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes usps-schedule-2 {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    33.33% {
        transform: translateX(0);
        opacity: 1;
    }
    66.66% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes usps-schedule-3 {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    33.33% {
        transform: translateX(100%);
        opacity: 0;
    }
    66.66% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

header.page-header .panel.header .hide-price-trigger {
    display: none;
}

#switcher-language {
    position: absolute;
    top: 0;
    right: var(--theme-content-horizontal-padding);
    height: 42px;
    margin: 0;
    z-index: 9;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.9925 1.5C4.8525 1.5 1.5 4.86 1.5 9C1.5 13.14 4.8525 16.5 8.9925 16.5C13.14 16.5 16.5 13.14 16.5 9C16.5 4.86 13.14 1.5 8.9925 1.5ZM14.19 6H11.9775C11.7375 5.0625 11.3925 4.1625 10.9425 3.33C12.3225 3.8025 13.47 4.7625 14.19 6ZM9 3.03C9.6225 3.93 10.11 4.9275 10.4325 6H7.5675C7.89 4.9275 8.3775 3.93 9 3.03ZM3.195 10.5C3.075 10.02 3 9.5175 3 9C3 8.4825 3.075 7.98 3.195 7.5H5.73C5.67 7.995 5.625 8.49 5.625 9C5.625 9.51 5.67 10.005 5.73 10.5H3.195ZM3.81 12H6.0225C6.2625 12.9375 6.6075 13.8375 7.0575 14.67C5.6775 14.1975 4.53 13.245 3.81 12ZM6.0225 6H3.81C4.53 4.755 5.6775 3.8025 7.0575 3.33C6.6075 4.1625 6.2625 5.0625 6.0225 6ZM9 14.97C8.3775 14.07 7.89 13.0725 7.5675 12H10.4325C10.11 13.0725 9.6225 14.07 9 14.97ZM10.755 10.5H7.245C7.1775 10.005 7.125 9.51 7.125 9C7.125 8.49 7.1775 7.9875 7.245 7.5H10.755C10.8225 7.9875 10.875 8.49 10.875 9C10.875 9.51 10.8225 10.005 10.755 10.5ZM10.9425 14.67C11.3925 13.8375 11.7375 12.9375 11.9775 12H14.19C13.47 13.2375 12.3225 14.1975 10.9425 14.67ZM12.27 10.5C12.33 10.005 12.375 9.51 12.375 9C12.375 8.49 12.33 7.995 12.27 7.5H14.805C14.925 7.98 15 8.4825 15 9C15 9.5175 14.925 10.02 14.805 10.5H12.27Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 20px 20px;
}

#switcher-language::after {
    content: '';
    width: 4px;
    height: 4px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    position: absolute;
    right: 2px;
    top: 17px;
    transform: rotate(45deg);
    display: inline-block;
    pointer-events: none;
}

#switcher-language #switcher-language-trigger {
    cursor: pointer;
}

#switcher-language .switcher-options {
    position: relative;
}

#switcher-language .mage-dropdown-dialog {
    position: absolute;
    right: 0;
    top: 42px;
}

#switcher-language .selected-view {
    height: 42px !important;
    line-height: 42px;
    font-size: 11px;
    display: inline-block;
    color: #fff;
    font-weight: 400;
    padding-left: 24px;
    padding-right: 18px;
}

#switcher-language ul.switcher-dropdown {
    list-style-type: none;
    padding: 0;
    margin: 0;
    background-color: #fff;
    border: none !important;
    outline: none !important;
}

#switcher-language ul.switcher-dropdown li {
    height: 42px;
    line-height: 42px;
    padding: 0;
    margin: 0;
    border-right: 1px solid var(--theme-line-color);
    border-bottom: 1px solid var(--theme-line-color);
    border-left: 1px solid var(--theme-line-color);
}

#switcher-language ul.switcher-dropdown li a {
    height: 42px;
    line-height: 42px;
    color: #333;
    text-decoration: none;
    border: none !important;
    outline: none !important;
    cursor: pointer;
    display: inline-block;
    padding: 0 12px;
    transition: background 0.3s;
}

#switcher-language ul.switcher-dropdown li a:hover {
    text-decoration: none;
    background-color: var(--theme-background-white-hover);
}

#switcher-language ul.switcher-dropdown {
    display: none;
}

#switcher-language ul.switcher-dropdown.ui-dialog-content {
    display: block;
}


/* middle bar */

header.menu-header .menu-title {
    display: none;
}

header.page-header .header.wrapper .header.innerwrapper {
    padding: 16px 0;
    z-index: 9;
}

header.page-header .header.content {
    position: relative;
}

header.page-header .header.content .miniorderbysku-wrapper {
    position: absolute;
    left: 66%;
    top: 20px;
    cursor: pointer;
}

header.page-header .header.content .menubarorderbyskuicon {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 32px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 32px 32px;
    background-image: url("data:image/svg+xml,%3Csvg width='33' height='32' viewBox='0 0 33 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.5617 17.3334C23.5617 17.3334 24.4417 16.7867 24.895 15.96L29.6684 7.30669C30.1617 6.42669 29.5217 5.33335 28.5084 5.33335H8.77505L7.52171 2.66669H3.16171V5.33335H5.82838L10.6284 15.4534L8.82838 18.7067C7.85505 20.4934 9.13505 22.6667 11.1617 22.6667H27.1617V20H11.1617L12.6284 17.3334H22.5617ZM10.0417 8.00002H26.2417L22.5617 14.6667H13.2017L10.0417 8.00002ZM11.1617 24C9.69505 24 8.50838 25.2 8.50838 26.6667C8.50838 28.1334 9.69505 29.3334 11.1617 29.3334C12.6284 29.3334 13.8284 28.1334 13.8284 26.6667C13.8284 25.2 12.6284 24 11.1617 24ZM24.495 24C23.0284 24 21.8417 25.2 21.8417 26.6667C21.8417 28.1334 23.0284 29.3334 24.495 29.3334C25.9617 29.3334 27.1617 28.1334 27.1617 26.6667C27.1617 25.2 25.9617 24 24.495 24Z' fill='%23272727'/%3E%3C/svg%3E");
}

header.page-header .header.content .menubarorderbyskutext {
    white-space: nowrap;
    display: block;
    text-align: center;
    color: #000;
    font-size: 10px;
    line-height: 16px;
    margin-top: 32px;
}

header.page-header .header.content .minicart-wrapper {
    float: right;
    height: 48px;
    margin-top: 20px;
    margin-left: 30px;
}

header.page-header .header.content .minicart-wrapper a.menubarbutton {
    height: 48px;
    position: relative;
}

header.page-header .header.content .menubarcarticon {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 32px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 32px 32px;
    background-image: url("data:image/svg+xml,%3Csvg width='33' height='32' viewBox='0 0 33 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.5617 17.3334C23.5617 17.3334 24.4417 16.7867 24.895 15.96L29.6684 7.30669C30.1617 6.42669 29.5217 5.33335 28.5084 5.33335H8.77505L7.52171 2.66669H3.16171V5.33335H5.82838L10.6284 15.4534L8.82838 18.7067C7.85505 20.4934 9.13505 22.6667 11.1617 22.6667H27.1617V20H11.1617L12.6284 17.3334H22.5617ZM10.0417 8.00002H26.2417L22.5617 14.6667H13.2017L10.0417 8.00002ZM11.1617 24C9.69505 24 8.50838 25.2 8.50838 26.6667C8.50838 28.1334 9.69505 29.3334 11.1617 29.3334C12.6284 29.3334 13.8284 28.1334 13.8284 26.6667C13.8284 25.2 12.6284 24 11.1617 24ZM24.495 24C23.0284 24 21.8417 25.2 21.8417 26.6667C21.8417 28.1334 23.0284 29.3334 24.495 29.3334C25.9617 29.3334 27.1617 28.1334 27.1617 26.6667C27.1617 25.2 25.9617 24 24.495 24Z' fill='%23272727'/%3E%3C/svg%3E");
}

header.page-header .header.content .minicart-wrapper .text {
    height: 16px;
    line-height: 16px;
    text-align: center;
    font-size: 10px;
    margin-top: 32px;
    color: #000;
}

header.page-header .header.content .minicart-wrapper .minicart-counter-icon {
    position: absolute;
    top: 0;
    left: calc(50% + 6px);
}

header.page-header .header.content .header.links ul.top-links {
    display: none;
}

body.sticky-header-active header.page-header .header.wrapper .header.innerwrapper {
    padding: 8px 0;
}


/* /middle bar */


/* desktop menu bar */

@media only screen and (min-width: 769px) {
    #menu-header-bar {
        display: none;
    }
    .sections.nav-sections .navigation.megamenu {
        background-color: var(--theme-color-white);
        padding: 0 8px;
    }
    .sections.nav-sections .navigation.megamenu li.item a span {
        color: var(--theme-color-black);
    }
    li.level1>a>span {
        position: absolute;
        top: 50%;
        left: 10px;
    }
    .sections.nav-sections .navigation.megamenu li.item.level0:hover .level-top span {
        color: var(--theme-primary-color);
    }
    .sections.nav-sections .megamenu-wrapper {
        background-color: var(--theme-color-white);
        z-index: 9;
    }
    .sections.nav-sections .navigation.megamenu .level-top .level-top {
        position: relative;
        padding-right: 20px;
        margin-right: 10px;
    }
    .sections.nav-sections .navigation.megamenu .level-top .level-top span {
        font-size: 13px !important;
    }
    .sections.nav-sections .navigation.megamenu .level-top .level-top.has-children::after {
        content: '';
        width: 5px;
        height: 5px;
        border-right: 2px solid var(--theme-color-black);
        border-bottom: 2px solid var(--theme-color-black);
        position: absolute;
        right: 2px;
        top: 16px;
        transform: rotate(45deg);
        pointer-events: none;
    }
    .sections.nav-sections .navigation.megamenu li.item.level0:hover .level-top.has-children::after {
        border-color: var(--theme-primary-color);
    }
    body.sticky-header-active .sections.nav-sections {
        position: fixed;
        top: 97px;
        right: 0;
        left: 0;
    }
}


/* /desktop menu bar */


/* search */

.block.block-search {
    width: 30%;
    position: absolute;
    top: 22px;
    left: 20%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.block.block-search .block.block-title {
    display: none;
}

.block.block-search .block.block-content {
    margin: 0;
}

.block.block-search label.label {
    display: none;
}

.block.block-search #search_mini_form {
    position: relative;
    height: 44px;
}

.block.block-search #search_mini_form .field.search .control input {
    height: 44px;
    line-height: 44px;
    font-size: 13px;
    color: #a09b98;
    padding: 0 10px 0 44px;
}

.block.block-search #search_mini_form .actions {
    position: absolute;
    top: 0;
    right: auto;
    left: 0;
    width: 44px;
    height: 44px;
    margin-left: 4px;
}

.block.block-search #search_mini_form .actions button {
    width: 44px;
    height: 44px;
    opacity: 1 !important;
    background-color: transparent;
    display: block;
    border: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='25' height='24' viewBox='0 0 25 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.0677 14.255H15.2777L14.9977 13.985C15.9777 12.845 16.5677 11.365 16.5677 9.755C16.5677 6.165 13.6577 3.255 10.0677 3.255C6.47775 3.255 3.56775 6.165 3.56775 9.755C3.56775 13.345 6.47775 16.255 10.0677 16.255C11.6777 16.255 13.1577 15.665 14.2977 14.685L14.5677 14.965V15.755L19.5677 20.745L21.0577 19.255L16.0677 14.255ZM10.0677 14.255C7.57775 14.255 5.56775 12.245 5.56775 9.755C5.56775 7.26501 7.57775 5.255 10.0677 5.255C12.5577 5.255 14.5677 7.26501 14.5677 9.755C14.5677 12.245 12.5577 14.255 10.0677 14.255Z' fill='%23272727'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 24px 24px;
}

.block.block-search #search_mini_form .actions button span {
    display: none;
}


/* /search */


/* account icon */

header.page-header .header.content .account-wrapper {
    float: right;
    height: 48px;
    text-align: center;
    margin-top: 20px;
}

header.page-header .header.content .account-wrapper a.account-link {
    display: inline-block;
    height: 48px;
    text-decoration: none;
    margin: 0;
    padding: 0;
    position: relative;
}

header.page-header .header.content .account-wrapper a.account-link:hover {
    text-decoration: none;
}

header.page-header .header.content .menubaraccounticon {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 32px;
    display: inline-block;
    margin: 0;
    padding: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='33' height='32' viewBox='0 0 33 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.5 8.00001C17.9667 8.00001 19.1667 9.20001 19.1667 10.6667C19.1667 12.1333 17.9667 13.3333 16.5 13.3333C15.0333 13.3333 13.8333 12.1333 13.8333 10.6667C13.8333 9.20001 15.0333 8.00001 16.5 8.00001ZM16.5 21.3333C20.1 21.3333 24.2333 23.0533 24.5 24H8.5C8.80667 23.04 12.9133 21.3333 16.5 21.3333ZM16.5 5.33334C13.5533 5.33334 11.1667 7.72001 11.1667 10.6667C11.1667 13.6133 13.5533 16 16.5 16C19.4467 16 21.8333 13.6133 21.8333 10.6667C21.8333 7.72001 19.4467 5.33334 16.5 5.33334ZM16.5 18.6667C12.94 18.6667 5.83333 20.4533 5.83333 24V26.6667H27.1667V24C27.1667 20.4533 20.06 18.6667 16.5 18.6667Z' fill='%23272727'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 32px 32px;
}

.menubaraccounttext {
    margin: 32px 0 0 0;
    white-space: nowrap;
    display: inline-block;
    padding: 0;
    color: #000;
    font-size: 10px;
    line-height: 16px;
    height: 16px;
    min-width: 32px;
    text-align: center;
}


/* /account icon */


/* footer */

.page-footer {
    margin-top: 168px;
}

.page-footer .footer-title-drop {
	display: none;
}

.page-footer .footer-content-top {
	background-color: #fff;
	color: #000;
	margin-bottom: 20px;
}
.page-footer .footer-content-main {
	background-color: var(--theme-primary-color);
	overflow: hidden;
	padding: 20px 0;
}

.page-footer .footer-content-main-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 0px;
}

.page-footer .footer-info-contact-item.item-0 {
    float: left;
    padding-right: 60px;
}
.page-footer .footer-info-contact-item.item-0 a {
    display: inline-block;
}
.page-footer .footer-info-contact-item.item-0 a img {
    display: inline-block;
    width: 100px;
    height: 75px;
}
.page-footer .footer-info-contact-item.item-1 {
    float: left;
    padding-right: 60px;
}

.page-footer .footer-info-contact-item.item-2 {
    float: left;
}

.page-footer .footer-content-main-item {
        color: #fff;
}
.page-footer .footer-content-main-item h3 {
        margin-top: 0;
}
.page-footer .footer-content-main-item a {
        color: #fff;
}
.page-footer .footer-content-main-item .drop-area ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	width: 100%;
}
.page-footer .footer-content-main-item .drop-area ul li {
	display: block;
	height: 36px;
}


.page-footer .footer-info-contact-header {
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    line-height: 36px;
}

.page-footer .footer-info-contact-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background-color: var(--theme-primary-color);
}

.page-footer .footer-info-contact-phone,
.page-footer .footer-info-contact-mail {
    padding-left: 26px;
    line-height: 36px;
    height: 36px;
    background-size: 20px 20px;
    background-position: 0 8px;
    display: inline-block;
}

.footer-info-address-building,
.footer-info-address-truck,
.footer-info-address-clock {
    background-size: 20px 20px;
    background-position: 0 4px;
    line-height: 28px;
    padding: 0 0 8px 26px;
    display: block;
}


/* Newsletter Form */
.page-footer .block.newsletter {
	margin: 0;
}
.page-footer .block.newsletter #newsletter {
    height: 48px;
    line-height: 48px;
    margin-bottom: 10px;
    background-image: url("data:image/svg+xml,%3Csvg width='19' height='19' viewBox='0 0 19 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.2036 5.25C17.2036 4.425 16.5286 3.75 15.7036 3.75H3.70361C2.87861 3.75 2.20361 4.425 2.20361 5.25V14.25C2.20361 15.075 2.87861 15.75 3.70361 15.75H15.7036C16.5286 15.75 17.2036 15.075 17.2036 14.25V5.25ZM15.7036 5.25L9.70361 8.9925L3.70361 5.25H15.7036ZM15.7036 14.25H3.70361V6.75L9.70361 10.5L15.7036 6.75V14.25Z' fill='%230072bd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: 12px center;
    padding-left: 48px;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.page-footer .block.newsletter #newsletter:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.page-footer .block.newsletter .actions button.action.secondary.subscribe {
    height: 48px;
    line-height: 44px;
    background-color: #fff;
    width: 100%;
    display: block;
    border-radius: 0 !important;
}

.page-footer .block.newsletter .actions button.action.secondary.subscribe:hover {
    background-color: #efefef;
}

.page-footer .block.newsletter .actions button.action.secondary.subscribe,
.page-footer .block.newsletter .actions button.action.secondary.subscribe:active,
.page-footer .block.newsletter .actions button.action.secondary.subscribe:focus {
    border: none !important;
    outline: none;
    box-shadow: none;
}

.page-footer .block.newsletter .actions button.action.secondary.subscribe span {
    color: var(--theme-primary-color);
    font-weight: 400;
    font-size: 13px;
    text-transform: none;
}
/* /Newsletter Form */


.page-footer .footer-bottom {
    background-color: #fff;
    text-align: center;
    color: #000;
    padding: 10px 0;
}

.page-footer .footer-content-bottom {
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
    height: 28px;
}

.page-footer .footer-content-bottom ul {
    display: inline-block;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.page-footer .footer-content-bottom ul li {
    float: left;
    padding-right: 30px;
}

.page-footer .footer-content-bottom ul li a {
    font-size: 10px;
    line-height: 28px;
}

.page-footer small.copyright {
    min-height: 28px;
    line-height: 28px;
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
}

.page-footer small.copyright span {
    line-height: 28px;
    min-height: 28px;
}

@media screen and (max-width: 768px) {
	.page-footer .footer-content-top {
		display: none;
	}
	.page-footer .footer.content {
		box-sizing: border-box;
		margin-left: auto;
		margin-right: auto;
		max-width: var(--theme-content-max-width);
		padding-left: var(--theme-content-horizontal-padding);
		padding-right: var(--theme-content-horizontal-padding);
		width: 100%;
	}
}
@media screen and (max-width: 1024px) {
	.page-footer .footer-content-main {
		padding-top: 0;
	}
	.page-footer .footer-content-main-grid {
        display: block;
	}
	.page-footer .footer-content-main-item-collapsible {
        padding: 16px 0;
		border-bottom: 1px solid #fff;
	}
	.page-footer .footer-content-main-item-collapsible .footer-title-drop {
		position: relative;
		display: block;
		margin: 0;
		cursor: pointer;
		padding-right: 24px;
	}
	.page-footer .footer-content-main-item-collapsible .footer-title-drop::after {
		content: '+';
		position: absolute;
		top: 0;
		right: 0;
		font-size: 22px;
		font-weight: 400;
		color: #fff;
  	}
    .page-footer .footer-content-main-item-collapsible .drop-area {
		display: block !important;
        max-height: 0;
		overflow: hidden;
        transition: max-height 0.3s ease;
	}
    .page-footer .footer-content-main-item-collapsible.active .drop-area {
		display: block !important;
        max-height: 180px;
	}
	.page-footer .footer-content-main-item-collapsible .drop-area h3 {
		display: none;
	}
	.page-footer .footer-content-main-item-collapsible .drop-area .footer-info-address-building,
    .page-footer .footer-content-main-item-collapsible .drop-area .footer-info-gegevens ul {
		margin-top: 16px;
	}
	.page-footer .block.newsletter {
		padding-top: 16px;
	}
	.page-footer .block.newsletter .block-content {
		width: 100%;
		max-width: 480px;
	}
    .page-footer .footer-content-main-item-collapsible.active .footer-title-drop::after {
        content: '-';
    }
}
/* /footer */

.scrolltotop {
    display: none !important;
}

.content-center {
    margin: 0 auto;
    width: 100%;
    max-width: var(--theme-content-max-width);
}

.content-center-inner {
    padding: 0 var(--theme-content-horizontal-padding);
}

.clearfix {
    clear: both;
}

@media only screen and (max-width: 768px) {
    .content-center-inner {
        padding: 0 16px;
    }
}


/* mobile */

@media only screen and (max-width: 768px) {
    #maincontent {
        margin-top: 197px !important;
    }
    header.page-header .header.wrapper .header.innerwrapper {
        padding: 0;
    }
    header.page-header .header.wrapper .header.innerwrapper .header.content {
        padding-top: 16px var(--theme-content-horizontal-padding);
    }
    header.page-header .header.wrapper .block.block-search {
        box-sizing: border-box;
        width: 100%;
        top: 80px;
        left: 0;
        padding: 16px var(--theme-content-horizontal-padding);
        transform: translateX(0);
        background-color: var(--theme-color-white);
    }
    header.page-header .header.wrapper .nav-toggle-wrapper {
        width: 24px;
        height: 19px;
        right: var(--theme-content-horizontal-padding);
        left: auto;
        top: 28px;
    }
    header.page-header .menubaraccounticon {
        width: 32px;
    }
    header.page-header .menubaraccounttext {
        display: none;
    }
    .account-wrapper {
        width: 32px;
        margin-right: 40px;
        margin-top: 12px !important;
    }
    .account-link {
        width: 32px;
    }
    body .sp_popup {
        top: 214px !important;
    }
    .product.data.items>.item.content {
        border: none;
        padding: 16px 0;
    }
    .products.list.items.product-items {
        margin: 0 !important;
    }
}


/* /mobile */


/* mobile menu */

@media only screen and (max-width: 768px) {
    html section.nav-sections {
        display: none;
    }
    html.nav-open section.nav-sections {
        display: block;
    }
    header.menu-header {
        background-color: var(--primary-color);
    }
    header.menu-header .menu-title {
        display: block;
        color: var(--theme-color-white);
        padding: 0 16px;
        margin: 0;
        box-sizing: border-box;
        height: 50px;
        line-height: 50px;
        font-size: 13px;
        font-weight: 400;
    }
    header.menu-header {
        position: relative;
    }
    header.menu-header .nav-toggle-wrapper {
        position: absolute;
        left: auto;
        right: 12px;
        top: 20px;
        bottom: auto;
        width: 32px;
        height: 32px;
    }
    header.menu-header .nav-toggle-wrapper .back.action.nav-toggle {
        width: 32px;
        height: 32px;
        display: inline-block;
        position: relative;
    }
    header.menu-header .nav-toggle-wrapper .back.action.nav-toggle::before {
        content: '';
        position: absolute;
        top: 15px;
        left: 0;
        transform: rotate(45deg);
        width: 32px;
        height: 2px;
        background-color: #fff;
    }
    header.menu-header .nav-toggle-wrapper .back.action.nav-toggle::after {
        content: '';
        position: absolute;
        top: 15px;
        right: 0;
        transform: rotate(-45deg);
        width: 32px;
        height: 2px;
        background-color: #fff;
    }
    header.menu-header .nav-toggle-wrapper .back.action.nav-toggle span,
    header.menu-header .nav-toggle-wrapper .menu-text {
        display: none;
    }
    #menu-header-bar .menu-header-default {
        display: block;
        pointer-events: none;
    }
    #menu-header-bar .menu-header-level {
        display: none;
    }
    #menu-header-bar.level-active .menu-header-default {
        display: none;
    }
    #menu-header-bar.level-active .menu-header-level {
        display: block;
    }
    #menu-header-bar .menu-header-level {
        height: 50px;
        line-height: 50px;
        padding: 0 32px;
        position: relative;
        white-space: nowrap;
        overflow: hidden;
        text-align: center;
        text-overflow: ellipsis;
    }
    #menu-header-bar .menu-header-level::before {
        content: '';
        position: absolute;
        top: 26px;
        left: 16px;
        width: 16px;
        height: 16px;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: rotate(135deg);
    }
    .nav-sections {
        overflow-y: scroll;
    }
    .nav-sections .megamenu-wrapper {
        display: block;
        background-color: #fff;
    }
    .nav-sections .megamenu-wrapper a span {
        text-transform: none;
        color: #000;
    }
    .nav-sections .menu-header-default {
        pointer-events: none;
    }
    .nav-sections .megamenu ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .nav-sections .megamenu ul li {
        position: relative;
        border-bottom: 1px solid var(--theme-line-color);
    }
    .nav-sections .megamenu ul li.parent {
        padding-right: 60px;
    }
    .nav-sections .megamenu ul li.parent::after {
        content: '';
        position: absolute;
        top: 26px;
        right: 18px;
        width: 16px;
        height: 16px;
        border-right: 2px solid #000;
        border-bottom: 2px solid #000;
        transform: rotate(-45deg);
    }
    .nav-sections .megamenu a {
        height: 50px;
        line-height: 50px;
        padding: 0 0 0 16px;
        font-weight: 400;
        box-sizing: border-box;
        display: block;
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .nav-sections .megamenu a.no-link {
        pointer-events: none;
    }
    .nav-sections .megamenu a:hover {
        text-decoration: none;
    }
    .nav-sections .megamenu li.all-category a {
        font-weight: 600;
    }
    .nav-sections .megamenu li.item .submenu {
        position: fixed;
        top: 73px !important;
        left: 0;
        right: 0 !important;
        padding: 0 !important;
        margin: 0;
        background-color: #fff;
        z-index: 101;
        display: inline-block;
        transform: translateX(100%);
        min-height: calc(100vh - 50px);
    }
    .nav-sections .megamenu li.item.level0.slide-open .submenu.level0,
    .nav-sections .megamenu li.item.level1.slide-open .submenu.level1,
    .nav-sections .megamenu li.item.level2.slide-open .submenu.level2 {
        display: inline-block;
        transform: translateX(0);
        transition: transform 0.3s !important;
    }
    footer.mobile-menu-footer {
        display: none;
    }
    .nav-open .nav-sections {
        left: 0;
        z-index: 99;
        background-color: var(--theme-color-white);
    }
}

#mmbg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 9;
    display: none;
}

#mmbg.active {
    display: block;
}


/* desktop menu */

@media only screen and (min-width: 769px) {
    .navigation.megamenu .submenu.level0 {
        width: 300px;
        margin: 0;
        padding: 0;
    }
    .navigation.megamenu .submenu.level0 .item.level1 {
        width: 100%;
        display: inline-block;
        height: 50px;
        border-bottom: none;
        box-sizing: border-box;
        position: relative;
        padding: 0;
    }
    .navigation.megamenu .submenu.level0 .item.level1 a {
        display: block;
        font-size: 13px;
        font-weight: 400;
        height: 50px;
        line-height: 50px;
        position: relative;
        box-sizing: border-box;
    }
    .navigation.megamenu .submenu.level0 .item.level1 a span.ui-menu-icon {
        display: none;
    }
    .navigation.megamenu .submenu.level0 .item.level1 a span {
        display: block;
        transform: translateY(-50%);
    }
    .navigation.megamenu .submenu.level0 .item.level1:hover>a {
        background-color: var(--theme-menu-background-hover);
        border-bottom: none;
    }
    .navigation.megamenu .submenu.level0 .item.level1:hover>a span {
        color: var(--theme-primary-color);
    }
    .navigation.megamenu .submenu.level0 .item.level1 a:after {
        content: '';
        position: absolute;
        top: 20px;
        right: 18px;
        width: 8px;
        height: 8px;
        border-right: 2px solid var(--theme-line-color);
        border-bottom: 2px solid var(--theme-line-color);
        transform: rotate(-45deg);
    }
    .navigation.megamenu .submenu.level0 .item.level1:hover a:after {
        border-color: var(--theme-primary-color);
    }
    .navigation.megamenu .submenu.level1 {
        padding: 16px 0 !important;
        margin: 0;
        width: 300px;
        box-sizing: border-box;
    }
    .navigation.megamenu .submenu.level1 .item.level2 {
        display: block;
    }
    .navigation.megamenu .submenu.level1 .item.level2 a {
        display: block;
        width: 100%;
        line-height: 24px;
        font-size: 13px;
        padding: 6px 16px;
        height: auto;
    }
    .navigation.megamenu .submenu.level1 .item.level2 a span {
        transform: translateY(0);
    }
    .navigation.megamenu .submenu.level1 .item.level2 a:hover {
        background-color: transparent;
        color: var(--theme-primary-color);
        text-decoration: underline;
    }
    .navigation.megamenu .submenu.level1 .item.level2 a:hover span {
        color: var(--theme-primary-color);
    }
    .navigation.megamenu .submenu.level1 .item.level2 a:after {
        display: none;
    }
    .navigation.megamenu .item.level1 .submenu {
        display: none;
        position: absolute;
        left: 300px !important;
        top: 0 !important;
    }
    .navigation.megamenu .item.level1:hover .submenu {
        display: inline-block;
    }
}


/* Breadcrumbs */

.breadcrumbs {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 11px;
    line-height: 24px;
    color: #7F7976;
}

.breadcrumbs ul.items {
    display: block;
}

.breadcrumbs ul.items:after {
    content: '';
    display: block;
    clear: both;
}

.breadcrumbs li.item {
    float: left;
}

.breadcrumbs li.item a {
    padding-right: 32px;
    display: inline-block;
    position: relative;
}

.breadcrumbs li.item a:hover {
    text-decoration: underline;
    color: var(--theme-primary-color);
}

.breadcrumbs li.item a:after {
    content: '';
    position: absolute;
    top: 8px;
    right: 15px;
    width: 5px;
    height: 5px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(-45deg);
}

.breadcrumbs li.item strong {
    font-weight: 400 !important;
}

.breadcrumbs li.item:last-of-type {
    color: var(--theme-primary-color);
    font-weight: 500 !important;
}


/* /Breadcrumbs */


/* PDP */

.catalog-product-view .gallery-nav .slick-slide.slick-current.slick-active,
.catalog-product-view .gallery-image-list.slick-initialized.slick-slider.slick-dotted {
    border: 2px solid var(--theme-primary-color);
}

.catalog-product-view .gallery-nav .slick-slide {
    margin: 2px;
}

.catalog-product-view .gallery-image-list .slick-next::before,
.catalog-product-view .gallery-image-list .slick-prev::before {
    color: var(--theme-primary-color) !important;
}

.catalog-product-view .gallery-image-list .slick-next::before {
    padding-left: 4px;
}

.catalog-product-view .gallery-image-list .slick-prev::before {
    padding-right: 4px;
}

.catalog-product-view .gallery-nav .slick-next::before,
.catalog-product-view .gallery-nav .slick-prev::before {
    color: #fff;
    background-color: var(--theme-primary-color);
    opacity: 1;
}

.catalog-product-view .gallery-nav .slick-disabled::before {
    background-color: #fff !important;
    color: var(--theme-line-color) !important;
    pointer-events: none;
    opacity: 1;
}

.catalog-product-view .product.data.items .data.item.title {
    padding-left: 0 !important;
    padding-right: 12px !important;
}

.catalog-product-view .sectiontitle {
    line-height: 28px;
    margin-top: 0;
    margin-bottom: 10px;
    display: block;
    font-size: 19px;
    font-weight: 600;
    color: var(--theme-primary-color);
}

.catalog-product-view #product-attribute-specs-table tr:nth-child(even) {
    background-color: #f7f6f4;
}

.catalog-product-view #amfinder-product-attribute-specs-table th.label {
    border: none !important;
}

.catalog-product-view #amfinder-product-attribute-specs-table th,
.catalog-product-view #amfinder-product-attribute-specs-table td {
    padding-left: 0 !important;
}

.catalog-product-view #instructies figure {
    margin: 1em 0;
}

.catalog-product-view .product-info-main .page-title {
    margin: 0 0 30px 0;
    line-height: 32px !important;
    font-size: 19px !important;
}

.catalog-product-view .product-info-main .page-title span.base {
    line-height: 35px !important;
    font-weight: normal;
    color: #272727;
    font-size: 25px !important;
    display: block;
    margin-top: 10px;
}

.catalog-product-view .product.attribute.sku {
    margin-bottom: 5px;
}

.catalog-product-view .product-info-price {
    display: block;
    margin-bottom: 40px;
}

.catalog-product-view .product-info-price:after {
    content: "";
    display: table;
    clear: both;
}

.catalog-product-view .price-container.price-recommended_retail_price {
    width: 33%;
    display: inline-block;
    float: left;
}

.catalog-product-view .price-box.price-final_price {
    width: 33%;
    display: inline-block;
    float: left;
    margin: 0;
}

.catalog-product-view .price-box.price-final_price .price-label {
    display: block !important;
}

.catalog-product-view .product-add-form {
    clear: both;
    margin-bottom: 40px;
}

.catalog-product-view .product-info-price span.price-wrapper span.price {
    display: block;
    font-weight: bold;
    font-size: 19px;
    line-height: 32px;
}

.catalog-product-view .product-social-links {
    display: none;
}

.catalog-product-view .qty-control.control {
    border: 1px solid var(--theme-line-color);
}

.button.qty-button,
.button.qty-button:hover {
    background-color: transparent;
    border: none !important;
    color: #000 !important;
    height: 44px;
    line-height: 44px !important;
    position: absolute;
}

.button.btn-up.qty-button {
    right: 0px;
    padding: 0 5px;
}

.button.btn-down.qty-button {
    left: 5px;
    padding: 0 5px;
}

.catalog-product-view .qty-control.control input.qty {
    border: none !important;
    height: 44px;
    line-height: 44px !important;
}

.catalog-product-view #product-addtocart-button {
    height: 44px;
    border-radius: 0 !important;
    text-transform: none;
    line-height: 44px !important;
    font-size: 16px;
    border: none !important;
    padding: 0 !important;
}

.catalog-product-view #block-related-heading {
    font-size: 16px;
    line-height: 28px;
    font-weight: 600;
}

.catalog-product-view .products.products-related,
.catalog-product-view .block.related {
    padding: 0 !important;
    margin: 0 !important;
}

.catalog-product-view .block.related .block-content {
    overflow-x: auto !important;
}

.catalog-product-view .slick-dots li,
.catalog-product-view .slick-dots button,
.catalog-product-view .slick-dots button::before {
    margin: 0 !important;
    padding: 0 !important;
    width: 24px !important;
    height: 24px !important;
    line-height: 24px !important;
}

.catalog-product-view .slick-dots button::before {
    color: var(--theme-primary-color) !important;
}

.morelesscontent {
    max-height: 300px;
    overflow: hidden;
    transition: height 0.3s;
    position: relative;
    margin-bottom: 20px;
}

.morelessoverlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 40px;
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

.morelesscontent.extended {
    max-height: none;
}

.morelesscontent.extended .morelessoverlay {
    display: none;
}

.morelesstools {
    cursor: pointer;
    color: var(--theme-primary-color);
    font-weight: 600;
}

.morelesstools .less {
    display: none;
}

.morelesstools .more {
    display: block;
}

.morelesstools.extended .less {
    display: block;
}

.morelesstools.extended .more {
    display: none;
}

@media only screen and (max-width: 768px) {
    .catalog-product-view .product.data.items>.item.content {
        border: none;
        padding: 16px 0;
    }
    .catalog-product-view .products.list.items.product-items {
        margin: 0 0 0 -1.6rem !important;
    }
}


/* /PDP */


/* Product Tile */

.products-grid .product-item .price-container .price,
.owl-item .price,
.slick-slide .price {
    font-weight: 600 !important;
    font-size: 17px !important;
    line-height: 29px !important;
}

.products-grid .product-item .price-container .price-label,
.owl-item .product-item span.price-label,
.slick-slide .product-item span.price-label {
    margin-top: 0px;
    font-size: 12px;
    line-height: 24px;
    font-weight: 400 !important;
}

.products-grid .product-item .action.tocart.primary,
.owl-item .action.tocart.primary,
.slick-slide .action.tocart.primary {
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    height: 44px !important;
    border: none !important;
    width: 49%;
    float: right;
}

.products-grid .product-item .action.tocart.primary span,
.owl-item .action.tocart.primary span,
.slick-slide .action.tocart.primary span {
    font-size: 13px;
    line-height: 57px !important;
    height: 57px !important;
    display: block !important;
    width: 100% !important;
    text-transform: none !important;
    white-space: nowrap;
    text-align: center;
}

.products-grid .product-item .price-container.price-recommended_retail_price,
.products-grid .product-item .price-box.price-final_price,
.owl-item .price-box.price-final_price {
    width: 100% !important;
    display: block;
}

.products-grid .product-item .price-container.price-recommended_retail_price .price-label,
.owl-item .product-item .price-recommended_retail_price span.price-label,
.slick-slide.product-item .price-recommended_retail_price span.price-label {
    display: block !important;
    width: 100% !important;
}


/* /Product Tile */


/* PCP Mobile */

@media only screen and (max-width: 768px) {
    .catalog-category-view .columns .column.main {
        padding-bottom: 20px;
    }
    .catalog-category-view .filter-content .filter-options-item {
        border: none !important;
        padding-bottom: 0 !important;
    }
    .catalog-category-view .toolbar.toolbar-products {
        width: 100% !important;
        display: block !important;
        margin: 0 !important;
    }
    .catalog-category-view #amasty-shopby-product-list .toolbar-sorter {
        width: 50% !important;
        padding-left: 4px;
        float: left;
        box-sizing: border-box;
    }
    .catalog-category-view #amasty-shopby-product-list .toolbar-sorter #sorter {
        width: 100%;
        margin: 0;
        height: 40px !important;
        line-height: 40px !important;
        box-sizing: border-box;
    }
    .catalog-category-view .filter-content .filter-options-item {
        border: none !important;
        padding-bottom: 0 !important;
    }
    .catalog-category-view #amasty-shopby-product-list .toolbar-sorter .action.sorter-action {
        height: 40px;
    }
    .catalog-category-view #amasty-shopby-product-list .toolbar-sorter .action.sorter-action::before {
        line-height: 40px;
        height: 40px;
    }
    .catalog-category-view #amasty-shopby-product-list .dummy-filter-btn {
        float: left;
        width: calc(50% - 4px);
        height: 40px;
        line-height: 40px;
        padding: 0 16px;
        margin: 0 4px 0 0;
        border: none;
        background-color: var(--theme-primary-color);
        color: #fff;
        cursor: pointer;
        box-sizing: border-box;
        display: block;
        text-decoration: none;
        border-radius: 0;
        text-transform: none;
        font-weight: 400;
        font-size: 13px;
        box-sizing: border-box;
    }
    .catalog-category-view #amasty-shopby-product-list .toolbar.toolbar-products:last-of-type .dummy-filter-btn {
        display: none;
    }
    .catalog-category-view #amasty-shopby-product-list .products.grid.products-grid {
        margin-bottom: 0 !important;
    }
    .catalog-category-view #amasty-shopby-product-list .toolbar.toolbar-products:first-of-type .pages {
        display: none;
    }
}


/* /PCP Mobile */

.ui-helper-hidden-accessible {
    display: none;
}


/* PCP Desktop */

@media only screen and (min-width: 769px) {
    body.page-with-filter #layered-filter-block .filter-options-title-category,
    .filter-current-subtitle {
        margin-bottom: 20px;
        color: #000000;
        font-size: 15px;
        line-height: 29px;
        font-weight: 500;
    }
    body.page-with-filter #layered-filter-block li.item .count {
        font-size: 10px;
        background-color: transparent;
    }
    body.page-with-filter #narrow-by-list li.item .count {
        font-size: 13px;
        background-color: transparent;
        color: #D0CDC9;
    }
    body #activefilterstarget {
        display: none;
    }
    #activefilterssource #am-shopby-container .block-subtitle.filter-current-subtitle {
        padding-left: 0;
    }
    #activefilterssource .amshopby-items.items {
        margin-right: -16px;
    }
    #activefilterssource .amshopby-filter-value {
        padding: 0 40px 0 16px;
        height: 48px;
        line-height: 48px;
        position: relative;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        background-color: var(--theme-menu-background-hover);
        float: none;
    }
    body.page-with-filter .filter-current .items {
        padding: 0px;
    }
    body.page-with-filter .filter-current .items .amshopby-item {
        padding: 0px;
        line-height: 1.5rem;
        padding-bottom: 10px;
        padding-top: 10px;
        clear: both;
    }
    body.page-with-filter .filter-current {
        margin-bottom: 30px;
        border-bottom: 1px solid #D0CDC9;
        height: auto;
        padding-bottom: 30px;
    }
    .catalog-category-view .sidebar.sidebar-main .category-view {
        display: block;
        clear: both;
    }
    .amshopby-filter-name,
    .amshopby-filter-value {
        float: left;
        padding-right: 10px;
        color: #3b3b3b;
    }
    .amshopby-filter-name,
    .amshopby-filter-value {
        float: left;
        padding-right: 10px;
        color: #3b3b3b;
    }
    .amshopby-remove:hover span,
    .amshopby-remove:hover div {
        text-decoration: underline;
    }
    .amshopby-filter-value:after {
        content: 'x';
        padding-left: 10px;
    }
    #activefilterssource {
        padding-bottom: 50px;
        border-bottom: 1px solid #D0CDC9;
    }
    #activefilterssource .amshopby-filter-value:after {
        position: absolute;
        float: none;
        height: 48px;
        line-height: 48px;
        right: 16px;
    }
    #activefilterssource li.amshopby-button-wrap {
        clear: both;
    }
    #activefilterssource .item.amshopby-item {
        float: left;
        height: 48px;
        margin-right: 16px;
        max-width: 100%;
    }
    #activefilterssource .block-actions.filter-actions {
        display: none;
    }
}


/* /PCP Desktop */

#maincontent {
    max-width: 100% !important;
}


/* PCP Filters Mobile */

@media only screen and (max-width: 768px) {
    body.page-with-filter .sidebar.sidebar-main {
        position: fixed;
        top: 100vh;
        right: 0;
        left: 0;
        height: calc(50vh + 50px);
        background-color: #fff;
        transition: all 0.3s;
        z-index: 99;
    }
    body.page-with-filter.filter-active {
        overflow: hidden;
    }
    body.page-with-filter.filter-active .sidebar.sidebar-main {
        top: calc(50vh - 50px);
    }
    body.page-with-filter #layered-filter-block {
        overflow: hidden;
    }
    body.page-with-filter #layered-filter-block .block-content.filter-content {
        height: 50vh;
        overflow-y: auto;
        position: relative;
    }
    body.page-with-filter.filter-active #mmbg {
        display: block !important;
        z-index: 98;
    }
    body.page-with-filter #maincontent {
        position: relative;
    }
    body.page-with-filter .sidebar.sidebar-main .block-title.filter-title {
        display: block;
        width: 100%;
        height: 50px;
        background-color: var(--theme-primary-color);
        border: none !important;
    }
    body.page-with-filter .sidebar.sidebar-main .block-title.filter-title strong {
        display: block !important;
        width: 100% !important;
        height: 72px !important;
        line-height: 72px;
        color: #fff;
        font-size: 13px;
        font-weight: 600;
        border-radius: 0;
        border: none !important;
        background-color: transparent;
        margin: 0 !important;
        padding: 0 32px 0 16px;
        text-transform: none !important;
        text-align: left;
    }
    body.page-with-filter .sidebar.sidebar-main .block-title.filter-title strong::after {
        display: none !important;
    }
    body.page-with-filter #layered-filter-block .block-title.filter-title .close-wrapper {
        width: 32px;
        height: 32px;
        display: inline-block;
        position: absolute;
        top: 19px;
        right: 13px;
        z-index: 999;
    }
    body.page-with-filter #layered-filter-block .block-title.filter-title .close {
        width: 32px;
        height: 32px;
        display: inline-block;
        position: relative;
        cursor: pointer;
    }
    body.page-with-filter #layered-filter-block .block-title.filter-title .close::after {
        content: '';
        position: absolute;
        top: 15px;
        right: 0;
        transform: rotate(-45deg);
        width: 32px;
        height: 2px;
        background-color: #fff;
    }
    body.page-with-filter #layered-filter-block .block-title.filter-title .close::before {
        content: '';
        position: absolute;
        top: 15px;
        left: 0;
        transform: rotate(45deg);
        width: 32px;
        height: 2px;
        background-color: #fff;
    }
    body.page-with-filter #layered-filter-block #keywordtitle span.tooltip {
        display: none;
    }
    body.page-with-filter #layered-filter-block .filter-options-item {
        margin: 0;
    }
    body.page-with-filter #layered-filter-block .filter-options-title-category,
    body.page-with-filter #layered-filter-block .filter-options-title {
        position: relative;
        height: 72px;
        line-height: 72px;
        padding: 0 32px 0 16px;
        margin: 0;
        color: #000;
        font-weight: 400;
        white-space: nowrap;
        overflow: hidden;
        font-size: 13px;
        cursor: pointer;
        border-bottom: 1px solid var(--theme-line-color);
    }
    body.page-with-filter #layered-filter-block .filter-options-title-category::after,
    body.page-with-filter #layered-filter-block .filter-options-title::after {
        content: '';
        position: absolute;
        top: 26px;
        right: 18px;
        width: 16px;
        height: 16px;
        border-right: 2px solid #000;
        border-bottom: 2px solid #000;
        transform: rotate(-45deg);
    }
    body.page-with-filter #layered-filter-block .filter-options-title .tooltip.amshopby-filter-tooltip {
        display: none;
    }
    body.page-with-filter #layered-filter-block .filter-options-content {
        position: absolute;
        top: 0;
        left: 100vw;
        width: 100vw;
        height: 50vh;
        overflow-y: auto;
        background-color: #fff;
        z-index: 999;
        transition: all 0.3s;
    }
    body.page-with-filter #layered-filter-block.filter-active-category .filter-options-content-category {
        left: 0;
    }
    #narrow-by-list .filter-options-item .filter-options-content {
        position: absolute !important;
        top: 0 !important;
        right: 0;
        left: auto;
        display: inline-block !important;
    }
    #narrow-by-list .filter-options-item.active .filter-options-content {
        right: auto !important;
        left: 0 !important;
    }
    body.page-with-filter #layered-filter-block .filter-options-content li.item {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid var(--theme-line-color);
        position: relative;
        height: 72px;
    }
    body.page-with-filter #layered-filter-block .filter-options-content li.item a {
        display: block;
        height: 72px;
        line-height: 72px;
        font-size: 13px;
        padding: 0 32px 0 16px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        margin: 0;
        padding: 0 32px 0 16px;
        text-decoration: none;
    }
    body.page-with-filter #layered-filter-block .filter-options-content li.item a .count {
        font-size: 10px;
        background-color: transparent;
    }
    body.page-with-filter #layered-filter-block .filter-options-content li.item a:hover {
        text-decoration: none;
    }
    body.page-with-filter #layered-filter-block .filter-options-content li.item::after {
        content: '';
        position: absolute;
        top: 26px;
        right: 18px;
        width: 16px;
        height: 16px;
        border-right: 2px solid #000;
        border-bottom: 2px solid #000;
        transform: rotate(-45deg);
        pointer-events: none;
    }
    body.page-with-filter #layered-filter-block .filter-return-title-wrapper {
        position: absolute;
        top: 0;
        left: 100vw;
        width: calc(100vw - 64px);
        height: 72px;
        transition: all 0.3s;
    }
    body.page-with-filter #layered-filter-block.filter-active-category .filter-return-title-wrapper.filter-category-title {
        left: 0;
    }
    body.page-with-filter #layered-filter-block.filter-active-keyword .filter-return-title-wrapper.filter-keyword-title {
        left: 0;
    }
    body.page-with-filter #layered-filter-block .filter-return-title {
        height: 72px;
        line-height: 72px;
        padding: 0 0 0 64px;
        margin: 0;
        font-size: 13px;
        color: #fff;
        position: relative;
        text-align: center;
        cursor: pointer;
        background-color: var(--theme-primary-color);
    }
    body.page-with-filter #layered-filter-block .filter-return-title::before {
        content: '';
        position: absolute;
        top: 26px;
        left: 18px;
        width: 16px;
        height: 16px;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: rotate(135deg);
        pointer-events: none;
    }
    body.page-with-filter #layered-filter-block .filter-options-content li.item input[type=checkbox] {
        visibility: hidden;
    }
    body.page-with-filter #layered-filter-block #activefilterssource {
        height: 0;
        overflow: hidden;
        opacity: 0;
    }
    body.page-with-filter #activefilterstarget {
        display: block;
    }
    body.page-with-filter #activefilterstarget .block-subtitle {
        display: none;
    }
    body.page-with-filter #activefilterstarget .amshopby-filter-name {
        display: none;
    }
    body.page-with-filter #activefilterstarget li.item.amshopby-item {
        display: inline-block;
        height: 48px;
        width: 50%;
        padding: 16px 16px 0 0;
        box-sizing: border-box;
        float: left;
    }
    body.page-with-filter #activefilterstarget li.amshopby-button-wrap {
        clear: both;
    }
    body.page-with-filter #activefilterstarget .amshopby-items.items {
        padding: 0;
        margin-right: -16px;
    }
    body.page-with-filter #activefilterstarget .amshopby-remove,
    body.page-with-filter #activefilterstarget .amshopby-remove:hover {
        text-decoration: none;
        box-sizing: border-box;
    }
    body.page-with-filter #activefilterstarget .amshopby-filter-value {
        color: var(--theme-primary-color);
        background-color: var(--theme-menu-background-hover);
        height: 48px;
        line-height: 48px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        padding: 0 32px 0 16px;
        border: 1px solid var(--theme-primary-color);
        position: relative;
    }
    body.page-with-filter #activefilterstarget .amshopby-filter-value::after {
        content: 'x';
        font-size: 18px;
        line-height: 48px;
        height: 48px;
        position: absolute;
        top: 0;
        right: 16px;
    }
}


/* /PCP Filters Mobile */

.stock {
    font-size: 10px;
}

button.action.tocart.primary img {
    height: 24px;
}

.catalog-category-view .products-grid .product-items .product-item-inner .qty-control {
    width: 49%;
    margin-right: 2%;
}

.miniorderbysku-wrapper .ui-dialog-buttonset {
    height: 30px;
    width: 30px;
    position: absolute;
    margin-top: 10px;
    right: 0px;
    z-index: 10000;
    display: inline-block;
    font-size: 0px;
}


/* Filter current: clear-all placement and separators */

body.page-with-filter .filter-current {
    border-bottom: 1px solid var(--theme-line-color);
    padding-bottom: 12px;
    margin-bottom: 12px;
}

body.page-with-filter .filter-current .filter-clear-all-wrap {
    margin-top: 8px;
    padding-top: 8px;
}

body.page-with-filter .filter-current .filter-clear-all-wrap .filter-clear-all {
    font-size: 12px;
    color: var(--theme-primary-color);
    text-decoration: none;
}


/* AJAX overlay over main content only (not sidebar) */

#gcc-ajax-overlay {
    position: fixed;
    background: rgba(255, 255, 255, 0.6);
    z-index: 999;
}

#gcc-ajax-overlay .loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 36px;
    height: 36px;
    margin: -18px 0 0 -18px;
    border: 3px solid #ddd;
    border-top-color: var(--theme-primary-color);
    border-radius: 50%;
    animation: gccspin 0.8s linear infinite;
}

@keyframes gccspin {
    to {
        transform: rotate(360deg);
    }
}


/* Keep filters clickable above any overlays */

#layered-filter-block {
    position: relative;
    z-index: 10001;
}


/* Safety: never show Amasty overlay over the sidebar filters */

.sidebar .amshopby-overlay-block,
#layered-filter-block .amshopby-overlay-block {
    display: none !important;
}


/* Disable Magento global loader overlay during custom filtered AJAX */

body.gcc-disable-global-loader .loading-mask {
    display: none !important;
    pointer-events: none !important;
}


/* Style filter actions */

#gcc-filter-actions {
    margin-top: 12px;
    display: flex;
    gap: 8px;
}

span.ui-slider-handle.ui-corner-all.ui-state-default:last-of-type {
    margin-top: -17px;
}

#gcc-filter-actions {
    position: fixed;
    bottom: 0;
    max-width: 360px;
    width: 86vw;
    padding: 0;
    left: 0;
    margin: 0;
    z-index: 9999;
}

body.page-with-filter.gcc-filters-ready.page-layout-2columns-left .sidebar.sidebar-main {
    height: calc(100% - 55px);
}

#gcc-filter-actions {
    width: 100%;
    border-radius: 0px;
}

body.gcc-filters-open div#gcc-filter-actions {
    display: block;
}

body div#gcc-filter-actions {
    display: none;
}

button#gcc-apply-filters {
    width: 360px;
    border-radius: 0px;
}

