<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
.tabs-container {
  position: fixed;
  position: block;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 1000;
}
.tabs-container .tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 8px;
  width: 50px;
  height: 50px;
  background-color: #fff;
  color: white;
  text-decoration: none;
  overflow: hidden;
  transition: width 0.4s ease, height 0.4s ease, border-right 0.3s ease;
  border: 3px solid #fff;
  border-width: 3px 0 3px 3px;
  border-radius: 25px 0 0 25px;
}
.tabs-container .tab--calculate-cost {
  background-color: #52b6ec;
}
.tabs-container .tab--callback {
  background-color: #f57a27;
}
.tabs-container .tab--whatsapp {
  background-color: #25d366;
  padding-left: 5px;
}
.tabs-container .tab__icon {
  width: 33px;
  height: 33px;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: center;
  justify-content: space-between;
}
.tabs-container .tab__icon img {
  flex: 0 0 33px;
}
.tabs-container .tab__icon--callback {
  width: 31px;
  height: 31px;
}
.tabs-container .tab__icon--callback img {
  flex: 0 0 31px;
}
.tabs-container .tab__icon--whatsapp {
  width: 39px;
  height: 39px;
}
.tabs-container .tab__icon--whatsapp img {
  flex: 0 0 39px;
}
.tabs-container .tab__text {
  display: none;
  font-size: 13px;
  flex: 1;
  color: #fff;
  white-space: nowrap;
}
.tabs-container .tab:hover, .tabs-container .tab--active {
  width: 140px;
  height: 50px; /* Увеличиваем высоту для текста */
  border-width: 3px;
}
.tabs-container .tab:hover .tab--icon, .tabs-container .tab--active .tab--icon {
  width: 100%;
}
.tabs-container .tab:hover .tab__text, .tabs-container .tab--active .tab__text {
  display: block; /* Показываем текст */
}

/* Десктоп - всегда раскрыты */
@media (min-width: 1025px) {
  .tabs-container .tab {
    width: 140px;
    height: 50px; /* Увеличиваем высоту для текста */
    border-width: 3px;
  }
  .tabs-container .tab .tab--icon {
    width: 100%;
  }
  .tabs-container .tab .tab__text {
    display: block; /* Показываем текст */
  }
}</pre></body></html>