.styled-select {
    --styled-select-border-radius: 5px;
    --styled-select-animation-time: .25s;
    --styled-select-gray-color: #ccc;
    --styled-select-gray-light-color: #eaeaea;
    --styled-select-gray-dark-color: #333;
    --styled-select-red-color: #e53935;
    position: relative
}

.styled-select-value-input {
    position: absolute;
    left: -5000px;
    visibility: collapse;
    height: 0;
    width: 0
}

.styled-select .input-emulator {
    display: grid;
    grid-template-columns:1fr 10px;
    grid-column-gap: 10px;
    align-items: center;
    border: 1px solid var(--styled-select-gray-color);
    border-radius: var(--styled-select-border-radius);
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    height: 42px;
    padding: 5px 10px 5px 20px;
    color: var(--styled-select-gray-dark-color);
    cursor: pointer;
    transition: border var(--styled-select-animation-time) ease;
    line-height: 1
}

.styled-select .input-emulator:after {
    content: "";
    width: 10px;
    height: 5px;
    border-top: 5px solid #a5a5a5;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-bottom: none;
    transition: transform .3s;
    grid-column-end: -1;
    justify-self: flex-end
}

.styled-select .input-emulator .clear-btn {
    background: none;
    border: none;
    font-size: 12px;
    cursor: pointer;
    padding: 0;
    display: none;
    width: 25px;
    height: 25px;
    background: var(--styled-select-gray-color);
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    transition: all var(--styled-select-animation-time) ease
}

.styled-select .input-emulator .clear-btn:hover {
    background: var(--styled-select-red-color)
}

.styled-select .input-emulator .clear-btn:hover:before {
    color: #fff
}

.styled-select .input-emulator .selected-items {
    display: none
}

.styled-select .drop-content {
    position: absolute;
    display: none;
    width: 100%;
    background: #fff;
    z-index: 10;
    border: 1px solid var(--styled-select-gray-dark-color);
    border-top: none;
    border-radius: 0 0 4px 4px;
    top: 100%;
    padding-bottom: 15px
}

.styled-select .drop-content .search-input-container {
    position: relative;
    padding: 0 15px
}

.styled-select .drop-content .search-input-container .search-input {
    border-radius: var(--styled-select-border-radius);
    display: flex;
    width: 100%;
    border: 1px solid var(--styled-select-gray-color);
    margin-bottom: 10px;
    padding: 10px 20px 10px 30px;
    outline: none
}

.styled-select .drop-content .search-input-container:after {
    position: absolute;
    color: var(--styled-select-gray-color);
    font-size: 20px;
    left: 20px;
    top: 10px
}

.styled-select .drop-content .select-all-toggle-btn {
    background: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-self: center;
    color: var(--styled-select-gray-dark-color);
    border: none;
    border-bottom: 1px dashed var(--styled-select-gray-dark-color);
    margin-left: 20px;
    margin-bottom: 5px
}

.styled-select .drop-content .select-all-toggle-btn:hover {
    border-bottom-color: transparent
}

.styled-select .drop-content .select-all-toggle-btn.hidden {
    display: none
}

.styled-select .items {
    max-height: 236px;
    overflow-y: auto
}

.styled-select .items::-webkit-scrollbar-track {
    background-color: #fff
}

.styled-select .items::-webkit-scrollbar {
    width: 5px;
    background-color: #fff
}

.styled-select .items::-webkit-scrollbar-thumb {
    background-color: var(--styled-select-gray-color)
}

.styled-select .items .item, .styled-select .items .no-results-message {
    min-height: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 5px 20px;
    line-height: 1
}

.styled-select .items .item {
    transition: background-color .3s;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.styled-select .items .item:hover, .styled-select .items .item.on-focus {
    background-color: var(--styled-select-gray-color)
}

.styled-select .items .item.selected {
    background-color: var(--styled-select-gray-light-color)
}

.styled-select .items .item.disabled {
    cursor: not-allowed;
    color: var(--styled-select-gray-color)
}

.styled-select .items .item.hidden {
    display: none
}

.styled-select .items .no-results-message {
    color: var(--styled-select-gray-dark-color)
}

.styled-select .select-overlay {
    position: fixed;
    z-index: 2;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    visibility: collapse
}

.styled-select.open .input-emulator {
    border-radius: 4px 4px 0 0;
    border-color: var(--styled-select-gray-dark-color);
    border-bottom-color: transparent
}

.styled-select.open .input-emulator:after {
    transform: rotate(180deg)
}

.styled-select.open .drop-content {
    display: block
}

.styled-select.open .select-overlay {
    display: block;
    visibility: visible
}

.styled-select.selected .input-emulator .styled-select-placeholder {
    color: var(--styled-select-gray-light-color);
    display: none
}

.styled-select.selected .input-emulator .selected-items, .styled-select.selected .input-emulator .clear-btn {
    display: flex
}

.styled-select.multiple .input-emulator {
    min-height: 45px;
    height: -moz-max-content;
    height: max-content;
    max-height: 110px;
    overflow-y: auto
}

.styled-select.multiple .input-emulator::-webkit-scrollbar-track {
    background-color: #fff
}

.styled-select.multiple .input-emulator::-webkit-scrollbar {
    width: 5px;
    background-color: #fff
}

.styled-select.multiple .input-emulator::-webkit-scrollbar-thumb {
    background-color: var(--styled-select-gray-color)
}

.styled-select.multiple .input-emulator:after, .styled-select.multiple .input-emulator .clear-btn {
    position: absolute
}

.styled-select.multiple .input-emulator .clear-btn {
    right: 34px
}

.styled-select.multiple .input-emulator .selected-items {
    flex-wrap: wrap;
    grid-gap: 5px
}

.styled-select.multiple .input-emulator .selected-items .selected-item {
    display: grid;
    align-items: center;
    grid-gap: 5px;
    padding: 5px 10px;
    height: 30px;
    border: 1px solid var(--styled-select-gray-color);
    cursor: pointer;
    border-radius: var(--styled-select-border-radius);
    grid-template-columns:max-content 10px;
    position: relative
}

.styled-select.multiple .input-emulator .selected-items .selected-item:after, .styled-select.multiple .input-emulator .selected-items .selected-item:before {
    display: block;
    content: "";
    position: absolute;
    grid-column: 2/3;
    width: 1px;
    justify-self: center;
    height: 10px;
    background-color: var(--styled-select-gray-dark-color);
    transition: background-color var(--styled-select-animation-time) ease
}

.styled-select.multiple .input-emulator .selected-items .selected-item:before {
    transform: rotate(-45deg)
}

.styled-select.multiple .input-emulator .selected-items .selected-item:after {
    transform: rotate(45deg)
}

.styled-select.with-clear-btn .input-emulator {
    grid-template-columns:1fr 25px 10px
}

.styled-select.on-backend-app .drop-content .search-input-container .search-icon-svg {
    position: absolute;
    color: var(--styled-select-gray-light-color);
    font-size: 20px;
    left: 22px;
    top: 15px
}

.product-card {
    background: #fff;
    position: relative;
    box-shadow: 0 0 2px var(--border-color-dark)
}

.product-card img {
    display: block;
    max-width: 100%;
    height: auto;
    -o-object-fit: scale-down;
    object-fit: scale-down;
    -o-object-position: center;
    object-position: center
}

.product-card .budges, .product-card .user-actions-container {
    position: absolute;
    width: -moz-max-content;
    width: max-content;
    top: 10px;
    z-index: 2;
    display: grid
}

.product-card .discount {
    background: var(--red-color);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 10px
}

.product-card .budges {
    left: 10px;
    grid-row-gap: 8px
}

.product-card .budges > * {
    width: -moz-max-content;
    width: max-content
}

.product-card .user-actions-container {
    grid-row-gap: 5px;
    right: 10px
}

.product-card .user-actions-container button {
    width: 30px;
    height: 30px;
    border: 1px solid var(--border-color-dark);
    background: #ffffffbf
}

.product-card .user-actions-container button.active {
    background: var(--primary-color);
    border-color: var(--primary-color)
}

.product-card .availability-status {
    font-size: 13px;
    font-weight: 400
}

.product-card .availability-status.available {
    color: #4caf50
}

.product-card .availability-status.not-available:not(.to-order-available) {
    color: var(--red-color-light)
}

.product-card .availability-status.not-available.to-order-available {
    color: var(--text-color-light)
}

.product-card .title {
    display: block;
    max-width: 100%;
    line-height: 1.3;
    color: var(--text-color-dark);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.product-card .price {
    line-height: 1
}

.product-card .price .block-title {
    color: var(--text-color-dark);
    margin-bottom: 10px
}

.product-card .price .currency {
    font-size: .8em;
    margin-left: -.14em
}

.product-card .price.with-discount {
    display: grid;
    gap: 5px;
    width: -moz-max-content;
    width: max-content
}

.product-card .price.with-discount .actual {
    color: var(--red-color)
}

.product-card .price.with-discount .old {
    text-decoration: line-through;
    font-size: 14px
}

.product-card .add-to-cart-btn, .product-card .order-btn {
    width: 100%;
    max-width: 340px;
    font-size: 14px
}

.product-card.view-type-plate {
    position: relative;
    display: grid;
    grid-template-rows:max-content max-content 1fr max-content max-content;
    grid-row-gap: 12px
}

.product-card.view-type-plate .variants-select-container {
    gap: 15px
}

.product-card.view-type-plate .variants-select-container > div:first-child .variants {
    justify-content: flex-start
}

.product-card.view-type-plate .add-to-cart-btn {
    justify-self: center
}

.product-card.not-available:not(.to-order-available) img {
    filter: grayscale(1);
    opacity: .8
}

.product-card.not-available:not(.to-order-available) .title, .product-card.not-available:not(.to-order-available) .price {
    opacity: .7
}

.pagination {
    margin-top: 30px;
    justify-content: center;
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(35px, 35px));
    gap: 8px
}

.pagination-item {
    border-radius: var(--site-default-border-radius);
    padding: 5px;
    width: 35px;
    height: 35px;
    background: var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transition: all var(--animation-time) ease
}

.pagination-item.active {
    background: var(--border-color-dark);
    color: var(--text-color-dark)
}

.pagination-item.disabled {
    opacity: .7;
    cursor: not-allowed
}

.noUi-target, .noUi-target * {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-user-select: none;
    touch-action: none;
    -moz-user-select: none;
    user-select: none;
    box-sizing: border-box
}

.noUi-target {
    position: relative
}

.noUi-base, .noUi-connects {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1
}

.noUi-connects {
    overflow: hidden;
    z-index: 0
}

.noUi-connect, .noUi-origin {
    will-change: transform;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    -webkit-transform-origin: 0 0;
    -webkit-transform-style: preserve-3d;
    transform-origin: 0 0;
    transform-style: flat
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
    left: 0;
    right: auto
}

.noUi-vertical .noUi-origin {
    top: -100%;
    width: 0
}

.noUi-horizontal .noUi-origin {
    height: 0
}

.noUi-horizontal {
    padding: 0 15px
}

.noUi-handle {
    backface-visibility: hidden;
    position: absolute
}

.noUi-touch-area {
    height: 100%;
    width: 100%
}

.noUi-state-tap .noUi-connect, .noUi-state-tap .noUi-origin {
    transition: transform .3s
}

.noUi-state-drag * {
    cursor: inherit !important
}

.noUi-horizontal .noUi-base {
    display: flex;
    align-items: center
}

.noUi-horizontal .noUi-base:before, .noUi-horizontal .noUi-base:after {
    background: var(--border-color);
    opacity: .5;
    position: absolute;
    width: 15px;
    height: 11px;
    content: "";
    display: block
}

.noUi-horizontal .noUi-base:before {
    left: -15px;
    border-radius: 4px 0 0 4px
}

.noUi-horizontal .noUi-base:after {
    right: -15px;
    border-radius: 0 4px 4px 0
}

.noUi-horizontal .noUi-connects {
    background: var(--border-color);
    opacity: .5
}

.noUi-horizontal .noUi-handle {
    width: 30px;
    height: 22px;
    right: -15px
}

.noUi-target {
    height: 22px
}

.noUi-connects {
    height: 11px
}

.noUi-connect {
    background: var(--secondary-color-dark)
}

.noUi-draggable {
    cursor: ew-resize
}

.noUi-vertical .noUi-draggable {
    cursor: ns-resize
}

.noUi-handle {
    border-radius: var(--site-default-border-radius);
    background: var(--border-color-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column-gap: 3px
}

.noUi-handle:before, .noUi-handle:after {
    content: "";
    display: block;
    position: absolute;
    height: 50%;
    width: 1px;
    background: #ffffff80
}

.noUi-handle:before {
    left: 40%
}

.noUi-handle:after {
    right: 40%
}

[disabled] .noUi-connect {
    background: #b8b8b8
}

[disabled].noUi-target, [disabled].noUi-handle, [disabled] .noUi-handle {
    cursor: not-allowed
}

.catalog-container {
    display: grid;
    grid-gap: 15px;
    align-items: flex-start
}

.catalog-container #catalog-form {
    display: grid;
    grid-template-columns:1fr;
    grid-row-gap: 10px
}

.catalog-container #catalog-form .filters-container .catalog-filter-block {
    margin-bottom: 8px;
    box-shadow: 0 0 2px #e1e8eb
}

.catalog-container #catalog-form .filters-container .catalog-filter-block:last-child {
    margin-bottom: 0
}

.catalog-container #catalog-form .selected-filters, .catalog-container #catalog-form .catalog-filter-block {
    background: #fff;
    border-radius: var(--site-default-border-radius)
}

.catalog-container #catalog-form .selected-filters {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 4px
}

.catalog-container #catalog-form .selected-filters .btn {
    height: 32px;
    font-weight: 500;
    color: var(--text-color)
}

.catalog-container #catalog-form .selected-filters .reset-all-filters-btn {
    grid-column: 1/-1;
    width: 100%;
    min-width: 100%;
    flex: 1
}

.catalog-container #catalog-form .selected-filters .reset-filter-btn {
    font-size: 14px;
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
    white-space: nowrap;
    width: -moz-max-content;
    width: max-content
}

.catalog-container #catalog-form .selected-filters .reset-filter-btn:before {
    font-size: 10px;
    color: var(--secondary-color-dark)
}

.catalog-container #catalog-form .catalog-filter-block {
    padding: 10px
}

.catalog-container #catalog-form .catalog-filter-block.search-available .form-field-container.icon-search {
    position: relative;
    display: flex;
    align-items: center
}

.catalog-container #catalog-form .catalog-filter-block.search-available .form-field-container.icon-search:before {
    position: absolute;
    left: 10px;
    color: var(--border-color);
    z-index: 3
}

.catalog-container #catalog-form .catalog-filter-block.search-available .form-field-container.icon-search input {
    padding-left: 36px;
    height: 26px;
    transition: all var(--animation-time) ease;
    background-color: transparent;
    z-index: 2
}

.catalog-container #catalog-form .catalog-filter-block.search-available .form-field-container.icon-search input:focus {
    background-color: #fff
}

.catalog-container #catalog-form .catalog-filter-block.search-available .form-field-container.icon-search input + label {
    position: absolute;
    left: 36px;
    margin: 0;
    color: var(--text-color);
    opacity: .7
}

.catalog-container #catalog-form .catalog-filter-block.boolean-filter .boolean-input-container {
    margin-bottom: 5px
}

.catalog-container #catalog-form .range-filter .block-content {
    grid-template-columns:1fr 1fr 50px;
    grid-gap: 10px;
    align-items: center
}

.catalog-container #catalog-form .range-filter .block-content .range-slider-container {
    grid-column: 1/-1
}

.catalog-container #catalog-form .range-filter .block-content input {
    border: 1px solid var(--border-color-dark);
    border-radius: var(--site-default-border-radius);
    height: 40px;
    padding: 11px;
    color: var(--text-color-dark);
    width: 100%
}

.catalog-container #catalog-form .range-filter .block-content .submit-range-btn {
    height: 40px;
    border-radius: var(--site-default-border-radius)
}

.catalog-container #catalog-form .range-filter .block-content .icon-minus-before {
    color: var(--text-color)
}

.catalog-container #catalog-form .range-filter .block-content .icon-minus-before:before {
    width: 14px
}

.catalog-container #catalog-form .range-filter .block-content button {
    border-radius: 12px;
    height: 40px;
    width: 50px;
    font-size: 13px;
    line-height: 100%;
    text-transform: uppercase
}

.catalog-container #catalog-form .range-filter.open .block-content {
    display: grid
}

.catalog-container #catalog-form .submit-catalog-form-btn {
    width: 100%
}

.catalog-container .sort-and-view-switch-container {
    display: grid;
    grid-template-columns:1fr max-content
}

.catalog-container .sort-and-view-switch-container .catalog-sort-select .input-emulator {
    height: 32px
}

.catalog-container .sort-and-view-switch-container .catalog-view-switch-container {
    display: grid;
    grid-column-gap: 5px;
    grid-template-columns:repeat(2, 32px)
}

.catalog-container .sort-and-view-switch-container .catalog-view-switch-container button {
    font-size: 0;
    padding: 0;
    width: 32px;
    height: 32px;
    max-width: initial
}

.catalog-container .sort-and-view-switch-container .catalog-view-switch-container button:before {
    font-size: 16px
}

.catalog-container .products-container {
    display: grid;
    gap: 15px
}

.catalog-container.view-type-plate .products-container {
    grid-template-columns:repeat(auto-fill, minmax(280px, 1fr))
}

.catalog-container.view-type-plate .product-card .size-select-container .block-title, .catalog-container.view-type-plate .product-card .color-select-container .block-title {
    font-size: 13px
}

.catalog-container.view-type-plate .product-card .size-select-container .variants, .catalog-container.view-type-plate .product-card .color-select-container .variants {
    display: flex;
    flex-wrap: wrap;
    gap: 5px
}

.catalog-container.view-type-plate .product-card .size-select-container .variants button, .catalog-container.view-type-plate .product-card .color-select-container .variants button {
    max-width: initial;
    background: none;
    padding: 2px;
    text-align: center
}

.catalog-container.view-type-plate .product-card .size-select-container .variants button.selected, .catalog-container.view-type-plate .product-card .color-select-container .variants button.selected {
    cursor: default;
    color: var(--text-color-dark)
}

.catalog-container.view-type-plate .product-card .size-select-container .variants button.not-available, .catalog-container.view-type-plate .product-card .color-select-container .variants button.not-available {
    opacity: .7
}

.catalog-container.view-type-plate .product-card .size-select-container .variants .btn {
    color: var(--text-color);
    font-size: 12px
}

.catalog-container.view-type-plate .product-card .color-select-container .variants button {
    background: transparent
}

.catalog-container.view-type-plate .product-card .color-select-container .variants button span {
    display: block;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%
}

.catalog-container.view-type-plate .product-card .color-select-container .variants button.multiple span:first-child {
    border-radius: var(--site-default-border-radius) 0 0 var(--site-default-border-radius)
}

.catalog-container.view-type-plate .product-card .color-select-container .variants button.multiple span:last-child {
    border-radius: 0 var(--site-default-border-radius) var(--site-default-border-radius) 0
}

.catalog-container.view-type-plate .product-card .color-select-container .variants button:not(.multiple) span {
    border-radius: var(--site-default-border-radius)
}

.catalog-container.view-type-plate .product-card .size-select-container, .catalog-container.view-type-plate .product-card .color-select-container {
    margin: 0 !important
}

.catalog-container.view-type-plate .product-card .size-select-container .block-title, .catalog-container.view-type-plate .product-card .color-select-container .block-title {
    margin-bottom: 5px
}

.catalog-container.view-type-plate .product-card .size-select-container .block-title {
    text-align: right
}

.catalog-container.view-type-plate .product-card .size-select-container .variants {
    justify-content: end
}

.catalog-container.view-type-plate .product-card .size-select-container .variants button {
    font-size: 11px;
    min-width: 30px;
    height: 25px
}

.catalog-container.view-type-list {
    grid-template-rows:max-content 1fr
}

.catalog-container.view-type-list .products-container {
    grid-template-columns:1fr;
    overflow-x: auto
}

.catalog-container.view-type-list .products-container table {
    border-spacing: 0
}

.catalog-container.view-type-list .products-container table thead th {
    background: var(--border-color-dark);
    padding-top: 10px;
    padding-bottom: 10px;
    vertical-align: middle
}

.catalog-container.view-type-list .products-container table thead th:last-child {
    text-align: center
}

.catalog-container.view-type-list .products-container table tbody td {
    border-bottom: 1px solid var(--border-color-dark);
    vertical-align: middle
}

.catalog-container.view-type-list .products-container table td, .catalog-container.view-type-list .products-container table th {
    padding: 10px 7px;
    border: none
}

.catalog-container.view-type-list .products-container table td:first-child, .catalog-container.view-type-list .products-container table th:first-child {
    min-width: 150px;
    max-width: 200px;
    padding-left: 15px
}

.catalog-container.view-type-list .products-container table td:nth-child(2), .catalog-container.view-type-list .products-container table th:nth-child(2) {
    width: -moz-max-content;
    width: max-content
}

.catalog-container.view-type-list .products-container table td:nth-child(3), .catalog-container.view-type-list .products-container table th:nth-child(3) {
    min-width: 120px;
    text-align: center
}

.catalog-container.view-type-list .products-container table td:nth-child(4), .catalog-container.view-type-list .products-container table th:nth-child(4) {
    padding-right: 15px
}

.catalog-container.view-type-list .products-container .product-card.view-type-list {
    padding: 0
}

.collapsible-block-title {
    display: grid;
    grid-template-columns:1fr 24px;
    grid-column-gap: 20px;
    align-items: center;
    margin-bottom: 0;
    transition: margin-bottom var(--animation-time) ease;
    font-weight: 700;
    font-size: 16px;
    line-height: 105%;
    color: var(--text-color-dark)
}

.collapsible-block-title .toggle-btn {
    display: flex;
    transition: all var(--animation-time) ease;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 18px;
    color: var(--text-color)
}

.collapsible-block-content {
    transition: all var(--animation-time) ease;
    padding-top: 15px
}

.collapsible-block.open .collapsible-block-title .toggle-btn {
    rotate: 180deg
}

.collapsible-block:not(.open) .collapsible-block-content {
    display: none
}

.category-page + .page-seo-text {
    margin-top: 30px
}

.category-page + .seo-text-collapsible-block {
    color: #9a9a9a
}

.category-page + .seo-text-collapsible-block h1, .category-page + .seo-text-collapsible-block h2, .category-page + .seo-text-collapsible-block h3, .category-page + .seo-text-collapsible-block h4, .category-page + .seo-text-collapsible-block h5, .category-page + .seo-text-collapsible-block h6 {
    color: #9a9a9a
}

@media (any-hover: hover) {
    .styled-select.multiple .input-emulator .selected-items .selected-item:hover {
        border-color: var(--styled-select-red-color)
    }

    .styled-select.multiple .input-emulator .selected-items .selected-item:hover:before, .styled-select.multiple .input-emulator .selected-items .selected-item:hover:after {
        background-color: var(--styled-select-red-color)
    }

    .product-card .user-actions-container button:hover {
        background: var(--primary-color);
        border-color: var(--primary-color)
    }

    .product-card .add-to-cart-btn:hover {
        border-color: var(--primary-color-hover);
        background-color: var(--primary-color-hover)
    }

    .product-card.view-type-plate {
        transition: all var(--animation-time) ease;
        border: 1px solid var(--border-color)
    }

    .product-card.view-type-plate:hover {
        border-color: var(--border-color-dark);
        box-shadow: 0 0 3px var(--border-color-dark)
    }

    .pagination-item:not(.disabled):hover {
        background: var(--border-color-dark);
        color: var(--text-color-dark)
    }

    .catalog-container.view-type-plate .product-card .size-select-container .variants button:not(.selected):hover, .catalog-container.view-type-plate .product-card .color-select-container .variants button:not(.selected):hover {
        border-color: var(--border-color-dark)
    }

    .collapsible-block-title {
        cursor: pointer
    }
}

@media (max-width: 767px) {
    .product-card .title {
        font-size: 14px
    }

    .product-card .price .actual {
        font-size: calc(16px + 2.8 * ((100vw - 320px) / var(--container-max-width-without-unit)))
    }

    .product-card.view-type-plate {
        padding: 7px
    }

    .catalog-container .sort-and-view-switch-container .catalog-sort-select {
        max-width: 200px
    }

    .catalog-container.view-type-plate .product-card .color-select-container .variants button {
        width: 20px;
        height: 20px
    }

    .catalog-container.view-type-plate .product-card .size-select-container {
        display: none
    }

    .catalog-container.view-type-list .products-container {
        margin-left: -15px;
        margin-right: -15px
    }
}

@media (min-width: 767px) {
    .product-card .price .actual {
        font-size: calc(16px + 2 * (100vw / var(--container-max-width-without-unit)))
    }
}

@media (min-width: 1330px) {
    .product-card .price .actual {
        font-size: 18px
    }
}

@media (min-width: 768px) {
    .product-card.view-type-plate {
        padding: 15px
    }

    .catalog-container .sort-and-view-switch-container .catalog-sort-select {
        width: 200px
    }

    .catalog-container.view-type-plate .product-card .color-select-container .variants button {
        width: 25px;
        height: 25px
    }
}

@media (min-width: 992px) {
    .catalog-container #catalog-form .bottom-block {
        display: none
    }

    .catalog-container {
        grid-template-columns:305px 1fr
    }

    .catalog-container #catalog-form {
        grid-column: 1/2;
        grid-row: 1/5;
        height: -moz-max-content;
        height: max-content
    }

    .catalog-container #catalog-form .mobile-header-block, .catalog-container .show-filter-form-btn {
        display: none
    }

    .catalog-container .products-container, .catalog-container .sort-and-view-switch-container, .catalog-container .pagination {
        grid-column: 2/-1
    }

    .catalog-container.view-type-list #catalog-form {
        grid-row-end: 3
    }
}

@media (max-width: 991px) {
    .catalog-container {
        grid-column-gap: 10px
    }

    .catalog-container.view-type-plate {
        grid-template-columns:1fr 1fr
    }

    .catalog-container.view-type-list {
        grid-template-columns:1fr max-content
    }

    .catalog-container #catalog-form {
        position: fixed;
        transform: translate(-110%);
        transition: transform var(--animation-time);
        display: grid;
        grid-template-columns:1fr;
        height: 100%;
        width: 100%;
        max-width: 460px;
        top: 0;
        left: 0;
        z-index: 150;
        background: #fff
    }

    .catalog-container #catalog-form > * {
        width: 100%
    }

    .catalog-container #catalog-form.open {
        transform: translate(0)
    }

    .catalog-container #catalog-form.with-selected-filters {
        grid-template-rows:60px max-content 1fr max-content
    }

    .catalog-container #catalog-form .selected-filters {
        padding: 0 10px
    }

    .catalog-container #catalog-form:not(.with-selected-filters) {
        grid-template-rows:60px 1fr max-content
    }

    .catalog-container #catalog-form .submit-catalog-form-btn {
        border-radius: 0
    }

    .catalog-container #catalog-form .mobile-header-block {
        display: flex;
        background: var(--border-color);
        height: 60px;
        padding: 10px;
        justify-content: space-between;
        align-items: center
    }

    .catalog-container #catalog-form .mobile-header-block .title {
        font-size: 18px;
        font-weight: 600
    }

    .catalog-container #catalog-form .mobile-header-block button {
        font-size: 22px;
        color: var(--text-color)
    }

    .catalog-container #catalog-form .filters-container {
        max-height: 100%;
        overflow-y: auto;
        padding: 10px
    }

    .catalog-container #catalog-form .collapsible-block .block-title {
        font-weight: 500;
        height: 30px
    }

    .catalog-container #catalog-form .bottom-block .products-count-informer {
        height: 30px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 500
    }

    .catalog-container .products-container, .catalog-container .pagination, .catalog-container .sort-and-view-switch-container {
        grid-column: 1/-1
    }

    .catalog-container .show-filter-form-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
        color: var(--text-color)
    }

    .catalog-container .sort-and-view-switch-container {
        grid-template-columns:max-content 1fr max-content;
        grid-column-gap: 5px
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .catalog-container.view-type-plate .products-container {
        grid-template-columns:repeat(auto-fill, minmax(230px, 1fr))
    }
}

@media (min-width: 465px) and (max-width: 767px) {
    .catalog-container.view-type-plate .products-container {
        grid-template-columns:repeat(auto-fill, minmax(180px, 1fr));
        gap: 8px
    }
}

@media (max-width: 464px) {
    .catalog-container.view-type-plate .products-container {
        grid-template-columns:repeat(auto-fill, minmax(150px, 1fr));
        gap: 8px
    }
}
