.don-hang-nhanh-wrapper {
  /* margin: 20px 10px; */
  width: 100%;
}

.don-hang-nhanh-wrapper__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 20px
}

.don-hang-nhanh-wrapper__grid-item {
  background-color: var(--tanspot-white);
  background: linear-gradient(to bottom, #D32128, #6D1115);
  color: var(--tanspot-white);
  padding: 10px;
  border-radius: 15px;
  font-size: 14px;
  border: 3px solid var(--tanspot-white);
  box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.2);
}

.don-hang-nhanh-wrapper__grid-item-border {
  border-top: 2px dashed var(--tanspot-white);
}

.don-hang-nhanh-wrapper__grid-item-info {
  display: flex;
  padding: 5px 0;
}

.don-hang-nhanh-wrapper__grid-item-info p:first-child {
  font-weight: bold;
  width: 30%;
}

.don-hang-nhanh-wrapper__grid-item-info p:last-child {
  width: 70%;
}

.don-hang-nhanh-wrapper__grid-item-info p {
  font-weight: bold;
}

.don-hang-nhanh-wrapper__grid-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.don-hang-nhanh-wrapper__grid-item-info-button {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}

.don-hang-nhanh-wrapper__grid-item-info-button button, .don-hang-nhanh-wrapper__grid-item-info-button a {
  background-color: var(--tanspot-white);
  color: var(--tanspot-base);
  font-weight: 700;
  text-align: center;
  padding: 8px;
  border-radius: 10px;
  font-size: 25px;
  border: none;
  cursor: pointer;
}

.contact__wrapper,
.contact__wrapper-mobile {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 3;
}

.contact__wrapper .contact__wrapper-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0065F7;
  border-radius: 15px;
  padding: 0 5px;
  color: #FFF;
  height: 50px;
  z-index: 1;
  cursor: pointer;
}

.contact__wrapper .contact__wrapper-inner {
  position: relative;
  margin-top: 10px;
  height: 70px;
  display: flex;
  justify-content: flex-end;
}

.contact__wrapper-inner.zalo {
  height: 70px;
}

.contact__wrapper .contact__wrapper-zalo {
  position: absolute;
  z-index: 1;
  -webkit-animation: phone-vr-circle-fill 1s infinite ease-in-out;
  animation: phone-vr-circle-fill 1s infinite ease-in-out;
}

.contact__wrapper .contact__wrapper-phone img {
  -webkit-animation: phone-vr-circle-fill 1s infinite ease-in-out;
  animation: phone-vr-circle-fill 1s infinite ease-in-out;
}

.contact__wrapper .contact__wrapper-inner .phone-vr-circle-fill {
  box-shadow: 0 0 0 0 #2196F3;
  background-color: rgba(33,150,243,0.7);
  position: absolute;
  border: 2px solid transparent;
  -webkit-animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
  animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
  transition: all .5s;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-animuiion: zoom 1.3s infinite;
  animation: zoom 1.3s infinite;
  z-index: 0;
}

.contact__wrapper .contact__wrapper-inner .phone-vr-circle-fill.zalo {
  width: 70px;
  height: 70px;
  top: -12px;
  right: -10px;
  border-radius: 50%;
}

.contact__wrapper .contact__wrapper-inner .phone-vr-circle-fill.phone {
  width: 172px;
  height: 72px;
  top: -12px;
  right: -10px;
  border-radius: 15px;
}

.contact__wrapper .contact__wrapper-phone p {
  text-align: center;
  font-size: 13px;
  line-height: 15px;
  font-weight: bold;
  padding-right: 10px;
}

.contact__wrapper .contact__wrapper-phone img {
  width: 100%;
}

@-webkit-keyframes phone-vr-circle-fill {
  0% {
      -webkit-transform: rotate(0) scale(1) skew(1deg)
  }

  10% {
      -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
  }

  20% {
      -webkit-transform: rotate(25deg) scale(1) skew(1deg)
  }

  30% {
      -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
  }

  40% {
      -webkit-transform: rotate(25deg) scale(1) skew(1deg)
  }

  50% {
      -webkit-transform: rotate(0) scale(1) skew(1deg)
  }

  100% {
      -webkit-transform: rotate(0) scale(1) skew(1deg)
  }
}

@-webkit-keyframes zoom {
  0% {
      transform: scale(.9)
  }

  70% {
      transform: scale(1);
      box-shadow: 0 0 0 15px transparent
  }

  100% {
      transform: scale(.9);
      box-shadow: 0 0 0 0 transparent
  }
}

@keyframes zoom {
  0% {
      transform: scale(.9)
  }

  70% {
      transform: scale(1);
      box-shadow: 0 0 0 15px transparent
  }

  100% {
      transform: scale(.9);
      box-shadow: 0 0 0 0 transparent
  }
}