@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.wrap-order-button {
  width: inherit;
  position: fixed;
  bottom: 0;
  z-index: 999;
  background-color: #ffffff;
  padding: 15px 0px;

  .cover-contact-service {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    right: 5px;
    bottom: 50px;
    animation: fadeIn 1s;
    margin-bottom: 15px;

    .contact-box {
      width: 60px;
      height: 60px;
      border-radius: 24px;
      background: #f1f5f9;
      box-shadow: 4px 4px 10px rgba(41, 45, 47, 0.1), -4px 4px 10px rgba(255, 255, 255, 0.6);
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 10px;

      &:hover {
        cursor: pointer;
      }

      img {
        width: 43px;
        height: 43px;
      }
    }
  }

  .cover-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    button {
      border: none;
      height: 44px;
      font-size: 18px;
      text-align: center;

      &:hover {
        cursor: pointer;
      }

      svg {
        font-size: 24px;
        color: white;
      }
    }

    .btn-contact {
      width: 70px;
      box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 10px;
      opacity: 0.8;

      img {
        width: 30px;
        height: 30px;
      }
    }
  }
}
