* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  background-color: #d1d3d4;
  font-family: Arial, sans-serif;
  color: #003a46;
  font-size: 0.8em;
}
body strong {
  display: inline-block;
  font-size: 1.4em;
  margin-bottom: 5px;
}

.wrapper {
  width: 870px;
  height: 643px;
  margin: 0 auto;
  overflow: hidden;
}

.header {
  background: url("which_goal.svg") no-repeat center center;
  height: 82px;
}

main {
  display: flex;
  overflow: hidden;
}

.novGenderImage {
  position: relative;
  width: 42.2%;
  height: 100vw;
  background-position: -50px 60px !important;
  background: url("novWomanSilhouette.png") no-repeat;
  background-size: 229% !important;
  transition: opacity 0.4s ease;
  mix-blend-mode: multiply;
}
.novGenderImage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("novManSilhouette.png") no-repeat -50px 60px;
  background-size: 229%;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  pointer-events-mix-blend-mode: multiply;
}
.novGenderImage.man::after {
  opacity: 1;
}

.novSection {
  padding: 10px 10px 0 0;
  width: 54.8%;
}

/**** Form Elements ****/
/* Toggle Switch */
/* The switch - the box around the slider */
.novSwitch {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.novSwitch .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 10px;
}
.novSwitch .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.nowSwitchSlider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #5a7693;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.nowSwitchSlider:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  left: 0;
  bottom: -2px;
  background-color: white;
  box-shadow: 0 0 9px 0px #000;
  -moz-box-shadow: 0 0 9px 0px #000;
  -webkit-box-shadow: 0 0 9px 0px #000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .nowSwitchSlider {
  background-color: #5a7693;
}
input:checked + .nowSwitchSlider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
input:focus + .nowSwitchSlider {
  box-shadow: 0 0 1px #2196F3;
}

/* Rounded sliders */
.nowSwitchSlider.round {
  border-radius: 34px;
}
.nowSwitchSlider.round:before {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

/* .Toggle Switch */
/* The nowSwitchSlider itself */
.novSliderContainer {
  margin-bottom: 5px;
}
.novSliderContainer .novSliderValues {
  display: flex;
  margin-bottom: 10px;
}
.novSliderContainer .novSliderValues span:nth-of-type(2) {
  margin-left: auto;
}
.novSliderContainer .novSlider {
  width: 100%;
  -webkit-appearance: none;
  background: linear-gradient(to right, #5a7693 50%, #c1bfbf 50%);
  height: 10px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
}
.novSliderContainer .novSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 0 9px 0px #000;
  -moz-box-shadow: 0 0 9px 0px #000;
  -webkit-box-shadow: 0 0 9px 0px #000;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}
.novSliderContainer label[for=novSlider] {
  position: relative;
}
.novSliderContainer label[for=novSlider] .novSliderTooltip {
  position: absolute;
  top: -23px;
  left: 0;
  background: #2b4a59;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  transform: translateX(-80%);
  pointer-events: none;
}

/* novSelectionsValues */
.novSelectionsValues {
  display: flex;
  gap: 5px;
}
.novSelectionsValues .novSelectionsCol {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.novSelectionsValues .novSelectionsCol label {
  height: 40px;
  background-repeat: no-repeat;
}
.novSelectionsValues .novSelectionsCol label input[type=checkbox] {
  opacity: 0;
  display: none;
}
.novSelectionsValues .nsCol1 label:nth-of-type(1) {
  background-image: url("C1_Button_01.svg");
}
.novSelectionsValues .nsCol1 label:nth-of-type(1):has(input:checked) {
  background-image: url("C1_Button_01_Clicked.svg");
}
.novSelectionsValues .nsCol1 label:nth-of-type(2) {
  background-image: url("C1_Button_02.svg");
}
.novSelectionsValues .nsCol1 label:nth-of-type(2):has(input:checked) {
  background-image: url("C1_Button_02_Clicked.svg");
}
.novSelectionsValues .nsCol1 label:nth-of-type(3) {
  background-image: url("C1_Button_03.svg");
}
.novSelectionsValues .nsCol1 label:nth-of-type(3):has(input:checked) {
  background-image: url("C1_Button_03_Clicked.svg");
}
.novSelectionsValues .nsCol1 label:nth-of-type(4) {
  background-image: url("C1_Button_04.svg");
}
.novSelectionsValues .nsCol1 label:nth-of-type(4):has(input:checked) {
  background-image: url("C1_Button_04_Clicked.svg");
}
.novSelectionsValues .nsCol1 label:nth-of-type(5) {
  background-image: url("C1_Button_05.svg");
}
.novSelectionsValues .nsCol1 label:nth-of-type(5):has(input:checked) {
  background-image: url("C1_Button_05_Clicked.svg");
}
.novSelectionsValues .nsCol1 label:nth-of-type(6) {
  background-image: url("C1_Button_06.svg");
}
.novSelectionsValues .nsCol1 label:nth-of-type(6):has(input:checked) {
  background-image: url("C1_Button_06_Clicked.svg");
}
.novSelectionsValues .nsCol1 label:nth-of-type(7) {
  background-image: url("C1_Button_07.svg");
}
.novSelectionsValues .nsCol1 label:nth-of-type(7):has(input:checked) {
  background-image: url("C1_Button_07_Clicked.svg");
}
.novSelectionsValues .nsCol2 label:nth-of-type(1) {
  background-image: url("C2_Button_01.svg");
}
.novSelectionsValues .nsCol2 label:nth-of-type(1):has(input:checked) {
  background-image: url("C2_Button_01_Clicked.svg");
}
.novSelectionsValues .nsCol2 label:nth-of-type(2) {
  background-image: url("C2_Button_02.svg");
}
.novSelectionsValues .nsCol2 label:nth-of-type(2):has(input:checked) {
  background-image: url("C2_Button_02_Clicked.svg");
}
.novSelectionsValues .nsCol2 label:nth-of-type(3) {
  background-image: url("C2_Button_03.svg");
}
.novSelectionsValues .nsCol2 label:nth-of-type(3):has(input:checked) {
  background-image: url("C2_Button_03_Clicked.svg");
}
.novSelectionsValues .nsCol2 label:nth-of-type(4) {
  background-image: url("C2_Button_04.svg");
}
.novSelectionsValues .nsCol2 label:nth-of-type(4):has(input:checked) {
  background-image: url("C2_Button_04_Clicked.svg");
}
.novSelectionsValues .nsCol2 label:nth-of-type(5) {
  background-image: url("C2_Button_05.svg");
}
.novSelectionsValues .nsCol2 label:nth-of-type(5):has(input:checked) {
  background-image: url("C2_Button_05_Clicked.svg");
}
.novSelectionsValues .nsCol2 label:nth-of-type(6) {
  background-image: url("C2_Button_06.svg");
}
.novSelectionsValues .nsCol2 label:nth-of-type(6):has(input:checked) {
  background-image: url("C2_Button_06_Clicked.svg");
}
.novSelectionsValues .nsCol2 label:nth-of-type(7) {
  background-image: url("C2_Button_07.svg");
}
.novSelectionsValues .nsCol2 label:nth-of-type(7):has(input:checked) {
  background-image: url("C2_Button_07_Clicked.svg");
}
.novSelectionsValues .nsCol3 label:nth-of-type(1) {
  background-image: url("C3_Button_01.svg");
}
.novSelectionsValues .nsCol3 label:nth-of-type(1):has(input:checked) {
  background-image: url("C3_Button_01_Clicked.svg");
}
.novSelectionsValues .nsCol3 label:nth-of-type(2) {
  background-image: url("C3_Button_02.svg");
}
.novSelectionsValues .nsCol3 label:nth-of-type(2):has(input:checked) {
  background-image: url("C3_Button_02_Clicked.svg");
}
.novSelectionsValues .nsCol3 label:nth-of-type(3) {
  background-image: url("C3_Button_03.svg");
}
.novSelectionsValues .nsCol3 label:nth-of-type(3):has(input:checked) {
  background-image: url("C3_Button_03_Clicked.svg");
}

/* .novSelectionsValues */
.novInfoText {
  font-size: 0.7em;
  margin: 5px 0;
}

button {
  background: url("Submit_button.svg") no-repeat center center;
  width: 100%;
  height: 50px;
  border: none;
  cursor: pointer;
}

/**** .Form Elements ****/

/*# sourceMappingURL=main.css.map */
