.open-modal {
	    bottom: 0;
    position: absolute;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: inherit;
  padding: 1rem 2rem;
  border-radius: 4px;
  color: #ffffff;
  background: #178ecf;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.open-modal:hover {
  background: #126fa1;
}

.title {
  font-family: inherit;
  line-height: inherit;
  color: #353535;
}
.title-modal-text {
  font-size: 1.8rem;
  font-weight: 500;
}
.title-subs {
  font-size: 0.9rem;
  font-weight: normal;
}
.title-subs a {
  font-weight: 500;
  color: #178ecf;
}
.title-subs a:hover {
  text-decoration: underline;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.main .modal {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  background: rgba(33, 33, 33, 0.75);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.main .modal.is-visible {
  visibility: visible;
  opacity: 1;
}
.main .modal-dialog-upper {
  position: relative;
	display:none;
  /*max-width: 25rem;*/
  width: auto;
  height: auto;
	max-height: 95vh;
  margin: 0 auto;
padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 2rem;
  overflow: auto;
  border: none;
  outline: none;
  border-radius: 4px;
  color: #353535;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
}
.main .modal-header {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
          justify-content: space-between;
  font-family: inherit;
  line-height: inherit;
  margin-bottom: 2rem;
}
.main .modal-header .close-modal {
  font-size: 1.5rem;
  line-height: inherit;
  border: none;
  outline: none;
  color: #353535;
}
.main .modal-content .form-group {
  width: 100%;
  height: auto;
  margin-bottom: 1.25rem;
}
.main .modal-content .form-group:nth-child(6) {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
}
.main .modal-content .form-group .input-field {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: inherit;
  padding: 0.75rem 1.25rem;
  width: 100%;
  height: auto;
  outline: none;
  border: none;
  border-radius: 2rem;
  color: #353535;
  background: #eff3f4;
}
.main .modal-content .form-group .input-submit {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: inherit;
  text-align: center;
  cursor: pointer;
  padding: 0.75rem 1.25rem;
  width: 30%;
  height: auto;
  outline: none;
  border: none;
  border-radius: 2rem;
  color: #ffffff;
  background: #178ecf;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.main .modal-content .form-group .input-submit:hover {
  background: #126fa1;
}
.main .modal-content .form-group .text-link {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: inherit;
  margin-left: 1.2rem;
  color: #178ecf;
}
.main .modal-content .form-group .text-link:hover {
  text-decoration: underline;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}