

/* Start:/local/components/sw/share.vk/templates/.default/style.css?17737663043046*/
.vk-share__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: #0077ff;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 119, 255, 0.3);
    text-decoration: none;
    line-height: 1;
}

/* Стиль для кнопки без текста (только иконка) */
.vk-share__btn--no-text {
    padding: 0; /* Убираем паддинги */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.vk-share__btn--no-text .vk-share__icon {
    width: 20px;
    height: 20px;
    margin: 0; /* Убираем отступы */
    display: block;
}

.vk-share__btn--no-text:hover {
    transform: translateY(-2px);
}

.vk-share__btn:hover {
    background: #0066dd;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 119, 255, 0.4);
}

.vk-share__btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 119, 255, 0.3);
}

.vk-share__btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 119, 255, 0.3);
}

.vk-share__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.vk-share__icon-custom {
    object-fit: contain;
}

/* Размеры кнопки с текстом */
.vk-share__btn--small {
    padding: 6px 12px;
    font-size: 14px;
}

.vk-share__btn--small .vk-share__icon {
    width: 16px;
    height: 16px;
}

.vk-share__btn--large {
    padding: 14px 28px;
    font-size: 18px;
}

.vk-share__btn--large .vk-share__icon {
    width: 24px;
    height: 24px;
}

/* Варианты кнопок */
.vk-share__btn--outline {
    background: transparent;
    border: 2px solid #0077ff;
    color: #0077ff;
}

.vk-share__btn--outline:hover {
    background: #0077ff;
    color: white;
}

.vk-share__btn--minimal {
    background: transparent;
    color: #0077ff;
    box-shadow: none;
    padding: 5px 10px;
}

.vk-share__btn--minimal:hover {
    background: rgba(0, 119, 255, 0.1);
    transform: none;
    box-shadow: none;
}

/* Индикатор отладки */
.vk-share--debug .vk-share__btn {
    position: relative;
    overflow: visible;
}

.vk-share--debug .vk-share__btn::after {
    content: "🐛";
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 14px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Адаптивность */
@media (max-width: 576px) {
    .vk-share__btn {
        width: 100%;
        justify-content: center;
    }
    
    .vk-share__btn--no-text {
        width: 40px;
        height: 40px;
    }
}
/* End */
/* /local/components/sw/share.vk/templates/.default/style.css?17737663043046 */
