.contact-supplier {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 0;
  z-index: 1001;
}

.contact-supplier *, .contact-supplier *:before, .contact-supplier *:after {
  box-sizing: border-box;
}

.contact-supplier__popup {
  display: block;
  max-width: 350px;
  color: #fff;
  background: #00b7eb;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
  text-align: center;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateY(100%);
  opacity: 0;
  transition: .3s ease-in-out;
  transition-property: opacity, transform;
}

.show .contact-supplier__popup {
  transform: translateY(0);
  opacity: 1;
}

.contact-supplier__close {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  padding: 4px;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  color: #fff;
  opacity: .7;
  transition: opacity .3s;
}

.contact-supplier__close:hover {
  opacity: 1;
}

.contact-supplier__close svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.contact-supplier__header {
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-supplier__text {
  font-size: 16px;
  color: #000;
  margin-bottom: 20px;
}

.contact-supplier__button .btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-supplier__button .btn__txt {
  margin: 0 4px;
  display: block;
}

.contact-supplier__button .btn .fa {
  display: block;
  width: 18px;
  font-size: 18px;
  margin-top: 0px;
}