.blocker {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%; height: 100%;
  overflow: auto;
  z-index: 1;
  padding: 20px;
  box-sizing: border-box;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.75);
  text-align: center;
}
.blocker:before{
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.05em;
}
.blocker.behind {
  background-color: transparent;
}
.modal {
  display: none;
  vertical-align: middle;
  position: relative;
  z-index: 2;
  max-width: 527px;
  box-sizing: border-box;
  background: #131419;
  border-radius: 6px;
  width: 90%;
  padding: 15px 30px;
  text-align: left;
  padding: 35px;
  color: #fff;
}

.modal p.form__about-files {
  margin-bottom: 30px;
  margin-top: -10px;
}

.modal .form__btn{
  margin-top: 20px;
}

.modal p{
  position: relative;
  margin: 0;
}

.modal__close{
  position: absolute;
  top: 0;
  right: -30px;
}

.modal a.close-modal {
  position: absolute;
  top: -12.5px;
  right: -12.5px;
  display: block;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg==');

}

.modal-spinner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  padding: 12px 16px;
  border-radius: 5px;
  background-color: #111;
  height: 20px;
}

.modal-spinner > div {
  border-radius: 100px;
  background-color: #fff;
  height: 20px;
  width: 2px;
  margin: 0 1px;
  display: inline-block;

  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.modal-spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.modal-spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.modal-spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.5) }
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.5);
    -webkit-transform: scaleY(0.5);
  }  20% {
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}


/* Calculate */
.form-container {
  max-width: 1000px;
  margin: auto;
  color: #FFFFFF;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.form__left {
  max-width: 465px;
  flex: 0 0 465px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.form__right {
  max-width: 420px;
  flex: 0 0 420px;
}
.form__checkbox {
  font-size: 16px;
}
.form__checkbox .is--error{
  color: #ca4d4d;
}

.form__checkbox:not(:last-child) {
  margin-bottom: 10px;
}
.form__checkbox input {
  display: none;
}
.form__checkbox input:checked + label:after {
  background-color: #6166DC;
}
.form__checkbox label {
  position: relative;
  padding-left: 50px;
  cursor: pointer;
  height: 35px;
  display: flex;
  transition: color .3s;
  align-items: center;
}
.form__checkbox label:after {
  content: "";
  width: 35px;
  height: 35px;
  background: #1C1D26;
  border-radius: 3px;
  position: absolute;
  left: 0;
  top: 50%;
  transition: background-color 0.3s;
  margin-top: -17.5px;
}
.form__title {
  font-weight: 500;
  margin: 0;
  line-height: 100%;
  font-size: 50px;
  margin-top: -8px;
}
.form__bottom {
  margin-top: 40px;
}
.form__price-title {
  font-size: 40px;
}
.form__price-value {
  font-size: 94px;
  font-weight: 700;
  margin: 4px 0 10px;
}
.form__price-text {
  font-weight: 700;
  font-size: 30px;
}
.form__label {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: #FFFFFF;
  margin-bottom: 20px;
}
.form__row {
  display: flex;
  flex-wrap: wrap;
}
.form__radio {
  margin-right: 5px;
  margin-bottom: 5px;
}
.form__radio input {
  display: none;
}
.form__radio input:checked + label,
.is--active.form__radio label {
  background: #6166DC;
  color: white;
}
.form__radio label {
  height: 56px;
  padding: 0 30px;
  display: inline-flex;
  font-size: 16px;
  align-items: center;
  justify-content: center;
  color: white;
  background: #1C1D26;
  border-radius: 3px;
  transition: background-color 0.3s;
  cursor: pointer;
}
.form__radio label:hover, .form__radio label.is--active {
  background: #6166DC;
}
.form__btn {
  max-width: 291px;
  width: 100%;
  height: 58px;
  margin-top: 40px;
  border: none;
  background: #6166DC;
  border-radius: 3px;
  transition: opacity 0.3s;
  cursor: pointer;
  color: white
}
.form__btn--block{
  width: 100%;
  max-width: initial;
}
.form__btn:hover {
  opacity: 0.8;
}

.gutter-y-30 {
  margin-bottom: -30px;
}
.gutter-y-30 > div {
  padding-bottom: 30px;
}

.form__none{
  display: none
}

.form__input{
  background-color: white;
  height: 67px;
  width: 100%;
  background: #1C1D26;
  border-radius: 3px;
  border: none;
  padding-left: 20px;
  margin-top: 15px;
  color: white;
}

.form__input::placeholder{
  color: #FFFFFF;
  opacity: 0.3;
}

.form__mb-0{
  margin-bottom: 0;
}

.form__group{
  margin-bottom: 30px;
}

.wpcf7-not-valid-tip{
  font-size: 13px;
  margin-top: 10px;
}

.wpcf7 form .wpcf7-response-output{
  margin: 0;
  margin-top: 15px;
  padding: 15px;
  color: white;
}

.ajax-loader{
  position: absolute!important;
  left: 0;
  bottom: 15px;
}

@media (max-width: 767px) {
  .form__left, .form__right{
    flex: 0 0 100%;
    max-width: 100%
  }

  .form__left{
    margin-bottom: 30px;
  }

  .form__price-value{
    font-size: 50px;
  }

  .form__radio label{
    padding: 0 15px;
    height: 45px;
  }
}