
:root {
	--color-primary: #b884af;
	--color-primary-rgb: 184, 132, 175;
	--color-secondary: #56ab83;
	--color-secondary-rgb: 86, 171, 131;
	--color-color3: #b39c4c;
	--color-color3-rgb: 179, 156, 76;
	--color-color4: #98611a;
	--color-color4-rgb: 152, 97, 26;
	--color-color5: #392d7a;
	--color-color5-rgb: 57, 45, 122;
	--color-color6: #78aba8;
	--color-color6-rgb: 120, 171, 168;	
	--color-color7: #800e16;
	--color-color7-rgb: 128, 14, 22;
	--color-light: #f7f4ee;
	--color-light-rgb: 247, 244, 238;
	--color-white: #FFFFFF;
	--color-white-rgb:255, 255, 255;
	--color-dark: #322c4f;
	--color-dark-rgb: 50, 44, 79;
	--font-heading: 'open-sans', sans-serif;

	--font-heading-v1: 'Agenda', sans-serif;
	--font-heading-v2: 'Aurelio Titling', sans-serif;	
	--font-heading-v3: 'Bebas Neue', sans-serif;
	--font-heading-v4: 'BOLTZZ Sans', sans-serif;
	--font-heading-v5: 'Dubai Dubstep', sans-serif;
	--font-heading-v6: 'FattiPattiFLF', sans-serif;
	--font-heading-v7: 'Japanese 3017', sans-serif;
	--font-heading-v8: 'Placed', sans-serif;
	
	--font-body: 'open-sans', sans-serif;

	--radius-tiny: 4px 4px 4px 4px;
	--radius-small: 8px 8px 8px 8px;
	--radius-medium: 16px 16px 16px 16px;
	--radius-large: 32px 32px 32px 32px;
	--radius-xlarge: 64px 64px 64px 64px;

	--radius-top-tiny: 4px 4px 0 0;
	--radius-top-small: 16px 16px 0 0;
	--radius-top-medium: 16px 16px 0 0;
	--radius-top-large: 32px 32px 0 0;
	--radius-top-xlarge: 64px 64px 0 0;

	--radius-bottom-tiny: 0 0 4px 4px;
	--radius-bottom-small: 0 0 8px 8px;
	--radius-bottom-medium: 0 0 16px 16px;
	--radius-bottom-large: 0 0 32px 32px;
	--radius-bottom-xlarge: 0 0 64px 64px;
	
	--radius-left-tiny: 4px 0 0 4px;
	--radius-left-small: 8px 0 0 8px;
	--radius-left-medium: 16px 0 0 16px ;
	--radius-left-large: 32px 0 0 32px;
	--radius-left-xlarge: 64px 0 0 64px;

	--radius-right-tiny: 0 4px 4px 0;
	--radius-right-small: 0 8px 8px 0;
	--radius-right-medium: 0 16px 16px 0;
	--radius-right-large: 0 32px 32px 0;
	--radius-right-xlarge: 0 64px 64px 0;

}

.style-Agenda { font-family: var(--font-heading-v1); }
.style-Aurelio { font-family: var(--font-heading-v2); }
.style-BebasNeue { font-family: var(--font-heading-v3); }
.style-Boltzz { font-family: var(--font-heading-v4); 	line-height: 1.1;}
.style-DunbaiDupStep { font-family: var(--font-heading-v5); }
.style-FattiPatti { font-family: var(--font-heading-v6); 	line-height: 1.2 }
.style-Japanese3017 { font-family: var(--font-heading-v7); 	line-height: 0.8; }

.colors {
  color: var(--color-primary);
  color: var(--color-secondary);
  color: var(--color-color3);
  color: var(--color-color4);
  color: var(--color-color5);
  color: var(--color-color6);
  color: var(--color-color7);
  color: var(--color-light);
  color: var(--color-dark);
}

/* Text Colors */
.c-color1 {
  color: var(--color-primary);
}

.c-color2 {
  color: var(--color-secondary);
}

.c-color3 {
  color: var(--color-color3);
}

.c-color4 {
  color: var(--color-color4);
}

.c-color5 {
  color: var(--color-color5);
}

.c-color6 {
  color: var(--color-color6);
}

.c-color7 {
  color: var(--color-color7);
}

.c-color8 {
  color: var(--color-light);
}

.c-white {
  color: var(--color-white);
}

.c-black {
  color: var(--color-dark);
}

/* Background Colors */
.bg-color1 {
  background-color: var(--color-primary);
}

.bg-color2 {
  background-color: var(--color-secondary);
}

.bg-color3 {
  background-color: var(--color-color3);
}

.bg-color4 {
  background-color: var(--color-color4);
}

.bg-color5 {
  background-color: var(--color-color5);
}

.bg-color6 {
  background-color: var(--color-color6);
}

.bg-color7 {
  background-color: var(--color-color7);
}

.bg-color8 {
  background-color: var(--color-light);
}

.bg-white {
  background-color: var(--color-white);
}

.bg-black {
  background-color: var(--color-dark);
}

/* Button Colors */
.button-color1 {
  color: var(--color-white);
  background-color: var(--color-primary);
}

.button-color2 {
  color: var(--color-white);
  background-color: var(--color-secondary);
}

.button-color3 {
  color: var(--color-white);
  background-color: var(--color-color3);
}

.button-color4 {
  color: var(--color-white);
  background-color: var(--color-color4);
}

.button-color5 {
  color: var(--color-white);
  background-color: var(--color-color5);
}

.button-color6 {
  color: var(--color-white);
  background-color: var(--color-color6);
}

.button-color7 {
  color: var(--color-white);
  background-color: var(--color-color7);
}

.button-color8 {
  color: var(--color-dark);
  background-color: var(--color-light);
}

.button-white {
  color: var(--color-dark);
  background-color: var(--color-white);
}

.button-black {
  color: var(--color-white);
  background-color: var(--color-dark);
}

/*********************************************
 * APP Components
 *********************************************/

 
.backgrounds:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right:0;
  background: var(--color-dark);
  opacity: 0.7;
  content: '';
  z-index: 22;
} 

/* .reveal.has-parallax-background .slide-background {
  background-color: rgba(38, 75, 153, 0.4);
  mix-blend-mode: multiply;
} 

.reveal.has-parallax-background .slide-background.stack {
  background-color: rgba(38, 75, 153, 0.4);
  mix-blend-mode: normal;
} */

  @media (max-width: 970px) {
    .background {
      right: 0px;
    }
  }

.top-shade {
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 200px;
  background: rgb(7,16,56);
  background: linear-gradient(0deg, rgba(7,16,56,0) 0%, rgba(7,16,56,1) 100%);
  opacity: 0.7;
  z-index: 20;
}
  
.reveal {

 
}
.reveal .slides {
  text-align: left;
  display: flex;
  align-items: center;

 

}
.reveal .slides > section, 
.reveal .slides > section > section {
  position: fixed;
  padding: 0;
}

  @media (max-width: 970px) {
    .reveal .slides {
      width: 100% !important;
      top:0 !important;
      left:0 !important;
      text-align: left;
      display: flex;
      align-items: flex-start;

    }
    .reveal .slides > section, 
    .reveal .slides > section > section {
      position: fixed;
      padding: 0;

    }
  }



.slides section {

/* box-sizing: border-box;
width: calc(100% - 400px) !important;
padding:0;
height: auto !important; */

/* 

overflow-y: scroll;
-webkit-overflow-scrolling: touch; */

max-height: 100vh;
height: 100vh;
overflow: hidden;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;


}
.slides section.stack {
  overflow: hidden;

}
.content {
  padding: 10px;
}

.content {
  box-sizing: border-box;
  /* width: calc(100% - 400px); */
  max-width: 1080px;
  display: block;
  padding: 250px 40px 120px;
  margin: auto;
}
  /* @media (max-width: 1080px) {
    .content {
      width: calc(100% - 20px);
      padding: 180px 40px 80px !important;
    }
  }
  @media (max-width: 970px) {
    .slides section {
      padding: 140px 0px 120px !important;
    }
    .content {
      padding: 0px 20px 80px !important;
    }
  }
  */

  @media (max-width: 640px) {
    .content {
      padding-left: 20px;
      padding-right: 20px;
    }
  } 

.overview .content {
  padding: 50px !important
}
.content.centered {
  text-align: center;
}
.content .button.text {
  margin: 0;
  opacity: 0.5;
  margin-left: 5px;
}
.content-intro {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.label-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 30px;
}
.content .circle {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  margin-left: -2px;
  border-radius: 100px;
  background: #fff;
  font-weight: 700;
  
}
.content .label {
  display: inline-block;
  padding: 10px 20px 10px 10px;
  
  
}
.content .title {
  line-height: 1.1;
  font-size: 26px;
  font-weight: 400;
}
.content .title.medium {
  font-size: 54px;
}
.content .title.large {
  font-size: 63px;
}
.content .title.huge {
  font-size: 73px;
}
.content.centered .title {
  text-align: center;
}
.content .title.new-colour {
  color: #3b2d82 !important
}

.content .title .slide-number {
  position: relative;
  display: inline-block !important;
  right: auto;
  bottom: auto;
  z-index: 31;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1;
  color: #fff;
  background-color: transparent;
  padding: 0px;
}
.reveal .slide-number {
  font-family: 'Nunito Sans';
  font-size: 13px;
  bottom: 30px;
  left: 20px;
  right: auto;
  z-index: 9 ;
  font-weight: 700;
  border-radius: 3px;
  padding: 7px 10px;
}
.active-welkom .reveal .slide-number {
  display: none !important;

}
.slide-number-delimiter {
  padding: 0 5px;
  font-weight: 300;
}
.slide-number-b {
  font-weight: 300;
}
.slide-number-b:after {
  font-weight: 300;
  content:' beantwoord'
}

.reveal .slide-number a {
  color: currentColor; 
}

.reveal .slide-number-delimiter {
  margin: 0 0px;
}

.content .subtitle {
  font-family: 'Nunito Sans';
  font-size: 28px;
  font-weight: 300;
  line-height: 1.3;
  margin:0;
}
.field {
  padding-bottom: 15px;
}
.field label {
  font-size: 20px;
  display: block;
}
.field label.col1 {
  
  font-size: 32px;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 700;
}
.field label.col1.required span {
  color: red;
}
.field > label.required:last-letter {
  content: ' *';
  color: red;
  line-height: 1;
}


/* .field:not(.no-label) label:first-of-type {
  font-size: 28px;
  font-weight: 700;
  display: block;
  font-family: var(--font-body);
} */
.field input {
  border-radius: 0 10px !important;
}
.field input[type='checkbox'] {
  margin-right: 30px;
}
.field.no-label {
  margin-top: 20px !important;
}

.col2 {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.regel .col2 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.regel .col2 > label {
    display: flex;
    align-items: center;
    width: 48px;
    margin: 0;
}
.regel .col2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
}

.regel .col2 label:first-of-type,
.regel .col2 label:last-of-type {
    position: relative;
    
}

/* Bij 0 */
.regel .col2 label:first-of-type::before {
    content: "Helemaal oneens";
    position: absolute;
    top: 100%;
    left: 0;
transform: translateX(0%);
    margin-top: 12px;
    white-space: nowrap;
    font-size: 0.85rem;
      color: #fff;
}

/* Bij 5 */
.regel .col2 label:last-of-type::before {
    content: "Helemaal eens";
    position: absolute;
    top: 100%;
    right: 0;
    transform: translateX(0%);
    margin-top: 12px;
    white-space: nowrap;
    font-size: 0.85rem;
    color: #fff;
}

/* Hint blijft onder alles */
.regel .col2 .hint {
    flex: 0 0 100%;
    margin-top: 60px;
}

.regel .col2 > br {
    display: none;
}


input[type=checkbox] {
  position: relative;
  cursor: pointer;
  
}
input[type=checkbox]:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 30px;
  height: 30px;
  top: -12px;
  left: -2px;
  border: 0px solid #555555;
  border-radius: 0 10px;
  background-color: white;
  z-index: -1;
}
input[type=checkbox]:checked:before {
  background-color: #53D382;
}
input[type=checkbox]:checked:after {
  content: "";
  display: block;
  width: 7px;
  height: 13px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: -7px;
  left: 9px;
}



input[type=radio] {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
}
/* Verberg de echte radio */
.regel .col2 input[type="radio"] {
    position: absolute;
    opacity: 0;
}

input[type=radio]:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 48px;
  height: 48px;
  top: 0px;
  left: 0px;
  border: 0;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.165);
  opacity: 0.9;
  z-index: -1;
}

input[type=radio]:checked:before {
  background-color: var(--color-secondary);
}

input[type=radio]:checked:after {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  top: -3px;
  left: 7px;
  border-radius: 50%;
  background-color: var(--color-white);
}
/* Verberg de echte radio */
.regel .col2 input[type="radio"] {
    position: absolute;
    opacity: 0;
}

/* Maak het label de knop */
.regel .col2 label {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% / 6);
    height: 50px;
    margin: 0;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.165);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    font-weight: 700;
    color: var(--color-white);
    transition: all .2s ease;
}

/* Geselecteerde radio */
.regel .col2 label:has(input[type="radio"]:checked) {
    background: var(--color-secondary);
    color: var(--color-white);
}

.addformInput {
  width: 100%;
  max-width: 600px;
  padding: 10px 20px;
  border-radius: 0 30px;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.165);
  border:0;
  font-size: 20px;
  margin-top: -30px;
  color: #3b2d82
}
.addformInput:focus {
  background-color: rgba(255, 255, 255, 0.9);
}
.antibot-debug {
  display: none;
}
.reveal textarea {

  width: 100%;
  border-radius: 80px;
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.165);
    min-height: 180px;
    border:0;
    padding: 30px;
    font-size: 20px;
    color: var(--color-dark);
}
.reveal textarea:focus {
    background-color: rgba(255, 255, 255, 0.9);
}

.content .lead {
  display: block;
  padding-top: 20px;
  margin-left: 35px;
  max-width: 900px;
}
.content #results.lead {
  margin-bottom: 40px;
}
.content .lead p {
  max-width: 900px;
  font-size: 20px;
  font-weight: 500;
}
.content p.hint {
  flex-grow: 2;
  margin:0;
  margin-top: 20px;
  font-size: 16px;
}
.content .infotitle {
  font-size: 16px;
  font-weight: 400 !important;
  line-height: 1.4;
}

  
.content .footer {
  display: block;
  margin-top: 10px;
}
.content .footer:before {
  display: table;
  clear: both;
}
.checkboxes {
  border:0 !important;
  border-collapse: collapse;
  background: transparent !important;
}

  @media (max-width: 1080px) {
    .content .title {
      font-size: 40px;
    }
    .content .title.medium {
      font-size: 48px;
    }
    .content .title.large {
      font-size: 52px;
    }
    .content .title.huge {
      font-size: 63px;
    }
  }
  @media (max-width: 970px) {
    .content .title {
      line-height: 1;
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .content .title.medium {
      font-size: 42px;
    }
    .content .title.large {
      font-size: 46px;
    }
    .content .title.huge {
      font-size: 54px;
    }
    .content .subtitle {
      font-size: 24px;
      margin:0;
    }
    .content .lead {
      margin-left: 0px;
    }
  }
  @media (max-width: 640px) {
    .content {
      padding-top: 200px;
    }
    .content-intro {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      margin-bottom: 20px;
    }
    .label-wrap {
      display: inline-flex;
      align-items: center;
      justify-content: flex-start;
      border-radius: 30px;
      font-size: 12px;
    }
    .content .circle {
      width: 28px;
      height: 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 9px;
      margin-left: -2px;
      border-radius: 100px;
      background: #fff;
      font-weight: 700;
      font-size: 12px;
      
    }
    .content .label {
      display: inline-block;
      padding: 7px 15px 7px 7px;
      
      
    }
    .content .title {
      line-height: 1.2;
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .content .title.medium {
      font-size: 30px;
    }
    .content .title.large {
      font-size: 36px;
    }
    .content .title.huge {
      font-size: 40px;
    }
    .content .subtitle {
      font-size: 15px;
      margin:0;
    }
    .content .lead {
      margin-left: 0px;
    }
    .content .lead p {
      font-size: 16px;
    }
    input[type=checkbox]:before { 
      border-radius: 0 5px;
    }
    .field label {
      font-size: 18px;
      display: block;
    }
    .field label.col1 {
      font-size: 18px;
    }

    .field > label.optional {
      margin-bottom:20px !important;
    }
    .regel .col2 label {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 40px;
    }
    .content .footer {
      margin-top: 0px;
    }
    .content .button.text {
      margin: 0;
      opacity: 0.6;
      margin-left: 0px;
    }
    .content .lead p.hint {
      margin-top: 45px;
      font-size: 12px;
    }
    label[for="privacyvoorwaarden_akkoord-63"] {
      font-size: 16px;
 
    }
    .regel .col2 label:first-of-type::before,
    .regel .col2 label:last-of-type::before {

   font-size: 11px !important;
    
}
  
  }
  @media (max-width: 440px) {
    .content {
      padding-top: 100px;
    }
    .content .title {
      line-height: 1.2;
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .content .title.medium {
      font-size: 28px;
    }
    .content .title.large {
      font-size: 32px;
    }
    .content .title.huge {
      font-size: 36px;
    }
    .field label {
      font-size: 18px;
      display: block;
    }
    .field label.col1 {
      font-size: 18px;
      margin-bottom: 20px;
    }
    .reveal textarea {
      font-family: 'Nunito Sans';
      width: 100%;
      border-radius: 0 30px;
        background-color: rgba(255, 255, 255, 0.7);
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.165);
        min-height: 110px;
        border:0;
        padding: 20px;
        font-size: 16px;
        color: #3b2d82;
    }
    .field input[type='checkbox'] {
      margin-right: 30px;
    }
    .content .lead p.hint {
      font-size:11px;
    }
    
  }
  @media (max-width: 374px) {
    .content .title {
      line-height: 1.2;
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 5px;
    }
    .content .title.huge {
      font-size: 32px;
      margin-bottom: 0;
    }
    .content .lead p {
      font-size:14px;
    }
    
  }
/* ------------
Options
------------ */
.form {
  display: block;
  width: 100%;
}
.options {
  display: block;
  margin-top: 0px;
}

.options.options-group {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.options .options-button {
  position: relative;
  width: 100%;

  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;

  border-radius: 10px;
  padding: 15px 25px 15px 15px;
  text-align: left;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  z-index: 1;

  -webkit-transition: transform .15s ease;
  -moz-transition: transform .15s ease;
  transition: transform .15s ease;
}
.options.options-group .options-button:nth-last-child(1) {
  margin-right: 0px !important;
  margin-left: 20px
}
.options .options-button:before {
  position: absolute;
  top: -2px;
  left: -2px;
  bottom: -2px;
  right:-2px;
  background: rgba(0, 0, 0, 0);
  border: 3px solid #fff;
  border-radius: 10px;
  opacity: 0;
  content: '';

  -webkit-transition: opacity .15s ease;
  -moz-transition: opacity .15s ease;
  transition: opacity .15s ease;

}
.options.options-group .options-button {
  margin-right: 10px;
}
.options .options-button:hover {
  /* border-color: #264b99; */
  /* background-color: rgba(0, 0, 0, 0.7) */
  transform: scale(1.02);
  z-index: 3;
}
.options .options-button:hover:before {
  border-color: #fff;
  opacity: 1;
}

.options .options-button .text {
  display: block;
  line-height: 1.4;
}
.options .options-button .text.small {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}


.options .options-button .options-body {
  padding: 10px 0 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.options .options-button .options-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

  @media (max-width: 970px) {
    .options .options-button .text {

      font-size: 18px;
    }
    .options .options-button .text.small {
      font-size: 16px;
      font-weight: 400;
      line-height: 1.2;
    }
  }
  @media (max-width: 640px) {
    .options.options-group {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      flex-wrap: wrap;
    }
    .options .options-button {
      width: calc(20% - 5px);
      margin-bottom: 5px;
    }
    .options.options-group .options-button:nth-last-child(1) {
      margin-right: 0px !important;
      margin-left: 0px;
      /* width: 100%; */
      height: 30px;
    }
  }
/* Check*/
.options .options-button:after {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  right: 25px;

  font-family: 'Font Awesome 5 Pro';
  font-weight: 700;
  content:'\f00c'; 
}
.options .options-button:active,
.options .options-button:visited,
.options .options-button.checked {
  transform: scale(1.02);
  z-index: 3;
}
.options .options-button:active:before,
.options .options-button:visited:before,
.options .options-button.checked:before {
  border-color: #fff;
  opacity: 1;
}
.options .options-button:active:after,
.options .options-button:visited:after,
.options .options-button.checked:after {
  visibility: visible;
  opacity: 1;
}

/* Indicators */
.options .options-button .indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  width: 30px;
  height: 30px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-right: 10px;

  -webkit-transition: all .15s ease;
  -moz-transition: all .15s ease;
  transition: all .15s ease;

}
.options .options-button:hover .indicator,
.options .options-button.checked .indicator {
  color: #264b99;
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(255, 255, 255, 1);
}
.options .options-button.checked .indicator {
  color: #264b99;
}

/* Vertical */
.options.options-group.vertical-list {
  flex-direction: column;
}
.options.options-group.vertical-list.columns-2 {
  flex-direction: row;
  flex-flow: wrap;
  justify-content: flex-start;
}

.options.options-group.vertical-list .options-button {
  margin:0;
  margin-bottom: 5px;
  font-weight: 500;
}
.options.options-group.vertical-list.columns-2 .options-button {
  width: calc(50% - 5px);
  margin-right: 5px;
}
.options.options-group.vertical-list .options-button:hover {
  transform: scale(1);
}
.options.options-group.vertical-list .options-button:active,
.options.options-group.vertical-list .options-button:visited,
.options.options-group.vertical-list .options-button.checked {
  transform: scale(1);
  z-index: 3;
}

@media (max-width: 970px) {
  .options.options-group.vertical-list.columns-2 .options-button {
    width: 100%;
    margin-right: 0px;
  }
}



/* With Icons */
.options.options-group.options-group-with-icons {

}

.options.options-group.options-group-with-icons .options-button {
  width: 100%;

  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.options.options-group.options-group-with-icons .options-button i {
  font-size: 28px;

}
.options.options-group.options-group-with-icons .options-button i.large {
  font-size: 58px;
}



/* With Images */
.options.options-group.options-group-options-group-with-images {

}
.options.options-group.options-group-with-images .options-button {
  width: 100%;
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.options.options-group.options-group-with-images .options-button img {
  max-height: 140px
}


/* With Scale */
.options.options-group.options-group-with-scale {
  
}
.options.options-group.options-group-with-scale .options-button {
  margin-right: 2px;
  align-items: center;
  justify-content: center;
  padding: 25px 15px 25px 15px;
}
.options.options-group.options-group-with-scale .options-button:active:after,
.optoptions.options-group.options-group-with-scaleions .options-button:visited:after,
.options.options-group.options-group-with-scale .options-button.checked:after {
  visibility: visible;
  opacity: 1;
  top: 5px;
  right: 5px;
  font-size: 12px;
}

.options.options-group.options-group-with-scale .options-button:hover {
  transform: scale(1.04);
}
.options.options-group.options-group-with-scale .options-button:active,
.options.options-group.options-group-with-scale .options-button:visited,
.options.options-group.options-group-with-scale .options-button.checked {
  transform: scale(1.04);
  z-index: 3;
}



.options-info-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  padding: 10px 0;
}
.options-info-nothing {
  display: inline-block;
  margin-left: 30px;
}
.options-info-bar .for-group-scale {

}

@media (max-width: 970px) {
  .options.options-group.options-group-with-icons,
  .options.options-group.options-group-with-images {
    flex-flow: wrap !important;
  }
  .options.options-group.options-group-with-icons .options-button,
  .options.options-group.options-group-with-images .options-button {
    width: calc(50% - 5px);
    margin-right: 5px;
    margin-bottom: 5px;
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }
  .options.options-group .options-button:nth-last-child(1) {
    margin-right: 5px !important; 
  }

  .options.options-group.options-group-with-scale .options-button {
    padding: 15px 5px 15px 5px;
  }
  .options.options-group.options-group-with-images .options-button img {
    max-height: 100px
  }
  .options.options-group.options-group-with-scale .options-button .number {
    font-size: 16px;
    font-weight: 400;
  }
  .options.options-group.options-group-with-scale .options-button:nth-last-child(1) {
    margin-right: 0px !important; 
  }

}
@media (max-width: 640px) {
  .options-info-bar {
    width: 70%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    flex-direction: column;
    font-size: 10px;
    padding: 10px 0;
  }
  .options-info-nothing {
    display: inline-block;
    margin-left: 30px;
  }
  .options-info-less:before {
    width: 15px;
    content: '1';
    display: inline-block;
    margin-right: 10px;
  }
  .options-info-nothing {
    display: block;
    margin-left: 0px;
  }
  .options-info-nothing:before {
    width: 15px;
    content: 'X';
    display: inline-block;
    margin-right: 10px;
    
  }
  .options-info-alot:before {
    width: 15px;
    display: inline-block;
    content: '10';
    margin-right: 10px;
  }

  .options-info-bar .for-group-scale {
  
  }
}

/* Forms */

.option-input {
  box-sizing: border-box;
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 2px solid rgba(239, 179, 0, 0);
  padding: 10px;
  padding-left:0;
  font-size: 18px;
  color: #fff;
}
.option-input:focus {
  outline: 0;
  border-bottom: 2px solid #efb300;
}
.option-input::placeholder {
  color: rgba(255, 255, 255, 0.384);
}


.option-textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 2px solid rgba(239, 179, 0, 0.2);
  padding: 0px 0px 0px;
  padding-left:0;
  margin-top: 20px;
  font-size: 26px;
  color: #fff;
  resize: none;
  min-height: 50px;
	max-height: 200px;
}
.option-textarea:focus {
  outline: 0;
  border-bottom: 2px solid #efb300;
}
.option-textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}


/****** Style Star Rating Widget *****/

.rating { 
  border: none;
  float: left;
  width: 80%;
  max-width: 600px;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.rating > input { display: none; } 

/* Stars */
.rating > label:before { 
  margin: 0px 20px 10px 0;
  font-size: 60px;
  font-family: "Font Awesome 5 Pro";
  display: inline-block;
  content: "\f005";
  font-weight: 300;

}
/* Thumbs Up */
.rating.thumbs-up > label:before { 
  margin: 0px 25px 10px 0;
  font-size: 60px;
  display: inline-block;
  content: "\f164";
  font-weight: 300
}
/* Hearts */
.rating.hearts > label:before { 
  margin: 0px 20px 10px 0;
  font-size: 60px;
  display: inline-block;
  content: "\f004";
  font-weight: 300
}
/* Bolts */
.rating.bolts > label:before { 
  margin: 0px 40px 10px 0;
  font-size: 60px;
  display: inline-block;
  content: "\f0e7";
  font-weight: 300
}

@media (max-width: 440px) {
  .rating > label:before { 
    margin: 0px 10px 10px 0;
    font-size: 40px !important;
  }
}


.rating > label { 
  color: rgba(255, 255, 255, 0.363); 
  float: right; 
}

/***** CSS Magic to Highlight on Hover *****/

.rating > input:checked ~ label, /* show gold star when clicked */
.rating > input:checked ~ label:before,
.rating:not(:checked) > label:hover, /* hover current star */
.rating:not(:checked) > label:hover:before,
.rating:not(:checked) > label:hover ~ label,
.rating:not(:checked) > label:hover ~ label:before { color: #264b99; font-weight: 700;  } /* hover previous stars in list */

.rating > input:checked + label:hover, /* hover current star when changing rating */
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label, /* lighten current selection */
.rating > input:checked ~ label:hover ~ label { color: #264b99;  } 


/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  position: relative;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  padding: 18px 0 20px;
  margin-top: 10px;
  width: 100%;
  text-align: left;

  font-size: 24px;
  font-weight: 700;
  border: none;
  outline: none;
  transition: 0.4s;
  
}

.accordion:after {
  position: absolute;
  top: 15px;
  right:0;
  font-family: 'Font Awesome 5 Pro';
  content: '\f067'; /* Unicode character for "plus" sign (+) */
  font-size: 18px;
  color: #fff !important;
  float: right;
  margin: 5px;
}

.accordion.active:after {
  content: "\f068"; /* Unicode character for "minus" sign (-) */
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.accordion.active, .accordion:hover {
  background-color: transparent;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding:0px 25px 0px;
  background-color: rgba(0, 0, 0, 0.4);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  border-radius: 20px;
  margin-top: 10px;
  font-size: 15px;
  
}
.content .lead .panel p {
  font-size: 15px;
}
.panel p {
  margin-top: 15px;
 
  
}
.panel ul, .panel ol {
  margin-bottom: 25px;
}

.results-progress {
  position: absolute;
  left: 0;
  bottom:0;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
}
.results-progress span {
  width: 100%;
  height: 100%;
  border-radius: 100px;

}

  @media (max-width: 970px) {
    .accordion {
      font-size: 18px;
    }
    .accordion:after {
      font-size: 14px;
    }
  }
  @media (max-width: 440px) {
    .accordion {
      font-size: 14px;
      padding-right: 40px;
      margin-top: 0px;
    }
    .accordion:after {
      top: 16px;
      font-size: 12px;
    }
    .panel {
      padding:0px 15px 0px;
      background-color: rgba(0, 0, 0, 0.4);
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.2s ease-out;
      border-radius: 10px;
      margin-top: 10px;
      font-size: 13px;
      line-height: 1.5;
    }
    .content .lead .panel p {
      font-size: 13px;
    }
    .panel p {
      margin-top: 13px;
     
      
    }
    .panel ul, .panel ol {
      margin-bottom: 10px;

    }
    
  }


/*********************************************
* SIDEBAR
*********************************************/

.reveal .sidebar {
  position: fixed;
  top:0;
  left:0;
  width: 100%;
  height: 120px;
  background: transparent;
  z-index: 999;
}

/* .reveal .sidebar:before,
.reveal .sidebar:after {
  position: absolute;
  bottom: 0;
  left:0;
  width: 100%;
  height: calc(100vh - 0px);
  background: rgba(2, 154, 168, 0);

  content: '';
  z-index: -1;
} */
/* .reveal .sidebar:after {
  top: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 2px 1px rgba(0,0,0,0.09), 
              0 4px 2px rgba(0,0,0,0.09), 
              0 8px 4px rgba(0,0,0,0.09), 
              0 16px 8px rgba(0,0,0,0.09),
              0 32px 16px rgba(0,0,0,0.09);
} */


.reveal .sidebar-body {
  box-sizing: border-box;
  padding: 20px 0px 20px 0px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;

}

.reveal .logo-brand {
	position: absolute;
	top: -120px;
	left: 35px;
	display: block;
	width: 100%;
	max-width: 280px;
	height: 280px;
	background: #fff url('../images/logos/logo-stadis-03.svg') no-repeat;
	background-position-x: 0%;
	background-position-y: 0%;
	background-size: auto;
	background-position: 50% 72%;
	background-size: auto 80px;
	border-radius: 200px;
	z-index: 99;
}

.reveal .topbar-menu {
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin:0px 0 0 0;
  padding:0 0px 0 0;
  text-align: center;
  z-index: 99;
}
.reveal .topbar-menu li {
  list-style: none;
  margin:0;
  padding: 5px 10px;
}
.reveal .topbar-menu li a {
  display: block;
  padding: 15px 20px;
  font-size: 18px;
  color: rgb(255, 255, 255);
}


.reveal .sidebar-section {
  display: block;
  margin-top: 40px;
}
.reveal .sidebar-title {
  display: block;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 0px;
  color: #3b2d82;
}
.reveal .sidebar-text {
  font-size: 14px;
  color: #3b2d82;
}
.reveal .sidebar-text .whatsapp {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 0;
  color: #3b2d82;
}
.reveal .sidebar-text .whatsapp i {
  font-size: 24px;
  color: #264b99;
  margin-right: 10px;
}
.reveal .sidebar-section p {
  margin: 20px 0;
  line-height: 1.6; 
  
}

.reveal .sidebar-footer {
  box-sizing: border-box;
  position: absolute;
  bottom:0;
  left:0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  height: 200px;
  padding: 40px 20px 40px 0px;

}


.copyright {
  position: absolute;
  bottom:0;
  left:0;
  font-size: 10px;
  padding: 20px 0 25px 20px;
  opacity: 0.5;
  z-index: 22;
}

.score-meter {
    max-width: 100%;
    margin: 2rem 0;
}
.score-meter-track {
    position: relative;
    height: 14px;
    border-radius: 8px;
    background: linear-gradient(to right,
        var(--color-color7) 0%,
        var(--color-color4) 33%,
        var(--color-color3) 55%,
        var(--color-secondary) 100%);
    box-shadow: inset 0 1px 3px rgba(var(--color-dark-rgb), .25);
}
.score-meter-value {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
    font-size: 15px;
    color: var(--color-white);
    background: rgba(var(--color-dark-rgb), .55);
    padding: 1px 8px;
    border-radius: 10px;
    white-space: nowrap;
}
.score-meter-marker {
    position: absolute;
    top: 50%;
    width: 26px;
    height: 26px;
    margin-left: -13px;
    transform: translateY(-50%);
    background: var(--color-white);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(var(--color-dark-rgb), .35);
    transition: left .6s ease;
}
.score-meter-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 13px;
    opacity: .8;
}

@media (max-width: 970px) {
  .reveal .sidebar {
    display: block;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 80px;
   
    z-index: 3;
  }
  .reveal .sidebar:before,
  .reveal .sidebar:after {
    display: none;
  }
  .reveal .topbar-menu {
    position: absolute;
    top: 20px;
    right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin:0px 0 0 0;
    padding:0 0px 0 0;
    text-align: center;
    z-index: 99;
  }
  .reveal .topbar-menu li a {
    display: block;
    padding: 14px 15px 13px;
    font-size: 15px;
    color: rgb(255, 255, 255);
  }
  /* .reveal .topbar-menu li a span {
    display: none;
} */


  .reveal .sidebar-body {
    position: relative;
    padding: 0px 0px 0px 0px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    height: 100%;
  }
  .reveal .sidebar-menu {
    display: none !important;
  }
  .reveal .sidebar-section {
    display: none;
  }
  .reveal .sidebar-footer {
    position: absolute;
    bottom: auto;
    left: auto;
    top: 0;
    height: 80px;
    padding:0;
    align-items: center;
    justify-content: flex-end;
  }
 
  .reveal .sidebar-footer .copyright {
    display: none;
  }
}
@media (max-width: 640px) {
  .top-shade {
    height: 90px
  }
  .reveal .logo-brand {
	top: -150px;
	left: -45px;
	background-position: 55% 80%;
	background-size: auto 70px;

  }
  .reveal .topbar-menu {
    position: absolute;
    top: 2px;
    right: 5px;
    width: calc(100% - 160px);
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .reveal .topbar-menu li {
    margin:0;
    padding: 5px 5px 3px;
  }
  .reveal .topbar-menu li a {
    padding: 5px 13px;
    font-size: 13px;
    border-radius: 10px 0px;
  }

}
@media (max-width: 400px) {
  .reveal .topbar-menu {
    position: absolute;
    top: 5px;
  }
  .reveal .topbar-menu li a {
    font-size: 13px;
  }
  .copyright {
    position: absolute;
    bottom:0;
    left:0;
    font-size: 8px;
    padding: 10px 0 15px 15px;
    opacity: 0.5;
    z-index: 22;
  }
  
}
@media (max-width: 440px) {
  .reveal .logo-brand {
    top: 0px;
    width: 140px;
    min-height: 60px;
    max-height: 60px;
    background-position: 63% 45%;
    background-size: auto 30px;
    border-radius: 0px 0px 200px 0px;

  }
  .reveal .topbar-menu {
    position: absolute;
    top: 5px;
    right: 0;
    width: calc(100% - 140px);
  }
  .reveal .topbar-menu li {
    margin:0;
    padding: 5px 5px 2px;
  }
  .reveal .topbar-menu li a {
    padding: 5px 13px;
    font-size: 12px;
    border-radius: 10px 0px;
  }
  
}

