.b-window {
  display: none;
  background: rgba(0, 0, 0, .6);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  z-index: 300;
}

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

.b-window__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.b-window__close {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: none;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  z-index: 100;
}

.b-window__close:hover i {
  color: black;
}

.b-window__close i {
  font-size: 28px;
  color: #FF4F00;
}

.b-window__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  padding: 30px;
  position: relative;
  z-index: 2;
}

.b-window__content {
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  max-width: 500px;
  position: relative;
  width: 100%;
  position: relative;
  cursor: default;
  padding: 30px;
}

.b-window__content .form-actions {
  padding: 20px 0;
  text-align: center;
}

.b-window__content .button {
  color: #FFFFFF;
  background: #FF4F00;
  border: none;
  width: 100%;
}

.b-window__content .button:hover {
    color: #FFFFFF;
    background: #000000;
}

.b-window__content .request__form-text {
    margin-bottom: 0;
    color: #000000;
}

.b-window__content .request__form-text a {
    color: #000000;
}

@media (min-width: 768px) {
  .b-window__close {
    width: 50px;
    height: 50px;
  }

  .b-window__content {
    padding: 20px 70px 30px;
  }
}