*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  -webkit-user-select: none;
  /* Safari */
  /* IE 10 and IE 11 */
  -moz-user-select: none;
       user-select: none;
  /* Standard syntax */
}

:root {
  --largura: 600px;
}

.container {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto auto auto auto;
  justify-items: center;
  align-items: center;
  background-color: rgb(194, 240, 249);
  width: var(--largura);
  margin-left: auto;
  margin-right: auto;
  overflow-y: hidden;
}

.cabecalho {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(20px, 3.8vw, 26px);
  text-align: center;
}

.lang {
  justify-self: end;
}

.lang a {
  padding: 3px 12px 3px 12px;
  text-decoration: none;
  background-color: black;
  color: white;
  font-size: 11px;
  border-radius: 5px;
  float: right;
  margin: 2px 4px;
}

.item {
  background-color: #9eecef;
  border-bottom: solid 4px rgb(194, 240, 249);
  overflow-y: hidden;
  width: 100%;
}

.item-1 {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto auto auto;
  justify-items: center;
  align-items: center;
}

.item-2 {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto auto auto auto;
  justify-items: center;
  align-items: center;
  row-gap: 8px;
  padding: 8px 0px;
}

label {
  display: block;
  text-align: center;
}

#nome {
  text-align: center;
}

.botaoSelect {
  padding: 2px 0px;
}

.texto,
.ui-menu-item {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 16px;
  text-align: center;
}

#nome {
  width: 150px;
}

#adose {
  width: 70px;
  text-align: center;
}

.doslide {
  display: grid;
  grid-template-columns: 40px auto 40px;
  grid-template-rows: auto;
  justify-items: center;
  align-items: center;
  width: 100%;
}

.menos,
.mais {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 34px;
  font-weight: bold;
  width: 35px;
  height: 35px;
  background-color: white;
  border-radius: 50%;
  border: 2px solid blue;
  cursor: 1;
}

.slider {
  width: 94%;
  height: 4px;
}

.botaoSlider {
  border: none !important;
  outline: none !important;
  border-radius: 50%;
  top: -7px !important;
  background: green !important;
  transition: transform 0.15s ease;
}

.botaoSlider:focus,
.botaoSlider:hover {
  transform: scale(1.2);
  z-index: 10;
  /* prevents clipping */
}

.range {
  background: blue;
}

.ui-slider-range-min {
  background: rgb(210, 9, 9) !important;
}

table,
th,
td {
  border: 1px solid black;
  border-collapse: collapse;
}

table {
  margin: 8px auto;
  width: 90%;
  background-color: white;
}

td {
  text-align: center;
}

.item-4 {
  padding: 4px;
}

.referencia,
.areferencia {
  padding: 2px 5px 4px 20px;
  text-indent: -15px;
  font-size: clamp(14px, 3vw, 16px);
  font-weight: bold;
}

.referencia {
  font-style: italic;
  text-decoration: underline;
}

.areferencia {
  font-size: clamp(13px, 2vw, 14px);
  font-weight: normal;
}

@media screen and (max-width: 610px) {
  :root {
    --largura: 100%;
  }
}/*# sourceMappingURL=psico.css.map */