#cfm .priv-text {
  color: #ff8100;
  text-shadow: none;
  font-size: 15px;
  line-height: 1.4;
  -webkit-hyphens: none !important;
  -moz-hyphens: none !important;
  -ms-hyphens: none !important;
  hyphens: none !important;
}

/* Spark form styles */

#cfm .get-started-fields {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  font-size: 16px;
  display: block;
  border-radius: 3px;
  margin-bottom: 14px;
  padding: 8px;
  background: #fff;
  border: 1px solid transparent;
  box-shadow: inset 1px 2px 4px rgb(0 0 0 / 20%);
}

#cfm .get-started {
  color: #fff;
  text-shadow: 1px 1px 2px #000;
  width: 100%;
  max-width: 360px;
  padding: 8px 10px;
  margin-top: 5px;
  background-color: #0a2dbe;
  font-weight: 700;
  font-size: calc(18px + 3vw);
  line-height: 1.3;
  border: none;
  border-radius: 5px;
  transition: all .3s;
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  #cfm .get-started {
    font-size: 36px;
  }
}

#cfm .get-started:hover {
  background-color: #143cff;
  transition: all .3s;
}

#cfm .modal-dialog {
  position: relative;
  padding-top: 28px;
}

#cfm .btn-close-bg {
  position: absolute;
  top: -27px;
  right: 8px;
  height: 28px;
  width: 78px;
  background: #0a42ff;
  border-radius: 5px 5px 0px 0px;
}

#cfm .btn-close {
  position: absolute;
  top: -21px;
  right: 16px;
  width: 61px;
  background: transparent url("../../assets/img/close-button.svg") center/ auto no-repeat;
  opacity: .7;
  transition: all .3s ease-in-out;
}

#cfm .btn-close:hover {
  opacity: 1;
}

#cfm .modal-content {
  background-color: #191919;
  border: 1px solid #000;
  box-shadow: 0px 0px 10px #000;
}

#cfm .modal-header {
  background-color: #0a42ff;
  border-bottom: solid 1px black;
  padding: 10px;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
}

#cfm .modal-body {
  padding: 15px;
}

