.catalog-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.catalog-socials__telegram {
    display: inline-flex;
    gap: 10px;
}

.catalog-socials__telegram i {
    font-size: 24px;
    line-height: 1;
}

/* формы обратной для кнопки с тел. трубкой */
.phone_button_wrapper, .phone_button_wrapper_pc {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 999;
}

.phone_button-border a {
    display: contents;
}

.phone_button-border img {
    max-width: 100%;
    height: auto;
}

.phone_button-border {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 4px;
    border-radius: 50%;
    border: 1px solid #e51f26;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.phone_button-pulse {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: 50%;
    border: 1px solid #e51f26;
}

.phone_button-pulse-animate {
    animation: widgetPulse infinite 1.5s;
}

@keyframes widgetPulse {
    0% {
        border: none;
    }

    50% {
        transform: scale(1, 1);
        opacity: 1
    }

    100% {
        transform: scale(2, 2);
        opacity: 0
    }
}

.phone_button-form {
    display: flex;
    position: absolute;
    transition: all 0.5s ease-in;
    overflow: hidden;
    width: 170px;
    height: 0px;
    right: 60px;
    bottom: -40px;
    flex-direction: column;
    justify-content: space-around;
    align-items: stretch;
}

.phone_button_wrapper_pc:hover>.phone_button-form {
    height: 130px;
}

.phone_button-form__call {
    background-color: #e51f26;
    padding: 5px 15px 5px 15px;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s;
}

.phone_button-form__call a, .phone_button-form__call span {
    color: white;
    text-decoration: none;
}

.phone_button-form__call:focus-visible {
    background-color: var(--color-green);
}

.phone_button-form__call:hover {
    background-color: var(--color-green);
}

.phone_button-form__call:active {
    background-color: var(--color-green);
}

.phone_callback-form {
    display: none;
    position: absolute;
    z-index: 10000;
    overflow: hidden;
    width: 312px;
    right: -10px;
    bottom: 60px;
    padding: 5px;
    background-color: white;
}

.bottom-max {
    z-index: 1;
    position: fixed;
    right: 30px;
    bottom: 215px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}

.bottom-max__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.bottom-telegram {
    z-index: 1;
    position: fixed;
    right: 30px;
    bottom: 155px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}

.bottom-telegram__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.catalog-socials__max {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.catalog-socials__max::before {
    content: '';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    background-image: url('/upload/icons/max.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

ul.bestof {
    --gap: 15px;
    --items: 3;
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap);
    padding: 0;
    margin: 0;
    list-style: none;
}

ul.bestof li {
    display: flex;
    width: calc((100% - (var(--items) - 1) * var(--gap)) / var(--items));
    padding: 10px;
    background-color: #777;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
}

ul.bestof li.dos {
    background-color: #888;
}

.big_promo_txt {
    font-size: 16px;
}

.promo_icon {
    display: inline-table;
}

.promo_icon img {
    max-width: 45px;
    margin-right: 5px;
}

.promo_txt {
    display: inline-table;
}

@media screen and (max-width: 480px) {
    .phone_button_wrapper {
        display: block;
    }
}

@media screen and (min-width: 481px) {
    .phone_button_wrapper_pc {
        display: block;
    }
}

@media(max-width: 767px) {
    .dlab-topbar-left {
        display: none;
    }

    ul.bestof {
        --items: 1;
    }

    .catalog-socials {
        flex-wrap: wrap;
    }

    .catalog-right {
        order: 1;
    }

    .catalog-left {
        order: 2;
    }
}