body{
    font-family: 'Poppins', sans-serif;
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.wrapper {
    min-height: 100%; 
    text-align: center;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

video {
  border: none;
  outline: none;
}
.responsive-video {
  width: auto;
  height: 100%;
  object-fit: cover;
  position: absolute;
  background: transparent;
  margin: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#intro {
    text-align: center;
    padding: 30px;
}

h3, p {
    color: #9A9999;
}

.hide {
  display: none !important
}


.step p {
  text-align: left;
  font-size: 13px;
}

.btn {
    background: linear-gradient(33deg, #3562AB, #224796);
    color: white;
    font-family: 'Poppins';
    font-weight: 600;
    padding: 15px 15px;
    border-radius: 55px;
    border: transparent;
    width: 49%;
    cursor: pointer;
}

.table-h{
  font-weight: 500;
}


table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.countryTitle{
  font-weight: 600;
  padding: 0 !important;
  margin: 0;
}

td {
  padding: 3px 0;
  text-align: left;
  font-size: 12px;
  color: #9A9999;
  width: 33%;

}

.step-header{
  position: absolute;
  top: 40px;
  right: 0px;
  padding: 0px;
  width: 90%;
  margin-inline: 24px;

}

#countries-selected{
 
}

.input-text input {
  font-family: 'Poppins', sans-serif;
    margin: 0;
    font-size: 1rem;
    padding: 0.50rem 1.25rem;
    border-radius: 20px;
    border: solid 1px #DDD;
    background-color: #FFF;
    width: -webkit-fill-available;
}

.countryStyle {    
  background: #9b9a9a1c;
  border-radius: 15px;
  padding: 10px 15px;
  margin-bottom: 10px;
}

/* The Modal (background) */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
  }
  
  /* Modal Content/Box */
  .modal-content {
    background-color: #fefefe;
    margin: 15% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 80%; 
    border-radius: 20px;
  }
  
  /* The Close Button */
  .close {
    color: #aaa;
    float: right;
    font-size: 30px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

#feedback-geos {
  display: none;
            margin: 20px auto;
            color: red;
            text-align: center;
        
}



  /**/

  .custom-select {
    position: relative;
    font-family: 'Poppins', sans-serif;
    width:85%; 
    margin: 20px auto;
  }
  
  .custom-select select {
    font-family: 'Poppins', sans-serif;
    appearance: none;
    border: 0;
    margin: 0;
    font-size: 1rem;
    width: 100%;
    height: 100%;
    padding: 0.75rem 1.25rem;
    border-radius: 15px;
    transition: box-shadow 0.2s;
    user-select: none;
    padding: 0.50rem 1.25rem;
    border-radius: 20px;
    border: solid 1px #DDD;
    background-color: #FFF;
  }


  select:focus  {
    outline: none;
    box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, 0.1), 0 0 0 1px hsla(230, 13%, 9%, 0.02), 0 0.3px 0.4px hsla(230, 13%, 9%, 0.025), 0 1px 3px -1px hsla(230, 13%, 9%, 0.2), 0 3.5px 6px hsla(230, 13%, 9%, 0.12), 0 0 0 2px hsl(0, 0%, 100%), 0 0 0 4px hsl(230, 7%, 23%);
  }
  
  .select-selected {
    background-color: DodgerBlue;
  }
  
  /* Style the arrow inside the select element: */
  .select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #000000 transparent transparent transparent;
  }
  
  /* Point the arrow upwards when the select box is open (active): */
  .select-selected.select-arrow-active:after {
    border-color: transparent transparent #000000 transparent;
    top: 7px;
  }
  
  /* style the items (options), including the selected item: */
  .select-items div,.select-selected {
    color: #000000;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
  }
  
  /* Style items (options): */
  .select-items {
    position: absolute;
    background-color: DodgerBlue;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
  }
  
  /* Hide the items when the select box is closed: */
  .select-hide {
    display: none;
  }
  
  .select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
  }



  :root {
    --select-icon-size: 16px; /* Icon size */
    --select-icon-margin: 1rem; /* Icon left/right positioning */
    --select-text-icon-gap: 0.5rem; /* Space between text and icon */
  }
  
  .select {
    position: relative;
  }
  
  .select__arrow,
  .select__flag {
    display: inline-block;
    position: absolute;
    /* Center both icons vertically */
    top: 75%;
    transform: translateY(-50%);
    width: var(--select-icon-size);
    height: var(--select-icon-size);
    pointer-events: none;
  }
  
  .select__arrow {
    color: inherit;
    right: var(--select-icon-margin);
  }
  
  .select__flag {
    left: var(--select-icon-margin);
  }



.body-inicial{
  background: #7eb2e1;
    color: white;
}




.step-0 h3, .step-0 p {
  color: white !important
}




  
:root{
  --select-icon-size: 16px;
  --darkNavy: #213140;
  --teal1: #66B3FB;
  --teal2: #4B9DEA;
  --charcoal: #555555;
  --gold: #B6985A;
}

  
/* MIXINS */
@mixin focusOutline {outline: dotted 1px #CCC; outline-offset: .45rem;}
@mixin hideInput {width: 0; height: 0; position: absolute; left: -9999px;}
@mixin breakpoint($point) {
  @if $point == 1100 {
    @media (max-width: 1100px) { @content ; }
  }
  @else if $point == 800 {
    @media (max-width: 800px) { @content ; }
  }
}

/* STYLE THE HTML ELEMENTS (INCLUDES RESETS FOR THE DEFAULT FIELDSET AND LEGEND STYLES) */

fieldset {
  margin: 0; 
  padding: 0.5rem 2rem; 
  box-sizing: border-box; display: block;
  border: none; 
  min-width: 90%;
  legend {
    margin: 0 0 1.5rem; padding: 0;
    width: 100%; float: left; display: table;
    font-size: 1.5rem; line-height: 140%; font-weight: 600; color: #333;  
    + * {clear: both;}
  }
}
body:not(:-moz-handler-blocked) fieldset {display: table-cell;}

.toggle {
  margin: 0 0 1.5rem;
  box-sizing: border-box;
  font-size: 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
}
.toggle input {
  width: 0;
  height: 0;
  position: absolute;
  left: -9999px;
}




.toggle input + label {
  margin: 0;
  padding: 0.75rem 2rem;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  border: solid 1px #DDD;
  background-color: #FFF;
  font-size: 1rem;
  line-height: 140%;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  transition: border-color 0.15s ease-out, color 0.25s ease-out, background-color 0.15s ease-out, box-shadow 0.15s ease-out;
 
}
.toggle input + label:first-of-type {
  border-radius: 20px;
}
.toggle input + label:last-of-type {
  border-radius: 20px;

}

.toggle1 input + label:first-of-type {
  border-radius: 20px;
}
.toggle1 input + label:last-of-type {
  border-radius: 20px;

}
.toggle input:hover + label {
  border-color: #213140;
}
.toggle input:checked + label {
  background: #3562abeb;
  color: #ffffffe0;
  z-index: 1;
}



.toggle1 input:hover + label {
  border-color: #213140;
}
.toggle1 input:checked + label {
  background: #3562abeb;
  color: #ffffffe0;
  z-index: 1;

}




@media (max-width: 800px) {
  .toggle input + label {
    padding: 0.75rem 0.25rem;
    flex: 0 0 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}


.toggle1 {
  margin: 0 0 1.5rem;
  box-sizing: border-box;
  font-size: 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
}
.toggle1 input {
  width: 0;
  height: 0;
  position: absolute;
  left: -9999px;
}
.toggle1 input + label {
  margin: 0;
  padding: 0.75rem 2rem;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  border: solid 1px #DDD;
  background-color: #FFF;
  font-size: 1rem;
  line-height: 140%;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  transition: border-color 0.15s ease-out, color 0.25s ease-out, background-color 0.15s ease-out, box-shadow 0.15s ease-out;
 
}



.written-input{
  height: unset;
  /* position: absolute; */
  top: 40%;
  left: 50%;
  padding-inline: 30px;
}

.step-2 label p {
  text-align: center;
  padding: 0;
  margin: 0;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-2 label div {
  padding: 5px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
}


.toggle1 input:checked + label p{
  
  color: #ffffffe0 !important;
 

}
.toggle input:checked + label p{
  
  color: #ffffffe0 !important;
 

}

@media (max-width: 800px) {
  .toggle1 input + label {
    padding: 0.75rem 0.25rem;
    flex: 0 0 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}


.first-btn{
  top: 650px;
  padding: 0px;
  width: 90%;
  position: absolute; 
  left: 50%;
  transform: translate(-50%, -50%);
}





/* STYLING FOR THE STATUS HELPER TEXT FOR THE DEMO */
.status {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
}
.status span {
  font-weight: 600;
  color: #B6985A;
}
.status span:first-of-type {
  display: inline;
}
.status span:last-of-type {
  display: none;
}
@media (max-width: 800px) {
  .status span:first-of-type {
    display: none;
  }
  .status span:last-of-type {
    display: inline;
  }
}

.countryBtn{
  position: absolute;
  top: 700px;
  right: 0px;
  padding: 0px;
  width: 90%;
  margin-inline: 23px;
}


.desktop-btn{
  position: absolute;
  top: 700px;
  right: 0px;
  padding: 0px;
  width: 90%;
  margin-inline: 23px;
}


.using {
  height: unset;
  position: absolute;
  top: 46%;
  left: 50%;
  padding: 0px;
  transform: translate(-50%, -50%);
  min-width: 100%;
  
}

.start-again-btn{
  position: absolute;
  top: 600px;
  right: 0px;
  padding: 0px;
  width: 90%;
  margin-inline: 23px;
}

/*Media queries*/

@media (max-height: 750px) {
  .countryBtn {
      top: 80% !important;
  }

  td{
      padding: 0px 0 !important;
      
  }
}

@media (min-width: 681px) {

  .modal-content{
    margin: 10% auto !important;
  }


  .first-btn{
    position: absolute;
    left: 50%;
    padding: 0px;
    width: 60% !important;
    transform: translate(-50%, -50%);
    margin-inline: 0 !important;
  }

  .first-btn button{
    width: 40% !important;
  }

  fieldset{
    min-width: 40% !important;
  }

  .written-input {
    height: unset;
    padding-inline: 30% !important;
    position: static;
    transform: none;
}
  
  .countryBtn{
    position: absolute;
    top: 80%;
    left: 50%;
    padding: 0px;
    width: 60% !important;
    transform: translate(-50%, -50%);
    margin-inline: 0 !important
  }

  .step-header{
    position: absolute;
    left: 50%;
    padding: 0px;
    width: 40% !important;
    transform: translate(-50%, -50%);
    margin-inline: 0 !important;
    top: 150px;
  }

  .custom-select {
    width: 60% !important;
  }
  
  #countries-selected{
    padding: 0px;
    width: 60% !important;
  }

  .start-again-btn{
    position: absolute;
    padding: 0px;
    width: 90%;
    top: 600px;
    left: 50%;
    margin-inline: auto;
    transform: translate(-50%, -50%);
    text-align-last: center;
  }

.desktop-btn{
  position: absolute;
  top: 780px;
  left: 50%;
  padding: 0px;
  width: 60% !important;
  transform: translate(-50%, -50%);
  margin-inline: 0 !important;
}

  .step-1{
    padding: 220px 30px !important;
  }

  .step-2{
    height: 40vh;
    padding: 270px 30px;
    position: relative;
    width: auto;
    display: flex;
    justify-content: center;
  }

  .toggle{
    margin: 0 0 1.5rem;
    box-sizing: border-box;
    font-size: 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-evenly;
    align-items: stretch;
  }

  .toggle1{
    margin: 0 0 1.5rem;
    box-sizing: border-box;
    font-size: 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-evenly;
    align-items: stretch;
  }

  .using{
    width: 40%;
    min-width: 40%;
  }

}