/* GERAL */
* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}
body {
  background-image: url(../img/background.png);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
  background-size: 60%;
  font-size: 16px;
  line-height: 140%;
  font-family: Arial, Helvetica, sans-serif;
}

.container-local {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 5%;
  justify-content: center;
  margin-top: 10%;
}

/* MENU */
.menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 10%;
}
.menu-logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.logo {
  width: 180px;
}

.logo-02 {
  margin-left: 5px;
  height: 20px;
}

.line {
  padding: 2px;
  background: rgb(8,48,72);
background: linear-gradient(90deg, rgba(8,48,72,1) 0%, rgba(253,184,19,1) 100%);
  );
}

/* BUTTON */
.btn-position {
  display: flex;
  flex-direction: row;
  justify-content: right;
}

/* CHECKBOX E RADIO BUTTON */
input[type="checkbox"],
input[type="radio"] {
  float: left;
  margin-left: -1.5em;
  margin-top: 2.5px;
}
input[type="checkbox"] + label,
input[type="radio"] + label {
  margin-bottom: 5px;
}
input[type="checkbox"],
input[type="radio"] {
  width: 1.1em;
  height: 1.1em;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
}
input[type="checkbox"] {
  border-radius: 0.25em;
}

input[type="radio"] {
  border-radius: 50%;
}
input[type="checkbox"]:active,
input[type="radio"]:active {
  filter: brightness(90%);
}
input[type="checkbox"]:focus,
input[type="radio"]:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
input[type="checkbox"]:checked,
input[type="radio"]:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

input[type="checkbox"]:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

input[type="radio"]:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

input[type="checkbox"]:indeterminate {
  background-color: #0d6efd;
  border-color: #0d6efd;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}

input[type="checkbox"]:disabled,
input[type="radio"]:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}

.margin-checkbox-radiobutton {
  margin-left: 1.5em;
}

.form-position {
  width: 100%;
}

/* DROP LIST AO LADO DO LABEL */
.question-drop {
  display: flex;
  flex-direction: column;
}

.question-drop-span {
  width: 100%;
}
.question-drop-form-position {
  width: 100%;
}

.font-pequena{
  font-size: 12px;
}

/* IMG */
.img-logos-seguros {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  
}

.img-marca {
  width: 100%;
  max-width: 130px;
}

/* RANGE BUTTON */
.range-div{
    width:100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    }
.range-input-div{
    width:85%
    }
.range-label-div{
    width: 10%;
    height: 30px;
    color: white;
    background-color: var(--bs-blue);
    text-align: center;
    border-radius: 5px;
    padding: 2px;
    }
/*MEDIA*/

@media only screen and (max-width: 480px) {
}

@media only screen and (min-width: 601px) {
  body {
    background-size: 40%;
  }
  .container-local {
    margin-top: 5%;
  }
  .menu-logo {
    justify-content: left;
    align-items: center;
  }



  .btn-position {
    justify-content: left;
  }

  .form-position {
    width: 50%;
  }
  .question-drop-form-position {
    width: 30%;
  }

  .question-drop {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .question-drop-span {
    width: 30%;
  }
  .range-div{
    width:50%;
    }
}

@media only screen and (min-width: 993px) {
  body {
    background-size: 30%;
  }

  .form-position {
    width: 30%;
  }

  .question-drop-span {
    width: 20%;
  }

  .menu-quitz {
    padding: 3% 10%;
    
  }
    .range-div{
    width:30%;
    }
}
