@charset "UTF-8";
body,
html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-size: 1em;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  background-color: white;
}
:root {
  --amarelo: #eba63f;
  --verdeclaro: #5bae5e;
  --verde: #438945;
  --verdeescuro: #2f6031;
  --vermelho: #fe4a49;
  --azulescuro: #1d1d2c;
  --cyan: #3cbcc3;
  --cinzaclaro: #ebebeb;
  --cinza: #808080;
  --cinzaescuro: #262626;
}
.unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.selectable {
  -webkit-touch-callout: text;
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
.scroll::-webkit-scrollbar {
  width: 5px;
  background: var(--cinzaclaro);
}
.scroll::-webkit-scrollbar-thumb {
  background: var(--cinza);
}
.noscroll::-webkit-scrollbar {
  width: 0;
}
* {
  box-sizing: border-box;
}
.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ellipsis_wrap {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
embed {
  max-width: 100%;
  height: 100%;
  overflow: hidden !important;
}
.loader {
  position: fixed;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  align-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: center;
  z-index: 1000000;
}
.lds-ring {
  display: flex;
  width: 36px;
  height: 36px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.lds-ring div {
  display: block;
  width: 31px;
  height: 31px;
  margin: 3px;
  border: 4px solid #51d436;
  border-radius: 50%;
  animation: lds-ring 2s linear infinite;
  border-color: #51d436 #51d436 #51d436 transparent;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(359deg);
  }
}
.fade-in {
  opacity: 0;
  -webkit-filter: blur(5px);
  filter: blur(5px);
  transition: all 0.25s ease-in-out;
}
.fade-in.lazyloaded {
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.svg {
  fill: #fff;
  transition: all 0.25s ease-in-out;
}
.button {
  cursor: pointer;
  padding: 0 20px 0 20px;
  height: 2em;
  line-height: 2em;
  border-radius: 3px;
  text-align: center;
  background-color: var(--cinzaescuro);
  transition: all 0.25s ease-in-out;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.35);
}
.button:hover {
  -webkit-transform: translate(0, -1px);
  transform: translate(0, -1px);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
}
.button_l {
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
.button_l:hover {
  -webkit-transform: translate(0, -2px);
  transform: translate(0, -2px);
}
.circle {
  border-radius: 50%;
  display: inline-block;
}
.mpopupwraper {
  display: inline-block;
  cursor: pointer;
  z-index: 99999;
}
.mpopupcontent {
  position: absolute;
  z-index: 99999;
  width: 200px;
  height: 0;
  top: 2.5em;
  right: 0;
  background-color: var(--cinzaescuro);
  transition: all 0.25s ease-in-out;
  cursor: pointer;
  overflow: hidden;
}
.mpopupwraper:hover .mpopupcontent {
  height: 192px;
}
.mpopupcontent:hover {
  height: 192px;
}
input::placeholder {
  color: var(--cinza);
  font-size: 0.8em;
  font-weight: 400;
}
textarea::placeholder {
  color: var(--cinza);
  font-size: 0.8em;
  font-weight: 400;
}
input[type="email"] {
  padding: 0 0 0 5px;
  background: rgba(255, 255, 255, 0);
  border: 0;
  border-radius: 0;
  height: 2em;
  line-height: 2em;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 1em;
}
input[type="password"] {
  padding: 0 0 0 5px;
  background: rgba(255, 255, 255, 0);
  border: 0;
  border-radius: 0;
  height: 2em;
  line-height: 2em;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 1em;
}
input[type="submit"] {
  cursor: pointer;
  padding: 0 20px 0 20px;
  height: 2.5em;
  line-height: 2.5em;
  border: none;
  outline: 0;
  border-radius: 5px;
  text-align: center;
  font-size: 0.9em;
  color: var(--cinzaescuro);
  background-color: var(--cyan);
  transition: all 0.25s ease-in-out;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.35);
}
input[type="submit"]:hover {
  -webkit-transform: translate(0, -1px);
  transform: translate(0, -1px);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
  border: none;
  outline: 0;
}
input[type="time"] {
  padding: 5px 0 5px 0;
  background: rgba(255, 255, 255, 0);
  border: 0;
  border-radius: 0;
  height: 1.5em;
  line-height: 1.5em;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 1em;
}
input[type="checkbox"] {
  accent-color: #51d436;
}
input[type="text"] {
  padding: 5px 0 5px 1px;
  background: rgba(255, 255, 255, 0);
  border: 0;
  border-radius: 0;
  height: 1.5em;
  line-height: 1.5em;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 1em;
}
textarea {
  padding: 0 0 5px 0;
  background: rgba(255, 255, 255, 0);
  border: 0;
  border-radius: 0;
  height: 1.5em;
  line-height: 1.5em;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 1em;
}
input[type="number"] {
  padding: 5px 0 5px 0;
  background: rgba(255, 255, 255, 0);
  border: 0;
  border-radius: 0;
  height: 1.5em;
  line-height: 1.5em;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 1em;
}
input[type="date"] {
  padding: 5px 0 5px 1px;
  background: rgba(255, 255, 255, 0);
  border: 0;
  border-radius: 0;
  height: 1.5em;
  line-height: 1.5em;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 1em;
}
input[type="month"] {
  padding: 5px 0 5px 0;
  background: rgba(255, 255, 255, 0);
  border: 0;
  border-radius: 0;
  height: 1.5em;
  line-height: 1.5em;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 1em;
}
input[type="time"] {
  padding: 5px 0 5px 0;
  background: rgba(255, 255, 255, 0);
  border: 0;
  border-radius: 0;
  height: 1.5em;
  line-height: 1.5em;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 1em;
}
select {
  width: 100%;
  height: 1.5em;
  line-height: 1.5em;
  margin: -1px 0 0 -3px;
  padding: 0;
  border: 0;
  outline: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  background: rgba(255, 255, 255, 0);
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 1em;
}
#landing {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: hidden;
}
tx-small {
  font-size: 0.9em;
}
tx-xsmall {
  font-size: 0.8em;
}
tx-xxsmall {
  font-size: 0.6em;
}
tx-normal {
  font-size: 1em;
}
tx-large {
  font-size: 1.5em;
}
tx-xlarge {
  font-size: 2em;
}
tx-xxlarge {
  font-size: 3em;
}
tx-xxxlarge {
  font-size: 6em;
}
tx-ft1 {
  font-family: "Oswald", sans-serif;
}
tx-cyan {
  color: var(--cyan);
}
tx-vermelho {
  color: var(--vermelho);
}
a {
  color: var(--azul);
}
a:hover {
  text-decoration: none;
}
:focus {
  outline: 0;
}
