* {
  box-sizing: border-box;
}

body {
  background-color: #f1f1f1;
  font-size: 0.9rem !important;
}

#answersContainer, #regForm {
  background-color: #ffffff;
  margin: 50px auto;
  font-family: 'Open Sans', sans-serif;
  font-size: 11pt;
  padding: 20px;
  min-width: 300px;
  width: 70%;
}

h1 {
  margin-top: 80px;
  font-size: 24pt;
  font-weight: bold;
}

.shortLine {
  margin-top: 5px;
  margin-bottom: 40px;
  display: inline-block;
  text-align: left;
  height: 2px;
  width: 75px;
  background: #009fe3;
}

h2 {
  margin-top: 75px;
  margin-bottom: 50px !important;
  text-align: left !important;
  font-size: 14pt;
  font-weight: bold;
  color: #009fe3;
}

h3 {
  font-size: 11pt;
}


table {
  text-align: left !important;
  min-width: 100%;
}

th {
  padding-right: 5px;
  padding-left: 5px;
  text-align: center;
  vertical-align: middle !important;
  /*font-size: 12em !important;*/
}

td {
  padding-right: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;

}

h2 {
  text-align: center;
  margin-bottom: 30px;
}

h5 {
  margin-top: 50px;
  margin-bottom: 30px;
  font-size: 1.05rem !important;
}

.trContainer {
    height: 5vh;
}


.containerRad {
    display: block;
    position: relative;
    padding-left: 35px;
    margin: 0 auto;
    margin-top: 5%;
    margin-bottom: -5%;
    margin-left: 40%;
    cursor: pointer;
    font-size: 11pt;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


.containerRadSingle {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 2px;
    cursor: pointer;
    font-size: 11pt;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* Hide the browser's default radio button */
.containerRad input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.containerRadSingle input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmarkOrdinary {
    border: 4px solid;
    border-color: #009fe3;
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border-radius: 50%;
}

.checkmarkTable {
    border: 4px solid;
    border-color: #009fe3;
    position: absolute;
    top: 0;
    left: 9px;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border-radius: 50%;
}

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

.containerRadSingle:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.containerRad input:checked ~ .checkmark {
    background-color: #009fe3;
}

.containerRadSingle input:checked ~ .checkmark {
    background-color: #009fe3;
}

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

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

.containerRadSingle input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
/*.containerRad .checkmark:after {
 	top: 8px;
	left: 8px;
	width: 8px;
	height: 8px;
	border-radius: 100%;
	background: #009fe3;
}

.containerRadSingle .checkmark:after {
 	top: 8px;
	left: 8px;
	width: 8px;
	height: 8px;
	border-radius: 100%;
	background: #009fe3;
}
*/
.definition {
    background-color: #f0f1f3;
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 25px;
    padding-bottom: 25px;
    margin-top: 30px;
    width: 85%;
    border: solid 2px;
    border-color: #009fe3;
    border-radius: 8px;
    font-size: 10pt;
    font-weight: bold;
    color: #000000;

}

/*
input {
  padding: 10px;
  width: 100%;
  font-size: 17px;
  font-family: Raleway;
  border: 1px solid #aaaaaa;
}
*/

/* Mark input boxes that gets an error on validation: */
input.invalid {
  background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
  display: none;
}

button {
  background-color: #ffffff;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 9pt;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
}

button:hover {
  opacity: 0.8;
}

#prevBtn {
  background-color: #bbbbbb;
}

/* Make circles that indicate the steps of the form: */
.step {
  height: 25px;
  width: 30px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;
  border-radius: 0%;
  display: inline-block;
  opacity: 0.5;
}

.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #4CAF50;
}


.double-label-slider.ui-slider {
  margin-top: 24px;
  margin-left: 5%;
  margin-bottom: 60px;
  height: 4px;
  width: 80%;
  background: #677284;
  border: none;
  border-radius: 0; }

  .double-label-slider.ui-slider .ui-slider-handle {
    background: #009fe3;
    border: none;
    width: 20px;
    height: 20px;
    margin-top: -4pt;
    margin-left: -9px;
    border-radius: 100%;
    transition: box-shadow 0.2s ease;
    outline: 0;
    box-shadow: none!important;
    }

    .double-label-slider.ui-slider .ui-slider-handle.ui-state-hover,
    .double-label-slider.ui-slider .ui-slider-handle.ui-state-focus,
    .double-label-slider.ui-slider .ui-slider-handle.ui-state-active {
/*      box-shadow: 0 0 0 4px #009fe3; */}

  .double-label-slider.ui-slider .ui-slider-pip {
    top: -3px; }

    .double-label-slider.ui-slider .ui-slider-pip .ui-slider-line {
      background: white;
      width: 10px;
      height: 10px;
      margin-left: -4px;
      box-shadow: 0 0 0 4px #009fe3;
      border-radius: 100%;
      transition: all 0.4s ease; }

    .double-label-slider.ui-slider .ui-slider-pip .ui-slider-label,
    .double-label-slider.ui-slider .ui-slider-pip .ui-slider-label i,
    .double-label-slider.ui-slider .ui-slider-pip .ui-slider-label span {
      width: 10vw;
      margin-left: -5vw;
      margin-top: 2px;
      text-align: center; }

    .double-label-slider.ui-slider .ui-slider-pip .ui-slider-label {
      font-size: 8pt;
      color: #000000; }

      .double-label-slider.ui-slider .ui-slider-pip .ui-slider-label i {
        font-style: normal;
        font-size: 1.8em;
        position: absolute;
        top: -36px; }

        @media screen and (max-width: 500px) {
          #double-label-slider.ui-slider .ui-slider-pip .ui-slider-label i {
            font-size: 1.4em; }
      }

      .double-label-slider.ui-slider .ui-slider-pip .ui-slider-label span {
        opacity: 0.6;
        font-size: 1.2em;
        line-height: 1.3;
        position: absolute;
        top: 18px;
        transition: opacity 0.3s ease; }

        @media screen and (max-width: 500px) {
          .double-label-slider.ui-slider .ui-slider-pip .ui-slider-label span {
            font-size: 1.1em; }
        }

    .double-label-slider.ui-slider .ui-slider-pip:hover .ui-slider-label span,
    .double-label-slider.ui-slider .ui-slider-pip:focus .ui-slider-label span,
    .double-label-slider.ui-slider .ui-slider-pip.ui-slider-pip-selected .ui-slider-label span {
      opacity: 1; }

    .double-label-slider.ui-slider .ui-slider-pip.ui-slider-pip-selected .ui-slider-label {
      color: black; }

@media screen and (max-width: 500px) {
  .double-label-slider.ui-slider .ui-slider-pip .ui-slider-label i {
    font-size: 1.4em; }
}

.double-label-slider.ui-slider .ui-slider-pip .ui-slider-label span {
opacity: 0.6;
font-size: 8pt;
line-height: 1.3;
position: absolute;
top: 18px;
transition: opacity 0.3s ease; }

@media screen and (max-width: 500px) {
  .double-label-slider.ui-slider .ui-slider-pip .ui-slider-label span {
    font-size: 2.2vw;
    }
}

.double-label-slider.ui-slider .ui-slider-pip:hover .ui-slider-label span,
.double-label-slider.ui-slider .ui-slider-pip:focus .ui-slider-label span,
.double-label-slider.ui-slider .ui-slider-pip.ui-slider-pip-selected .ui-slider-label span {
  opacity: 1; }

.double-label-slider.ui-slider .ui-slider-pip.ui-slider-pip-selected .ui-slider-label {
  color: black; }

#ex1Slider .slider-selection {
	background: #BABABA;
}


.block {
  display: block;
}






@mixin rangeThumb {
    width: 18px;
    height: 18px;
    margin: -8px 0 0;
    border-radius: 50%;
    background: #000000;
    cursor: pointer;
    border: 0 !important;
}

@mixin rangeTrack {
    width: 100%;
    height: 2px;
    cursor: pointer;
    background: #000000;
}

.range {
    position: relative;
    width: 550px;
    height: 5px;
}

.range input {
    width: 100%;
    position: absolute;
    top: 2px;
    height: 0;
    -webkit-appearance: none; // Thumb

    &::-webkit-slider-thumb {
        -webkit-appearance: none; // needed again for Chrome & Safari
        @include rangeThumb;
    }

    &::-moz-range-thumb {
        @include rangeThumb;
    }

    &::-ms-thumb {
        @include rangeThumb;
    }

    // Track
    &::-webkit-slider-runnable-track {
        @include rangeTrack;
    }

    &::-moz-range-track {
        @include rangeTrack;
    }

    &::-ms-track {
        @include rangeTrack;
    }

    &:focus {
        // override outline/background on focus
        background: none;
        outline: none;
    }

    &::-ms-track {
        // A little somethin' somethin' for IE
        width: 100%;
        cursor: pointer;
        background: transparent;
        border-color: transparent;
        color: transparent;
    }
}

// Labels below slider
.range-labels {
    margin: 18px -41px 0;
    padding: 0;
    list-style: none;

    li {
        position: relative;
        float: left;
        width: 90.25px;
        text-align: center;
        color: #b2b2b2;
        font-size: 14px;
        cursor: pointer;

        &::before {
            position: absolute;
            top: -25px;
            right: 0;
            left: 0;
            content: "";
            margin: 0 auto;
            width: 9px;
            height: 9px;
            background: #000000;
            border-radius: 50%;
        }
    }

    .active {
        color: #000000;
    }

    .selected::before {
        background: #000000;
    }

    .active.selected::before {
        display: none;
    }
}

.partpill {
  font-weight: bold;
}



.partHeading {
    background-color: #25daa5;
    text-align: center;
    border: 1px solid;
    border-color: #CDFAED;
    padding-right: 10px !important;
}

.nav-link {
  padding: 0.1rem 0.2rem !important;
  font-size: 10pt;
  font-weight: bold;
}


.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    border-style: solid;
    border-radius: 30%;
    border-spacing: 1px;
    background-color:#fff !important;
    border-color: #009fe3 !important;
    color: #009fe3 !important;
}

.nav-link.disabled {
    color: black !important;
}


a.nav-link {
    color: #009fe3 !important;
}

a.nav-link.disabled:hover {
  color: black !important;
}

a.nav-link:hover {
    color: #1473E1 !important;
}
/*
.tdButton {
    width:15%;
    }

*/
.tdAnswer {
    vertical-align: middle !important;
}

.tdButton:hover .checkmark {
  /*background-color: #BEF7E6;*/
  /*background-color: #6c757d;*/
  background-color: #ccc;

  }

input[type=text] {
    height: 60%;
    width: 20%;
    padding: 12px 10px;
    margin: 12px 0;
    margin-top: -10px;
    box-sizing: border-box;
    border: 1px solid #677284;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: none;
    background-color: #f0f1f3;
    font-size: 10pt;
    border-radius: 12px;
}

.btn {
    font-weight: bold !important;
    font-size: 10pt;
    min-width: 9%;
    border-radius: 7px;
}

.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: none!important;
}


.btn-primary {
    background-color: #f40d3b !important;
    border-color: #f40d3b !important;
}

.btnPrevious {
    background-color: #677284 !important;
    border-color: #677284 !important;
}

.btnNext {
    background-color: #009fe3 !important;
    border-color: #009fe3 !important;
}

.btnCloseModal {
    background-color: #009fe3 !important;
    border-color: #009fe3 !important;
}

.swal-icon--warning__body, .swal-icon--warning__dot {
    background-color: #f40d3b;
}

.swal-icon--warning {
    border-color: #f40d3b;
    animation: none;
}

.swal-text {
    color: #f40d3b;
}

.swal-button {
    background-color: #677284 !important;
    color: #fff !important;
    font-weight: bold !important;
}

.swal-button




/*
input[type=text]:focus {
    border: 3px solid #97CCA3;
    border-radius: 20%;
    background-color: #C9DECE;
}
*/

.tdContainer {
    width: 100%;
    height: 100%;
    }


/*

table td .radio {
    display: block;
    }




}
/*
tbody tr td div {
    margin: 0 auto;
}

td input{
    display: block;
    vertical-align: middle;
}



*/

.btnForce {
  display: none;
}

.col-separated {
  border-right: 1px dotted lightgrey;
}

.part_info {
  text-align: center;
}
.part_questions {
  text-align: center;
}

@media
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {

	/* Force table to not be like tables anymore */
	table, thead, tbody, th, td, tr {
		font-size: 2.25vw;
	}

	#regForm {
	    width: 100%;
	}

	.definition {
	    width: 100%;
	}
}


.largeBtn {
  display: inline-block;
  vertical-align: top;
  position: relative;
  min-height: 100px;
  height: 25%;
  min-width: 192px;
  width: 48%; /*32%*/
  padding: 10px;
  margin-bottom: 16px;
  font-size: 12px;
  color: #000;
  border-radius: 12px;
  cursor: pointer;
}

.questionsLvl0 {
  background-color: #f0f1f3;
}
.questionsLvl1 {
  background-color: #e7e9ec;
}
.questionsLvl2 {
  background-color: #dee1e5;
}
.questionsLvl3 {
  background-color: #d5d9de;
}
.questionsLvl4 {
  background-color: #cdd1d7;
}
.questionsLvl5 {
  background-color: #b4b8bd;
}
.fullColor {
  color: #009fe3;
}
.questionPlus {
  position: absolute;
  right: 10%;
  font-size: 2em;
  bottom: -40%;
  display: inline-block;
}
.questionBottom {
  position: absolute;
  bottom: 5%;
  width: 100%;
}
.questionTop {
  font-weight: bold;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .modal-xl {
    width: 90%;
   max-width:1200px;
  }
}

.modal-title {
  margin-left: 10%;
  font-weight: bold;
  text-transform: uppercase;
  color: #009fe3;
}

.modalSub {
  padding: 6px;
  padding-left: 56px;
  width: 44%;
  min-width: 300px;
  background-color: #cdd1d7;
  margin-top: 52px;
  margin-bottom: 24px;
}

.levelDescription {
  margin-left: 10%;
  font-style: italic;
 }

 .levelDef {
  margin-left: 10%;
    font-weight: bold;
    margin-bottom: 12px;
 }

 .levelSuggestion {
  margin-top: 12px;
  margin-bottom: 36px;
  padding: 6px;
  margin-left: 10%;
  border-style: solid;
  border-color: #009fe3;
  border-radius: 12px;
 }

 .sectionTitle {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  margin: 12px;
  margin-top: 16px;
  color: #009fe3;
  padding-bottom: 4px;
  padding-left: 24px;
 }

 .mainSectionTitle {
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  font-size: 22px;
  text-align: center;
  margin-right: 30%;
}

.mainImage {
  width: 64px;
}

.container {
      max-width: 1920px;
      width: 95% !important;
}


.otherLevel {
  margin-left: 10%;
  padding: 2px;
  padding-left: 12px;
  margin-top: 2px;
  cursor: pointer;
  border-radius: 12px;
}

.otherLevelRecommendation {
  margin-left: 10%;
}

.recommendationPlus {
  font-size: 1.5em;
}

.modal-header .close {
  font-size: 3em;
}