
/* Все ваши стили остаются без изменений */
.resume-dialog[data-v-f5503b04] {
  position: relative;
  width: 600px;
  max-width: 100vw;
  height: 100vh;
  max-height: 100vh;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 217, 255, 0.3);
  overflow: hidden;
  border-radius: 0;
  display: flex;
  flex-direction: column;
}
.resume-dialog.dark[data-v-f5503b04] {
  background: rgba(0, 0, 0, 0.98) !important;
}

/* Сетка диалога */
.dialog-grid[data-v-f5503b04] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
}
.dialog-line-h[data-v-f5503b04],
.dialog-line-v[data-v-f5503b04] {
  position: absolute;
  background: #00d9ff;
}
.dialog-line-h[data-v-f5503b04] {
  left: 0;
  width: 100%;
  height: 1px;
}
.dialog-line-v[data-v-f5503b04] {
  top: 0;
  height: 100%;
  width: 1px;
}

/* Угловые маркеры */
.dialog-corners[data-v-f5503b04] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.corner[data-v-f5503b04] {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #00d9ff;
  opacity: 0.3;
}
.corner-tl[data-v-f5503b04] {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}
.corner-tr[data-v-f5503b04] {
  top: 10px;
  right: 10px;
  border-left: none;
  border-bottom: none;
}
.corner-bl[data-v-f5503b04] {
  bottom: 10px;
  left: 10px;
  border-right: none;
  border-top: none;
}
.corner-br[data-v-f5503b04] {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
}

/* Фиксированный заголовок */
.dialog-header-fixed[data-v-f5503b04] {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0, 217, 255, 0.1);
  background: inherit;
  flex-shrink: 0;
}
.header-content[data-v-f5503b04] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-icon-wrapper[data-v-f5503b04] {
  padding: 8px;
  border-radius: 50%;
  background: rgba(0, 217, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-icon[data-v-f5503b04] {
  transition: all 0.3s ease;
}
.header-titles[data-v-f5503b04] {
  display: flex;
  flex-direction: column;
}
.header-label[data-v-f5503b04] {
  font-size: 11px;
  letter-spacing: 1px;
  opacity: 0.8;
  line-height: 1.2;
}
.header-title[data-v-f5503b04] {
  margin: 2px 0 0;
  font-weight: 600;
  font-size: 1rem;
}

/* Область прокрутки */
.dialog-scroll-area[data-v-f5503b04] {
  position: relative;
  z-index: 2;
  flex: 1;
  width: 100%;
}
.dialog-content[data-v-f5503b04] {
  padding: 16px 20px;
}

/* Заметка */
.resume-note[data-v-f5503b04] {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  background: rgba(0, 217, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid #00d9ff;
  margin-bottom: 16px;
}
.note-icon[data-v-f5503b04] {
  margin-top: 2px;
  flex-shrink: 0;
}
.resume-note p[data-v-f5503b04] {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.8;
}

/* Форма */
.resume-form[data-v-f5503b04] {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.field-wrapper[data-v-f5503b04] {
  position: relative;
}

/* Кастомные инпуты */
.custom-input[data-v-f5503b04] .q-field__control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px;
}
.custom-input[data-v-f5503b04] .q-field__control:hover {
  border-color: #00d9ff;
  background: rgba(0, 217, 255, 0.02);
}
.custom-input[data-v-f5503b04] .q-field__control:focus-within {
  border-color: #00d9ff;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.1);
}
.custom-input.dark[data-v-f5503b04] .q-field__control {
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 217, 255, 0.3);
}
.custom-input[data-v-f5503b04] .q-field__label {
  color: rgba(0, 0, 0, 0.6);
  font-size: 13px;
}
.custom-input.dark[data-v-f5503b04] .q-field__label {
  color: rgba(255, 255, 255, 0.6);
}

/* Стили для ошибок */
.custom-input.error[data-v-f5503b04] .q-field__control {
  border-color: #ff4444 !important;
}
.custom-input.error[data-v-f5503b04] .q-field__label {
  color: #ff4444 !important;
}
.custom-input[data-v-f5503b04] .q-field__messages {
  color: #ff4444;
  font-size: 11px;
  margin-top: 2px;
}
.input-icon-wrapper[data-v-f5503b04] {
  padding: 2px;
  transition: all 0.3s ease;
}

/* Файловый инпут */
.file-input.has-file[data-v-f5503b04] .q-field__control {
  border-color: #00d9ff;
  background: rgba(0, 217, 255, 0.05);
}
.file-info[data-v-f5503b04] {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  padding: 6px 10px;
  background: rgba(0, 217, 255, 0.05);
  border-radius: 6px;
  font-size: 12px;
}
.file-name[data-v-f5503b04] {
  color: #00d9ff;
  font-weight: 500;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.file-size[data-v-f5503b04] {
  color: rgba(0, 0, 0, 0.5);
  font-size: 11px;
}
.dark .file-size[data-v-f5503b04] {
  color: rgba(255, 255, 255, 0.5);
}

/* Чипы отделов */
.department-chip[data-v-f5503b04] {
  background: rgba(0, 217, 255, 0.1) !important;
  color: #00d9ff !important;
  border: 1px solid rgba(0, 217, 255, 0.3);
  transition: all 0.3s ease;
  font-size: 12px;
  height: 24px;
}

/* Фиксированные действия внизу */
.dialog-actions-fixed[data-v-f5503b04] {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 12px 20px 16px;
  border-top: 1px solid rgba(0, 217, 255, 0.1);
  background: inherit;
  flex-shrink: 0;
}
.cancel-btn[data-v-f5503b04] {
  transition: all 0.3s ease;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  padding: 6px 12px;
}
.dark .cancel-btn[data-v-f5503b04] {
  color: rgba(255, 255, 255, 0.6);
}
.cancel-btn[data-v-f5503b04]:hover {
  color: #00d9ff;
  background: rgba(0, 217, 255, 0.1);
}
.submit-btn[data-v-f5503b04] {
  background: transparent !important;
  border: 1px solid #00d9ff;
  color: #00d9ff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-width: 140px;
  height: 40px;
  font-size: 14px;
}
.submit-btn[data-v-f5503b04]::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(0, 217, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.submit-btn[data-v-f5503b04]:hover::before {
  width: 300px;
  height: 300px;
}
.submit-btn[data-v-f5503b04]:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(0, 217, 255, 0.2);
}
.submit-btn[data-v-f5503b04]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Кнопка закрытия */
.close-btn[data-v-f5503b04] {
  transition: all 0.3s ease;
  color: #00d9ff;
  flex-shrink: 0;
}
.close-btn[data-v-f5503b04]:hover {
  transform: rotate(90deg) scale(1.1);
  background: rgba(0, 217, 255, 0.1);
}

/* Стили для кастомных уведомлений (из Email.vue) */
.notification[data-v-f5503b04] {
  position: absolute;
  bottom: 80px;
  left: 20px;
  right: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: white;
  font-size: 14px;
  animation: slideUp-f5503b04 0.3s ease;
}
.notification.success[data-v-f5503b04] {
  background-color: #4caf50;
}
.notification.error[data-v-f5503b04] {
  background-color: #f44336;
}
.notification.warning[data-v-f5503b04] {
  background-color: #ff9800;
}
.notification.info[data-v-f5503b04] {
  background-color: #2196f3;
}
.notification-content[data-v-f5503b04] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.notification .q-icon[data-v-f5503b04] {
  color: white;
}
.notification .q-btn[data-v-f5503b04] {
  color: white;
  margin-left: 8px;
}

/* Декоративные элементы */
.dialog-decoration[data-v-f5503b04] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.decoration-dot[data-v-f5503b04] {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #00d9ff;
  border-radius: 50%;
  opacity: 0.2;
}
.dot-1[data-v-f5503b04] {
  top: 20%;
  right: 15%;
}
.dot-2[data-v-f5503b04] {
  bottom: 30%;
  left: 10%;
}
.dot-3[data-v-f5503b04] {
  top: 40%;
  left: 20%;
}

/* Стили для QScrollArea */
[data-v-f5503b04] .q-scrollarea {
  width: 100%;
  height: 100% !important;
}
[data-v-f5503b04] .q-scrollarea__container {
  width: 100% !important;
  height: 100% !important;
}
[data-v-f5503b04] .q-scrollarea__content {
  width: 100% !important;
}
[data-v-f5503b04] .q-scrollarea__thumb {
  background: rgba(0, 217, 255, 0.3);
  opacity: 0.5;
  width: 4px !important;
}
[data-v-f5503b04] .q-scrollarea__thumb:hover {
  opacity: 1;
}

/* Анимации */
@keyframes expandLine-f5503b04 {
0% { opacity: 0; transform: scaleX(0) scaleY(0);
}
50% { opacity: 0.5;
}
100% { opacity: 1; transform: scaleX(1) scaleY(1);
}
}
@keyframes fadeInScale-f5503b04 {
from { opacity: 0; transform: scale(0.9);
}
to { opacity: 1; transform: scale(1);
}
}
@keyframes fadeInUp-f5503b04 {
from { opacity: 0; transform: translateY(20px);
}
to { opacity: 1; transform: translateY(0);
}
}
@keyframes slideDown-f5503b04 {
from { opacity: 0; transform: translateY(-20px);
}
to { opacity: 1; transform: translateY(0);
}
}
@keyframes rotateIn-f5503b04 {
from { opacity: 0; transform: rotate(-180deg) scale(0.3);
}
to { opacity: 1; transform: rotate(0) scale(1);
}
}
@keyframes float-f5503b04 {
0%, 100% { transform: translateY(0);
}
50% { transform: translateY(-3px);
}
}
@keyframes pulse-f5503b04 {
0%, 100% { opacity: 0.2; transform: scale(1);
}
50% { opacity: 0.5; transform: scale(1.5);
}
}
@keyframes slideUp-f5503b04 {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

/* Классы анимаций */
.animate-grid-line[data-v-f5503b04] {
  opacity: 0;
  animation: expandLine-f5503b04 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.animate-marker[data-v-f5503b04] {
  opacity: 0;
  animation: rotateIn-f5503b04 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.animate-slide-down[data-v-f5503b04] {
  opacity: 0;
  animation: slideDown-f5503b04 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.animate-slide-up[data-v-f5503b04] {
  opacity: 0;
  animation: fadeInUp-f5503b04 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.animate-scale[data-v-f5503b04] {
  opacity: 0;
  animation: fadeInScale-f5503b04 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.animate-rotate[data-v-f5503b04] {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-pulse[data-v-f5503b04] {
  animation: pulse-f5503b04 2s infinite ease-in-out;
}
.animate-icon-wrapper[data-v-f5503b04] {
  animation: float-f5503b04 3s infinite ease-in-out;
}
.fade-enter-active[data-v-f5503b04],
.fade-leave-active[data-v-f5503b04] {
  transition: opacity 0.3s ease;
}
.fade-enter-from[data-v-f5503b04],
.fade-leave-to[data-v-f5503b04] {
  opacity: 0;
}

/* Уменьшение анимации для пользователей с настройками */
@media (prefers-reduced-motion: reduce) {
[data-v-f5503b04] {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}
}

/* Десктоп версия */
@media (min-width: 601px) {
.resume-dialog[data-v-f5503b04] {
    width: 600px;
    height: 90vh;
    max-height: 700px;
    border-radius: 16px;
}
.dialog-header-fixed[data-v-f5503b04] {
    padding: 20px 24px;
}
.dialog-content[data-v-f5503b04] {
    padding: 20px 24px;
}
.header-icon-wrapper[data-v-f5503b04] {
    padding: 12px;
}
.header-title[data-v-f5503b04] {
    font-size: 1.2rem;
}
.custom-input[data-v-f5503b04] .q-field__control {
    min-height: 56px;
}
.submit-btn[data-v-f5503b04] {
    height: 44px;
    font-size: 15px;
}
.notification[data-v-f5503b04] {
    bottom: 90px;
}
}

/* Мобильная версия */
@media (max-width: 600px) {
.dialog-header-fixed[data-v-f5503b04] {
    padding: 12px 16px;
}
.dialog-content[data-v-f5503b04] {
    padding: 12px 16px;
}
.dialog-actions-fixed[data-v-f5503b04] {
    padding: 12px 16px;
}
.header-icon-wrapper[data-v-f5503b04] {
    padding: 6px;
}
.header-icon[data-v-f5503b04] {
    font-size: 24px;
}
.header-label[data-v-f5503b04] {
    font-size: 10px;
}
.header-title[data-v-f5503b04] {
    font-size: 0.9rem;
}
.resume-note[data-v-f5503b04] {
    padding: 10px;
}
.resume-note p[data-v-f5503b04] {
    font-size: 12px;
}
.resume-form[data-v-f5503b04] {
    gap: 12px;
}
.custom-input[data-v-f5503b04] .q-field__control {
    min-height: 40px;
}
.custom-input[data-v-f5503b04] .q-field__label {
    font-size: 12px;
}
.file-info[data-v-f5503b04] {
    padding: 4px 8px;
    font-size: 11px;
}
.file-name[data-v-f5503b04] {
    max-width: 120px;
}
.dialog-actions-fixed[data-v-f5503b04] {
    gap: 8px;
}
.cancel-btn[data-v-f5503b04] {
    font-size: 13px;
    padding: 4px 10px;
}
.submit-btn[data-v-f5503b04] {
    min-width: 120px;
    height: 36px;
    font-size: 13px;
}
.decoration-dot[data-v-f5503b04] {
    display: none;
}
.notification[data-v-f5503b04] {
    bottom: 70px;
    left: 16px;
    right: 16px;
    padding: 10px 14px;
    font-size: 13px;
}
}

.social-buttons[data-v-ae79940d] {
  display: flex;
  gap: 10px;
  font-family: 'Courier New', monospace;
  z-index: 1000;
}
.social-buttons.vertical[data-v-ae79940d] {
  flex-direction: column;
}

/* Позиционирование */
.social-buttons.fixed-left[data-v-ae79940d] {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.social-buttons.fixed-right[data-v-ae79940d] {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.social-buttons.fixed-bottom[data-v-ae79940d] {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.social-btn[data-v-ae79940d] {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Размеры */
.social-btn.size-small[data-v-ae79940d] {
  width: 36px;
  height: 36px;
  border-radius: 4px;
}
.social-btn.size-medium[data-v-ae79940d] {
  width: 48px;
  height: 48px;
  border-radius: 6px;
}
.social-btn.size-large[data-v-ae79940d] {
  width: 60px;
  height: 60px;
  border-radius: 8px;
}
.social-btn.with-label[data-v-ae79940d] {
  width: auto;
  padding: 0 16px;
  gap: 8px;
}
.social-btn.with-label.size-small[data-v-ae79940d] {
  height: 36px;
  font-size: 12px;
}
.social-btn.with-label.size-medium[data-v-ae79940d] {
  height: 48px;
  font-size: 14px;
}
.social-btn.with-label.size-large[data-v-ae79940d] {
  height: 60px;
  font-size: 16px;
}

/* Иконки */
.social-icon[data-v-ae79940d] {
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icon svg[data-v-ae79940d] {
  fill: currentColor;
  transition: transform 0.3s ease;
}

/* ========== ЦВЕТНЫЕ КНОПКИ (colored) ========== */
.social-btn.colored.instagram[data-v-ae79940d] { background: linear-gradient(45deg, #f09433 0%, #d62976 50%, #962fbf 100%);
}
.social-btn.colored.behance[data-v-ae79940d] { background: #1769ff;
}
.social-btn.colored.youtube[data-v-ae79940d] { background: #ff0000;
}
.social-btn.colored.facebook[data-v-ae79940d] { background: #1877f2;
}
.social-btn.colored.vk[data-v-ae79940d] { background: #4a76a8;
}
.social-btn.colored.pinterest[data-v-ae79940d] { background: #bd081c;
}
.social-btn.colored.linkedin[data-v-ae79940d] { background: #0077b5;
}
.social-btn.colored.telegram[data-v-ae79940d] { background: #0088cc;
}
.social-btn.colored[data-v-ae79940d] {
  color: white;
}

/* ========== МОНОХРОМНЫЕ КНОПКИ (monochrome) ========== */
.social-btn.monochrome[data-v-ae79940d] {
  background: #333;
  color: white;
}

/* В светлой теме */
.social-buttons:not(.dark-mode) .social-btn.monochrome[data-v-ae79940d] {
  background: #f0f0f0;
  color: #333;
  border: 1px solid #ddd;
}
.social-btn.monochrome[data-v-ae79940d]:hover {
  background: #555;
}
.social-buttons:not(.dark-mode) .social-btn.monochrome[data-v-ae79940d]:hover {
  background: #e0e0e0;
}

/* ========== АРХИТЕКТУРНЫЙ СТИЛЬ (arch) ========== */
.social-btn.arch-style[data-v-ae79940d] {
  border: 1px solid;
  background: transparent !important;
  position: relative;
  transition: all 0.3s ease;
}

/* Светлая тема */
.social-buttons:not(.dark-mode) .social-btn.arch-style[data-v-ae79940d] {
  border-color: rgba(0, 217, 255, 0.5);
  color: #00d9ff;
}

/* Темная тема */
.social-buttons.dark-mode .social-btn.arch-style[data-v-ae79940d] {
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

/* Угловые маркеры */
.social-btn.arch-style[data-v-ae79940d]::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 8px;
  height: 8px;
  border-top: 1px solid;
  border-left: 1px solid;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.social-btn.arch-style[data-v-ae79940d]::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Светлая тема - цвет маркеров */
.social-buttons:not(.dark-mode) .social-btn.arch-style[data-v-ae79940d]::before,
.social-buttons:not(.dark-mode) .social-btn.arch-style[data-v-ae79940d]::after {
  border-color: #00d9ff;
}

/* Темная тема - цвет маркеров */
.social-buttons.dark-mode .social-btn.arch-style[data-v-ae79940d]::before,
.social-buttons.dark-mode .social-btn.arch-style[data-v-ae79940d]::after {
  border-color: #ffffff;
}
.social-btn.arch-style[data-v-ae79940d]:hover::before,
.social-btn.arch-style[data-v-ae79940d]:hover::after {
  opacity: 1;
}

/* Hover эффекты для архитектурного стиля */
.social-buttons:not(.dark-mode) .social-btn.arch-style[data-v-ae79940d]:hover {
  background: rgba(0, 217, 255, 0.1) !important;
  border-color: #00d9ff;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}
.social-buttons.dark-mode .social-btn.arch-style[data-v-ae79940d]:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: #ffffff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* ========== ОБЩИЕ ЭФФЕКТЫ ========== */
.social-btn[data-v-ae79940d]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
  z-index: 0;
}
.social-btn[data-v-ae79940d]:hover::before {
  left: 0;
}
.social-btn:hover .social-icon svg[data-v-ae79940d] {
  transform: scale(1.1);
}
.social-btn[data-v-ae79940d]:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
.social-btn[data-v-ae79940d]:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Анимация появления */
@keyframes slideIn-ae79940d {
from {
    opacity: 0;
    transform: translateX(-20px);
}
to {
    opacity: 1;
    transform: translateX(0);
}
}
.social-btn[data-v-ae79940d] {
  animation: slideIn-ae79940d 0.5s ease forwards;
  animation-delay: calc(0.05s * var(--index));
}

/* Адаптивность */
@media (max-width: 768px) {
.social-buttons.fixed-left[data-v-ae79940d],
  .social-buttons.fixed-right[data-v-ae79940d] {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    padding: 20px;
}
.social-buttons.fixed-bottom[data-v-ae79940d] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    justify-content: center;
    backdrop-filter: blur(10px);
    z-index: 9999;
}
.social-buttons.fixed-bottom.dark-mode[data-v-ae79940d] {
    background: rgba(0, 0, 0, 0.9);
}
.social-buttons.fixed-bottom[data-v-ae79940d]:not(.dark-mode) {
    background: rgba(255, 255, 255, 0.9);
}
.social-btn.with-label .social-label[data-v-ae79940d] {
    display: none;
}
.social-btn.with-label[data-v-ae79940d] {
    padding: 0;
    width: 40px;
    height: 40px;
}
}
@media (max-width: 480px) {
.social-buttons.fixed-bottom[data-v-ae79940d] {
    padding: 8px;
    gap: 8px;
}
.social-btn.size-small[data-v-ae79940d],
  .social-btn.size-medium[data-v-ae79940d],
  .social-btn.size-large[data-v-ae79940d] {
    width: 36px;
    height: 36px;
}
}
