.displayFlex{
    display: flex;    
}
.fb40{
  flex-basis: 40%;
  margin: 0 5px;
}
.radio-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 17px;
  color: #fff;
  margin-right: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.ap-radio{
  color: #000 !important; 
}
/* Hide the browser's default radio button */
.radio-container 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: #eeeeee80;
  border-radius: 50%;
}
.ap-radio .checkmark{
  background-color: #ddd;
}
/* On mouse-over, add a grey background color */
.radio-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio-container input:checked ~ .checkmark {
  background-color:var(--primary-color);
  background-image: linear-gradient( 45deg, var(--secondary-color) 15%, var(--primary-color) 65%);
}

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

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

/* Style the indicator (dot/circle) */
.radio-container .checkmark:after {
      top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}
.ml-10{
  margin-left: 10px !important;
}
.height100vh{
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.formElem{
  background-color: #fff;
}
.bgActive{
  background-color: var(--header-bg-color) !important;
}
.mlr-auto{
  margin-left: auto;
  margin-right: auto;
}
.m20{
  margin-top: 20px;
  margin-bottom: 20px;
}
.max600{
  max-width: 600px;
  margin: auto;
}
.mb0{
  margin-bottom: 0 !important;
}
.mb20{
  margin-bottom: 20px !important;
}
.p100{
  padding: 100px 0;
}
.p150{
  padding: 150px 0;
}
.display-inline{
  display: inline;
}
.prl-15{
  padding-left: 15px;
  padding-right: 15px;
}
.w-auto{
  width: auto;
}
.mt50{
  margin-top: 50px;
}
.mt40{
  margin-top: 40px;
}
.mt20{
  margin-top: 20px;
}
.card-contact{
  background: #fff !important;
  min-height: 264px;
}
.blue-text{
  color: var(--primary-color)
}