.show-offer-form, #offer-form-submit {
  padding: 0 20px;
}


#offer-form-content {
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
}

#offer-form-close {
  width: 15px;
  height: 15px;
  background-image: url(/local/templates/main/i/close.png);
  background-size: contain;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  transition: all 200ms ease;
}

@keyframes offer-form-show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes offer-form-hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.offer-form-show {
  display: flex;
  animation: offer-form-show 200ms ease 0s;
}

.offer-form-hide {
  animation: offer-form-hide 200ms ease 0s;
  opacity: 0;
}

.offer-form-hidden {
  display: none !important;
}

#offer-form-close:hover {
  transform: scale(1.03);
}

.offer-form {
  background-color: #fff;
  width: 90%;
  max-width: 400px;
  position: relative;
  padding: 20px;
  gap: 15px;
}

.offer-form input {
  width: 100%;
}

.offer-form-title {
  font-size: 16px;
}

.flex-col, .flex-row {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.jc-center {
  justify-content: center;
}

.jc-start {
  justify-content: flex-start;
}

.jc-end {
  justify-content: flex-end;
}

.jc-between {
  justify-content: space-between;
}

.jc-around {
  justify-content: space-around;
}

.ai-center {
  align-items: center;
}

.ai-start {
  align-items: flex-start;
}

.ai-end {
  align-items: flex-end;
}

.full-width {
  width: 100%;
}

