/*----------------------------------------------- GENERAL -----------------------------------------------*/
/* html {
  margin: 0px;
  padding: 0px;
} */

.main  {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: center;
  align-items: flex-start;
  margin: 0px;
  position: relative;
}

/*----------------------------------------------- FONTS -----------------------------------------------*/
h1, h2, h3,h4, h5, h6 {
  font-family: 'Source Sans Pro', sans-serif;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: normal;
  -webkit-font-smoothing: antialiased;
  margin: 0px;
  color: #2C2E3A;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 36px;
    letter-spacing: -1.5px;
  }

  h2 {
    font-size: 30px;
    letter-spacing: -1px;
  }

  h3 {
    font-size: 21px;
    letter-spacing: -.75px;
  }
}

@media screen and (min-width: 769px) {
  h1 {
    font-size: 40px;
    letter-spacing: -2px;
  }

  h2 {
    font-size: 32px;
    letter-spacing: -1.5px;
  }

  h3 {
    font-size: 24px;
    letter-spacing: -1px;
  }
}

/*ALL MEDIA QUERIES*/
h4 {
  font-size: 18px;
  letter-spacing: -.5px;
}

h5 {
  font-size: 15px;
  letter-spacing: -.25px;
}
h6 {
  font-size: 12px;
  letter-spacing: 0px;
}
/*----------------------------------------------- FONTS (END) -----------------------------------------------*/



















/*----------------------------------------------- BUTTONS -----------------------------------------------*/
button:focus {outline:0;}

button:hover {
  cursor: pointer;
}
/*----------------------------------------------- BUTTONS (END) -----------------------------------------------*/













/*----------------------------------------------- NAVBAR --------------------------------------------------------------*/
.navbar {
  display: flex;
  justify-content: center;
  padding: 10px;
}

.navbar > .container {
  justify-content: center;
}

.bg-darkblue {
  background-color: #004cb1;
}
/*----------------------------------------------- NAVBAR (END) --------------------------------------------------------------*/












/*----------------------------------------------- RADIO -----------------------------------------------*/
/*RADIOS*/
.radios {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

/* RADIOS LABEL */
.radios label {
  width: 100%;
  display: flex;
  align-items: center;
  height: 44px;
  border-radius: 22px;
  padding-left: 10px;
  margin-bottom: 12px;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-sizing: border-box;
  border: 1px solid;
  -webkit-transition:all .25s ease-in-out;
   -moz-transition:all .25s ease-in-out;
    -ms-transition:all .25s ease-in-out;
     -o-transition:all .25s ease-in-out;
        transition:all .25s ease-in-out;
  border-color: white;
  background-color: white !important;
}

.radios label:hover {
  border-color: #4E85FF;
  box-shadow: 0 0 0 4px #D2E0FF !important;
}



/* HIDE DEFAULT RADIO */
.radios label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* NEW RADIO */
.radios label .dot {
  position: absolute;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  border: 4px solid #EDF2FF;
  box-sizing: border-box;
}

/* BLUE BACKGROUND WHEN CHECKED */
.radios label input:checked ~ .dot {
  background-color: #4E85FF;
  border-color: #4E85FF;
}

/* HIDE DOT */
.radios label .dot:after {
  content: "";
  position: absolute;
  display: none;
}

/* SHOW DOT WHEN CHECKED */
.radios label input:checked ~ .dot:after {
  display: block;
}

/* DOT STYLING */
.radios label .dot:after {
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

/*RADIO LABEL H5 OR H6*/
.radios label h5 {
  font-weight: 600;
  color: #4C84FF;
  padding-left: 34px;
}



/*ERROR-MESSAGE*/
.radios.mandatory .error-message {
  position: absolute;
  bottom: -12px;
  right: 0px;
  font-weight: 600;
  color: #F5A623;
  display: none;
}
/*----------------------------------------------- RADIO (END) -----------------------------------------------*/



















/*----------------------------------------------- CHECKBOX -----------------------------------------------*/
.checkboxes {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}



.checkboxes label {
  width: 100%;
  display: flex;
  align-items: center;
  height: 44px;
  border-radius: 22px;
  padding-left: 10px;
  margin-bottom: 12px;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-sizing: border-box;
  border: 1px solid;
  -webkit-transition:all .25s ease-in-out;
   -moz-transition:all .25s ease-in-out;
    -ms-transition:all .25s ease-in-out;
     -o-transition:all .25s ease-in-out;
        transition:all .25s ease-in-out;
  border-color: white;
  background-color: white !important;
}

.checkboxes label:hover {
  border-color: #4E85FF;
  box-shadow: 0 0 0 4px #D2E0FF !important;
}



.checkboxes label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkboxes label span {
  position: absolute;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  border: 4px solid #EDF2FF;
  box-sizing: border-box;
}

.checkboxes label input[type="checkbox"]:checked ~ span {
  border-color: #4E85FF;
  background-color: #4E85FF;
}

.checkboxes label span:after {
  content: "";
  position: absolute;
  display: none;
}

.checkboxes label input[type="checkbox"]:checked ~ span:after {
  display: block;
}

.checkboxes label span:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.checkboxes label span:after {
  width: 6px;
  height: 10px;
  left: 5px;
  top: 2px;
  border: solid white;
  border-width: 0 3px 3px 0;
}

.checkboxes label h5 {
  font-weight: 600;
  color: #4C84FF;
  padding-left: 34px;
}



/*ERROR-MESSAGE*/
.checkboxes.mandatory .error-message {
  position: absolute;
  bottom: -12px;
  right: 0px;
  font-weight: 600;
  color: #F5A623;
  display: none;
}
/*----------------------------------------------- CHECKBOX (END) -----------------------------------------------*/



















/*----------------------------------------------- DROPDOWN -----------------------------------------------*/
[class*="dropdown-element"] {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  height: 48px;
  margin-bottom: 12px;
}



/*DROPDOWN - TOP*/
[class*="dropdown-element"] .dropdown-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 24px;
  height: 46px;
  border-radius: 4px;
  background-color: white;
  border: 1px solid white;
}
[class*="dropdown-element"]:hover .dropdown-top {
  cursor: pointer;
  border-top: 1px solid #4D85FF !important;
  border-left: 1px solid #4D85FF !important;
  border-right: 1px solid #4D85FF !important;
  border-bottom: 1px solid #4D85FF !important;
  box-shadow: 0 0 0 4px #D2E0FF !important;
  background-color: white !important; 
}
[class*="dropdown-element"] .dropdown-item:hover {
  cursor: pointer;
}



[class*="dropdown-element"] .dropdown-top h5:first-of-type {
  color: #95B6FF;
  font-weight: 600;
}
[class*="dropdown-element"]:hover .dropdown-top h5:first-of-type {
  color: #4E85FF;
}
[class*="dropdown-element"] .dropdown-top h5:last-of-type {
  display: none;
}

[class*="dropdown-element"] .dropdown-top-add {
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}

/*DROPDOWN - TOP (CARROT/ARROW)*/
[class*="dropdown-element"] .dropdown-top div {
  position: relative;
  height: 23px;
  width: 23px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 12px;
}
[class*="dropdown-element"] .dropdown-top span {
  position: absolute; 
  width: 3px;
  height: 9px;
  margin: auto;
  border-radius: 1px;
  background-color: #95B6FF;
  -webkit-transition:all .1s ease-in-out;
     -moz-transition:all .1s ease-in-out;
      -ms-transition:all .1s ease-in-out;
       -o-transition:all .1s ease-in-out;
          transition:all .1s ease-in-out;
}

[class*="dropdown-element"]:hover .dropdown-top span {
  background-color: #4D85FF;
}

[class*="dropdown-element"] .dropdown-top span:first-of-type {
  bottom: 6px;
  left: 8px; 
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
[class*="dropdown-element"]:hover span:first-of-type {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
[class*="dropdown-element"] .dropdown-top span:last-of-type {
  bottom: 6px;
  left: 12px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);    
}
[class*="dropdown-element"]:hover span:last-of-type {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
/*ADDED-IN-JS*/
.dropdown-top-span-selected {
  background-color: #4D85FF !important;
}



/*DROPDOWN-DIVIDER*/
[class*="dropdown-element"] .dropdown-divider {
  z-index: 3;
  width: 100%;
  margin:-4px 0px 0px 0px;
  border-top: 0px solid transparent !important;
  background-color: white;
  display: none;
}

.dropdown-divider-add {
  height: 4px;
  border-left: 1px solid #4D85FF;
  border-right: 1px solid #4D85FF;
  margin-top: -1px;
  display: block !important;
}



/*DROPDOWN-ITEMS*/
[class*="dropdown-element"] .dropdown-items {
  width: 100%;
  height: 0px;
  overflow-y: scroll;
  z-index: 2;
}

[class*="dropdown-element"]:hover .dropdown-items {
  border-bottom-left-radius: 12px !important;
  border-bottom-right-radius: 12px !important;
}

/*DROPDOWN-ITEMS (ADD IN JS)*/
[class*="dropdown-element"] .dropdown-items-add {
  height: 128px !important;
  border-left: 1px solid #4D85FF;
  border-right: 1px solid #4D85FF;
  border-bottom: 1px solid #4D85FF;
  box-shadow: 0 0px 0 4px #D2E0FF;
}



/*DROPDOWN-ITEM*/
[class*="dropdown-element"] .dropdown-item {
  width: 100%;
  align-items: center;
  align-content: center;
  background-color: #F1F6FF;
  margin-top: -1px;
}

[class*="dropdown-element"] .dropdown-item:hover {
  background-color: #E9F0FF;
}

[class*="dropdown-element"] .dropdown-item:hover h5 {
  color: #4D85FF;
}

[class*="dropdown-element"] .dropdown-item h5 {
  font-weight: 600;
  color: #95B6FF;
  text-align: left; 
  padding-left: 24px;
  padding-top: 9px;
  padding-bottom: 10px;
}
/*ADDED-IN-JS*/
.dropdown-item-h5-selected {
  font-weight: 600;
  color: #4D85FF;
}



/*HALF OR FULL*/
.dropdown-element-full {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .dropdown-element-half {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .dropdown-element-half {
    width: calc(50% - 6px);
  }
}
/*----------------------------------------------- DROPDOWN (END) -----------------------------------------------*/



















/*----------------------------------------------- INPUT -----------------------------------------------*/
[class*="input-element"] {
  height: 44px;
  border-radius: 4px;
  text-align: left;
  border: 1px solid white;
  background-color: white;
  margin: 0px;
  padding-left: 20px;
  font-family: 'Source Sans Pro', sans-serif;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: normal;
  -webkit-font-smoothing: antialiased;
  font-weight: 600;
  margin: 0px;
  color: #4E85FF;
  font-size: 15px;
  letter-spacing: 0px;
  margin-bottom: 12px;
}

[class*="input-element"][type='number'] {
    -moz-appearance:textfield;
}

[class*="input-element"]::placeholder {
  color: #95B6FF;
}

[class*="input-element"]::-webkit-outer-spin-button,
[class*="input-element"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

[class*="input-element"]:focus,
[class*="input-element"]:hover {
  outline: none;
  border-color: #4D85FF !important;
  background-color: white !important; 
  box-shadow: 0 0 0 4px #D2E0FF !important;
  -webkit-transition:all .25s ease-in-out;
   -moz-transition:all .25s ease-in-out;
    -ms-transition:all .25s ease-in-out;
     -o-transition:all .25s ease-in-out;
        transition:all .25s ease-in-out;
}

.input-element-full {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .input-element-half {
    width: calc(100% - 8px);
  }
}
@media screen and (min-width: 769px) {
  .input-element-half {
    width: calc(50% - 30px);
  }
}
/*----------------------------------------------- INPUT (END) -----------------------------------------------*/


















/*----------------------------------------------- INFORMATION -----------------------------------------------*/
.information {
  display: flex;
  position: absolute;
  top: -6px;
  right: -6px;
}

.information > img {
  width: 24px;
  height: 24px;
  border-radius: 12px;
  background-color: #E5EDFF;
}

.information:hover > img {
  background-color: #B8CEFF;
  box-shadow: 0 0 0 3px #7BA4FF !important;
}



/*TOOLTIP*/
.information .information-tooltip {
  display: none;
  position: absolute;
  width: 150px;
  justify-content: center;
  bottom: 26px;
  right: -17px;
  margin: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 20px;
  background-color: white;
  align-items: center;
  padding-left: 16px;
  padding-right: 16px;
  box-shadow: 0px 10px 20px -10px rgba(58,59,69,.15), 0px 10px 40px -10px rgba(58,59,69,.36); 
}

/*TOOLTIP TIP*/
.information .information-tooltip:after, 
.information .information-tooltip:before {
  position: absolute;
  width: 0px; 
  height: 0px;
  bottom: -9px;
  right: 20px;
  margin: auto;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid white;
  content: " ";
}

.information:hover .information-tooltip {
  display: flex;
  z-index: 2;
}

.information .information-tooltip h6 {
  font-weight: 600;
  letter-spacing: -.5px;
  text-align: center;
  color: rgb(144,144,144);
  margin-left: 
}
/*----------------------------------------------- INFORMATION (END) -----------------------------------------------*/



















/*----------------------------------------------- SPECIFIC ELEMENTS -----------------------------------------------*/
/*QUIZ*/
#quiz {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  background-color: #e9f0ff;
  padding: 75px 50px;
}
@media screen and (max-width: 768px) {
  #quiz {
    min-height: 100vh;
  }
}
@media screen and (min-width: 769px) {
  #quiz {
    min-height: calc(100vh - 100px);
  }
}



form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  form {
    align-items: flex-start;
  }
}
@media screen and (min-width: 769px) {
  form {
    align-items: center;
  }
}



/*MODULE*/
[class*="module"] {
  width: 100%;
  max-width: 450px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  margin-left: 20px;
  margin-right: 20px;
  border-radius: 40px;
  box-sizing: content-box;
  background-color: rgb(248,248,248);
  display: none;
}
@media screen and (max-width: 768px) {
  form {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 769px) {
  form {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}


/*QUESTION-WRAPPER*/
[class*="module"] .question-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: 20px;
  margin-right: 20px;
  box-sizing: content-box;
}



/*QUESTION-HEADER*/
[class*="module"] .question-wrapper .question-navigation {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  [class*="module"] .question-wrapper .question-navigation {
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 769px) {
  [class*="module"] .question-wrapper .question-navigation {
    margin-bottom: 50px;
  }
}



[class*="module"] .question-wrapper .question-navigation .left {
  height: 40px;
}

[class*="module"] .question-wrapper .question-navigation .left img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition:all .25s ease-in-out;
     -moz-transition:all .25s ease-in-out;
      -ms-transition:all .25s ease-in-out;
       -o-transition:all .25s ease-in-out;
          transition:all .25s ease-in-out;
  background-color: #F0F3FA;
}

[class*="module"] .question-wrapper .question-navigation .left img:hover {
  background-color: #D3E0FF;
}

[class*="module"] .question-wrapper .question-navigation .right {
  display: flex;
  align-items: center;
  margin-right: 16px;
}

[class*="module"] .question-wrapper .question-navigation .right h5 {
  color: rgb(184,184,184);
  font-weight: 600;
  margin-right: 6px;
  margin-top: -2px;
}

[class*="module"] .question-wrapper .question-navigation .right .progress-bar {
  width: 80px;
  height: 12px;
  border-radius: 6px;
  background-color: #E5EDFF;
  position: relative;
}

[class*="module"] .question-wrapper .question-navigation .right .progress-bar span {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 12px;
  border-radius: 6px;
  background-color: #4E85FF;
  width: 100%;
}




/*QUESTION-HEADER*/
[class*="module"] .question-wrapper .question-header {
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}

[class*="module"] .question-wrapper .question-header h3 {
  font-weight: 600;
}



/*QUESTION-BODY*/
[class*="module"] .question-wrapper .question-body {
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 12px;
}
@media screen and (max-width: 768px) {
  [class*="module"] .question-wrapper .question-body  {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 769px) {
  [class*="module"] .question-wrapper .question-body  {
    margin-bottom: 38px;
  }
}


/*QUESTION-FOOTER*/
[class*="module"] .question-wrapper .question-footer {
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  [class*="module"] .question-wrapper .question-footer  {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 769px) {
  [class*="module"] .question-wrapper .question-footer  {
    margin-bottom: 32px;
  }
}

button.button-quiz-next{
  border:none
}
button.button-quiz-next:hover{
  border:none !important
}
.ui-datepicker-month, .ui-datepicker-year {
  padding-bottom: 5px;
  padding-top: 4px;
}

#results .noneligible ul {
  font-size: 15px;
  letter-spacing: -.25px;
  font-weight: 600;
  color: rgb(116,116,116);
  margin-bottom: 32px;
}

/*NEXT BUTTON*/
[class*="module"] [class*="button-quiz"] {
  height: 44px;
  display: flex;
  align-items: center;
  background-color: #4E85FF;
  border-radius: 4px;
  padding-left: 12px;
  padding-right: 8px;
  cursor: pointer;
  position: relative;
  -webkit-transition:all .25s ease-in-out;
     -moz-transition:all .25s ease-in-out;
      -ms-transition:all .25s ease-in-out;
       -o-transition:all .25s ease-in-out;
          transition:all .25s ease-in-out;
}
[class*="module"] [class*="button-quiz"] h4 {
  color: white;
  font-weight: 700;
  margin-right: 8px;
}
[class*="module"] [class*="button-quiz"] img {
  width: 32px;
  height: 32px;
}
[class*="module"] [class*="button-quiz"]:hover {
  box-shadow: inset 0 0 0 3px #4067C6;
}
[class*="module"] [class*="button-quiz"] a {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
}


  
/*CLOSE*/
.close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition:all .25s ease-in-out;
     -moz-transition:all .25s ease-in-out;
      -ms-transition:all .25s ease-in-out;
       -o-transition:all .25s ease-in-out;
          transition:all .25s ease-in-out;
  background-color: #D3E0FF;
  display: none;
}

.close:hover {
  background-color: #B8CEFF;
}



/*QUIZ-FOOTER*/
#quiz-footer {
  width: 100%;
  height: 100px;
  justify-content: center;
  align-items: flex-start;
  background-color: rgb(244,244,244);
}
@media screen and (max-width: 768px) {
  #quiz-footer {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  #quiz-footer {
    display: none;
  }
}

/*QUIZ-FOOTER IMG*/
#quiz-footer img {
  width: 320px;
}










/*ELIGIBLE/NONELIGIBLE MODULE*/
#results {
  width: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
  padding-top: 60px;
  padding-bottom: 40px;
  max-width: 935px;
  background-color: white;
  margin: 0;
}



/*ELIGIBLE*/
#results .eligible {
 display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 679px;
  padding: 0 90px;
  box-sizing: content-box;
}

#results .eligible h1 {
  width: 100%;
  font-weight: 700;
  text-align: center;
  color: #4F505C;
}

#results .eligible h3 {
  width: 100%;
  font-weight: 600;
  text-align: left;
  margin-bottom: 12px;
}

#results .eligible h5 {
  width: 100%;
  text-align: center;
  color: #4F505C;
  margin-top: 15px;
  font: normal normal normal 24px/33px Source Sans Pro;
}

#results > div > img {
  margin-bottom: 15px;
}



/*ELIGIBLE*/
#results .noneligible {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  margin-left: 20px;
  margin-right: 20px;
  box-sizing: content-box;
}

#results .noneligible h1 {
  width: 100%;
  font-weight: 700;
  text-align: left;
  color: #F5A623;
}

#results .noneligible h3 {
  width: 100%;
  font-weight: 600;
  text-align: left;
  margin-bottom: 12px;
}

#results .noneligible h5,.help-text-message {
  width: 100%;
  font-weight: 600;
  text-align: left;
  color: rgb(116,116,116);
  margin-bottom: 32px;
}

@media screen and (max-width: 768px) {
  #results {
    padding-top: 35px;
  }

  #results .eligible {
    padding: 0 40px;
  }
}

@media screen and (max-width: 480px) {
  #quiz {
    padding: 50px 25px;
  }
  #results .eligible {
    padding: 0 20px;
  }
  #results .eligible > img {
    width: 185px;
  }
  #results .eligible h5 {
    font-size: 18px;
    line-height: 26px;
  }
  #results .eligible h1 {
    font-size: 34px;
  }
}
/*----------------------------------------------- SPECIFIC ELEMENTS (END) -----------------------------------------------*/





.datepicker {
  cursor: pointer;
}
.ui-datepicker {
  width: 256px;
  border-radius: 28px;
  background-color: white;
  overflow: hidden;
  z-index: 3 !important;
  font-family: 'Source Sans Pro', sans-serif;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: normal;
  -webkit-font-smoothing: antialiased;
  margin: 0px;
  font-size: 12px;
  letter-spacing: 0px;
  font-weight: 400;
  box-shadow: 0px 10px 20px -10px rgba(58,59,69,.2), 0px 10px 40px -10px rgba(58,59,69,.48);
  /*DAYS OF WEEK COLOR*/
  color: #C0BFCE;
}
/*HEADER*/
.ui-datepicker-header {
  font-weight: 600;
  color: #82819E;
  padding-top: 16px;
  padding-bottom: 10px;
  background-color: rgb(250,250,250);
  background-color: #F4F7FE;
}
/*TITLE*/
.ui-datepicker-title {
  text-align: center;
  font-size: 15px;
}
/*CALENDAR*/
.ui-datepicker-calendar {
  width: 100%;
  text-align: center;
}
/*HEAD/ROW/CELL/SPAN*/
.ui-datepicker-calendar thead tr th span {
  display: block;
  width: 32px;
  margin-bottom: 5px;
}
/*CELL-DEFAULT*/
.ui-state-default {
  display: block;
  text-decoration: none;
  color: #82819E;
  line-height: 32px;
  border-radius: 50%;
}
.ui-state-default:hover {
  color: #4C84FF;
  background: #E4EDFF;
}
/*CELL-HIGHLIGHT*/
.ui-state-highlight {
  font-weight: 600;
  color: #4C84FF;
}
/*CELL-ACTIVE*/
.ui-state-active {
  font-weight: 600;
  color: white;
  background-color: #4C84FF;
}
.ui-state-active:hover {
  color: white;
  background-color: #4C84FF;
  box-shadow: 0px 0px 0px 3px #245CD7 inset;
}
/*ARROWS*/
.ui-datepicker-prev,
.ui-datepicker-next {
  display: none;
}
/*DROPDOWN-MONTH*/
.ui-datepicker-month {
  padding-top: 4px;
  padding-bottom: 5px;
  color: #4C84FF;
  font-weight: 600;
  cursor: pointer;
  width: 108px;
  margin-right: 4px;
  border-radius: 16px;
  padding-left: 12px;
  background-color: #EAEFFC;
  border: 2px solid #EAEFFC;
  -webkit-appearance:none;
  -webkit-transition:all .25s ease-in-out;
     -moz-transition:all .25s ease-in-out;
      -ms-transition:all .25s ease-in-out;
       -o-transition:all .25s ease-in-out;
          transition:all .25s ease-in-out;
}
.ui-datepicker-month:hover {
  background: #E4EDFF !important;
  border: 2px solid #4C84FF;
}
.ui-datepicker-month:focus {
  background: #E4EDFF !important;
  border: 2px solid #4C84FF;
  outline: none;
}
/*DROPDOWN-YEAR*/
.ui-datepicker-year {
  color: #4C84FF;
  font-weight: 600;
  cursor: pointer;
  width: 108px;
  margin-left: 4px;
  border-radius: 16px;
  padding-left: 12px;
  background-color: #EAEFFC;
  border: 2px solid #EAEFFC;
  -webkit-appearance:none;
  -webkit-transition:all .25s ease-in-out;
     -moz-transition:all .25s ease-in-out;
      -ms-transition:all .25s ease-in-out;
       -o-transition:all .25s ease-in-out;
          transition:all .25s ease-in-out;
}
.ui-datepicker-year:hover {
  background: #E4EDFF !important;
  border: 2px solid #4C84FF;
  border-radius: 16px;
}
.ui-datepicker-year:focus {
  background: #E4EDFF !important;
  border: 2px solid #4C84FF;
  outline: none;
}
/*BOTTOM PANEL*/
.ui-datepicker-buttonpane {
  position: relative;
  height: 48px;
}
/*DONE BUTTON*/
.ui-datepicker-close {
  margin-top: -4px;
  background: white;
  color: #4C84FF;
  border-radius: 24px;
  height: 48px;
  width: 48px;
  border: 0px solid transparent;
  display: block !important;
  right: 4px;
  position: absolute;
  font-weight: 600;
  -webkit-transition:all .25s ease-in-out;
     -moz-transition:all .25s ease-in-out;
      -ms-transition:all .25s ease-in-out;
       -o-transition:all .25s ease-in-out;
          transition:all .25s ease-in-out;
}
.ui-datepicker-close:hover {
  background-color: #3E4EDFF;
}
/*TODAY BUTTON*/
.ui-datepicker-current {
  display: none;
}
/*----------------------------------------------- UI DATEPICKER (END) -----------------------------------------------*/
 .logo{
    object-fit: cover;
  }


  /*----------------------------------------------- LOADER -----------------------------------------------*/
#loader {
  min-height: 340px;
  align-content: center;
}
#loader .loader-image {
  width: 180px;
  height: 90px;
}
/*TEXT*/
#loader .loader-text-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
#loader .loader-text-wrapper .loader-text-container {
  width: 100%;
  max-width: 180px;
  padding: 20px;
  border-radius: 32px;
  background-color: #FEF2DE;
}
#loader .loader-text-wrapper .loader-text-container h5 {
  width: 100%;
  font-weight: 600;
  color: #F5A623;
  text-align: center;
}

/*----------------------------------------------- ELIGIBILITY-FOOTER/DOWNLOAD BUTTONS -----------------------------------------------*/
.eligibility-footer {
  width: 100%;
  display: flex;
}
.app-download-buttons {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.app-download-buttons a {
  border-radius: 6px;
}
.app-download-buttons a:first-of-type {
  width: 126px;
  height: 42px; 
  margin-right: 4px;
}
.app-download-buttons a:last-of-type {
  width: 141px;
  height: 42px;
  margin-left: 4px;  
}
.app-download-buttons a:hover {
  box-shadow: 0px 4px 8px -4px rgba(58,59,69,.2), 0px 4px 20px -4px rgba(58,59,69,.48); 
}
.app-download-buttons img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}
/*----------------------------------------------- ELIGIBILITY-FOOTER/DOWNLOAD BUTTONS (END) -----------------------------------------------*/

/*NONELIGIBLE-EMAIL*/
#results .noneligible-email {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 100%;
  max-width: 300px;
  margin-left: 20px;
  margin-right: 20px;
  box-sizing: content-box;
}
#results .noneligible-email h1 {
  width: 100%;
  font-weight: 700;
  text-align: left;
  color: #F5A623;
}
#results .noneligible-email h3 {
  width: 100%;
  font-weight: 600;
  text-align: left;
  margin-bottom: 12px;
}
#results .noneligible-email h5 {
  width: 100%;
  font-weight: 600;
  text-align: left;
  color: rgb(116,116,116);
}
#results .noneligible-email h5:last-of-type {
  margin-bottom: 24px;
}
#results .noneligible-email a {
  text-decoration: none;
  color: #4E85FF;
}

.module-01 .question-wrapper .question-navigation .right .progress-bar span {
  width: calc((80px / 10)*1);
}
.module-02 .question-wrapper .question-navigation .right .progress-bar span {
  width: calc((80px / 10)*2);
}
.module-03 .question-wrapper .question-navigation .right .progress-bar span {
  width: calc((80px / 10)*3);
}
.module-04 .question-wrapper .question-navigation .right .progress-bar span {
  width: calc((80px / 10)*4);
}
.module-05 .question-wrapper .question-navigation .right .progress-bar span {
  width: calc((80px / 10)*5);
}
.module-06 .question-wrapper .question-navigation .right .progress-bar span {
  width: calc((80px / 10)*6);
}
.module-07 .question-wrapper .question-navigation .right .progress-bar span {
  width: calc((80px / 10)*7);
}
.module-08 .question-wrapper .question-navigation .right .progress-bar span {
  width: calc((80px / 10)*8);
}
.module-09 .question-wrapper .question-navigation .right .progress-bar span {
  width: calc((80px / 10)*9);
}


/*----------------------------------------------- QUESTION EXPLAINERS -----------------------------------------------*/
[class*="module"] .question-wrapper .question-header h5 {
  margin-top: 4px;
  font-weight: 600;
  color: rgb(184,184,184);
}
[class*="module"] .question-wrapper .question-header h5 .information-i {
  display: inline-block;
  font-weight: 800;
  background-color: rgb(236,236,236);
  padding-left: 8px;
  padding-right: 8px;
  border-radius: 10px;
  cursor: default;
}
/*----------------------------------------------- QUESTION EXPLAINERS (END) -----------------------------------------------*/


/*----------------------------------------------- REVIEW -----------------------------------------------*/
#results .noneligible .review {
  width: calc(100% - 40px);
  padding-top: 12px;
  padding-right: 20px;
  padding-bottom: 12px;
  padding-left: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
  border-radius: 8px;
  cursor: pointer;
  box-sizing: content-box;
  background-color: rgb(244,244,244);
}
/*REVIEW TOP*/
#results .noneligible .review .review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#results .noneligible .review .review-top h4 {
  margin-right: 25px;
  width: calc(100% - 56px);
  font-weight: 600;
  color: #4C84FF;
}
/*REVIEW PLUS-MINUS*/
#results .noneligible .review:hover .review-top .plus-minus {
  box-shadow: inset 0 0 0 3px #4067C6;
  -webkit-transition:all .25s ease-in-out;
     -moz-transition:all .25s ease-in-out;
      -ms-transition:all .25s ease-in-out;
       -o-transition:all .25s ease-in-out;
          transition:all .25s ease-in-out;
}
#results .noneligible .review .review-top .plus-minus {
  position: relative;
  height: 31px;
  width: 31px;
  border-radius: 50%;
  background-color: #4C84FF;
}
#results .noneligible .review .review-top .plus-minus span {
  position: absolute; 
  width: 3px;
  height: 13px;
  top: 9px;
  left: 0px;
  right: 0px;
  margin: auto;
  border-radius: 4px;
  background-color: white;
  -webkit-transition:all .25s ease-in-out;
     -moz-transition:all .25s ease-in-out;
      -ms-transition:all .25s ease-in-out;
       -o-transition:all .25s ease-in-out;
          transition:all .25s ease-in-out;
}
#results .noneligible .review .review-top .plus-minus span:first-of-type {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);  
}
#results .noneligible .review .review-top .plus-minus span:last-of-type {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);  
}
.plus-minus-rotate {
    -webkit-transform: rotate(90deg) !important;
            transform: rotate(90deg) !important;
}
/*REVIEW BOTTOM*/
#results .noneligible .review .review-bottom {
  display: none;
}
#results .noneligible .review .review-bottom [class*="review-item"] h5 {
  width: 100%;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 0px;
  color: rgb(145,145,145);
}
#results .noneligible .review .review-bottom [class*="review-item"] h6 {
  width: 100%;
  font-weight: 600;
  margin-left: 12px;
  color: rgb(170,170,170);
}
/*----------------------------------------------- REVIEW (END) -----------------------------------------------*/
.help-text {
  margin: 3px 2px 0px 0px;
  padding-top: 9px;
}

/*----------------- button-cta -----------------*/
/*CTA BUTTON*/
[class*="button-cta"] {
  height: 44px;
  border: 0px;
  border-radius: 22px;
  padding: 0px 10px 0px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  -webkit-transform:translateZ();
  -webkit-transition:all .25s ease-in-out;
     -moz-transition:all .25s ease-in-out;
      -ms-transition:all .25s ease-in-out;
       -o-transition:all .25s ease-in-out;
          transition:all .25s ease-in-out; 
}

/*CTA BUTTON - HOVER*/
[class*="button-cta"]:hover {
  -webkit-box-shadow: 0px 0px 0px 0px rgba(33,116,217,0) !important;
     -moz-box-shadow: 0px 0px 0px 0px rgba(33,116,217,0) !important;
          box-shadow: 0px 0px 0px 0px rgba(33,116,217,0) !important;
}

/*CTA BUTTON - TEXT*/
[class*="button-cta"] > div:first-of-type {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin: 0px 8px 0px 0px;
  speak: none;
  letter-spacing: normal;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  color: white;
}

/*CTA BUTTON - IMAGE/SYMBOL*/
[class*="button-cta"] > div:last-of-type {
  width: 24px;
  height: 24px;
  margin: 0px;
  border-radius: 12px;
}



/*CTA OVERLAY - BUTTON*/
[class*="button-overlay-cta"] {
  height: 48px;
  border: 0px;
  border-radius: 4px;
  padding: 0px 8px 0px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  -webkit-transform:translateZ();
  background-color: rgba(255,255,255,.2);
  -webkit-transition:all .25s ease-in-out;
     -moz-transition:all .25s ease-in-out;
      -ms-transition:all .25s ease-in-out;
       -o-transition:all .25s ease-in-out;
          transition:all .25s ease-in-out;
}

/*CTA OVERLAY BUTTON - HOVER*/
[class*="button-overlay-cta"]:hover {
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.8);
}

/*CTA OVERLAY BUTTON - TEXT*/
[class*="button-overlay-cta"] > div:first-of-type {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.5px;
  margin: 0px 8px 0px 0px;
  speak: none;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  color: white;
}

/*CTA OVERLAY BUTTON - IMAGE CONTAINER*/
[class*="button-overlay-cta"] > div:last-of-type {
  width: 32px;
  height: 32px;
}

/*CTA OVERLAY BUTTON - IMAGE*/
[class*="button-overlay-cta"] > div:last-of-type img {
  width: 32px;
  height: 32px;
}

.button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  margin-bottom: 15px;
}

.button-wrapper .button-cta-go {
  background-color: #004CB1;
  text-decoration: none;
}

.button-wrapper .button-cta-go div:last-of-type {
  background-color: #2174D9;
  border-radius: 22px;
}

a:hover {
  text-decoration: none;
}
/*----------------- button-cta (END) -----------------*/