.modal-box {
  display: none;
  /* display: flex; */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  background: #fff;
  border-bottom: 1px solid #aaa;
  border-radius: 4px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-clip: padding-box;
  justify-content: center;
  overflow: auto;
}

.modal-box header h3 { margin: 0; }

.modal-overlay {
  opacity: 0;
  filter: alpha(opacity=0);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3) !important;
}

.modal-container {
  max-width: 1366px;
  width: 100%;
}
.modal-container header {
  position: relative;
  padding: 46px 130px 20px;
  border: 0 none;
  width: 100%;
}
.modal-container header .close-button {
  position: absolute;
  top: 66px;
  right: 62px;
}
.modal-container h1 {
  font-family: "sfprotextsemibold", Roboto, sans-serif;
  font-size: 44px;
  line-height: 65px;
  color: #446BB0;
  margin-bottom: 8px;
}
.modal-container header p {
  font-family: "sfprotextmedium", Roboto, sans-serif;
  font-size: 22px;
  line-height: 25px;
  color: #454545;
}
.modal-container header .close-button {
  cursor: pointer;
}

.modal-body {
  background-image: url('/images/business-lines.png');
  background-position: -68px -66px;
  background-repeat: no-repeat;
  background-size: initial;
  width: 100%;
  padding-top: 54px;
}

.start-form {
  display: flex;
  justify-content: space-between;
  padding: 95px 176px 0 130px;
}

.start-form .txt {
  width: 272px;
  flex: none;
  margin-right: 40px;
}

.start-form .txt p {
  font-family: "sfprotextlight", Roboto, sans-serif;
  font-size: 22px;
  line-height: 40px;
  color: #454545;
}

.start-form .form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 698px;
}

.start-form .form input[type="text"] {
  width: 320px;
  height: 48px;
  border: 1px solid #E0E0E0;
  border-radius: 5px;
  padding: 0 16px;
  color: #868E96;
  margin-bottom: 32px;
}

.start-form .form input[type="text"].required {
  border: 3px solid #A6CBF3;
}

.start-form .form input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

.round {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.round label {
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #B6B6B6;
  border-radius: 50%;
  cursor: pointer;
  height: 16px;
  width: 16px;
}

.round label:after {
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  content: "";
  height: 5px;
  left: 2px;
  opacity: 0;
  position: absolute;
  top: 4px;
  transform: rotate(-45deg);
  width: 9px;
}

.round input[type="checkbox"] {
  visibility: hidden;
}

.round input[type="checkbox"]:checked + label {
  background-color: #446BB0;
  border-color: #446BB0;
}

.round input[type="checkbox"]:checked + label:after {
  opacity: 1;
}

.start-form textarea {
  width: 100%;
  max-width: 552px;
  height: 92px;
  border-color: #E0E0E0;
  padding: 16px;
  resize: none;
}

.start-form button {
  padding: 0 18px;
  height: 48px;
}

.start-form .form div {
  flex: none;
  width: 100%;
  margin-bottom: 48px;
}

.start-form .form div.subform {
  padding-top: 18px;
}

.start-form .form div p {
  font-size: 20px;
  line-height: 30px;
  color: #446BB0;
  margin: 0 0 26px;
}

.start-form .form div p span {
  font-size: 16px;
}

.start-form .form ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}

.start-form .form ul li {
  display: flex;
  align-items: center;
  font-family: "sfprotextmedium", Roboto, sans-serif;
  font-size: 16px;
  line-height: 16px;
  color: #627381;
  margin-right: 20px;
}

@keyframes spinnerloading {
  to {transform:rotate(1turn)}
}

button[loading="true"] .spinner{
  display: flex;
}
.spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  display: none;
}
.spinner svg {
  height: 2.4rem;
  width: 2.4rem;
  animation: spinnerloading .5s linear infinite;
  fill: #fff;
}
#submitbtn.button {
  position: relative;
}

@media screen and (max-width: 1148px) {
  .modal-body {
    background-position: center -66px;
  }
  .modal-container header {
    padding: 26px 26px 22px;
  }
  .modal-container header .close-button {
    top: 38px;
    right: 26px;
  }
  .start-form {
    flex-wrap: wrap;
    padding: 38px 24px;
  }
  .start-form .txt {
    width: 100%;
    margin-bottom: 42px;
  }
  .start-form .txt p {
    text-align: center;
  }
  .start-form .form {
    flex-wrap: nowrap;
    flex-direction: column;
    width: 100%;
  }
  .start-form .form input[type="text"] {
    width: 100%;
  }
  .start-form .form ul {
    display: block;
  }
  .start-form .form ul li {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 425px) {
  .modal-container h1 {
    font-size: 28px;
    line-height: 28px;
  }
  .modal-container header p {
    font-size: 16px;
    line-height: 25px;
  }
  .modal-container header .close-button {
    top: 26px;
    right: 24px;
  }
  .start-form .txt p {
    font-size: 16px;
    line-height: 30px;
  }
}
/*

@media screen and (max-width: 660px) {
  
}
@media screen and (max-width: 560px) {
  
}
@media screen and (max-width: 510px) {
  
}
@media screen and (max-width: 425px) {
  
}
@media screen and (max-width: 374px) {
  
} */