.tt-floating-actions {
  position: fixed;
  right: 20px;
  bottom: 19px;
  z-index: 9999;
}

.tt-floating-actions__panel {
  width: min(330px, calc(100vw - 32px));
  background: #efefef;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  margin-bottom: 14px;
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.tt-floating-actions__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  color: #181818;
  text-decoration: none;
  background: #efefef;
  border-bottom: 1px solid #dbdbdb;
}
.tt-floating-actions__item:last-child {
  border-bottom: 0;
}

.tt-floating-actions__item:hover {
  background: #e6e6e6;
}

.tt-floating-actions__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex: 0 0 38px;
  font-size: 17px;
}

.tt-floating-actions__icon--map { background: #0ea85f; }
.tt-floating-actions__icon--messenger { background: #168df0; }
.tt-floating-actions__icon--phone { background: #ff7a27; }

.tt-floating-actions__text {
  font-size: 16px;
  line-height: 1.25;
}

.tt-floating-actions__toggle {
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: #cc0b2f;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: block;
  margin-left: auto;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.tt-floating-actions.is-collapsed .tt-floating-actions__panel {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
}
.tt-backtop {
  position: fixed;
  right: 20px;
  bottom: 90px;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: #046bbe;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  z-index: 1000;
}

.tt-backtop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 575.98px) {
  .tt-floating-actions {
    right: 10px;
    bottom: 10px;
  }

  .tt-floating-actions__panel {
    width: min(330px, calc(100vw - 20px));
    margin-bottom: 10px;
  }

  .tt-floating-actions__text {
    font-size: 15px;
  }

  .tt-floating-actions__toggle {
    width: 50px;
    height: 50px;
    font-size: 28px;
  }

  .tt-backtop {
    right: 10px;
    bottom: 80px;
  }
}
