.custom-logo-top {
    background: url('../img/new-logo.jpg') no-repeat;
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    background-color: #fff;
}

.custom-logo-top:hover {
    background-color: #fff;
    border: none;
}

.contact-list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media(max-width:480px) {
    .contact-list ul {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
}

div#block-34 {
    margin: 20px auto 0;
}

div#block-36 .social-color a svg {
    fill: #fff;
}

div#block-36 .social-color a:hover svg {
    fill: #f0148f;
}

@media(max-width:1720px) {
    div#block-34 {
        margin: 0 0 0 auto;
    }
}


/* banner */
#banner-home .swiper-slide-bg {
    background-size: contain !important;
}

@media (max-width:1925px) {
    #banner-home .swiper-slide {
        height: 526px !important;
    }
}

@media (max-width:1660px) {
    #banner-home .swiper-slide {
        height: 447px !important;
    }
}

@media (max-width:1445px) {
    #banner-home .swiper-slide {
        height: 395px !important;
    }
}

@media (max-width:1205px) {
    #banner-home .swiper-slide {
        height: 320px !important;
    }
}

@media (max-width:994px) {
    #banner-home .swiper-slide {
        height: 255px !important;
    }
}

@media (max-width:790px) {
    #banner-home .swiper-slide {
        height: 212px !important;
    }
}

@media (max-width:700px) {
    #banner-home .swiper-slide {
        height: 190px !important;
    }
}

@media (max-width:580px) {
    #banner-home .swiper-slide {
        height: 155px !important;
    }
}

@media (max-width:465px) {
    #banner-home .swiper-slide {
        height: 120px !important;
    }

    .lubrykanty-category h3 {
        font-size: 16px;
    }

    .lubrykanty-category img {
        width: 138px;
        height: 138px;
        object-fit: contain;
    }

    .lubrykanty-category .elementor-element-populated {
        justify-content: center;
    }
}

@media (max-width:380px) {
    #banner-home .swiper-slide {
        height: 85px !important;
    }
}

/* Стили от Ivandikov Igor */
/* Комментарий в карточках товаров */
.package {
    font-weight: bold;
    color: #C71585;
    position: relative;
    opacity: 1;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Стиль для анкоров */
.anchor {
    text-decoration: none;
    position: relative;
}

.anchor::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: currentColor;
    transition: width 0.3s ease-in-out;
}

.anchor:hover::after {
    width: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fadeIn {
    animation-name: fadeIn;
}

.wrapper-modal {
    width: 100%;
    height: 100%;
    display: none;
    position: relative;
}

.wrapper-modal.active {
    display: block;
}

.overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    background-color: #eee;
    border-radius: 10px;
    opacity: 0.5;
}

.content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 474px;
    z-index: 55;
    /* border-radius: 10px; */
    background-color: #ffffff;
    padding: 30px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.5s ease;
}

.content__title {
    font-weight: 700;
    font-size: 55px;
    margin-bottom: 15px;
    text-align: center;
    color: #f0148f;
}

.content__text {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}

.content__button {
    display: flex;
    justify-content: space-between;
    margin: 35px 0 10px;
}

.content__button a {
    font-size: 15px;
    font-weight: 500;
    padding: 10px 25px;
}

.close-modal {
    cursor: pointer;
    background: #0a0500;
    color: #fff;
}

.close-modal:hover {
    background: #f0148f;
    color: #fff;
}

.open-link {
    cursor: pointer;
    background: #fff;
    color: #f0148f;
    border: 1px solid #f0148f;
    ;
}

.open-link:hover {
    background: #f0148f;
    color: #fff;
}

@media(max-width:800px) {
    .content__button {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media(max-width:480px) {
    .content {
        padding: 20px;
        max-width: 100%;
        width: 92%;
    }
}

.category-section h3{
 text-align: center;
}
.category-section h3 a{
color:#000;
}
#scrollToTopBtn{
    cursor: pointer;
}