/** Виджет иконок соц.сетей */
.all-in-one-social-button {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.all-in-one-social-button .items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transition: all .2s ease-in-out;
  pointer-events: none;
}
.all-in-one-social-button .items.opened {
  opacity: 1;
  pointer-events: all;
}
.all-in-one-social-button .social-button {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background-color: #093567;
  box-shadow: 0 0 10px rgba(0, 0, 0, .3);
  transition: background-color .2s ease-in-out;
}
.all-in-one-social-button .social-button:hover {
  cursor: pointer;
  background-color: #d2253a;
}
.all-in-one-social-button svg path{
  fill: #fff;
}
.all-in-one-social-button .toggle-button--active {
  background-color: #d2253a;
}
.all-in-one-social-button .toggle-button > svg {
  display: none;
}
.all-in-one-social-button .toggle-button--active svg {
  display: block;
}
.all-in-one-social-button .toggle-icons {
  height: 52px;
  position: relative;
}
.all-in-one-social-button .toggle-icons svg {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .4s ease-out;
}
.all-in-one-social-button .toggle-button--active .toggle-icons {
  opacity: 0;
} 
.all-in-one-social-button .toggle-icons .toggle-icon-active {
  opacity: 1;
}
.all-in-one-social-button svg.telegram-icon {
  transform: none;
  top: 15px;
  left: 12px;
}
.all-in-one-social-button .no-shadow {
  box-shadow: none;
}
.all-in-one-social-button .phone {
  background-color: #00b494;
}
.all-in-one-social-button.telegram {
  background-color: #0088cc;
  justify-content: flex-start;
  align-items: flex-start;
}
.all-in-one-social-button .telegram  svg {
  margin-top: 2px;
  margin-left: -5px;
}
.all-in-one-social-button .whatsapp {
  background-color: #40c351;
}
.all-in-one-social-button .vk {
  background-color: #07f;
}
.all-in-one-social-button .email {
  background-color: #44bb6e;
}
/** Конец Виджет иконок соц.сетей */