body{
    background-color: #f5f5f5
}
.auto-margin{
    margin: 0 auto;
}
.logo{
    max-width: 100%;
    margin: 0 auto;
    display: block;
    margin-bottom: 1rem;
}
.card {
    border-radius: 8px;
}
#form {
    margin-bottom: 30px;
}
.a-bottom {
    flex-direction: column;
    align-self: flex-end;
    padding-bottom:12px;
}
.r-scale {
    padding: 0 8px;
    max-width: 300px;
    flex: 1
}
.r-option {
    width: 20%;
    padding: 5px 0;
}
@media(max-width:568px){
    .a-bottom {
        font-size: 14px;
        padding-bottom: 4px;
    }
    .r-option {
        padding-bottom: 0;
    }
}


.c-required {
    color: #d93025;
}
p {
    margin-top: 0;
    margin-bottom: .75rem;
}
.btn-primary {
    color: #fff;
    background-color: #004b8d;
    border-color: #004b8d;
}
.container {
    width: 100%;
    padding-right: .25rem;
    padding-left: .25rem;
    margin-right: auto;
    margin-left: auto;
}
label.custom-radio-button input[type="radio"] {
    opacity: 0;
}

    label.custom-radio-button input[type="radio"] ~ .helping-el {
        background-color: #FFFFFF;
        border: 2px solid #5f6368;
        border-radius: 50%;
        display: inline-block;
        margin-right: 7px;
        padding: 11px;
        position: relative;
        top: 3px;
    }

    label.custom-radio-button input[type="radio"]:checked ~ .helping-el {
        border: 2px solid #175396;
    }

        label.custom-radio-button input[type="radio"]:checked ~ .helping-el:after {
            background-color: #175396;
            border-radius: 50%;
            content: " ";
            font-size: 33px;
            height: 16px;
            left: 3px;
            position: absolute;
            top: 3px;
            width: 16px;
        }

#form-submitting{
    display: none;
}
#form-submitting.show{
    display: block;
}
.circle-loader {
    margin-bottom: 1.5em;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-left-color: #5cb85c;
    animation: loader-spin 1.2s infinite linear;
    position: relative;
    display: inline-block;
    vertical-align: top;
    border-radius: 50%;
    width: 7em;
    height: 7em;
  }
  .alert-dark {
    background-color: #eceaea;
}
  .load-complete {
    -webkit-animation: none;
    animation: none;
    border-color: #5cb85c;
    transition: border 500ms ease-out;
  }
  .checkmark {
    display: none;
  }
  .checkmark.draw:after {
    animation-duration: 800ms;
    animation-timing-function: ease;
    animation-name: checkmark;
    transform: scaleX(-1) rotate(135deg);
  }
  .checkmark:after {
    opacity: 1;
    height: 3.5em;
    width: 1.75em;
    transform-origin: left top;
    border-right: 3px solid #5cb85c;
    border-top: 3px solid #5cb85c;
    content: '';
    left: 1.75em;
    top: 3.5em;
    position: absolute;
  }

@keyframes loader-spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  @keyframes checkmark {
    0% {
      height: 0;
      width: 0;
      opacity: 1;
    }
    20% {
      height: 0;
      width: 1.75em;
      opacity: 1;
    }
    40% {
      height: 3.5em;
      width: 1.75em;
      opacity: 1;
    }
    100% {
      height: 3.5em;
      width: 1.75em;
      opacity: 1;
    }
  }
  .info-box-item{
    padding: 0;
  }
  .info-box-title{
    text-align: center;
  }
  .disclaimer{
    font-weight: 500;
    color: #094d8d;
  }
  @media (max-width: 575px){
    .info-box-item{
      padding-left: 14px;
      }
      .info-box-title{
        text-align: left;
        font-size: 16px;
      }
    }