.btn-custom {
    padding: 14px 58px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: var(--color-black);
    background-color: white;
    transition: var(--transition-default);
    cursor: pointer;
    display: inline-block;
    text-align: center;

    @media (max-width: 380px) {
        width: 100%;
    }
}

@media screen and (max-width: 380px) {
    .btn-custom {
        width: 100%;
    }
}

.btn-custom--isHovered {
    padding: 14px 58px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    background-color: white;
    transition: var(--transition-default);
    cursor: pointer;
    color: var(--color-blue-new);
}

.btn-custom--isActive {
    padding: 14px 58px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    background-color: white;
    transition: var(--transition-default);
    cursor: pointer;
    color: var(--color-light-blue2);
}

.btn-custom--isDisabled {
    padding: 14px 58px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    background-color: white;
    transition: var(--transition-default);
    color: var(--color-grey-btn);
    pointer-events: none;
    cursor: not-allowed;
}

.btn-custom:hover {
    color: var(--color-blue-new);
}

.btn-custom:active {
    color: var(--color-light-blue2);
}

.btn-custom:disabled {
    color: var(--color-grey-btn);
    pointer-events: none;
    cursor: not-allowed;
}


.btn-custom-bordered {
    padding-block: 14px;
    padding-inline: 103px;
    border: 1px solid var(--color-light-blue2);
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: var(--color-light-blue2);
    background-color: white;
    border-radius: 5px;
    cursor: pointer;
}


.btn-custom-primary,
.btn-custom-primary:active {
    padding: 14px 58px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: white;
    background-color: var(--color-light-blue2);
    transition: var(--transition-default);
    cursor: pointer;
}

.btn-custom-primary:hover {
    padding: 14px 58px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: white;
    background-color: var(--color-blue-new);
    transition: var(--transition-default);
    cursor: pointer;
}


.btn-custom-primary:disabled {
    padding: 14px 58px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: white;
    background-color: var(--color-grey-btn);
    transition: var(--transition-default);
    cursor: not-allowed;
}


/*Кнопка каталога*/
.btn-custom-menu {
    display: inline-grid;
    grid-template-columns: 24px auto;
    align-items: center;
    column-gap: 8px;
    user-select: none;
    cursor: pointer;
    border: 0;
    color: #ffffff;
    background-color: var(--color-blue-new);
    border-radius: 8px;
    padding: 0 16px;
    height: 44px;
    transition: var(--transition-default);
}

.btn-custom-menu:hover {
    background-color: var(--color-light-blue2);
}

.c-header--catalog-active .btn-custom-menu .c-button-menu__icon--burger {
    display: none;
}

.c-header--catalog-active .btn-custom-menu .c-button-menu__icon--close {
    display: block;
}


.btn-custom-primary-small {
    padding: 4px 16px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: white;
    background-color: var(--color-light-blue2);
    transition: var(--transition-default);
    cursor: pointer;
}

.btn-custom-primary-small:active {
    background-color: var(--color-light-blue1);
}

.btn-custom-primary-small:hover {
    background-color: var(--color-blue-new);
}

.btn-custom-primary-small:disabled {
    background-color: var(--color-grey-btn);
    cursor: not-allowed;
}


/*Круглые кнопки навигации*/
.btn-custom-circle {
    color: var(--color-black);
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(194, 198, 206, 0.3);
    transition: var(--transition-default);
    cursor: pointer;
    border-radius: 50%;
}

.btn-custom-circle--isWhite {
    background-color: white;
    color: #00477E;
}

.btn-custom-circle:hover {
    background-color: rgba(194, 198, 206, 0.7);
}

.btn-custom-circle:active {
    background-color: rgba(194, 198, 206, 0.9);
}

.btn-custom-circle:disabled {
    background-color: var(--color-grey-btn);
    color: #DDDDDD;
    cursor: not-allowed;
}

.btn-custom-circle--left svg{
    transform: rotate(180deg);
}

/*Кнопки переключения главного слайдера*/
.btn-custom-circle[data-js-front-slider-next],
.btn-custom-circle[data-js-front-slider-before] {
    @media (max-width: 1676px) {
        display: none;
    }
}

@media (max-width: 1676px) {
    .btn-custom-circle[data-js-front-slider-next],
    .btn-custom-circle[data-js-front-slider-before] {
        display: none;
    }
}

/*Кнопки переключения слайдера табов, производителей*/
.btn-custom-circle[data-js-salesHitsRight],
.btn-custom-circle[data-js-salesHitsLeft],
.btn-custom-circle[data-js-specialOfferRight],
.btn-custom-circle[data-js-specialOfferLeft],
.btn-custom-circle[data-js-manufatureleft],
.btn-custom-circle[data-js-manufatureright]
{
    z-index: 5;
    @media (max-width: 1024px) {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    .btn-custom-circle[data-js-salesHitsRight],
    .btn-custom-circle[data-js-salesHitsLeft],
    .btn-custom-circle[data-js-specialOfferRight],
    .btn-custom-circle[data-js-specialOfferLeft],
    .btn-custom-circle[data-js-manufatureleft],
    .btn-custom-circle[data-js-manufatureright] {
        display: none;
    }
}

/* Кнопки табы */
.btn-custom-tab {
    color: var(--color-black);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding: 12px 16px;
    border: 1px solid #DDDDDD;
    border-radius: 2px;
    transition: var(--transition-default);
}

.btn-custom-tab:hover {
    border-color: var(--color-blue-new);
    color: var(--color-blue-new);
    cursor: pointer;
}

.btn-custom-tab.isActive {
    background-color: var(--color-blue-new);
    border-color: var(--color-blue-new);
    color: #fff;
    font-weight: 700;
}

.isActive .swiper-button-lock {
    display: flex;
}
