.container-contact-clv {
  position: fixed;
  bottom: 13vh !important;
  left: 2px !important;
  height: fit-content;
  width: fit-content;
  display: flex;
  align-items: flex-end;
  z-index: 100;
  padding-bottom: 20px;
  overflow: visible;
}
.contact-clv {
  position: relative;
}
.container-icon-close-clv {
  width: 67px;
  height: 67px;
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  animation: showContainerContact_clv 0.5s;
  animation-fill-mode: forwards;
}

.contact-button-clv button {
    border: none;
    user-select: none;
    outline: none;
    background-color: transparent;
}

@keyframes showContainerContact_clv {
  0% {
    transform: translate(0px, 200px);
  }
  40% {
    transform: translate(0px, -50px);
  }
  100% {
    transform: translate(0px, 0px);
    z-index: 1;
  }
}
.container-icon-close-clv button {
  padding: 14px;
  width: 48px;
  height: 48px;
  background-color: white;
  border-radius: 50%;
  display: flex;
    justify-content: center;
    align-items: center;
}
.container-icon-zalo-clv,
.container-icon-messeger-clv,
.container-icon-call-clv {
  position: absolute;
  top: 10px;
  width: 48px;
  left: 10px;
  opacity: 0;
  height: 48px;
  animation: introContact_clv 0.9s;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
  transition: all 0.3s;
}
.show {
  transform: var(--translate);
  z-index: 10;
  animation: none;
  opacity: 1;
}

.hide {
  opacity: 0;
  animation: none;
  z-index: -10;
  transform: translate(0px, 0px);
}

@keyframes introContact_clv {
  0% {
    z-index: -1;
    opacity: 0;
    transform: translate(0px, 0px);
  }
  50% {
    z-index: 1;
    opacity: 1;
    transform: var(--translate);
  }
  99% {
    visibility: visible;
  }
  100% {
    z-index: -10;
    opacity: 0;
    transform: translate(0px, 0px);
    visibility: hidden;
    animation: none;
  }
}

@media screen and (max-height: 850px) and (max-width: 600px) {
  .none-mobile {
    display: none;
  }
  .container-contact {
    transform: scale(0.9);
  }
}
