/* main.css */
/*light mode*/
:root {
  --ground: #fff;
  --background: #f7f7f7;
  --light: #cfcfcf;
  --solid: #b1b1b1;
  --disabled: #9e9e9e;
  --strong: #515151;
  --color: #222222;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  font-family: ARIAL;
}

body {
  background: var(--background);
}

.will-transform {
  will-change: transform;
}

.lazy-image {
  display: "";
}

a {
  text-decoration: none;
  cursor: pointer;
}

select:required:invalid {
  color: var(--disabled);
}

.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.hide-disabled [value=""][disabled] {
  display: none;
}

input,
select,
button {
  background-color: var(--ground)
}

button:focus {
  outline: none;
  box-shadow: none;
}

table {
  border-collapse: collapse;
  word-break: break-all;
}

tr:hover {
  background-color: var(--light);
}

.scroll-y {
  overflow-y: scroll;
}

.scroll-x {
  overflow-x: scroll;
}

.scroll-hide {
  overflow-y: hidden;
  overflow-x: hidden;
}

.scroll-y-hide {
  overflow-y: hidden;
}

.scroll-x-hide {
  overflow-x: hidden;
}

.scroll-y-auto {
  overflow-y: auto;
}

.scroll-x-auto {
  overflow-x: auto;
}

.pointer {
  cursor: pointer;
}

.zoom-in {
  cursor: zoom-in;
}

.zoom-out {
  cursor: zoom-out;
}

.grab {
  cursor: -webkit-grab;
  cursor: -moz-grab;
}

.grab:active {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
}

.carousel-btn {}

.carousel-btn::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -40px;
  right: -5px;
  bottom: -45px;
  cursor: pointer;
  background-color: transparent;
}

.wrap {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.nowrap {
  white-space: nowrap;
}

.pre-wrap {
  white-space: pre-wrap;
}

.wrapper {
  white-space: normal;
}

.noselect {
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
  -o-user-select: none;
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -webkit-user-select: none;
  /* Safari */
  -webkit-touch-callout: none;
  /* iOS Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
}

.hide-number-arrows::-webkit-inner-spin-button,
.hide-number-arrows::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.hide-number-arrows {
  -moz-appearance: textfield;
}

.hide-in-web {
  display: none;
}

.hide-in-mobile {
  display: initial;
}

.badge {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart-badge {
  position: absolute;
  top: -3px;
  right: -3px;

  min-width: 18px;
  height: 18px;
  padding: 0 4px;

  background: red;
  color: #fff;

  font-size: 12px;
  font-weight: 600;

  border-radius: 999px;

  display: grid;
  place-items: center;

  line-height: 1;
  /* remove interferência */
  box-sizing: border-box;

  transform: translate(0, 0);
  /* evita herança estranha */
}

.msg-window {
  z-index: 9999;
  position: absolute;
  background-color: rgba(128, 128, 128, 0.3);
}

.auth-div {
  position: fixed;
  background-color: var(--strong);
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 999;
}

.auth-content {
  position: fixed;
  background-color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}

.msg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;

  height: 100vh;
  height: 100dvh;

  background-color: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);

  z-index: 999;
}

.msg-popup {
  position: fixed;
  top: 45%;
  left: 49.5%;
  transform: translate(-50%, -50%);
  opacity: 1;
  will-change: transform;
  max-height: 85%;
  max-width: 99.5%;
}

.msg-popup.fullscreen {
  top: 0;
  left: 0;
  width: 100vw;
  max-width: 100vw;

  height: 100vh;
  height: 100dvh;

  max-height: 100vh;
  max-height: 100dvh;

  transform: none;
  border-radius: 0;
}

.presentation-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
}

.presentation-element {
  z-index: 10000;
  pointer-events: none;
}

.presentation-box {
  position: absolute;
  z-index: 10001;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.scroll-small {
  overflow-y: auto;
}

/* Estilo da barra de rolagem */
.scroll-small::-webkit-scrollbar {
  width: 4px;
  height: 5px;
}

/* Estilo da trilha do scroll */
.scroll-small::-webkit-scrollbar-track {
  background: var(--solid);
}

/* Estilo do indicador de rolagem (thumb) */
.scroll-small::-webkit-scrollbar-thumb {
  background: var(--strong);
}

/* Estilo do canto entre a barra de rolagem e o indicador de rolagem */
.scroll-small::-webkit-scrollbar-corner {
  background: var(--ground);
}

.scroll-line {
  overflow-y: auto;
}

/* Estilo da barra de rolagem */
.scroll-line::-webkit-scrollbar {
  width: 1px;
  height: 1px;
}

/* Estilo da trilha do scroll */
.scroll-line::-webkit-scrollbar-track {
  background: var(--solid);
}

/* Estilo do indicador de rolagem (thumb) */
.scroll-line::-webkit-scrollbar-thumb {
  background: var(--strong);
}

/* Estilo do canto entre a barra de rolagem e o indicador de rolagem */
.scroll-line::-webkit-scrollbar-corner {
  background: var(--ground);
}

/* actions.css */
.fit {
  object-fit: fill;
}

.hide {
  visibility: hidden;
}

.display-none {
  display: none;
}

.display-block {
  display: block;
}

.width-fill {
  width: 100%;
}

.ellipsis {
  overflow: hidden;
  position: relative;
  line-height: 1.2em;
  max-height: 3.6em;
  text-align: justify;
  padding-right: 1em;
}

.ellipsis:before {
  content: '...';
  position: absolute;
  right: 0;
  bottom: 0;
}

.ellipsis:after {
  content: '';
  position: absolute;
  right: 0;
  width: 1em;
  height: 1em;
  margin-top: 0.2em;
  background: var(--ground);
}

/* box.css */
.container {
  display: flex;
  flex-wrap: wrap;
}

.box {
  box-sizing: border-box;
  align-self: flex-start;
}

.mobile-box {
  box-sizing: border-box;
  align-self: flex-start;
}

/* Boxes without margin */
.a1 {
  width: 100%;
}

.a2 {
  width: 50%;
}

.a3 {
  width: 33.33%;
}

.a4 {
  width: 25%;
}

.a5 {
  width: 20%;
}

.a6 {
  width: 16.66%;
}

.a7 {
  width: 14.28%;
}

.a8 {
  width: 12.5%;
}

.a9 {
  width: 11.11%;
}

.a10 {
  width: 10%;
}

.a11 {
  width: 9.09%;
}

.a12 {
  width: 8.33%;
}

.a2-3 {
  width: 66.67%;
}

.a3-4 {
  width: 75%;
}

.a2-5 {
  width: 40%;
}

.a3-5 {
  width: 60%;
}

.a4-5 {
  width: 80%;
}

.a5-6 {
  width: 83.34%;
}

.a2-7 {
  width: 28.57%;
}

.a3-7 {
  width: 42.85%;
}

.a4-7 {
  width: 57.15%;
}

.a5-7 {
  width: 71.43%;
}

.a6-7 {
  width: 85.72%;
}

.a3-8 {
  width: 37.5%;
}

.a5-8 {
  width: 62.5%;
}

.a7-8 {
  width: 87.5%;
}

.a2-9 {
  width: 22.22%;
}

.a4-9 {
  width: 44.44%;
}

.a5-9 {
  width: 55.55%;
}

.a7-9 {
  width: 77.78%;
}

.a8-9 {
  width: 88.89%;
}

.a2-10 {
  width: 20%;
}

.a3-10 {
  width: 30%;
}

.a6-10 {
  width: 60%;
}

.a7-10 {
  width: 70%;
}

.a9-10 {
  width: 90%;
}

.a2-11 {
  width: 18.18%;
}

.a3-11 {
  width: 27.27%;
}

.a4-11 {
  width: 36.36%;
}

.a5-11 {
  width: 45.45%;
}

.a6-11 {
  width: 54.54%;
}

.a7-11 {
  width: 63.63%;
}

.a8-11 {
  width: 72.72%;
}

.a9-11 {
  width: 81.81%;
}

.a10-11 {
  width: 90.90%;
}

.a5-12 {
  width: 41.66%;
}

.a7-12 {
  width: 58.34%;
}

.a11-12 {
  width: 91.67%;
}

/* Boxes with margin */
.b1 {
  width: 99%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b2 {
  width: 49%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b3 {
  width: 32.33%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b4 {
  width: 24%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b5 {
  width: 19%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b6 {
  width: 15.66%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b7 {
  width: 13.28%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b8 {
  width: 11.5%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b9 {
  width: 10.11%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b10 {
  width: 9%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b11 {
  width: 8.09%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b12 {
  width: 7.33%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b2-3 {
  width: 65.66%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b3-4 {
  width: 74%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b2-5 {
  width: 39%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b3-5 {
  width: 59%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b4-5 {
  width: 79%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b5-6 {
  width: 82.33%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b2-7 {
  width: 27.57%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b3-7 {
  width: 41.85%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b4-7 {
  width: 56.14%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b5-7 {
  width: 70.42%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b6-7 {
  width: 84.71%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b3-8 {
  width: 36.5%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b5-8 {
  width: 61.5%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b7-8 {
  width: 86.5%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b2-9 {
  width: 21.22%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b4-9 {
  width: 43.4%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b5-9 {
  width: 54.56%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b7-9 {
  width: 76.78%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b8-9 {
  width: 87.89%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b2-10 {
  width: 19%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b3-10 {
  width: 29%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b4-10 {
  width: 39%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b6-10 {
  width: 59%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b7-10 {
  width: 69%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b8-10 {
  width: 79%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b9-10 {
  width: 89%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b2-11 {
  width: 16.56%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b3-11 {
  width: 26.19%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b4-11 {
  width: 35.35%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b5-11 {
  width: 44.29%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b6-11 {
  width: 53.55%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b7-11 {
  width: 62.64%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b8-11 {
  width: 71.73%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b9-11 {
  width: 80.82%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b10-11 {
  width: 89.91%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b5-12 {
  width: 40.67%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b7-12 {
  width: 57.34%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

.b11-12 {
  width: 90.67%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}

/* carousel.css */
.carousel-container {
  position: relative;
  width: 100%;
}

.carousel-slides {
  display: flex;
}

.carousel-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-slide img {
  height: auto;
  display: none;
  margin: 0 auto;
}

.carousel-prev,
.carousel-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  margin-left: 5px;
  width: auto;
  margin-top: -22px;
  padding: 4px 10px;
  color: rgba(0, 0, 0, 1);
  background-color: rgba(200, 200, 200, 0.5);
  font-weight: bold;
  font-size: 15px;
  transition: 0.2s ease;
  border-radius: 50%;
  user-select: none;
}

.carousel-next {
  right: 5px;
  border-radius: 50%;
}

.carousel-prev:hover,
.carousel-next:hover {
  background-color: rgba(100, 100, 100, 0.5);
}

.carousel-content {
  object-fit: contain;
  width: 100%;
}

/* color.css */
.c-fff {
  color: #fff
}

.c-000 {
  color: #000
}

/* dropdown.css */
.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 8;
  width: 100%;
  display: none;
}

/* Legacy code below */
.dropdown ul {
  list-style: none;
  position: relative;
  display: inline-table;
}

.dropdown ul:after {
  content: "";
  clear: both;
  display: block;
}

.dropdown ul li {
  float: left;
  width: 100%;
}

.dropdown ul li:hover>ul {
  display: block;
  z-index: 2;
}

.dropdown ul ul {
  display: none;
  border-radius: 0px;
  padding: 0;
  position: absolute;
  top: 100%;
}

.dropdown ul ul li {
  float: none;
  position: relative;
  z-index: 10;
}

.dropdown ul ul ul {
  position: absolute;
  left: 100%;
  top: 0;
}

ul {
  list-style-type: none;
}

/* elements.css */
.icon {
  opacity: 0.8;
  cursor: pointer;
}

.icon:hover {
  opacity: 1;
}

.box-hover {}

.box-hover:hover {
  background-color: var(--background);
}

/*INPUTS*/
.input-generic {
  background-color: var(--ground);
  color: var(--color);
  min-height: 35px;
  max-height: 35px;
  border-radius: 5px;
  border: 1px solid var(--solid);
}

.input-explicit {
  background-color: var(--light);
  color: var(--color);
  min-height: 35px;
  max-height: 35px;
  border-radius: 5px;
  border: 1px solid var(--strong);
}

.submit-generic {
  background-color: var(--light);
  color: var(--color);
  min-height: 35px;
  max-height: 35px;
  border-radius: 5px;
  border: 1px solid var(--solid);
  transition: all 0.4s ease 0s;
}

.submit-generic:hover {
  background-color: var(--solid);
  transition: all 0.3s ease 0s;
}

/* LEGACY SELECTION ANIMATION */
.tbl-show-link {
  border-radius: 50px;
  border: 1px solid var(--solid);
  padding-left: 8px;
  padding-right: 8px;
  opacity: 0.7;
  transition: all 0.4s ease 0s;
}

.tbl-show-link:hover {
  opacity: 1;
  color: #000;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid var(--strong);
  transition: all 0.3s ease 0s;
}

/* SELECTION ANIMATION */
.input-show {
  opacity: 0.9;
  border-radius: 50px;
  transition: all 0.4s ease 0s;
}

.input-show:hover {
  opacity: 1;
  border-radius: 2px;
  transition: all 0.3s ease 0s;
}

.input-submit {
  background-color: var(--light);
  color: var(--color);
  min-height: 30px;
  height: 30px;
  border: 1px solid var(--solid);
  transition: all 0.4s ease 0s;
}

.input-submit:hover {
  background-color: var(--solid);
  transition: all 0.3s ease 0s;
}

.btn-solid {
  background-color: var(--solid);
  color: #fff;
  cursor: not-allowed;
}

.btn-strong {
  background-color: var(--strong);
  color: #fff;
  cursor: not-allowed;
}

.btn-act {
  background-color: #356ae6;
  color: #fff;
}

.btn-act:hover {
  background-color: #245ae5;
  color: #fff;
}

.btn-confirm {
  background-color: #16a34a;
  color: #fff;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-confirm:hover {
  background-color: #15803d;
  color: #fff;
  transform: translateY(-1px);
}

.btn-cancel {
  background-color: #ff241e;
  color: #fff;
}

.btn-cancel:hover {
  background-color: #ff0000;
  color: #fff;
}

.btn-alert {
  background-color: #ff9012;
  color: #fff;
}

.btn-alert:hover {
  background-color: #f38a12;
  color: #fff;
}

/* fonts.css */
.paladino {
  font-family: Palatino, Palatino Linotype, Palatino LT STD, Book Antiqua, Georgia, serif;
}

.georgia {
  font-family: Georgia, Times, Times New Roman, serif;
}

.century-gothic {
  font-family: Century Gothic, CenturyGothic, AppleGothic, sans-serif;
}

.avant-garde {
  font-family: Avant Garde, Avantgarde, Century Gothic, CenturyGothic, AppleGothic, sans-serif;
}

.lucida-grande {
  font-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, Geneva, Verdana, sans-serif;
}

.impact {
  font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, Helvetica Inserat, Bitstream Vera Sans Bold, Arial Black, sans serif;
}

.rockwell {
  font-family: Rockwell Extra Bold, Rockwell Bold, monospace;
}

.times-new-roman {
  font-family: TimesNewRoman, Times New Roman, Times, Baskerville, Georgia, serif;
}

.lucida-sans {
  font-family: Lucida Sans Typewriter, Lucida Console, monaco, Bitstream Vera Sans Mono, monospace;
}

.great-vibes {
  font-family: "Great Vibes", cursive;
}

.consolas {
  font-family: Consolas, monospace;
}

.inter {
  font-family: "Inter", sans-serif;
}

.poppins {
  font-family: "Poppins", sans-serif;
}

.font-05 {
  font-size: 0.5em;
}

.font-06 {
  font-size: 0.6em;
}

.font-07 {
  font-size: 0.7em;
}

.font-08 {
  font-size: 0.8em;
}

.font-09 {
  font-size: 0.9em;
}

.font-10 {
  font-size: 1em;
}

.font-11 {
  font-size: 1.1em;
}

.font-12 {
  font-size: 1.2em;
}

.font-13 {
  font-size: 1.3em;
}

.font-14 {
  font-size: 1.4em;
}

.font-15 {
  font-size: 1.5em;
}

.font-16 {
  font-size: 1.6em;
}

.font-17 {
  font-size: 1.7em;
}

.font-18 {
  font-size: 1.8em;
}

.font-19 {
  font-size: 1.9em;
}

.font-20 {
  font-size: 2em;
}

.font-21 {
  font-size: 2.1em;
}

.font-22 {
  font-size: 2.2em;
}

.font-23 {
  font-size: 2.3em;
}

.font-24 {
  font-size: 2.4em;
}

.font-25 {
  font-size: 2.5em;
}

.font-26 {
  font-size: 2.6em;
}

.font-27 {
  font-size: 2.7em;
}

.font-28 {
  font-size: 2.8em;
}

.font-29 {
  font-size: 2.9em;
}

.font-30 {
  font-size: 3.0em;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

/* icon.css */
/* cart-icon */
.icon-cart {
  width: 35px;
  height: 35px;
  position: relative;
}

.cart-basket {
  width: 20px;
  height: 0px;
  position: absolute;
  top: 8.5px;
  left: 5.5px;
  border-top: 10px solid var(--cart-color);
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-radius: 2px;
}

.cart-basket::before {
  content: "";
  width: 3px;
  height: 0px;
  position: absolute;
  top: 0px;
  left: 0px;
  border-top: 2px solid var(--cart-color);
  border-left: 2px solid transparent;
  border-right: 15px solid transparent;
  border-radius: 5px solid;
}

.cart-basket::after {
  content: "";
  width: 18px;
  height: 2.5px;
  position: absolute;
  top: 4px;
  left: 1.5px;
  background-color: var(--cart-color);
  border-radius: 2px;
}

.cart-line {
  width: 2px;
  height: 20px;
  background-color: var(--cart-color);
  position: absolute;
  top: 5px;
  left: 7px;
  transform: translateX(-50%);
  border-radius: 5px;
  transform: rotate(-15deg);
}

.cart-strap {
  width: 5px;
  height: 2px;
  background-color: var(--cart-color);
  position: absolute;
  top: 5px;
  left: 1.5px;
  border-radius: 5px;
}

.cart-wheel-left {
  width: 5px;
  height: 5px;
  background-color: var(--cart-color);
  position: absolute;
  top: 26.5px;
  left: 11px;
  border-radius: 50%;
}

.cart-wheel-right {
  width: 5px;
  height: 5px;
  background-color: var(--cart-color);
  position: absolute;
  top: 26.5px;
  left: 21px;
  border-radius: 50%;
}

/* search-icon */
.search-icon {
  width: 35px;
  height: 35px;
  position: relative;
}

.search-circle {
  width: 17px;
  height: 17px;
  position: absolute;
  top: 4px;
  left: 3px;
  border-radius: 50%;
  border: 2px solid var(--search-color);
}

.search-detail {
  width: 15px;
  height: 15px;
  position: absolute;
  border-radius: 50%;
  top: 6.5px;
  left: 6.5px;
  border: 1.5px solid var(--search-color);
  border-right: none;
  border-bottom: none;
  border-left: none;
  transform: rotate(-45deg);
}

.search-line {
  width: 2px;
  height: 10px;
  background-color: var(--search-color);
  position: absolute;
  top: 20px;
  left: 23px;
  transform: translateX(-50%);
  border-radius: 5px;
  transform: rotate(-45deg);
}

.search-line::before {
  content: "";
  width: 4px;
  height: 10px;
  background-color: var(--search-color);
  position: absolute;
  top: 4px;
  left: -1px;
  border-radius: 5px;
}

/* image.css */
.image-card {
  object-fit: contain;
  width: 100%;
}

/* .image-box {
	max-height: 100%;
	max-height: 450px;

	max-width: 100%;

	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;

	position: relative;
	z-index: 5;
} */

.image-fit {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-prop {
  max-width: 100%;
  object-fit: cover;
}

.bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.zoom {
  background-position: 50% 50%;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.zoom img:hover {
  opacity: 0;
}

.zoom img {
  transition: opacity 0.5s;
  display: block;
}

.lazy-loader-container {
  position: relative;
}

.lazy-loader-overlay {
  /* position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 8; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0.5), rgba(0, 0, 0, 0.5));
  background-size: 400% 400%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 8;
  animation: gradientAnimation 3s ease infinite;
}

.lazy-loader {
  /* width: 25px;
	height: 25px;
	border-radius: 50%;
	border: 4px solid rgba(255, 81, 30, 0.8);
	border-top: 4px solid transparent;
	animation: lazy 1.5s linear infinite; */
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* @keyframes lazy {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
} */
/* loader.css */
/* Estilo para o loader com body */
.loader-body-overlay {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-body {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 10px solid black;
  border-top-color: transparent;
  animation: spin 2s linear infinite;
}

/* Estilo para o loader com element */
.loader-element-container {
  position: relative;
}

.loader-element-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.loader {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 4px solid rgba(53, 81, 230, 0.8);
  border-top: 4px solid transparent;
  /* para fazer a rotação parecer mais suave */
  animation: spin 1.5s linear infinite;
  /* rotação contínua */
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
    /* uma volta completa */
  }
}

/* position.css */
/*Align*/
.v-center {
  margin: auto;
}

.h-center {
  justify-content: center;
}

.center {
  margin: auto;
  text-align: center;
  align-items: center;
}

.top {
  top: 0;
}

.right {
  text-align: right;
  margin-left: auto;
}

.margin-1 {
  margin: 1px;
}

.margin-2 {
  margin: 2px;
}

.margin-3 {
  margin: 3px;
}

.margin-4 {
  margin: 4px;
}

.margin-5 {
  margin: 5px;
}

.margin-6 {
  margin: 6px;
}

.margin-7 {
  margin: 7px;
}

.margin-8 {
  margin: 8px;
}

.margin-9 {
  margin: 9px;
}

.margin-10 {
  margin: 10px;
}

.margin-15 {
  margin: 15px;
}

.margin-20 {
  margin: 20px;
}

.margin-25 {
  margin: 25px;
}

.margin-30 {
  margin: 30px;
}

.margin-35 {
  margin: 35px;
}

.margin-40 {
  margin: 40px;
}

.margin-45 {
  margin: 45px;
}

.margin-50 {
  margin: 50px;
}

.margin-55 {
  margin: 55px;
}

.margin-60 {
  margin: 60px;
}

.margin-65 {
  margin: 65px;
}

.margin-70 {
  margin: 70px;
}

.margin-75 {
  margin: 75px;
}

.margin-80 {
  margin: 80px;
}

.margin-85 {
  margin: 85px;
}

.margin-90 {
  margin: 90px;
}

.margin-95 {
  margin: 95px;
}

.margin-100 {
  margin: 100px;
}

.margin-125 {
  margin: 125px;
}

.margin-150 {
  margin: 150px;
}

.margin-175 {
  margin: 175px;
}

.margin-200 {
  margin: 200px;
}

.margin-225 {
  margin: 225px;
}

.margin-250 {
  margin: 250px;
}

.margin-275 {
  margin: 275px;
}

.margin-300 {
  margin: 300px;
}

.margin-top-1 {
  margin-top: 1px;
}

.margin-top-2 {
  margin-top: 2px;
}

.margin-top-3 {
  margin-top: 3px;
}

.margin-top-4 {
  margin-top: 4px;
}

.margin-top-5 {
  margin-top: 5px;
}

.margin-top-6 {
  margin-top: 6px;
}

.margin-top-7 {
  margin-top: 7px;
}

.margin-top-8 {
  margin-top: 8px;
}

.margin-top-9 {
  margin-top: 9px;
}

.margin-top-10 {
  margin-top: 10px;
}

.margin-top-15 {
  margin-top: 15px;
}

.margin-top-20 {
  margin-top: 20px;
}

.margin-top-25 {
  margin-top: 25px;
}

.margin-top-30 {
  margin-top: 30px;
}

.margin-top-35 {
  margin-top: 35px;
}

.margin-top-40 {
  margin-top: 40px;
}

.margin-top-45 {
  margin-top: 45px;
}

.margin-top-50 {
  margin-top: 50px;
}

.margin-top-55 {
  margin-top: 55px;
}

.margin-top-60 {
  margin-top: 60px;
}

.margin-top-65 {
  margin-top: 65px;
}

.margin-top-70 {
  margin-top: 70px;
}

.margin-top-75 {
  margin-top: 75px;
}

.margin-top-80 {
  margin-top: 80px;
}

.margin-top-85 {
  margin-top: 85px;
}

.margin-top-90 {
  margin-top: 90px;
}

.margin-top-95 {
  margin-top: 95px;
}

.margin-top-100 {
  margin-top: 100px;
}

.margin-top-125 {
  margin-top: 125px;
}

.margin-top-150 {
  margin-top: 150px;
}

.margin-top-175 {
  margin-top: 175px;
}

.margin-top-200 {
  margin-top: 200px;
}

.margin-top-225 {
  margin-top: 225px;
}

.margin-top-250 {
  margin-top: 250px;
}

.margin-top-275 {
  margin-top: 275px;
}

.margin-top-300 {
  margin-top: 300px;
}

.margin-bottom-1 {
  margin-bottom: 1px;
}

.margin-bottom-2 {
  margin-bottom: 2px;
}

.margin-bottom-3 {
  margin-bottom: 3px;
}

.margin-bottom-4 {
  margin-bottom: 4px;
}

.margin-bottom-5 {
  margin-bottom: 5px;
}

.margin-bottom-10 {
  margin-bottom: 10px;
}

.margin-bottom-15 {
  margin-bottom: 15px;
}

.margin-bottom-20 {
  margin-bottom: 20px;
}

.margin-bottom-25 {
  margin-bottom: 25px;
}

.margin-bottom-30 {
  margin-bottom: 30px;
}

.margin-bottom-35 {
  margin-bottom: 35px;
}

.margin-bottom-40 {
  margin-bottom: 40px;
}

.margin-bottom-45 {
  margin-bottom: 45px;
}

.margin-bottom-50 {
  margin-bottom: 50px;
}

.margin-bottom-55 {
  margin-bottom: 55px;
}

.margin-bottom-60 {
  margin-bottom: 60px;
}

.margin-bottom-65 {
  margin-bottom: 65px;
}

.margin-bottom-70 {
  margin-bottom: 70px;
}

.margin-bottom-75 {
  margin-bottom: 75px;
}

.margin-bottom-80 {
  margin-bottom: 80px;
}

.margin-bottom-85 {
  margin-bottom: 85px;
}

.margin-bottom-90 {
  margin-bottom: 90px;
}

.margin-bottom-95 {
  margin-bottom: 95px;
}

.margin-bottom-100 {
  margin-bottom: 100px;
}

.margin-bottom-125 {
  margin-bottom: 125px;
}

.margin-bottom-150 {
  margin-bottom: 150px;
}

.margin-bottom-175 {
  margin-bottom: 175px;
}

.margin-bottom-200 {
  margin-bottom: 200px;
}

.margin-bottom-225 {
  margin-bottom: 225px;
}

.margin-bottom-250 {
  margin-bottom: 250px;
}

.margin-bottom-275 {
  margin-bottom: 275px;
}

.margin-bottom-300 {
  margin-bottom: 300px;
}

.margin-left-1 {
  margin-left: 1px;
}

.margin-left-2 {
  margin-left: 2px;
}

.margin-left-3 {
  margin-left: 3px;
}

.margin-left-4 {
  margin-left: 4px;
}

.margin-left-5 {
  margin-left: 5px;
}

.margin-left-10 {
  margin-left: 10px;
}

.margin-left-15 {
  margin-left: 15px;
}

.margin-left-20 {
  margin-left: 20px;
}

.margin-left-25 {
  margin-left: 25px;
}

.margin-left-30 {
  margin-left: 30px;
}

.margin-left-35 {
  margin-left: 35px;
}

.margin-left-40 {
  margin-left: 40px;
}

.margin-left-45 {
  margin-left: 45px;
}

.margin-left-50 {
  margin-left: 50px;
}

.margin-left-55 {
  margin-left: 55px;
}

.margin-left-60 {
  margin-left: 60px;
}

.margin-left-65 {
  margin-left: 65px;
}

.margin-left-70 {
  margin-left: 70px;
}

.margin-left-75 {
  margin-left: 75px;
}

.margin-left-80 {
  margin-left: 80px;
}

.margin-left-85 {
  margin-left: 85px;
}

.margin-left-90 {
  margin-left: 90px;
}

.margin-left-95 {
  margin-left: 95px;
}

.margin-left-100 {
  margin-left: 100px;
}

.margin-left-125 {
  margin-left: 125px;
}

.margin-left-150 {
  margin-left: 150px;
}

.margin-left-175 {
  margin-left: 175px;
}

.margin-left-200 {
  margin-left: 200px;
}

.margin-left-225 {
  margin-left: 225px;
}

.margin-left-250 {
  margin-left: 250px;
}

.margin-left-275 {
  margin-left: 275px;
}

.margin-left-300 {
  margin-left: 300px;
}

.margin-right-1 {
  margin-right: 1px;
}

.margin-right-2 {
  margin-right: 2px;
}

.margin-right-3 {
  margin-right: 3px;
}

.margin-right-4 {
  margin-right: 4px;
}

.margin-right-5 {
  margin-right: 5px;
}

.margin-right-10 {
  margin-right: 10px;
}

.margin-right-15 {
  margin-right: 15px;
}

.margin-right-20 {
  margin-right: 20px;
}

.margin-right-25 {
  margin-right: 25px;
}

.margin-right-30 {
  margin-right: 30px;
}

.margin-right-35 {
  margin-right: 35px;
}

.margin-right-40 {
  margin-right: 40px;
}

.margin-right-45 {
  margin-right: 45px;
}

.margin-right-50 {
  margin-right: 50px;
}

.margin-right-55 {
  margin-right: 55px;
}

.margin-right-60 {
  margin-right: 60px;
}

.margin-right-65 {
  margin-right: 65px;
}

.margin-right-70 {
  margin-right: 70px;
}

.margin-right-75 {
  margin-right: 75px;
}

.margin-right-80 {
  margin-right: 80px;
}

.margin-right-85 {
  margin-right: 85px;
}

.margin-right-90 {
  margin-right: 90px;
}

.margin-right-95 {
  margin-right: 95px;
}

.margin-right-100 {
  margin-right: 100px;
}

.margin-right-125 {
  margin-right: 125px;
}

.margin-right-150 {
  margin-right: 150px;
}

.margin-right-175 {
  margin-right: 175px;
}

.margin-right-200 {
  margin-right: 200px;
}

.margin-right-225 {
  margin-right: 225px;
}

.margin-right-250 {
  margin-right: 250px;
}

.margin-right-275 {
  margin-right: 275px;
}

.margin-right-300 {
  margin-right: 300px;
}

.padding-1 {
  padding: 1px;
}

.padding-2 {
  padding: 2px;
}

.padding-3 {
  padding: 3px;
}

.padding-4 {
  padding: 4px;
}

.padding-5 {
  padding: 5px;
}

.padding-6 {
  padding: 6px;
}

.padding-7 {
  padding: 7px;
}

.padding-8 {
  padding: 8px;
}

.padding-9 {
  padding: 9px;
}

.padding-10 {
  padding: 10px;
}

.padding-15 {
  padding: 15px;
}

.padding-20 {
  padding: 20px;
}

.padding-25 {
  padding: 25px;
}

.padding-30 {
  padding: 30px;
}

.padding-35 {
  padding: 35px;
}

.padding-40 {
  padding: 40px;
}

.padding-45 {
  padding: 45px;
}

.padding-50 {
  padding: 50px;
}

.padding-55 {
  padding: 55px;
}

.padding-60 {
  padding: 60px;
}

.padding-65 {
  padding: 65px;
}

.padding-70 {
  padding: 70px;
}

.padding-75 {
  padding: 75px;
}

.padding-80 {
  padding: 80px;
}

.padding-85 {
  padding: 85px;
}

.padding-90 {
  padding: 90px;
}

.padding-95 {
  padding: 95px;
}

.padding-100 {
  padding: 100px;
}

.padding-125 {
  padding: 125px;
}

.padding-150 {
  padding: 150px;
}

.padding-175 {
  padding: 175px;
}

.padding-200 {
  padding: 200px;
}

.padding-225 {
  padding: 225px;
}

.padding-250 {
  padding: 250px;
}

.padding-275 {
  padding: 275px;
}

.padding-300 {
  padding: 300px;
}

.padding-top-1 {
  padding-top: 1px;
}

.padding-top-2 {
  padding-top: 2px;
}

.padding-top-3 {
  padding-top: 3px;
}

.padding-top-4 {
  padding-top: 4px;
}

.padding-top-5 {
  padding-top: 5px;
}

.padding-top-6 {
  padding-top: 6px;
}

.padding-top-7 {
  padding-top: 7px;
}

.padding-top-8 {
  padding-top: 8px;
}

.padding-top-9 {
  padding-top: 9px;
}

.padding-top-10 {
  padding-top: 10px;
}

.padding-top-15 {
  padding-top: 15px;
}

.padding-top-20 {
  padding-top: 20px;
}

.padding-top-25 {
  padding-top: 25px;
}

.padding-top-30 {
  padding-top: 30px;
}

.padding-top-35 {
  padding-top: 35px;
}

.padding-top-40 {
  padding-top: 40px;
}

.padding-top-45 {
  padding-top: 45px;
}

.padding-top-50 {
  padding-top: 50px;
}

.padding-top-55 {
  padding-top: 55px;
}

.padding-top-60 {
  padding-top: 60px;
}

.padding-top-65 {
  padding-top: 65px;
}

.padding-top-70 {
  padding-top: 70px;
}

.padding-top-75 {
  padding-top: 75px;
}

.padding-top-80 {
  padding-top: 80px;
}

.padding-top-85 {
  padding-top: 85px;
}

.padding-top-90 {
  padding-top: 90px;
}

.padding-top-95 {
  padding-top: 95px;
}

.padding-top-100 {
  padding-top: 100px;
}

.padding-top-125 {
  padding-top: 125px;
}

.padding-top-150 {
  padding-top: 150px;
}

.padding-top-175 {
  padding-top: 175px;
}

.padding-top-200 {
  padding-top: 200px;
}

.padding-top-225 {
  padding-top: 225px;
}

.padding-top-250 {
  padding-top: 250px;
}

.padding-top-275 {
  padding-top: 275px;
}

.padding-top-300 {
  padding-top: 300px;
}

.padding-bottom-1 {
  padding-bottom: 1px;
}

.padding-bottom-2 {
  padding-bottom: 2px;
}

.padding-bottom-3 {
  padding-bottom: 3px;
}

.padding-bottom-4 {
  padding-bottom: 4px;
}

.padding-bottom-5 {
  padding-bottom: 5px;
}

.padding-bottom-6 {
  padding-bottom: 6px;
}

.padding-bottom-7 {
  padding-bottom: 7px;
}

.padding-bottom-8 {
  padding-bottom: 8px;
}

.padding-bottom-9 {
  padding-bottom: 9px;
}

.padding-bottom-10 {
  padding-bottom: 10px;
}

.padding-bottom-15 {
  padding-bottom: 15px;
}

.padding-bottom-20 {
  padding-bottom: 20px;
}

.padding-bottom-25 {
  padding-bottom: 25px;
}

.padding-bottom-30 {
  padding-bottom: 30px;
}

.padding-bottom-35 {
  padding-bottom: 35px;
}

.padding-bottom-40 {
  padding-bottom: 40px;
}

.padding-bottom-45 {
  padding-bottom: 45px;
}

.padding-bottom-50 {
  padding-bottom: 50px;
}

.padding-bottom-55 {
  padding-bottom: 55px;
}

.padding-bottom-60 {
  padding-bottom: 60px;
}

.padding-bottom-65 {
  padding-bottom: 65px;
}

.padding-bottom-70 {
  padding-bottom: 70px;
}

.padding-bottom-75 {
  padding-bottom: 75px;
}

.padding-bottom-80 {
  padding-bottom: 80px;
}

.padding-bottom-85 {
  padding-bottom: 85px;
}

.padding-bottom-90 {
  padding-bottom: 90px;
}

.padding-bottom-95 {
  padding-bottom: 95px;
}

.padding-bottom-100 {
  padding-bottom: 100px;
}

.padding-bottom-125 {
  padding-bottom: 125px;
}

.padding-bottom-150 {
  padding-bottom: 150px;
}

.padding-bottom-175 {
  padding-bottom: 175px;
}

.padding-bottom-200 {
  padding-bottom: 200px;
}

.padding-bottom-225 {
  padding-bottom: 225px;
}

.padding-bottom-250 {
  padding-bottom: 250px;
}

.padding-bottom-275 {
  padding-bottom: 275px;
}

.padding-bottom-300 {
  padding-bottom: 300px;
}

.padding-left-1 {
  padding-left: 1px;
}

.padding-left-2 {
  padding-left: 2px;
}

.padding-left-3 {
  padding-left: 3px;
}

.padding-left-4 {
  padding-left: 4px;
}

.padding-left-5 {
  padding-left: 5px;
}

.padding-left-10 {
  padding-left: 10px;
}

.padding-left-15 {
  padding-left: 15px;
}

.padding-left-20 {
  padding-left: 20px;
}

.padding-left-25 {
  padding-left: 25px;
}

.padding-left-30 {
  padding-left: 30px;
}

.padding-left-35 {
  padding-left: 35px;
}

.padding-left-40 {
  padding-left: 40px;
}

.padding-left-45 {
  padding-left: 45px;
}

.padding-left-50 {
  padding-left: 50px;
}

.padding-left-55 {
  padding-left: 55px;
}

.padding-left-60 {
  padding-left: 60px;
}

.padding-left-65 {
  padding-left: 65px;
}

.padding-left-70 {
  padding-left: 70px;
}

.padding-left-75 {
  padding-left: 75px;
}

.padding-left-80 {
  padding-left: 80px;
}

.padding-left-85 {
  padding-left: 85px;
}

.padding-left-90 {
  padding-left: 90px;
}

.padding-left-95 {
  padding-left: 95px;
}

.padding-left-100 {
  padding-left: 100px;
}

.padding-left-125 {
  padding-left: 125px;
}

.padding-left-150 {
  padding-left: 150px;
}

.padding-left-175 {
  padding-left: 175px;
}

.padding-left-200 {
  padding-left: 200px;
}

.padding-left-225 {
  padding-left: 225px;
}

.padding-left-250 {
  padding-left: 250px;
}

.padding-left-275 {
  padding-left: 275px;
}

.padding-left-300 {
  padding-left: 300px;
}

.padding-right-1 {
  padding-right: 1px;
}

.padding-right-2 {
  padding-right: 2px;
}

.padding-right-3 {
  padding-right: 3px;
}

.padding-right-4 {
  padding-right: 4px;
}

.padding-right-5 {
  padding-right: 5px;
}

.padding-right-10 {
  padding-right: 10px;
}

.padding-right-15 {
  padding-right: 15px;
}

.padding-right-20 {
  padding-right: 20px;
}

.padding-right-25 {
  padding-right: 25px;
}

.padding-right-30 {
  padding-right: 30px;
}

.padding-right-35 {
  padding-right: 35px;
}

.padding-right-40 {
  padding-right: 40px;
}

.padding-right-45 {
  padding-right: 45px;
}

.padding-right-50 {
  padding-right: 50px;
}

.padding-right-55 {
  padding-right: 55px;
}

.padding-right-60 {
  padding-right: 60px;
}

.padding-right-65 {
  padding-right: 65px;
}

.padding-right-70 {
  padding-right: 70px;
}

.padding-right-75 {
  padding-right: 75px;
}

.padding-right-80 {
  padding-right: 80px;
}

.padding-right-85 {
  padding-right: 85px;
}

.padding-right-90 {
  padding-right: 90px;
}

.padding-right-95 {
  padding-right: 95px;
}

.padding-right-100 {
  padding-right: 100px;
}

.padding-right-125 {
  padding-right: 125px;
}

.padding-right-150 {
  padding-right: 150px;
}

.padding-right-175 {
  padding-right: 175px;
}

.padding-right-200 {
  padding-right: 200px;
}

.padding-right-225 {
  padding-right: 225px;
}

.padding-right-250 {
  padding-right: 250px;
}

.padding-right-275 {
  padding-right: 275px;
}

.padding-right-300 {
  padding-right: 300px;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

/* responsivity.css */
@media (max-width: 380px) {
  .box {
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 440px) {
  .box {
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 780px) {
  .box {
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 800px) {
  .hide-in-mobile {
    display: none;
  }

  .box {
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}

@media (min-width: 800px) {
  .hide-in-web {
    display: none
  }
}

@media print {

  .noprint,
  .noprint * {
    display: none !important;
  }

  .pagebreak {
    page-break-before: auto;
  }

  .container {
    page-break-inside: avoid;
  }

  .p-box {
    box-sizing: border-box;
    align-self: flex-start;
  }
}

.em01 {
  font-size: 0.1em;
}

.em02 {
  font-size: 0.2em;
}

.em03 {
  font-size: 0.3em;
}

.em04 {
  font-size: 0.4em;
}

.em05 {
  font-size: 0.5em;
}

.em06 {
  font-size: 0.6em;
}

.em07 {
  font-size: 0.7em;
}

.em08 {
  font-size: 0.8em;
}

.em09 {
  font-size: 0.9em;
}

.em10 {
  font-size: 1em;
}

.em11 {
  font-size: 1.1em;
}

.em12 {
  font-size: 1.2em;
}

.em13 {
  font-size: 1.3em;
}

.em14 {
  font-size: 1.4em;
}

.em15 {
  font-size: 1.5em;
}

.em16 {
  font-size: 1.6em;
}

.em17 {
  font-size: 1.7em;
}

.em18 {
  font-size: 1.8em;
}

.em19 {
  font-size: 1.9em;
}

.em20 {
  font-size: 2em;
}

.em21 {
  font-size: 2.1em;
}

.em22 {
  font-size: 2.2em;
}

.em23 {
  font-size: 2.3em;
}

.em24 {
  font-size: 2.4em;
}

.em25 {
  font-size: 2.5em;
}

.em26 {
  font-size: 2.6em;
}

.em27 {
  font-size: 2.7em;
}

.em28 {
  font-size: 2.8em;
}

.em29 {
  font-size: 2.9em;
}

.em30 {
  font-size: 3em;
}

.em31 {
  font-size: 3.1em;
}

.em32 {
  font-size: 3.2em;
}

.em33 {
  font-size: 3.3em;
}

.em34 {
  font-size: 3.4em;
}

.em35 {
  font-size: 3.5em;
}

.em36 {
  font-size: 3.6em;
}

.em37 {
  font-size: 3.7em;
}

.em38 {
  font-size: 3.8em;
}

.em39 {
  font-size: 3.9em;
}

.em40 {
  font-size: 4em;
}

.rem01 {
  font-size: 0.1rem;
}

.rem02 {
  font-size: 0.2rem;
}

.rem03 {
  font-size: 0.3rem;
}

.rem04 {
  font-size: 0.4rem;
}

.rem05 {
  font-size: 0.5rem;
}

.rem06 {
  font-size: 0.6rem;
}

.rem07 {
  font-size: 0.7rem;
}

.rem08 {
  font-size: 0.8rem;
}

.rem09 {
  font-size: 0.9rem;
}

.rem10 {
  font-size: 1rem;
}

.rem11 {
  font-size: 1.1rem;
}

.rem12 {
  font-size: 1.2rem;
}

.rem13 {
  font-size: 1.3rem;
}

.rem14 {
  font-size: 1.4rem;
}

.rem15 {
  font-size: 1.5rem;
}

.rem16 {
  font-size: 1.6rem;
}

.rem17 {
  font-size: 1.7rem;
}

.rem18 {
  font-size: 1.8rem;
}

.rem19 {
  font-size: 1.9rem;
}

.rem20 {
  font-size: 2rem;
}

.rem21 {
  font-size: 2.1rem;
}

.rem22 {
  font-size: 2.2rem;
}

.rem23 {
  font-size: 2.3rem;
}

.rem24 {
  font-size: 2.4rem;
}

.rem25 {
  font-size: 2.5rem;
}

.rem26 {
  font-size: 2.6rem;
}

.rem27 {
  font-size: 2.7rem;
}

.rem28 {
  font-size: 2.8rem;
}

.rem29 {
  font-size: 2.9rem;
}

.rem30 {
  font-size: 3rem;
}

.rem31 {
  font-size: 3.1rem;
}

.rem32 {
  font-size: 3.2rem;
}

.rem33 {
  font-size: 3.3rem;
}

.rem34 {
  font-size: 3.4rem;
}

.rem35 {
  font-size: 3.5rem;
}

.rem36 {
  font-size: 3.6rem;
}

.rem37 {
  font-size: 3.7rem;
}

.rem38 {
  font-size: 3.8rem;
}

.rem39 {
  font-size: 3.9rem;
}

.rem40 {
  font-size: 4rem;
}

/*
@media all and (min-width: 50px)   {  body  { font-size:0.1em;  } }
@media all and (min-width: 100px)  {  body  { font-size:0.2em;  } }
@media all and (min-width: 150px)  {  body  { font-size:0.3em;  } }
@media all and (min-width: 200px)  {  body  { font-size:0.4em;  } }
@media all and (min-width: 250px)  {  body  { font-size:0.5em;  } }
@media all and (min-width: 300px)  {  body  { font-size:0.6em;  } }
*/

@media all and (min-width: 50px) {
  body {
    font-size: 0.7em;
  }
}

@media all and (min-width: 100px) {
  body {
    font-size: 0.7em;
  }
}

@media all and (min-width: 150px) {
  body {
    font-size: 0.7em;
  }
}

@media all and (min-width: 200px) {
  body {
    font-size: 0.7em;
  }
}

@media all and (min-width: 250px) {
  body {
    font-size: 0.7em;
  }
}

@media all and (min-width: 300px) {
  body {
    font-size: 0.7em;
  }
}

@media all and (min-width: 350px) {
  body {
    font-size: 0.7em;
  }
}

@media all and (min-width: 400px) {
  body {
    font-size: 0.8em;
  }
}

@media all and (min-width: 450px) {
  body {
    font-size: 0.9em;
  }
}

@media all and (min-width: 500px) {
  body {
    font-size: 1.0em;
  }
}

/* sidebar.css */
.sidebar {
  position: fixed;
  z-index: 8;
  top: 0;
  right: 0;
  width: 275px;
  height: 100%;
  background-color: #f0f0f0;
  padding-top: 20px;
  border-right: 1px solid #ccc;
  transform: translateX(100%);
  transition: transform 0.5s ease;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.sidebar a {
  padding: 6px 8px 6px 16px;
  display: block;
}

.sidebar a:hover {
  background-color: #ddd;
}

.sidebar ul ul {
  display: none;
}

.sidebar li.active>ul {
  display: block;
}

.sidebar.open {
  transform: translateX(0);
}

@media screen and (max-height: 450px) {
  .sidebar {
    padding-top: 40px;
  }
}

/* sidenav.css */
.sidenav {
  height: 100%;
  width: 0;
  position: fixed !important;
  z-index: 51;
  top: 0;
  right: 0;
  background-color: var(--background);
  transition: 0.5s;
  padding-top: 40px;
  overflow-y: auto;
  overflow-x: hidden;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  color: var(--color);
  right: 5%;
  font-size: 36px;
  margin-left: 50px;
}

.sidenav .closebtn:hover {
  color: var(--strong);
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 40px;
  }
}

/* size.css */
.height-5 {
  height: 5px;
}

.height-10 {
  height: 10px;
}

.height-15 {
  height: 15px;
}

.height-20 {
  height: 20px;
}

.height-25 {
  height: 25px;
}

.height-30 {
  height: 30px;
}

.height-35 {
  height: 35px;
}

.height-40 {
  height: 40px;
}

.height-45 {
  height: 45px;
}

.height-50 {
  height: 50px;
}

.height-60 {
  height: 60px;
}

.height-70 {
  height: 70px;
}

.height-80 {
  height: 80px;
}

.height-90 {
  height: 90px;
}

.height-100 {
  height: 100px;
}

.height-125 {
  height: 125px;
}

.height-150 {
  height: 150px;
}

.height-175 {
  height: 175px;
}

.height-200 {
  height: 200px;
}

.height-225 {
  height: 225px;
}

.height-250 {
  height: 250px;
}

.height-300 {
  height: 300px;
}

.height-325 {
  height: 325px;
}

.height-350 {
  height: 350px;
}

.height-375 {
  height: 375px;
}

.height-400 {
  height: 400px;
}

.height-425 {
  height: 425px;
}

.height-450 {
  height: 450px;
}

.height-475 {
  height: 475px;
}

.height-500 {
  height: 500px;
}

.height-550 {
  height: 550px;
}

.height-600 {
  height: 600px;
}

.height-650 {
  height: 650px;
}

.height-700 {
  height: 700px;
}

.height-750 {
  height: 750px;
}

.height-800 {
  height: 800px;
}

.height-850 {
  height: 850px;
}

.height-900 {
  height: 900px;
}

.height-950 {
  height: 950px;
}

.height-1000 {
  height: 1000px;
}

.height-1100 {
  height: 1100px;
}

.height-1200 {
  height: 1200px;
}

.height-1300 {
  height: 1300px;
}

.height-1400 {
  height: 1400px;
}

.height-1500 {
  height: 1500px;
}

.height-1600 {
  height: 1600px;
}

.height-1700 {
  height: 1700px;
}

.height-1800 {
  height: 1800px;
}

.height-1900 {
  height: 1900px;
}

.height-2000 {
  height: 2000px;
}

.height-2100 {
  height: 2100px;
}

.height-2200 {
  height: 2200px;
}

.height-2300 {
  height: 2300px;
}

.height-2400 {
  height: 2400px;
}

.height-2500 {
  height: 2500px;
}

.height-2600 {
  height: 2600px;
}

.height-2700 {
  height: 2700px;
}

.height-2800 {
  height: 2800px;
}

.height-2900 {
  height: 2900px;
}

.height-3000 {
  height: 3000px;
}

.min-height-5 {
  min-height: 5px;
}

.min-height-10 {
  min-height: 10px;
}

.min-height-15 {
  min-height: 15px;
}

.min-height-20 {
  min-height: 20px;
}

.min-height-25 {
  min-height: 25px;
}

.min-height-30 {
  min-height: 30px;
}

.min-height-35 {
  min-height: 35px;
}

.min-height-40 {
  min-height: 40px;
}

.min-height-45 {
  min-height: 45px;
}

.min-height-50 {
  min-height: 50px;
}

.min-height-60 {
  min-height: 60px;
}

.min-height-70 {
  min-height: 70px;
}

.min-height-80 {
  min-height: 80px;
}

.min-height-90 {
  min-height: 90px;
}

.min-height-100 {
  min-height: 100px;
}

.min-height-125 {
  min-height: 125px;
}

.min-height-150 {
  min-height: 150px;
}

.min-height-175 {
  min-height: 175px;
}

.min-height-200 {
  min-height: 200px;
}

.min-height-250 {
  min-height: 250px;
}

.min-height-300 {
  min-height: 300px;
}

.min-height-350 {
  min-height: 350px;
}

.min-height-400 {
  min-height: 400px;
}

.min-height-450 {
  min-height: 450px;
}

.min-height-500 {
  min-height: 500px;
}

.min-height-550 {
  min-height: 550px;
}

.min-height-600 {
  min-height: 600px;
}

.min-height-650 {
  min-height: 650px;
}

.min-height-700 {
  min-height: 700px;
}

.min-height-750 {
  min-height: 750px;
}

.min-height-800 {
  min-height: 800px;
}

.min-height-850 {
  min-height: 850px;
}

.min-height-900 {
  min-height: 900px;
}

.min-height-950 {
  min-height: 950px;
}

.min-height-1000 {
  min-height: 1000px;
}

.max-height-5 {
  max-height: 5px;
}

.max-height-10 {
  max-height: 10px;
}

.max-height-15 {
  max-height: 15px;
}

.max-height-20 {
  max-height: 20px;
}

.max-height-25 {
  max-height: 25px;
}

.max-height-30 {
  max-height: 30px;
}

.max-height-35 {
  max-height: 35px;
}

.max-height-40 {
  max-height: 40px;
}

.max-height-45 {
  max-height: 45px;
}

.max-height-50 {
  max-height: 50px;
}

.max-height-60 {
  max-height: 60px;
}

.max-height-70 {
  max-height: 70px;
}

.max-height-80 {
  max-height: 80px;
}

.max-height-90 {
  max-height: 90px;
}

.max-height-100 {
  max-height: 100px;
}

.max-height-125 {
  max-height: 125px;
}

.max-height-150 {
  max-height: 150px;
}

.max-height-175 {
  max-height: 175px;
}

.max-height-200 {
  max-height: 200px;
}

.max-height-250 {
  max-height: 250px;
}

.max-height-300 {
  max-height: 300px;
}

.max-height-350 {
  max-height: 350px;
}

.max-height-400 {
  max-height: 400px;
}

.max-height-450 {
  max-height: 450px;
}

.max-height-500 {
  max-height: 500px;
}

.max-height-550 {
  max-height: 550px;
}

.max-height-600 {
  max-height: 600px;
}

.max-height-650 {
  max-height: 650px;
}

.max-height-700 {
  max-height: 700px;
}

.max-height-750 {
  max-height: 750px;
}

.max-height-800 {
  max-height: 800px;
}

.max-height-850 {
  max-height: 850px;
}

.max-height-900 {
  max-height: 900px;
}

.max-height-950 {
  max-height: 950px;
}

.max-height-1000 {
  max-height: 1000px;
}

.width-5 {
  width: 5px;
}

.width-10 {
  width: 10px;
}

.width-15 {
  width: 15px;
}

.width-20 {
  width: 20px;
}

.width-25 {
  width: 25px;
}

.width-30 {
  width: 30px;
}

.width-35 {
  width: 35px;
}

.width-40 {
  width: 40px;
}

.width-45 {
  width: 45px;
}

.width-50 {
  width: 50px;
}

.width-60 {
  width: 60px;
}

.width-70 {
  width: 70px;
}

.width-80 {
  width: 80px;
}

.width-90 {
  width: 90px;
}

.width-100 {
  width: 100px;
}

.width-125 {
  width: 125px;
}

.width-150 {
  width: 150px;
}

.width-175 {
  width: 175px;
}

.width-200 {
  width: 200px;
}

.width-225 {
  width: 225px;
}

.width-250 {
  width: 250px;
}

.width-300 {
  width: 300px;
}

.width-350 {
  width: 350px;
}

.width-400 {
  width: 400px;
}

.width-450 {
  width: 450px;
}

.width-500 {
  width: 500px;
}

.width-550 {
  width: 550px;
}

.width-600 {
  width: 600px;
}

.width-650 {
  width: 650px;
}

.width-700 {
  width: 700px;
}

.width-750 {
  width: 750px;
}

.width-800 {
  width: 800px;
}

.width-850 {
  width: 850px;
}

.width-900 {
  width: 900px;
}

.width-950 {
  width: 950px;
}

.width-1000 {
  width: 1000px;
}

.width-1100 {
  width: 1100px;
}

.width-1200 {
  width: 1200px;
}

.width-1300 {
  width: 1300px;
}

.width-1400 {
  width: 1400px;
}

.width-1500 {
  width: 1500px;
}

.width-1600 {
  width: 1600px;
}

.width-1700 {
  width: 1700px;
}

.width-1800 {
  width: 1800px;
}

.width-1900 {
  width: 1900px;
}

.width-2000 {
  width: 2000px;
}

.width-2100 {
  width: 2100px;
}

.width-2200 {
  width: 2200px;
}

.width-2300 {
  width: 2300px;
}

.width-2400 {
  width: 2400px;
}

.width-2500 {
  width: 2500px;
}

.width-2600 {
  width: 2600px;
}

.width-2700 {
  width: 2700px;
}

.width-2800 {
  width: 2800px;
}

.width-2900 {
  width: 2900px;
}

.width-3000 {
  width: 3000px;
}

.min-width-5 {
  min-width: 5px;
}

.min-width-10 {
  min-width: 10px;
}

.min-width-15 {
  min-width: 15px;
}

.min-width-20 {
  min-width: 20px;
}

.min-width-25 {
  min-width: 25px;
}

.min-width-30 {
  min-width: 30px;
}

.min-width-35 {
  min-width: 35px;
}

.min-width-40 {
  min-width: 40px;
}

.min-width-45 {
  min-width: 45px;
}

.min-width-50 {
  min-width: 50px;
}

.min-width-60 {
  min-width: 60px;
}

.min-width-70 {
  min-width: 70px;
}

.min-width-80 {
  min-width: 80px;
}

.min-width-90 {
  min-width: 90px;
}

.min-width-100 {
  min-width: 100px;
}

.min-width-125 {
  min-width: 125px;
}

.min-width-150 {
  min-width: 150px;
}

.min-width-175 {
  min-width: 175px;
}

.min-width-200 {
  min-width: 200px;
}

.min-width-250 {
  min-width: 250px;
}

.min-width-300 {
  min-width: 300px;
}

.min-width-350 {
  min-width: 350px;
}

.min-width-400 {
  min-width: 400px;
}

.min-width-450 {
  min-width: 450px;
}

.min-width-500 {
  min-width: 500px;
}

.min-width-550 {
  min-width: 550px;
}

.min-width-600 {
  min-width: 600px;
}

.min-width-650 {
  min-width: 650px;
}

.min-width-700 {
  min-width: 700px;
}

.min-width-750 {
  min-width: 750px;
}

.min-width-800 {
  min-width: 800px;
}

.min-width-850 {
  min-width: 850px;
}

.min-width-900 {
  min-width: 900px;
}

.min-width-950 {
  min-width: 950px;
}

.min-width-1000 {
  min-width: 1000px;
}

.max-width-5 {
  max-width: 5px;
}

.max-width-10 {
  max-width: 10px;
}

.max-width-15 {
  max-width: 15px;
}

.max-width-20 {
  max-width: 20px;
}

.max-width-25 {
  max-width: 25px;
}

.max-width-30 {
  max-width: 30px;
}

.max-width-35 {
  max-width: 35px;
}

.max-width-40 {
  max-width: 40px;
}

.max-width-45 {
  max-width: 45px;
}

.max-width-50 {
  max-width: 50px;
}

.max-width-60 {
  max-width: 60px;
}

.max-width-70 {
  max-width: 70px;
}

.max-width-80 {
  max-width: 80px;
}

.max-width-90 {
  max-width: 90px;
}

.max-width-100 {
  max-width: 100px;
}

.max-width-125 {
  max-width: 125px;
}

.max-width-150 {
  max-width: 150px;
}

.max-width-175 {
  max-width: 175px;
}

.max-width-200 {
  max-width: 200px;
}

.max-width-250 {
  max-width: 250px;
}

.max-width-300 {
  max-width: 300px;
}

.max-width-350 {
  max-width: 350px;
}

.max-width-400 {
  max-width: 400px;
}

.max-width-450 {
  max-width: 450px;
}

.max-width-500 {
  max-width: 500px;
}

.max-width-550 {
  max-width: 550px;
}

.max-width-600 {
  max-width: 600px;
}

.max-width-650 {
  max-width: 650px;
}

.max-width-700 {
  max-width: 700px;
}

.max-width-750 {
  max-width: 750px;
}

.max-width-800 {
  max-width: 800px;
}

.max-width-850 {
  max-width: 850px;
}

.max-width-900 {
  max-width: 900px;
}

.max-width-950 {
  max-width: 950px;
}

.max-width-1000 {
  max-width: 1000px;
}

.size-10 {
  max-width: 10px;
  max-height: 10px;
}

.size-11 {
  max-width: 11px;
  max-height: 11px;
}

.size-12 {
  max-width: 12px;
  max-height: 12px;
}

.size-13 {
  max-width: 13px;
  max-height: 13px;
}

.size-14 {
  max-width: 14px;
  max-height: 14px;
}

.size-15 {
  max-width: 15px;
  max-height: 15px;
}

.size-16 {
  max-width: 16px;
  max-height: 16px;
}

.size-17 {
  max-width: 17px;
  max-height: 17px;
}

.size-18 {
  max-width: 18px;
  max-height: 18px;
}

.size-19 {
  max-width: 19px;
  max-height: 19px;
}

.size-20 {
  max-width: 20px;
  max-height: 20px;
}

.size-25 {
  max-width: 25px;
  max-height: 25px;
}

.size-30 {
  max-width: 30px;
  max-height: 30px;
}

.size-35 {
  max-width: 35px;
  max-height: 35px;
}

.size-40 {
  max-width: 40px;
  max-height: 40px;
}

.size-45 {
  max-width: 45px;
  max-height: 45px;
}

.size-50 {
  max-width: 50px;
  max-height: 50px;
}

.size-60 {
  max-width: 60px;
  max-height: 60px;
}

.size-70 {
  max-width: 70px;
  max-height: 70px;
}

.size-80 {
  max-width: 80px;
  max-height: 80px;
}

.size-90 {
  max-width: 90px;
  max-height: 90px;
}

.size-100 {
  max-width: 100px;
  max-height: 100px;
}

.size-200 {
  max-width: 200px;
  max-height: 200px;
}

.size-300 {
  max-width: 300px;
  max-height: 300px;
}

.size-400 {
  max-width: 400px;
  max-height: 400px;
}

.size-500 {
  max-width: 500px;
  max-height: 500px;
}

.size-600 {
  max-width: 600px;
  max-height: 600px;
}

.size-700 {
  max-width: 700px;
  max-height: 700px;
}

.size-800 {
  max-width: 800px;
  max-height: 800px;
}

.size-900 {
  max-width: 900px;
  max-height: 900px;
}

.size-1000 {
  max-width: 1000px;
  max-height: 1000px;
}

/* speech.css */
.speech-triangle-left {
  position: relative;
  border-radius: 0px 5px 5px 5px;
}

.speech-triangle-left::after {
  content: '';
  position: absolute;
  top: 0px;
  left: -10px;
  transform: translateY(-0%);
  border-style: solid;
  border-width: 0px 10px 10px 0;
  border-color: transparent #fff transparent transparent;
}

.speech-triangle-right {
  position: relative;
  border-radius: 5px 0px 5px 5px;
  /* espaço para o triângulo */
}

.speech-triangle-right::after {
  content: '';
  position: absolute;
  top: 0px;
  right: -10px;
  /* fora do elemento pela direita */
  transform: translateY(-0%);
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent transparent #fff;
}

/* Bottom */
.speech-bottom {
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 20px;
}

.speech-bottom:before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 20px 10px 0;
  border-color: #fff transparent;
}

.speech-bottom-left {
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 20px;
}

.speech-bottom-left:before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 15%;
  transform: translateX(-15%);
  border-style: solid;
  border-width: 20px 10px 0;
  border-color: #fff transparent;
}

.speech-bottom-right {
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 20px;
}

.speech-bottom-right:before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 85%;
  transform: translateX(-85%);
  border-style: solid;
  border-width: 20px 10px 0;
  border-color: #fff transparent;
}

/* TOP */
.speech-top {
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 20px;
}

.speech-top:before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 0 10px 20px;
  border-color: transparent transparent #fff;
}

.speech-top-left {
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 20px;
}

.speech-top-left:before {
  content: '';
  position: absolute;
  top: -20px;
  left: 15%;
  transform: translateX(-15%);
  border-style: solid;
  border-width: 0 10px 20px;
  border-color: transparent transparent #fff;
}

.speech-top-right {
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 20px;
}

.speech-top-right:before {
  content: '';
  position: absolute;
  top: -20px;
  left: 85%;
  transform: translateX(-85%);
  border-style: solid;
  border-width: 0 10px 20px;
  border-color: transparent transparent #fff;
}

/* LEFT */
.speech-left {
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  margin-right: 20px;
}

.speech-left:before {
  content: '';
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 10px 20px 10px 0;
  border-color: transparent #fff transparent transparent;
}

.speech-left-top {
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  margin-right: 20px;
}

.speech-left-top:before {
  content: '';
  position: absolute;
  top: 15%;
  left: -20px;
  transform: translateY(-15%);
  border-style: solid;
  border-width: 10px 20px 10px 0;
  border-color: transparent #fff transparent transparent;
}

.speech-left-bottom {
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  margin-right: 20px;
}

.speech-left-bottom:before {
  content: '';
  position: absolute;
  top: 85%;
  left: -20px;
  transform: translateY(-85%);
  border-style: solid;
  border-width: 10px 20px 10px 0;
  border-color: transparent #fff transparent transparent;
}

/* RIGHT */
.speech-right {
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  margin-left: 20px;
}

.speech-right:before {
  content: '';
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #fff;
}

.speech-right-top {
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  margin-left: 20px;
}

.speech-right-top:before {
  content: '';
  position: absolute;
  top: 15%;
  right: -20px;
  transform: translateY(-15%);
  border-style: solid;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #fff;
}

.speech-right-bottom {
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  margin-left: 20px;
}

.speech-right-bottom:before {
  content: '';
  position: absolute;
  top: 85%;
  right: -20px;
  transform: translateY(-85%);
  border-style: solid;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #fff;
}

/* tooltip.css */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip .tooltiptext {
  visibility: hidden;
  max-width: 300px;
  /* Largura máxima */
  background-color: #333;
  color: white;
  text-align: center;
  border-radius: 6px;
  padding: 7px;
  position: absolute;
  font-size: 14px;
  font-weight: bold;
  z-index: 1000;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* visual.css */
.transparent {
  background-color: transparent;
}

.ground {
  background-color: var(--ground);
}

/* Shadows */
.shadow {
  box-shadow: 2px 2px 4px var(--light);
}

.shadow-lg-st {
  box-shadow: 2px 2px 4px var(--light);
}

.shadow-lg-st:hover {
  box-shadow: 2px 2px 4px var(--strong);
}

.shadow-hover {}

.shadow-hover:hover {
  box-shadow: 2px 2px 4px var(--light);
}

.shadow-st {
  box-shadow: 2px 2px 4px var(--strong);
}

.shadow-st-hover {}

.shadow-st-hover:hover {
  box-shadow: 2px 2px 4px var(--strong);
}

.text-shadow-nn-lg {
  transition: text-shadow 0.3s ease;
}

.text-shadow-nn-lg:hover {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

.text-shadow {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

/* Borders */
.noborder {
  border: none;
  outline: none;
}

.border {
  border: 1px var(--light) solid;
}

.border-2 {
  border: 2px var(--light) solid;
}

.border-st {
  border: 1px var(--strong) solid;
}

.border-st-2 {
  border: 2px var(--strong) solid;
}

.border-lg-st {
  border: 1px var(--light) solid;
}

.border-lg-st:hover {
  border: 1px var(--strong) solid;
}

.border-lg-st-2 {
  border: 2px var(--light) solid;
}

.border-lg-st-2:hover {
  border: 2px var(--strong) solid;
}

.border-explicit {
  border: 1px solid var(--strong);
}

.border-explicit-2 {
  border: 2px solid var(--strong);
}

.border-explicit-3 {
  border: 3px solid var(--strong);
}

.border-top {
  border-top: 1px solid var(--light);
  border-left: none;
  border-right: none;
  border-bottom: none;
  outline: none;
}

.border-top-2 {
  border-top: 2px solid var(--light);
  border-left: none;
  border-right: none;
  border-bottom: none;
  outline: none;
}

.border-left {
  border-top: none;
  border-left: 1px solid var(--light);
  border-right: none;
  border-bottom: none;
  outline: none;
}

.border-left-2 {
  border-top: none;
  border-left: 2px solid var(--light);
  border-right: none;
  border-bottom: none;
  outline: none;
}

.border-right {
  border-top: none;
  border-left: none;
  border-right: 1px solid var(--light);
  border-bottom: none;
  outline: none;
}

.border-right-2 {
  border-top: none;
  border-left: none;
  border-right: 2px solid var(--light);
  border-bottom: none;
  outline: none;
}

.border-bottom {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid var(--light);
  outline: none;
}

.border-bottom-st {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid var(--strong);
  outline: none;
}

.border-bottom-2 {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid var(--light);
  outline: none;
}

.border-bottom-lg-st {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid var(--light);
  outline: none;
}

.border-bottom-lg-st:hover {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid var(--strong);
  outline: none;
}

.border-bottom-lg-st:focus {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid var(--strong);
  outline: none;
}

.border-red {
  border: 1px "#ff3232" solid;
}

.nofocus {}

.nofocus:focus {
  outline: none;
}

.underline {
  margin: auto;
  border-bottom: 1px solid var(--light);
  padding-bottom: 5px;
  margin-bottom: 7px;
}

.underline-explicit {
  margin: auto;
  border-bottom: 1px solid var(--strong);
  padding-bottom: 5px;
  margin-bottom: 7px;
}

.underline-link {
  display: inline-block;
  position: relative;
  color: #0087ca;
}

.underline-link:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #0087ca;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.underline-link:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.radius-1 {
  border-radius: 1px;
}

.radius-2 {
  border-radius: 2px;
}

.radius-3 {
  border-radius: 3px;
}

.radius-4 {
  border-radius: 4px;
}

.radius-5 {
  border-radius: 5px;
}

.radius-6 {
  border-radius: 6px;
}

.radius-7 {
  border-radius: 7px;
}

.radius-8 {
  border-radius: 8px;
}

.radius-9 {
  border-radius: 9px;
}

.radius-10 {
  border-radius: 10px;
}

.radius-15 {
  border-radius: 15px;
}

.radius-20 {
  border-radius: 20px;
}

.radius-25 {
  border-radius: 25px;
}

.radius-30 {
  border-radius: 30px;
}

.radius-35 {
  border-radius: 35px;
}

.radius-40 {
  border-radius: 40px;
}

.radius-45 {
  border-radius: 45px;
}

.radius-50 {
  border-radius: 50px;
}

.radius-60 {
  border-radius: 60px;
}

.radius-70 {
  border-radius: 70px;
}

.radius-80 {
  border-radius: 80px;
}

.radius-90 {
  border-radius: 90px;
}

.radius-100 {
  border-radius: 100px;
}

.radius-top-5 {
  border-radius: 5px 5px 0px 0px;
}

.radius-top-10 {
  border-radius: 10px 10px 0px 0px;
}

.radius-top-15 {
  border-radius: 15px 15px 0px 0px;
}

.radius-top-20 {
  border-radius: 20px 20px 0px 0px;
}

.radius-top-25 {
  border-radius: 25px 25px 0px 0px;
}

.radius-top-30 {
  border-radius: 30px 30px 0px 0px;
}

.radius-top-35 {
  border-radius: 35px 35px 0px 0px;
}

.radius-top-40 {
  border-radius: 40px 40px 0px 0px;
}

.radius-top-45 {
  border-radius: 45px 45px 0px 0px;
}

.radius-top-50 {
  border-radius: 50px 50px 0px 0px;
}

.radius-bottom-5 {
  border-radius: 0px 0px 5px 5px;
}

.radius-bottom-10 {
  border-radius: 0px 0px 10px 10px;
}

.radius-bottom-15 {
  border-radius: 0px 0px 15px 15px;
}

.radius-bottom-20 {
  border-radius: 0px 0px 20px 20px;
}

.radius-bottom-25 {
  border-radius: 0px 0px 25px 25px;
}

.radius-bottom-30 {
  border-radius: 0px 0px 30px 30px;
}

.radius-bottom-35 {
  border-radius: 0px 0px 35px 35px;
}

.radius-bottom-40 {
  border-radius: 0px 0px 40px 40px;
}

.radius-bottom-45 {
  border-radius: 0px 0px 45px 45px;
}

.radius-bottom-50 {
  border-radius: 0px 0px 50px 50px;
}

/* Opacity */
.opacity-01 {
  opacity: 0.1;
}

.opacity-02 {
  opacity: 0.2;
}

.opacity-03 {
  opacity: 0.3;
}

.opacity-04 {
  opacity: 0.4;
}

.opacity-05 {
  opacity: 0.5;
}

.opacity-06 {
  opacity: 0.6;
}

.opacity-07 {
  opacity: 0.7;
}

.opacity-08 {
  opacity: 0.8;
}

.opacity-09 {
  opacity: 0.9;
}

.opacity-10 {
  opacity: 1.0;
}

.opacity-in-01 {
  transition: all 0.3s ease 0s;
  opacity: 1.0;
}

.opacity-in-01:hover {
  transition: all 0.3s ease 0s;
  opacity: 0.1;
}

.opacity-in-02 {
  transition: all 0.3s ease 0s;
  opacity: 1.0;
}

.opacity-in-02:hover {
  transition: all 0.3s ease 0s;
  opacity: 0.2;
}

.opacity-in-03 {
  transition: all 0.3s ease 0s;
  opacity: 1.0;
}

.opacity-in-03:hover {
  transition: all 0.3s ease 0s;
  opacity: 0.3;
}

.opacity-in-04 {
  transition: all 0.3s ease 0s;
  opacity: 1.0;
}

.opacity-in-04:hover {
  transition: all 0.3s ease 0s;
  opacity: 0.4;
}

.opacity-in-05 {
  transition: all 0.3s ease 0s;
  opacity: 1.0;
}

.opacity-in-05:hover {
  transition: all 0.3s ease 0s;
  opacity: 0.5;
}

.opacity-in-06 {
  transition: all 0.3s ease 0s;
  opacity: 1.0;
}

.opacity-in-06:hover {
  transition: all 0.3s ease 0s;
  opacity: 0.6;
}

.opacity-in-07 {
  transition: all 0.3s ease 0s;
  opacity: 1.0;
}

.opacity-in-07:hover {
  transition: all 0.3s ease 0s;
  opacity: 0.7;
}

.opacity-in-08 {
  transition: all 0.3s ease 0s;
  opacity: 1.0;
}

.opacity-in-08:hover {
  transition: all 0.3s ease 0s;
  opacity: 0.8;
}

.opacity-in-09 {
  transition: all 0.3s ease 0s;
  opacity: 1.0;
}

.opacity-in-09:hover {
  transition: all 0.3s ease 0s;
  opacity: 0.9;
}

.opacity-out-01 {
  opacity: 0.1;
}

.opacity-out-01:hover {
  opacity: 1.0;
}

.opacity-out-02 {
  opacity: 0.2;
}

.opacity-out-02:hover {
  opacity: 1.0;
}

.opacity-out-03 {
  opacity: 0.3;
}

.opacity-out-03:hover {
  opacity: 1.0;
}

.opacity-out-04 {
  opacity: 0.4;
}

.opacity-out-04:hover {
  opacity: 1.0;
}

.opacity-out-05 {
  opacity: 0.5;
}

.opacity-out-05:hover {
  opacity: 1.0;
}

.opacity-out-06 {
  opacity: 0.6;
}

.opacity-out-06:hover {
  opacity: 1.0;
}

.opacity-out-07 {
  opacity: 0.7;
}

.opacity-out-07:hover {
  opacity: 1.0;
}

.opacity-out-08 {
  opacity: 0.8;
}

.opacity-out-08:hover {
  opacity: 1.0;
}

.opacity-out-09 {
  opacity: 0.9;
}

.opacity-out-09:hover {
  opacity: 1.0;
}

.transition-01-01 {
  transition: all 0.1s ease 0s;
}

.transition-01-01:hover {
  transition: all 0.1s ease 0s;
}

.transition-02-01 {
  transition: all 0.2s ease 0s;
}

.transition-02-01:hover {
  transition: all 0.1s ease 0s;
}

.transition-03-01 {
  transition: all 0.3s ease 0s;
}

.transition-03-01:hover {
  transition: all 0.1s ease 0s;
}

.transition-04-01 {
  transition: all 0.4s ease 0s;
}

.transition-04-01:hover {
  transition: all 0.1s ease 0s;
}

.transition-01-02 {
  transition: all 0.1s ease 0s;
}

.transition-01-02:hover {
  transition: all 0.2s ease 0s;
}

.transition-02-02 {
  transition: all 0.2s ease 0s;
}

.transition-02-02:hover {
  transition: all 0.2s ease 0s;
}

.transition-03-02 {
  transition: all 0.3s ease 0s;
}

.transition-03-02:hover {
  transition: all 0.2s ease 0s;
}

.transition-04-02 {
  transition: all 0.4s ease 0s;
}

.transition-04-02:hover {
  transition: all 0.2s ease 0s;
}

.transition-01-03 {
  transition: all 0.1s ease 0s;
}

.transition-01-03:hover {
  transition: all 0.3s ease 0s;
}

.transition-02-03 {
  transition: all 0.2s ease 0s;
}

.transition-02-03:hover {
  transition: all 0.3s ease 0s;
}

.transition-03-03 {
  transition: all 0.3s ease 0s;
}

.transition-03-03:hover {
  transition: all 0.3s ease 0s;
}

.transition-04-03 {
  transition: all 0.4s ease 0s;
}

.transition-04-03:hover {
  transition: all 0.3s ease 0s;
}

.transition-01-04 {
  transition: all 0.1s ease 0s;
}

.transition-01-04:hover {
  transition: all 0.4s ease 0s;
}

.transition-02-04 {
  transition: all 0.2s ease 0s;
}

.transition-02-04:hover {
  transition: all 0.4s ease 0s;
}

.transition-03-04 {
  transition: all 0.3s ease 0s;
}

.transition-03-04:hover {
  transition: all 0.4s ease 0s;
}

.transition-04-04 {
  transition: all 0.4s ease 0s;
}

.transition-04-04:hover {
  transition: all 0.4s ease 0s;
}

.transp {
  background-color: transparent;
}

.rgb000 {
  background-color: #000;
}

.rgb111 {
  background-color: #111;
}

.rgb222 {
  background-color: #222;
}

.rgb333 {
  background-color: #333;
}

.rgb444 {
  background-color: #444;
}

.rgb555 {
  background-color: #555;
}

.rgb666 {
  background-color: #666;
}

.rgb777 {
  background-color: #777;
}

.rgb888 {
  background-color: #888;
}

.rgb999 {
  background-color: #999;
}

.rgbfff {
  background-color: #fff;
}

.rgbf0f0f0 {
  background-color: #f0f0f0;
}

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

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

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

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

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

.bg-strong {
  background-color: var(--strong);
  color: #fff;
}

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

.bg-red {
  background-color: #ff3232;
  color: #fff;
}

.bg-purple {
  background-color: #643296;
  color: #fff;
}

.bg-blue {
  background-color: #3232ff;
  color: #fff;
}

.bg-orange {
  background-color: #ff9632;
  color: #fff;
}

.bg-green {
  background-color: #10913c;
  color: #fff;
}

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

.color-ground {
  color: var(--ground);
}

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

.color-solid {
  color: var(--solid);
}

.color-disabled {
  color: var(--disabled);
}

.color-strong {
  color: var(--strong);
}

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

.color-blue {
  color: #245ae5
}

.color-red {
  color: #ff3232
}

.color-green {
  color: #10913c
}