/*--------------------------------------------------------------
Get Started Modal Popup
----------------------------------------------------------------*/
.cs_get_started_modal .modal-dialog {
  max-width: 900px;
  width: calc(100% - 24px);
  margin: 12px auto;
}

.cs_get_started_modal .modal-content {
  border: none;
  overflow: hidden;
  font-family: var(--body-font);
  max-width: 100%;
}

.cs_get_started_modal .modal-content h2,
.cs_get_started_modal .modal-content h3,
.cs_get_started_modal .modal-content label {
  font-family: var(--heading-font);
}

.cs_get_started_modal_close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}

.cs_get_started_modal .row {
  margin: 0;
}

.cs_get_started_modal_img {
  padding: 0;
  min-height: 100%;
  background-color: var(--gray-color-1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cs_get_started_modal_form {
  padding: 50px 40px;
  max-width: 100%;
  overflow-wrap: break-word;
}

.cs_get_started_modal_form h2 {
  color: var(--heading-color);
  font-size: 36px;
  line-height: 1.25em;
}

.cs_get_started_modal_form p {
  color: var(--body-color);
  font-family: var(--body-font);
  font-size: 16px;
}

.cs_get_started_modal_form label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.cs_get_started_modal_form .row {
  margin: 0 -10px;
}

.cs_get_started_modal_form .row > * {
  padding: 0 10px;
}

.cs_get_started_modal_form .cs_form_field {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.cs_get_started_modal_form .cs_btn {
  white-space: normal;
  word-break: break-word;
}

/* Hide the side image on tablets and below */
@media (max-width: 991px) {
  .cs_get_started_modal_img {
    display: none;
  }
  .cs_get_started_modal_form {
    padding: 40px 30px;
  }
  .cs_get_started_modal_form h2 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .cs_get_started_modal .modal-dialog {
    width: calc(100% - 16px);
    margin: 8px auto;
  }
  .cs_get_started_modal_form {
    padding: 32px 22px;
  }
  .cs_get_started_modal_form h2 {
    font-size: 26px;
  }
  .cs_get_started_modal_form p {
    font-size: 15px;
  }
  .cs_get_started_modal_form .row,
  .cs_get_started_modal_form .row > * {
    margin: 0;
    padding: 0;
  }
  .cs_get_started_modal_form .col-sm-6 {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cs_get_started_modal_close {
    top: 12px;
    right: 12px;
  }
  .cs_get_started_modal_form {
    padding: 28px 18px;
  }
  .cs_get_started_modal_form h2 {
    font-size: 22px;
  }
  .cs_get_started_modal_form p {
    font-size: 14px;
  }
  .cs_get_started_modal_form label {
    font-size: 13px;
  }
  .cs_get_started_modal_form .cs_form_field {
    padding: 12px 16px;
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .cs_get_started_modal_form {
    padding: 22px 14px;
  }
  .cs_get_started_modal_form h2 {
    font-size: 20px;
  }
  .cs_get_started_modal_form .cs_btn {
    font-size: 12px;
    padding: 12px 18px;
  }
}
