.contact-flyout {
  position: fixed;
  right: 0;
  top: 75%;
  transform: translateY(-50%);
  z-index: 9999;
}

.contact-flyout__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-flyout__list-item {
  margin: 0;
  padding: 0;
}

.contact-flyout__item {
  position: relative;
  display: block;
  width: 52px;
  height: 52px;
  overflow: hidden;
  margin-left: auto;
  background: #e30a14;
  color: #fff !important;
  text-decoration: none !important;
  transition: width 0.25s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
}

.contact-flyout__item:hover,
.contact-flyout__item:focus,
.contact-flyout__item:active {
  width: 230px;
  color: #fff !important;
  text-decoration: none !important;
}

.contact-flyout__item:focus-visible {
  outline: 3px solid #111;
  outline-offset: 2px;
}

.contact-flyout__icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  background: #e30a14;
  font-size: 22px;
  line-height: 1;
  z-index: 2;
}

.contact-flyout__icon .fa,
.contact-flyout__item .fa {
  display: block;
  color: #fff !important;
  font-size: 22px;
  line-height: 1;
}

.contact-flyout__label {
  position: absolute;
  top: 0;
  right: 52px;
  width: 178px;
  height: 52px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  box-sizing: border-box;
  color: #fff !important;
  background: #e30a14;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  transform: translateX(10px);
  transition: transform 0.25s ease;
  z-index: 1;
}

.contact-flyout__item:hover .contact-flyout__label,
.contact-flyout__item:focus .contact-flyout__label,
.contact-flyout__item:focus-visible .contact-flyout__label {
  transform: translateX(0);
}

@media (max-width: 767px) {
  .contact-flyout {
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    transform: none;
  }

  .contact-flyout__list {
    flex-direction: row;
    gap: 0;
  }

  .contact-flyout__list-item {
    width: 33.333%;
  }

  .contact-flyout__item,
  .contact-flyout__item:hover,
  .contact-flyout__item:focus,
  .contact-flyout__item:active {
    width: 100%;
    height: 58px;
    box-shadow: none;
  }

  .contact-flyout__label {
    display: none;
  }

  .contact-flyout__icon {
    position: static;
    width: 100%;
    height: 58px;
    background: #e30a14;
    font-size: 24px;
  }

  .contact-flyout__icon .fa,
  .contact-flyout__item .fa {
    font-size: 24px;
    color: #fff !important;
  }
}