.b-window {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  padding: 20px;
  text-align: center;
  z-index: 300;
}

.b-window.state-open {
  display: block;
}

.b-window:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.05em;
}

.b-window__close {
  background-image: url("data:image/svg+xml,%3Csvg width='34' height='34' viewBox='0 0 34 34' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.1528 22.1509L22.396 11.9077M22.396 22.1509L12.1528 11.9077' stroke='white' stroke-width='1.81075' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  border: 0;
  padding: 0;
  border-radius: 0;
  width: 34px;
  height: 34px;
  position: absolute;
  right: 10px;
  top: 5px;
  text-decoration: none;
  cursor: pointer;
}

.b-window__content {
  display: inline-block;
  vertical-align: middle;
  background-image: url("/sites/default/files/popup-bg.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15px;
  max-width: 320px;
  width: 95%;
  position: relative;
  cursor: default;
  padding: 49px 10px;
  text-align: left;
  overflow: hidden;
  z-index: 1;
}

.b-window .form-control {
  font-size: 14px;
  line-height: 17px;
  background-color: transparent;
  border: 2px solid var(--color-white);
  border-radius: 69px;
  color: var(--color-white);
  padding: 13px;
}

.b-window .form-control::placeholder {
  color: var(--color-white);
}

.b-window .form-actions {
  padding-top: 15px;
}

@media (min-width: 768px) {
  .b-window__close {
    right: 20px;
    top: 20px;
  }

  .b-window__content {
    max-width: 583px;
    padding: 55px;
  }

  .b-window .form-control {
    font-size: 16px;
    line-height: 20px;
  }

  .b-window .form-actions {
    padding-top: 55px;
  }
}

@media (min-width: 1024px) {
  .b-window .form-control {
    font-size: 18px;
    line-height: 22px;
  }
}

@media (min-width: 1240px) {
  .b-window .form-control {
    font-size: 24px;
    line-height: 29px;
    border-width: 3px;
    padding: 17px;
  }
}