.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 {
  padding: 0;
  border: 0;
  background: none;
  width: 40px;
  height: 40px;
  position: absolute;
  top: -13px;
  right: -13px;
  cursor: pointer;
  z-index: 100;
}

.b-window__close svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

.b-window__content {
  border-radius: 30px;
  background: linear-gradient(166deg, #2B4158 -1.81%, #02050D 89.86%);
  max-width: 600px;
  position: relative;
  width: 100%;
  position: relative;
  cursor: default;
  padding: 30px;
}

.b-window__content .form-actions {
  text-align: center;
}

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

  .b-window__content {
    padding: 50px;
  }  
}