

/* Start:/local/templates/mm_main/assets/css/components/catalog-section-list.css?177988425125805*/
/* /local/templates/mm_main/assets/css/components/catalog-section-list.css */

.section-tabs-sort-wrapper
{
    position: relative;

    width: 100%;

    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}
.section-tabs-sort-wrapper::after
{
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;

    height: 1px;
    width: 100%;

    background-color: #E3E5E5;
}
@media screen and (max-width: 768px) 
{
    .section-tabs-sort-wrapper
    {
        display: flex;
        flex-flow: column-reverse nowrap;
        justify-content: flex-start;
        align-items: flex-start;

        width: 100%;
    }
}

.catalog-sections-tabs
{
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    overflow-x: scroll;

    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */

    max-width: 100%;
}
.catalog-sections-tabs::-webkit-scrollbar 
{
  display: none;
}

.catalog-section-tab
{
    display: block;
    position: relative;

    margin-right: 24px;

    padding-bottom: 24px;

    font-family: "RF Dewi", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;

    color: #58666F;

    white-space: nowrap;

    transition: color .3s;
}
.catalog-section-tab::after
{
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;

    height: 3px;
    width: 100%;

    background-color: transparent;

    transition: background-color .3s;
}

.catalog-section-tab.active
{
    color: #202020;
}
.catalog-section-tab.active::after
{
    background-color: var(--gold-color);
}

.catalog-sort
{
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;

    margin-bottom: 9px;
}
@media screen and (max-width: 768px) 
{
    .catalog-sort
    {
        width: 100%;
        justify-content: space-between;

        margin-bottom: 25px;
    }
}

.sort-type-select
{
    position: relative;
    margin-right: 15px;

    background: #FFFFFF;
    border: 1px solid #E4E4E4;
    box-sizing: border-box;
    border-radius: 4px;

    padding: 9px 20px; 
    min-width: 204px;

    color: #000;

    outline: none;
    cursor: pointer;
    background-image: url("/upload/mm_upload/icons/catalog/select-arrow.svg");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 10px;

    appearance: none;
    -webkit-appearance: none;
}

.render-options
{
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}

.render-options__button
{
    margin-right: 15px;
}
.render-options .render-options__button:last-child
{
    margin-right: 0;
}

.render-options__button svg path
{
    fill: #c4c4c4;

    transition: fill .3s;
}
.render-options__button.active svg path
{
    fill: #58666F;
}
@media screen and (max-width: 992px) 
{
    .render-options__button
    {
        display: none;
    }   
}

#open-mobile-filters
{
    display: none;
    position: relative;
    width: 30px;
    height: 30px;
}
@media screen and (max-width: 992px) 
{
    #open-mobile-filters
    {
        display: block;
    }
}

#open-mobile-filters svg
{
    display: block;

    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    opacity: 0;

    transition: opacity .3s;
}
#open-mobile-filters .open-filters
{
    opacity: 1;
}
#open-mobile-filters.filters-opened .close-filters
{
    opacity: 1;   
}
#open-mobile-filters.filters-opened .open-filters
{
    opacity: 0;
}

/* catalog */
.catalog-content-wrapper
{
    margin-top: 30px;

    display: grid;
    grid-template-columns: 307px auto;
}
@media screen and (max-width: 1400px) 
{
    .catalog-content-wrapper
    {
        grid-template-columns: 262px auto;
    } 
}
@media screen and (max-width: 1200px) 
{
    .catalog-content-wrapper
    {
        grid-template-columns: 304px auto;
    } 
}
@media screen and (max-width: 992px) 
{
    .catalog-content-wrapper
    {
        grid-template-columns: 1fr;
    }
}

/* filters */
.catalog-filter
{
    width: 100%;
    max-width: 307px;
}
@media screen and (max-width: 992px) 
{
    .catalog-filter
    {
        max-width: 100%;

        position: relative;

        margin-bottom: 0;
        transition: margin .3s;
    }

    .catalog-filter.opened
    {
        margin-bottom: 30px;
    }

    .catalog-filter::before
    {
        content: "";
        position: absolute;

        left: 50%;
        transform: translateX(-50%);
        top: 0;

        width: 100vw;
        height: 100%;

        z-index: -1;

        background-color: #E9ECEE;
    }

    .catalog-form-wrapper
    {
        overflow: hidden;
        max-height: 0;

        transition: max-height .5s;
    }

    .catalog-filter form 
    {
        display: grid;
        grid-template-columns: 213px auto;
        grid-gap: 0 34px;
        align-items: start;

        padding: 20px 0 30px;
    }

    .catalog-filter form .mobile-filter__right
    {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px;
    }
}

@media screen and (max-width: 568px) 
{
    .catalog-filter form 
    {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) 
{
    .catalog-filter form .mobile-filter__right
    {
        grid-gap: 15px 10px;
    }
}
@media screen and (max-width: 650px) 
{
    .catalog-filter form .mobile-filter__right
    {
        grid-template-columns: 1fr;
        grid-gap: 15px 0;
    }
}

@media screen and (max-width: 650px)
{
    .catalog-filter.opened
    {
        margin-bottom: 23px;
    }
} 

.filter-property-item
{
    margin-bottom: 20px;
}

.filter-property-item.select
{
    margin-bottom: 11px;
}
@media screen and (max-width: 992px) 
{
    .filter-property-item.select
    {
        margin-bottom: 0px;
    }
}

.filter-property__name
{
    font-family: "RF Dewi Seminold", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 19px;
    line-height: 23px;

    color: #58666F;

    margin-bottom: 8px;
}

.filter-property__value
{
    position: relative;

    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;

    margin-bottom: 9px;
}

.filter-property__values .filter-property__value:last-child
{
    margin-bottom: 0;
}

.filter-property__value-checkbox
{
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.checkbox-label
{
    font-family: "RF Dewi", sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 17px;

    white-space: nowrap;

    color: #202020;

    transition: color .3s;
}
.filter-property__value-checkbox:checked + .checkbox-label
{
    color: var(--gold-color);
}

.filter-property__value-checkbox:focus-visible + .checkbox-label
{
    color: var(--gold-color);
}

.filter-property-item.select select
{
    width: 100%;

    background: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 4px;

    padding: 18px 20px;

    font-family: "RF Dewi", sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 19px;
    line-height: 23px;

    color: #58666F;

    background-image: url("/upload/mm_upload/icons/catalog/select-arrow.svg");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 10px;

    transition: border .3s;
}
.filter-property-item.select select
{
    outline: none;
    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
}


/* .filter-property-item.select select:focus
{
    border: 1px solid var(--gold-color);
} */

/* .filter-property-item.select select:focus-visible
{
    border: 1px solid var(--gold-color);
} */

.reset-filters
{
    cursor: pointer;
}
@media screen and (max-width: 992px) 
{
    .reset-filters
    {
        margin-top: 10px;
    } 
}
@media screen and (max-width: 568px) 
{
    .reset-filters
    {
        margin-top: 5px;
    }
}

/* coins */
.catalog-coins-wrapper
{
    margin-left: 30px;
    overflow: hidden;
}
@media screen and (max-width: 992px) 
{
    .catalog-coins-wrapper
    {
        margin-left: 0;
    }
}

.catalog-coins-items
{
    display: grid;
}
.catalog-coins-items.top-wrapper {
    margin-top: 30px;
}
.catalog-coins-items.grid
{
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 35px 30px;
}
.catalog-coins-items.grid.fullsize {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 35px 30px;
}
@media screen and (max-width: 1400px) {
    .catalog-coins-items.top-wrapper {
        margin-top: 27px;
    } 
}
@media screen and (max-width: 1200px) 
{
    .catalog-coins-items.top-wrapper {
        margin-top: 21px;
    } 
    .catalog-coins-items.grid
    {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px 24px;
    }
    .catalog-coins-items.grid.fullsize {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 30px 24px;
    }
}
@media screen and (max-width: 568px) 
{
    .catalog-coins-items.grid,
    .catalog-coins-items.list,
    .catalog-coins-items.grid.fullsize
    {
        grid-template-columns: 1fr;
        grid-gap: 25px 0;
    }
}



/* list coins */
.catalog-coins-items.list
{
    grid-template-columns: 1fr;
    grid-gap: 32px 0;
}
@media screen and (max-width: 1400px)
{
    .catalog-coins-items.list
    {
        grid-gap: 34px 0;
    }
} 

.catalog-coins__coin-item
{
    /* display: block; */
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    background: #ECF0F0;
    border-radius: 10px;

    padding: 12px 20px 21px 20px;
    border: 1px solid transparent;

    /* transition: box-shadow .4s; */
    transition: border .3s;
}
@media screen and (max-width: 567px) 
{
    .catalog-coins__coin-item
    {
        padding: 11px 10px 14px 20px;
    }
}
@media screen and (min-width: 769px)
{
    .catalog-coins__coin-item:hover
    {
        border: 1px solid var(--gold-color);
        /* box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.2); */
    }
}

/* list coins */
.catalog-coins-items.list .catalog-coins__coin-item
{
    position: relative;
}

/* dark card */
.linked-coins__coin-item.dark
{
    background-color: #202020;
}

.top-bar
{
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: center;

    margin-bottom: 23px;

    width: 100%;
}
.top-bar.has-status
{
    justify-content: space-between;
}

.coin-item__statuses
{
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
}

.coin-item__status
{
    margin-right: 5px;

    font-family: "RF Dewi", sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    line-height: 14px;

    color: #00345E;

    padding: 2px 7px 4px 7px;

    border: 1px solid #00345E;
    border-radius: 4px;
}
.coin-item__statuses .coin-item__status:last-child
{
    margin-right: 0;
}

/* dark card */
.linked-coins__coin-item.dark .coin-item__status
{
    color: var(--gold-color);
    border-color: var(--gold-color);
}

.add-to-liked
{
    transition: transform .4s;
}
.add-to-liked:not(.liked) img:last-child {
    display: none;
}
.add-to-liked.liked img:first-child {
    display: none;
}
@media screen and (min-width: 769px)
{
    .add-to-liked:hover
    {
        transform: scale(1.2);
    }
}

.add-to-liked img
{
    object-fit: contain;
}
    

/* list coins */
.mobile-needed-wrapper
{
    flex-grow: 1;

    display: flex;
    flex-flow: column nowrap;

    width: 100%;
}

.catalog-coins-items.list .mobile-needed-wrapper
{
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: stretch;

    flex-grow: 0;
}

/* list coins */
.catalog-coins-items.list .mobile-preview-wrapper
{
    margin-right: 104px;
}
@media screen and (max-width: 1400px)
{
    .catalog-coins-items.list .mobile-preview-wrapper
    {
        margin-right: 83px;
    }
}
@media screen and (max-width: 1200px)
{
    .catalog-coins-items.list .mobile-preview-wrapper
    {
        margin-right: 42px;
    }
}
@media screen and (max-width: 567px)
{
    .catalog-coins-items.list .mobile-preview-wrapper
    {
        margin-right: 22px;
    }
}

@media screen and (max-width: 567px) 
{
    .mobile-needed-wrapper
    {
        display: flex;
        flex-flow: row nowrap;
        justify-content: flex-start;
        align-items: stretch;
    }

    .mobile-preview-wrapper
    {
        margin-right: 22px;
        display: flex;
        flex-flow: column nowrap;
        justify-content: space-between;
        /* margin: 0 auto; */
    }
}

.coin-item__images-preview
{
    max-width: max-content;
    margin: 0 auto;

    margin-bottom: 13px;
}
@media screen and (max-width: 567px) 
{
    .coin-item__images-preview
    {
        margin-bottom: 0;
    }
}

.coin-item__images-preview img
{
    max-width: 160px;
}
@media screen and (max-width: 567px) 
{
    .coin-item__images-preview img
    {
        max-width: 100px;
    }
}

.coin-item__is-in-stock
{
    display: none;

    margin-top: 19px;

    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 14px;

    color: #777777;

    white-space: nowrap;
}
/* dark card */
.linked-coins__coin-item.dark .coin-item__is-in-stock
{
    color: #ccc;
}
@media screen and (max-width: 567px) 
{
    .coin-item__is-in-stock
    {
        display: block;
        margin-top: 10px;
        margin-bottom: 13px;
    }   
}

/* list coins */
.mobile-preview-wrapper
{
    margin-bottom: 10px;
}
@media screen and (max-width: 567px) 
{
    .mobile-preview-wrapper
    {
        margin-bottom: 0px;
        height: 100%;
    }  
}

.coin-item__description-wrapper
{
    flex-grow: 1;

    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    position: relative;  /* 17.3.23 */
}

.catalog-coins-items.list .coin-item__description-wrapper
{
    width: 100%;
    max-width: 487px;

    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;

    flex-grow: 0;
}
.coin-item__description-text--info {  /* 17.3.23 */
    position: absolute;
    left: 97px;
    bottom: 22px;
    width: 18px;
    height: 18px;
    border: 1px solid var(--gold-color);
    background-color: var(--gold-color);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 600;
    font-family: serif;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.coin-item__description-text--internal {  /* 17.3.23 */
    color: #fff;
}
.coin-item__description-text--info .popup-box {  /* 17.3.23 */
    display: none;
    padding: 4px 7px;
    position: absolute;
    top: 4px;
    left: 23px;
    width: 334px;
    border-radius: 4px;
    background-color: #b4b2ae;
    opacity: .75;
}
.coin-item__description-text--info:hover .popup-box {  /* 17.3.23 */
    /*display: flex; работает js */
    column-gap: 10px;
}
.coin-item__description-text--info .popup-box--info {  /* 17.3.23 */
    width: 20px;
    height: 20px;
    border: 1px solid var(--gold-color);
    background-color: var(--gold-color);
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.coin-item__description-text--info .popup-box--internal {  /* 17.3.23 */
    display: block;
    width: 20px;
    padding-left: 8px;
    color: #fff;
}

.popup-infobox {  /* 17.3.23 */
    display: none;
    padding: 4px 7px;
    width: 334px;
    border-radius: 4px;
    background-color: #b4b2ae;
    opacity: .75;
}
.popup-infobox-hover {  /* 17.3.23 */
    display: flex;
    column-gap: 10px;
}
.popup-infobox--info {  /* 17.3.23 */
    width: 20px;
    height: 20px;
    border: 1px solid var(--gold-color);
    background-color: var(--gold-color);
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup-infobox--internal {  /* 17.3.23 */
    display: block;
    width: 20px;
    padding-left: 8px;
    color: #fff;
}

@media screen and (max-width: 1400px)
{
    .catalog-coins-items.list .coin-item__description-wrapper
    {
        max-width: 441px;
    }
}
@media screen and (max-width: 1200px)
{
    .catalog-coins-items.list .coin-item__description-wrapper
    {
        max-width: 364px;
    }
}
@media screen and (max-width: 567px)
{
    .catalog-coins-items.list .coin-item__description-wrapper
    {
        flex-flow: column nowrap;
        justify-content: space-between;
    }
}

.coin-item__created-in
{
    font-family: "RF Dewi";
    font-style: normal;
    font-weight: normal;
    font-size: 9px;
    line-height: 11px;

    color: #777777;

    margin-bottom: 5px;
}

.coin-item__name
{
    font-family: "RF Dewi", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;

    color: #202020;
    
    margin-bottom: 10px;
}
@media screen and (max-width: 567px) 
{
    .coin-item__name
    {
        margin-bottom: 13px;
    }
}

/* list coins */
.catalog-coins-items.list .coin-item__name
{
    max-width: 277px;
    margin-bottom: 0;

    display: block;
    width: 100%;
}
@media screen and (max-width: 1200px)
{
    .catalog-coins-items.list .coin-item__name
    {
        max-width: 188px;
    }
}
@media screen and (max-width: 567px)
{
    .catalog-coins-items.list .coin-item__name
    {
        max-width: 100%;
    }
}


/* dark card */
.linked-coins__coin-item.dark .coin-item__name
{
    color: #fff;
}

.buy-price, .list-coin-item__buy-price
{
    font-family: "RF Dewi", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 14px;

    color: #777777;
}

.buy-price
{
    margin-top: 10px;
}

.buy-price span
{
    white-space: nowrap;
}

/* list coins */
.catalog-coins-items.list .coin-item__description-text .buy-price
{
    display: none;
}
@media screen and (max-width: 567px) 
{
    .catalog-coins-items.list .coin-item__description-text .buy-price
    {
        display: block;
    }
}

.bottom-bar
{
    margin-top: 18px;

    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}
@media screen and (max-width: 567px) 
{
    .bottom-bar
    {
        margin-top: 13px;
    }
}

/* list coins */
.catalog-coins-items.list .bottom-bar
{
    margin-top: 0;

    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    margin-left: 61px;
}
@media screen and (max-width: 1400px) 
{
    .catalog-coins-items.list .bottom-bar
    {
        margin-left: 15px;
    }
}
@media screen and (max-width: 1400px) 
{
    .catalog-coins-items.list .bottom-bar
    {
        margin-left: 27px;
    }
}
@media screen and (max-width: 567px)
{
    .catalog-coins-items.list .bottom-bar
    {
        margin-left: 0;

        width: 100%;

        flex-flow: row nowrap;
        justify-content: space-between;
        align-items: center;
    }
}

.sell-price-wrapper
{
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}
@media screen and (max-width: 567px) 
{
    .sell-price-wrapper
    {
        flex-flow: column-reverse nowrap;
        justify-content: flex-start;
        align-items: flex-start;
    }
}

.coin-item__sell-price
{
    font-family: "RF Dewi", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;

    color: var(--blue-color);

    white-space: nowrap;
}
@media screen and (max-width: 568px) 
{
    .coin-item__sell-not-stock
    {
        display: none;
    }
}

/* dark card */
.linked-coins__coin-item.dark .coin-item__sell-price
{
    color: #fff;
}

.bottom-bar.no-cost .coin-item__sell-price
{
    font-family: "RF Dewi", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
    line-height: 14px;

    color: #777777;

    white-space: nowrap;
}
/* dark card */
.linked-coins__coin-item.dark .bottom-bar.no-cost .coin-item__sell-price
{
    color: #ccc;
}

@media screen and (max-width: 567px) 
{
    .bottom-bar.no-cost .coin-item__sell-price
    {
        display: none;
    }
}

.coin-item__old-price
{
    margin-left: 10px;

    position: relative;

    font-family: "RF Dewi", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 17px;

    color: #777777;

    white-space: nowrap;
}
.coin-item__old-price::before
{
    content: "";

    position: absolute;
    left: 0;
    top: 9px;

    width: 100%;
    height: 1px;
    background-color: #777777;
} 

/* dark card */
.linked-coins__coin-item.dark .coin-item__old-price
{
    color: #ccc;
}
.linked-coins__coin-item.dark .coin-item__old-price::before
{
    background-color: #ccc;
}
@media screen and (max-width: 567px) 
{
    .coin-item__old-price
    {
        margin-left: 0;
    }
}

/* list coins */
.list-coin-item__buy-price
{
    display: none;

    margin-top: 20px;
}

/* list coins */
.catalog-coins-items.list .list-coin-item__buy-price
{
    display: block;
}
@media screen and (max-width: 568px) 
{
    .catalog-coins-items.list .list-coin-item__buy-price
    {
        display: none;
    }    
}

.add-to-cart
{
    background: linear-gradient(97.31deg, #E0C29B 0%, rgba(165, 138, 87, 0) 61.69%), 
                linear-gradient(85.12deg, #A58A57 0%, #BEA272 97.71%);

    box-shadow: 0px 7px 14px -4px rgba(92, 63, 7, 0.59);

    border-radius: 50%;

    padding: 11px 12px 9px 10px;

    transition: transform .4s;
}
.add-to-cart.notify
{
    padding: 10px;
}
@media screen and (min-width: 769px)
{
    .add-to-cart:hover
    {
        transform: scale(1.1);
    }
}

/* list coins */
.catalog-coins-items.list .add-to-cart
{
    position: absolute;
    bottom: 20px;
    right: 20px;
}
@media screen and (max-width: 567px) 
{
    .catalog-coins-items.list .add-to-cart
    {
        position: static;
    } 
}

.add-to-cart img
{
    max-width: 20px;
}

/* end coins */

.elements-loaded
{
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;

    margin: 30px auto 0;
}

.elements-count
{
    font-family: "RF Dewi", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
    line-height: 14px;

    color: #556871;

    margin-bottom: 13px;
}

#load-more-buttons
{
    padding: 12px 32px;
}

/* seo text */
.catalog-desctiption
{
    margin-top: 80px;
}
@media screen and (max-width: 992px) 
{
    .catalog-desctiption
    {
        margin-top: 50px;
    }
}

.catalog-description__title
{
    color: #00345E;
    margin-bottom: 22px;
}
@media screen and (max-width: 568px) 
{
    .catalog-description__title
    {
        margin-bottom: 15px;
    }
}

/* inline_gallery */
.images__line-galery-item {
    display: none;
    width: 100%;
    /* height: 161px; */
    height: 160px;
}
.images__line-galery-item img {
    width: 160px;
    margin: 0 auto;
    object-fit: contain;
}
.images__line-galery-item.active {
    display: flex;
}
.images__line-galery {
    position: relative;
}
.images__line-galery-bullets {
    display: flex;
    width: 100%;
    max-width: 90px;
    margin: 0 auto;
    gap: 2px;
    margin-top: 12px;
}
.images__line-galery-bullets span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #C4C4C4;
}
.images__line-galery-bullets span.active {
    background-color: #202020;
}

.dark .images__line-galery-bullets span.active
{
    background-color: #fff;
}

.coin-item__sell-not-stock {
    font-family: "RF Dewi", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 14px;
    color: #777777;
}

/* @media screen and (max-width: 567px) {
    .images__line-galery-item img {
        max-width: 100px;
    }
    .images__line-galery-item {
        height: auto;
    }
    .images__line-galery-item {
        display: flex;
        margin-right: 5px;
        scroll-snap-align: start;
    }
    .images__line-galery-items-wrapper {
        overflow-x: auto;
        display: flex;
        max-width: 100px;
        align-items: center;

        -ms-overflow-style: none;
        scrollbar-width: none;

        scroll-snap-type: x mandatory;
        scroll-snap-stop: always;
    }
    .images__line-galery-items-wrapper::-webkit-scrollbar {
        display: none;
    }
} */


@media screen and (max-width: 568px) 
{
    .images__line-galery.touch .images__line-galery-item img {
        max-width: 100px;
    }
}

.images__line-galery.touch .images__line-galery-item {
    /* height: auto; */
    height: 160px;
}
@media screen and (max-width: 568px) 
{
    .images__line-galery.touch .images__line-galery-item
    {
        height: 100px;
    }
}

.images__line-galery.touch .images__line-galery-item {
    display: flex;
    margin-right: 5px;
    scroll-snap-align: start;
}
.images__line-galery.touch .images__line-galery-items-wrapper {
    overflow-x: auto;
    display: flex;
    /* max-width: 100px; */
    max-width: 160px;
    align-items: center;

    -ms-overflow-style: none;
    scrollbar-width: none;

    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
}
@media screen and (max-width: 568px) 
{
    .images__line-galery.touch .images__line-galery-items-wrapper {
        max-width: 100px;
        max-height: 100px;
    }
}

.images__line-galery.touch .images__line-galery-items-wrapper::-webkit-scrollbar {
    display: none;
}

@media screen and (min-width: 568px) 
{
    .images__line-galery.touch .images__line-galery-items-wrapper
    {
        margin: 0 auto;
    }
}
/* End */


/* Start:/local/templates/.default/components/bitrix/catalog/catalog.mm/bitrix/catalog.section/.default/seo-styles.css?1779884247700*/
.catalog-description-text h2
{
    font-size: 28px;
    line-height: 36px;

    font-weight: normal;
}

@media screen and (max-width: 992px)
{
    .catalog-description-text h2
    {
        font-size: 22px;
        line-height: 30px;
    }
}

.catalog-description-text ul,
.catalog-description-text p
{
    margin: 13px 0;
}

.last-wiewed-wrapper
{
    margin-top: 80px;
}
@media screen and (max-width: 992px)
{
    .last-wiewed-wrapper
    {
        margin-top: 50px;
    }
}

.empty-catalog-title
{
    margin-top: 40px;
    color: var(--blue-color);
}
@media screen and (max-width: 992px) {
    .empty-catalog-title
    {
        margin-top: 0;
    }
}
/* End */


/* Start:/local/templates/.default/components/bitrix/catalog.smart.filter/filter.mm/style.css?177988424914168*/

.bx-retina .bx-filter .bx-filter-input-container input {
	border-style: solid;
	border-width: 1px;
	-webkit-border-image: url(/local/templates/.default/components/bitrix/catalog.smart.filter/filter.mm/images/border_default.png) 2 repeat;
	-moz-border-image: url(/local/templates/.default/components/bitrix/catalog.smart.filter/filter.mm/images/border_default.png) 2 repeat;
	-o-border-image: url(/local/templates/.default/components/bitrix/catalog.smart.filter/filter.mm/images/border_default.png) 2 repeat;
	border-image: url(/local/templates/.default/components/bitrix/catalog.smart.filter/filter.mm/images/border_default.png) 2 repeat;
}
/*.bx-filter .bx-filter-input-container input:focus {
	border-color: #499fd8;
}
.bx-retina .bx-filter .bx-filter-input-container input:focus {
	-webkit-border-image: url(/local/templates/.default/components/bitrix/catalog.smart.filter/filter.mm/images/active.png) 2 repeat;
	   -moz-border-image: url(/local/templates/.default/components/bitrix/catalog.smart.filter/filter.mm/images/active.png) 2 repeat;
		 -o-border-image: url(/local/templates/.default/components/bitrix/catalog.smart.filter/filter.mm/images/active.png) 2 repeat;
			border-image: url(/local/templates/.default/components/bitrix/catalog.smart.filter/filter.mm/images/active.png) 2 repeat;
}

/*
COLOR
*/
.bx-ios .bx-filter .bx-filter-input-container input {
	/* Fix of input shadow for IOS browsers. */

	background-image: -webkit-linear-gradient(#ffffff 0%, #ffffff 100%);
	background-image: linear-gradient(#ffffff 0%, #ffffff 100%);
}
.bx-filter .bx-filter-button-box {
	clear: both;
}
/*
*Track
*
*/

.bx-filter .bx-ui-slider-track-container {
	padding-top: 35px;
	padding-bottom: 25px;
}
.bx-filter .bx-ui-slider-track {
	position: relative;
	height: 7px;
	/*background: #d8e9f0;/* COLOR */
}
.bx-filter .bx-ui-slider-part {
	position: absolute;
	top: -6px;
	width: 1px;
	height: 17px;
	background: #a2bfc7;
}
.bx-filter .bx-ui-slider-part.p1 {
	left: -1px;
}
.bx-filter .bx-ui-slider-part.p2 {
	left: 25%;
}
.bx-filter .bx-ui-slider-part.p3 {
	left: 50%;
}
.bx-filter .bx-ui-slider-part.p4 {
	left: 75%;
}
.bx-filter .bx-ui-slider-part.p5 {
	right: -1px;
}
.bx-filter .bx-ui-slider-part span {
	font-size: 11px;
	/*font-weight: bold;*/

	position: absolute;
	top: -16px;
	left: 50%;
	display: block;
	width: 100px;
	margin-left: -50px;
	text-align: center;
	color: #000;
}
.bx-filter .bx-ui-slider-part.p2 span,
.bx-filter .bx-ui-slider-part.p3 span,
.bx-filter .bx-ui-slider-part.p4 span {
	color: #6b8086;
}
.bx-filter .bx-ui-slider-range,
.bx-filter .bx-ui-slider-pricebar,
.bx-filter .bx-ui-slider-pricebar-vd,
.bx-filter .bx-ui-slider-pricebar-vn,
.bx-filter .bx-ui-slider-pricebar-v {
	position: absolute;
	top: 0;
	bottom: 0;
}
.bx-filter .bx-ui-slider-range {
	z-index: 50;
}
.bx-filter .bx-ui-slider-pricebar {
	z-index: 100;
}
.bx-filter .bx-ui-slider-pricebar-vd {
	z-index: 60;
	/*background: #849da4;/* COLOR */
}
.bx-filter .bx-ui-slider-pricebar-vn {
	z-index: 70;
	/*background: #a8dff3;/* COLOR */
}
.bx-filter .bx-ui-slider-pricebar-v {
	z-index: 80;
	/*background: #499fd8;/* COLOR */
}
.bx-filter .bx-ui-slider-handle {
	position: absolute;
	top: 100%;
	width: 22px;
	height: 22px;
	border-bottom: none;
}
.bx-filter .bx-ui-slider-handle:hover {
	-webkit-cursor: grab;
	-ms-cursor: grab;
	-o-cursor: grab;
	cursor: grab;
}
.bx-filter .bx-ui-slider-handle:active {
	-webkit-cursor: grabbing;
	-ms-cursor: grabbing;
	-o-cursor: grabbing;
	cursor: grabbing;
}
.bx-filter .bx-ui-slider-handle.left {
	left: 0;
	margin-left: -21px;
	/* COLOR */
	/*background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAARCAYAAADUryzEAAAArUlEQVQ4y6WSQQ6FMAhEXbjyXwzOpBdx5bXKbYRWLFSJ2m8ysVHfzGA7DH9cuKVfNwwM40ZzZzJlmE3WTjjNfF9Fn2EwMH5pUGYWOJ3w6wZ4wDKz6rUBumQPPxrUmT0IxuxpqxYLQ7MOG5TaHtbk1iza5+VauW5dfdcYSDKcMLkP7wxdA5sMQWV/BkwDTY7mtAfHjpJ/Ihj4DoIgXZ9J+siaimi6rimLgSw87qod+1BRTwMJRYoAAAAASUVORK5CIIA=) no-repeat right top;*/
}
.bx-filter .bx-ui-slider-handle.right {
	right: 0;
	margin-right: -21px;
	/* COLOR */
	/*background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAARCAYAAADUryzEAAAAq0lEQVQ4y6WSQRKDIAxFXXSlF0vOZC+SlddKblMUUhKCraIzX9Ahj58PE268TE8e3GSFJ5BUTDskaRl1QFk8BsHs4BCMQMruVEe+l4kWglFu5yLEZKDFXyeXIFoEpg3z738mJTzXhncj75+QtqjnJENO2sG4I1VXDtR3ogv7O1dHxV10gi75EGILiE78RRKy33AOq07i+Us4kRamkOPGptesQjeXIjZjO+fXB+hjUU/S3Z+WAAAAAElFTkSuQmCC) no-repeat left top;*/
}

/*
*	Select
*
*/

.bx-filter .bx-filter-select-container {
	border: 1px solid #c69643;
	box-sizing: border-box;
	padding-left: 13px;
	color: #c69643;
	outline: none;
	background-color: #fff;
	font: 16px/1 'ProximaNovaCond-Light', sans-serif;
	text-transform: uppercase;
}

.bx-filter .bx-filter-select-block {
	position: relative;
	display: block;
}
.bx-filter .bx-filter-select-text {
	height: 36px;

	line-height: 36px;
	overflow: hidden;
	max-width: 100%;
	cursor: pointer;
	vertical-align: middle;
	white-space: nowrap;
	text-overflow: ellipsis;
	-ms-text-overflow: ellipsis;

}
.bx-filter .bx-filter-select-text.fix {
	min-width: 120px;
}
.bx-filter .bx-filter-select-text label {
	cursor: pointer;
}
.bx-filter .bx-filter-select-arrow {
	position: absolute;
	top: 0;
	right: 0;
	width: 34px;
	height: 36px;
	cursor: pointer;
	background: url('/assets/images/select-arrow.png') no-repeat center;
}
/*
*	Select popup
*
*/

.bx-filter-select-popup {
	background: #fff;
	padding: 0;
}
.bx-filter-select-popup ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.bx-filter-select-popup ul li {
	display: block;
	text-align: left;
	vertical-align: middle;
}
.bx-filter-select-popup ul li:first-child {
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 5px;
	margin-bottom: 5px;
}
.bx-filter-select-popup ul li label {
	font-size: 14px;
	line-height: 26px;
	display: block;
	text-align: left !important;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	height: 26px;
	padding: 0 5px;
	cursor: pointer;
	vertical-align: middle;
	white-space: nowrap;
	text-overflow: ellipsis;
	-ms-text-overflow: ellipsis;
	color: #575757;
}
.bx-filter-select-popup ul li label.selected,
.bx-filter-select-popup ul li label:hover {
	color: #000;
	background: #f3f8fa;
}
.bx-filter-select-popup ul li label.disabled {
	color: #b8b8b8;
	background: transparent;
}
.bx-filter-select-popup ul li .bx-filter-param-text {
	line-height: 34px !important;
}
/*
* TAGS
*
*/

.bx-filter .bx-filter-tag {
	padding: 18px;
	/*border-top: 1px solid #d7eaf7;/* COLOR */
	/*border-bottom: 1px solid #d7eaf7;/* COLOR */
}
.bx-filter .bx-tag-link {
	font-size: 12px;
	text-decoration: none;
	/*color: #68939e;/* COLOR */
	text-shadow: none;
}
.bx-filter .bx-tag-link.bx-active,
.bx-filter .bx-tag-link:hover {
	color: #1d3d46;
}
/*
*	LABEL
*
*/
.bx-filter .bx-filter-param-label {
	min-height: 20px;
	font-weight: normal;
	cursor: pointer;
}

.bx-filter .bx-filter-param-btn-inline .bx-filter-param-label {
	float: left;
	display: block;
	margin-right: 5px;
}
.bx-filter .bx-filter-param-btn-block .bx-filter-param-label {
	display: block;
}
.bx-filter .bx-filter-param-label {
	/*font-size: 13px;*/
}
.bx-filter .bx-filter-param-label.dib {
	display: inline-block;
}
.bx-filter .bx-filter-param-text {
	font-weight: normal;
}
.bx-filter .bx-filter-param-label.disabled .bx-filter-param-text {
	color: #6c6c6c;
}
.bx-filter-select-popup .bx-filter-param-label.bx-active {
	background: #f3f8fa;
}
/*
*	Checkbox / Radio
*
*/

.bx-filter .bx-filter-input-checkbox {}
.bx-filter .bx-filter-input-checkbox input[type=radio],
.bx-filter .bx-filter-input-checkbox input[type=checkbox] {}
.bx-filter .bx-filter-input-checkbox .bx-filter-param-text {
	display: block;
	text-align: left;
}
/*
* 	BTN
*
*/

.bx-filter .bx-filter-param-btn {
	font-weight: normal;
	display: inline-block;
	width: 38px;
	height: 38px;
	padding: 6px;
	text-align: center;
	text-decoration: none;
	color: #000;
	vertical-align: middle;
	border: 1px solid #ccd5db;
	border-radius: 2px;
	background: #fff;
	position: relative;
	-webkit-transition: border .3s ease, box-shadow .1s ease, color .3s ease;
	-moz-transition: border .3s ease, box-shadow .1s ease, color .3s ease;
	-ms-transition: border .3s ease, box-shadow .1s ease, color .3s ease;
	-o-transition: border .3s ease, box-shadow .1s ease, color .3s ease;
	transition: border .3s ease, box-shadow .1s ease, color .3s ease;
	cursor: pointer;
}
.bx-retina .bx-filter .bx-filter-param-btn {
	border-style: solid;
	border-width: 1px;
	-webkit-border-image: url(/local/templates/.default/components/bitrix/catalog.smart.filter/filter.mm/images/border_default.png) 2 repeat;
	-moz-border-image: url(/local/templates/.default/components/bitrix/catalog.smart.filter/filter.mm/images/border_default.png) 2 repeat;
	-o-border-image: url(/local/templates/.default/components/bitrix/catalog.smart.filter/filter.mm/images/border_default.png) 2 repeat;
	border-image: url(/local/templates/.default/components/bitrix/catalog.smart.filter/filter.mm/images/border_default.png) 2 repeat;
}
/* COLOR */
/*.bx-filter .bx-filter-param-label.bx-active .bx-filter-param-btn,
.bx-filter .bx-filter-param-btn:hover,
.bx-filter .bx-filter-param-btn:active,
.bx-filter .bx-filter-param-btn:focus {
	border-color: #499fd8;
}
.bx-retina .bx-filter .bx-filter-param-label.bx-active .bx-filter-param-btn,
.bx-retina .bx-filter .bx-filter-param-btn:hover,
.bx-retina .bx-filter .bx-filter-param-btn:active,
.bx-retina .bx-filter .bx-filter-select-container:focus {
	-webkit-border-image: url(/local/templates/.default/components/bitrix/catalog.smart.filter/filter.mm/images/active.png) 2 repeat;
	   -moz-border-image: url(/local/templates/.default/components/bitrix/catalog.smart.filter/filter.mm/images/active.png) 2 repeat;
		 -o-border-image: url(/local/templates/.default/components/bitrix/catalog.smart.filter/filter.mm/images/active.png) 2 repeat;
			border-image: url(/local/templates/.default/components/bitrix/catalog.smart.filter/filter.mm/images/active.png) 2 repeat;
}*/
/* --- colors */
.bx-filter .bx-filter-param-btn.bx-color-sl {}

.bx-filter .bx-filter-param-label.disabled .bx-filter-param-btn.bx-color-sl {
	background: transparent;
	box-shadow: none
}
.bx-filter .bx-filter-param-label.disabled .bx-filter-param-btn.bx-color-sl {
	position: relative;
}
.bx-filter .bx-filter-param-label.disabled .bx-filter-param-btn.bx-color-sl:before {
	position: absolute;
	bottom: 0;
	right: 0;
	top: 0;
	left: 0;
	content: ' ';
	display: block;
	z-index: 100;
	background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAA/UlEQVQ4y5WSQQ6CQAxFOSBuwAtoAitc4R6MkKgYJULUi8Ax4DgKm9o/45BxBBNJmkB/33T6qUVEHkfDUXHY1sQD7V2DWg+JJox3lOZ3enYdf5IzAjnQkvxGa64Fg2S9PV3JXa4ozoovWEGbY0nOIqDkfIVeQ5hBAOQsAy5guO8FbEJxVqqDZ+rUuQ6rziJ3VLkBcs05BBxlF1nIADrJESYgE0YhAER0KH5DphEKFDNPuG1AhTAi4jnRWV17FNYhcT3NHLzLzuUnjI0YHP203EWY8ENqNsAq5Y3Qf4NuhIT7wTBsDxgIbRjvCfCUe6ozoFCuXIukj5c/lhy1/gvSDM3b8PrjegAAAABJRU5ErkJggg==") no-repeat center;
	opacity: .7;
}
.bx-filter .bx-filter-param-btn .bx-filter-param-text {
	line-height: 26px;
}
/*
* BTN P/M
*
*/

.bx-filter .bx-filter-param-btn.bx-spm {
	width: 23px;
	min-width: 23px;
	height: 23px;
	line-height: 23px;
	font-weight: normal;
	padding: 0;
	font-size: 17px;
	color: #767b7e;
	vertical-align: top;
	border-radius: 50%;
	background-color: transparent;
}
.bx-filter .bx-filter-param-btn.bx-spm.bx-plus {
	background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAMCAYAAAC0qUeeAAAANUlEQVQoz2NgwAQsQMzJQCSwAeKGQa7YFKoAhmOgim3QsAxIcSFUkhC2GaqhgQ4UgNgFmwQAij8OUFmBFssAAAAASUVORK5CIIA=") no-repeat center;
}
.bx-filter .bx-filter-param-btn.bx-spm.bx-minus {
	background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAACCAYAAABhYU3QAAAAG0lEQVQYV2NgYGDgBuI4AlgGiBn4gLicAFYGAAFkBwE95V42AAAAAElFTkSuQmCC") no-repeat center;
}
.bx-filter .bx-filter-param-btn.bx-spm:active {
	outline: none !important;
	box-shadow: inset 0 2px 3px rgba(0, 0, 0, .12);
}
.bx-filter span.bx-spm {
	font-size: 18px;
	/*font-weight:bold;*/

	line-height: 23px;
	display: inline-block;
	height: 23px;
	margin: 0 10px;
	vertical-align: middle;
	color: #000;
}
/*
*	icon
*
*/

.bx-filter-select-popup .bx-filter-select-text-icon,
.bx-filter .bx-filter-select-text-icon {
	line-height: 33px;
	position: relative;
	display: inline-block;
	width: 23px;
	height: 23px;
	margin-top: -4px;
	margin-right: 2px;
	vertical-align: middle;
	border-radius: 2px;
}
.bx-filter-select-popup .bx-filter-btn-color-icon,
.bx-filter .bx-filter-btn-color-icon {
	line-height: 24px;
	/*position:relative;*/
	/*top:4px;*/

	border-radius: 2px;
	display: inline-block;
	width: 24px;
	height: 24px;
	vertical-align: middle;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .05);
	-webkit-background-size: cover;
	background-size: cover;
}
.bx-filter-select-popup .bx-filter-btn-color-icon {
	width: 20px;
	height: 20px;
	margin: 2px 0;
	top: 0 !important;
}
.bx-filter .bx-filter-select-block .bx-filter-btn-color-icon {
	top: -1px !important;
}
.bx-filter-btn-color-icon.all {
	position: relative;
	border: none;
	box-shadow: none
}
.bx-filter-btn-color-icon.all:after,
.bx-filter-btn-color-icon.all:before {
	position: absolute;
	width: 60%;
	height: 60%;
	background: #fff;
	content: " ";
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .2);
}
.bx-filter-btn-color-icon.all:after {
	right: 0;
	bottom: 0;
}
.bx-filter-btn-color-icon.all:before {
	top: 0;
	left: 0;
}
.bx-filter .bx-filter-param-label.disabled .bx-filter-btn-color-icon {
	opacity: .2;
}
/*
* 	BIZ
*
*/

.bx-filter .bx-filter-parameter-biz {
	font-size: 14px;
	line-height: 15px;
	display: inline-block;
	margin-right: 10px;
	text-decoration: none;
	color: #1485ce;
	border-bottom: 1px dashed;
}
.bx-filter .bx-filter-parameter-biz:hover {
	text-decoration: none;
	border-bottom: 1px solid;
}
.bx-filter .bx-filter-parameter-biz.bx-active {
	position: relative;
	/*padding-left:20px;*/

	color: #000;
	border-color: transparent;
}
/*
*	BTN result and reset
*
*/

.btn-themes {
	/*background-color: #1485CE;/* COLOR */
	/*border-color: #1485CE;/* COLOR */
	color: #FFF
}
.btn-themes.bx-active,
.btn-themes.focus,
.btn-themes:active,
.btn-themes:focus,
.btn-themes:hover{
	/*background-color: #53A4D8;/* COLOR */
	/*border-color: #53A4D8;/* COLOR */
	color: #FFF
}
/*
* 	Result Popup
*
*/

.bx-filter .bx-filter-popup-result {
	font-size: 13px;
	font-weight: normal;
	display: none;
	line-height: normal;
	padding: 0 15px;
	white-space: nowrap;
	color: #3f3f3f;
	min-height: 33px;
	line-height: 16px;
	border-style: solid;
	border: 1px solid #c69644;
	margin-right: 10px;
}

.bx-filter .bx-filter-popup-result a {
	color: #0073a3;
	line-height: 9px;
}
.bx-filter .bx-filter-popup-result a:hover {
	text-decoration: none;
}
.bx-filter .bx-filter-popup-result-close {
	display: none;
}
/* End */


/* Start:/local/templates/.default/components/bitrix/system.pagenavigation/mm_nav-loadmore/style.css?17798842452267*/
.catalog_pagination-wrapper {
    padding-top: 25px;
    /* padding-bottom: 131px; */
}
.catalog_pagination-wrapper .catalog_pagination-quant {
    text-align: center;

    font-family: 'RF Dewi';
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 14px;

    color: #556871;
    margin-bottom: 21px;
}
.catalog_pagination-wrapper .catalog_pagination-more-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}
.catalog_pagination-wrapper .catalog_pagination-inner {
    display: flex;
    /* justify-content: space-between; */
    justify-content: center;
    align-items: center;
    /* max-width: 600px; */
    margin: 0 auto;

}

.catalog_pagination-inner .pagination-arrow-wrapper:first-child
{
    margin-right: 40px;
}
.catalog_pagination-inner .pagination-arrow-wrapper:last-child
{
    margin-left: 40px;
}
@media screen and (max-width:450px)
{
    .catalog_pagination-inner .pagination-arrow-wrapper:first-child
    {
        margin-right: 25px;
    }
    .catalog_pagination-inner .pagination-arrow-wrapper:last-child
    {
        margin-left: 25px;
    }  
}
@media screen and (max-width:335px)
{
    .catalog_pagination-inner .pagination-arrow-wrapper:first-child
    {
        margin-right: 15px;
    }
    .catalog_pagination-inner .pagination-arrow-wrapper:last-child
    {
        margin-left: 15px;
    }  
}

.pagination-arrow.left {
    transform: rotate(180deg);
}
.catalog_pagination-wrapper .pagination-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination-number {
    display: flex;
    --el-size: 40px;
    justify-content: center;
    align-items: center;
    width: var(--el-size);
    height: var(--el-size);
    border: solid 1px transparent;
    border-radius: 5px;

    font-weight: 600;
    font-size: 14px;
    line-height: 17px;

    color: #000000;
}
.pagination-number.active {
    background-color: #ECF0F0;
    pointer-events: none;
}
.pagination-number:not(.pagination-number_delim, .active):hover {
    border-color: #556871;
}

@media screen and (max-width:450px) {
    .pagination-number{
        --el-size: 30px
    }
}
/* End */
/* /local/templates/mm_main/assets/css/components/catalog-section-list.css?177988425125805 */
/* /local/templates/.default/components/bitrix/catalog/catalog.mm/bitrix/catalog.section/.default/seo-styles.css?1779884247700 */
/* /local/templates/.default/components/bitrix/catalog.smart.filter/filter.mm/style.css?177988424914168 */
/* /local/templates/.default/components/bitrix/system.pagenavigation/mm_nav-loadmore/style.css?17798842452267 */
