.popup-callback {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 105;
  width: 100%;
  height: 100%;

  pointer-events: none;
  user-select: none;
  opacity: 0;
} .popup-callback.active {
  user-select: auto;
  pointer-events: all;
  opacity: 1;
} .popup-callback .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.7;
} .popup-callback .container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
} .popup-callback__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 480px;
  width: 100%;
  background-color: #f2f2f2;
  padding: 23px 37px 30px;
} .popup-callback .close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 32px;
  height: 32px;
  opacity: .3;
  transition: opacity .3s ease;
  cursor: pointer;
} .popup-callback .close:after,
  .popup-callback .close:before {
  position: absolute;
  left: 15px;
  content: " ";
  height: 33px;
  width: 2px;
  background-color: #333;
} .popup-callback .close:before {
  transform: rotate(45deg);
} .popup-callback .close:after {
  transform: rotate(-45deg);
}

.popup-callback h2 {
  font-family: 'OpenSansCondensed';
  font-size: 24px;
  font-weight: 700;
  color: #3f484f;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
} .popup-callback .input__field {
  display: flex;
  gap: 10px;
  width: 100%;
  margin-bottom: 15px;
} .popup-callback input[type="text"],
  .popup-callback input[type="phone"] {
  width: 100%;
  height: 45px;
  border: 0;
  outline: 0;
  font-size: 13px;
  color: #3f484f;
  text-align: center;
  padding: 0 15px;
} .input__field-checkbox {
  position: relative;
} .popup-callback input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 0;
  opacity: 0;
  cursor: pointer;
} .input__field-checkbox span {
  width: 16px;
  height: 16px;
  display: block;
  border: 1px solid #8a8e92;
  border-radius: 3px;
  /* background-color: #3e474f; */
  background-color: transparent;
  transition: background-color .3s, border-color .3s ease;
} .input__field-checkbox span::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 4px;
  height: 8px;
  border-bottom: 1px solid #8a8e92;
  border-right: 1px solid #8a8e92;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity .3s;
} .popup-callback input[type="checkbox"]:checked ~ span:before {
  opacity: 1;
} .popup-callback p {
  font-size: 10px;
  line-height: 1.2;
  color: #8a8e92;
} .popup-callback p a {
  color: #3f484f;
  text-decoration: underline;
} .popup-callback button {
  font-size: 13px;
  font-weight: 700;
  outline: 0;
  text-transform: uppercase;
  border-radius: 5px;
  color: #fff;
  height: 35px;
  border: 0;
  background: #ffd120;
  background: linear-gradient(180deg, #ffd120, #eebd00);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffd120",endColorstr="#eebd00",GradientType=0);
  line-height: 35px;
  padding: 0 24px;
  transition: box-shadow .3s ease;
  cursor: pointer;
  margin: 0 auto;
} .popup-callback button:hover {
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, .34);
}
