.link-style {
  color: #006080 !important;
  font-weight: bold;
}
.link-style:hover, .link-style:focus {
  color: #333!important;
  text-decoration: underline!important; 
}
.link-style:active {
  color: #2F877A!important; 
}
.hs-form-radio-display {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.hs-form-radio-display input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border: 1px solid #006080;
  border-radius: 50%;
  box-sizing: border-box;
}

/* On mouse-over, add a grey background color */
.hs-form-radio-display:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.hs-form-radio-display input:checked ~ .checkmark {
  background-color: #006080;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.hs-form-radio-display input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.hs-form-radio-display .checkmark:after {
	width: 100%;
    height: 100%;
    top: 0;
    left: 0;
	border-radius: 50%;
	background: #006080;
    border: 3px solid #fff;
    box-sizing: border-box;
}

.modal-header {
  border-bottom: none;
  justify-content: center;
  color: #006080;
}
.modal-title {
  color: #006080;
}
.modal .modal-body {
 padding-top: 0; 
}
@media (min-width: 1024px) {
  .modal-dialog {
    max-width: 780px;
  }
 .modal-content {
   padding: 20px 75px;
   box-shadow: 0px 0px 8px rgba(0, 96, 128, 0.25);
}
  .submit_cs, .submit_cs:visited {
    color: white;
  }
  .submit_cs:hover {
    background: #2F877A;
    color: white;
  }
  .submit_cs:active {
   background: #333; 
  }
  
.call_out {
  font-size: 1.125rem;
  font-weight: bold;
  }
  
  .hs-form-radio:before {
    content: none;
  }