:root {
  --shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.2);
  --shadowInv: 0px -2px 6px 0px rgba(0, 0, 0, 0.2);
  --radius: 4px;
  --velocity: 0.25s;
  --gris1: #B4B4B4;
  --gris2: #707070;
  --gris3: #414141;
  --verde1: #D2EF71;
  --verde2: #76D98D;
  --verde22: #5dbb73;
  --verde3: #0f6339;
  --rojo: rgb(182, 31, 31);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0px;
  padding: 0px;
  background-color: #EDEDED;
  display: grid;
  grid-template-rows: 100px 1fr 100px;
  gap: 40px;
  min-height: 100vh;
  font-family: 'Rr';
  font-size: 13px;
}

h1 {
  color: var(--gris2);
  font-size: 26px;
}

@font-face {
  font-family: 'Rr';
  src: url('../font/roboto-regular.ttf');
}

input,
select,
textarea {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  padding: 7px 10px;
  border-radius: var(--radius);
  border: none;
  box-shadow: var(--shadow);
  outline: none;
}

textarea {
  resize: vertical;
}

input::placeholder {
  font-style: italic;
  color: var(--gris1);
}

.ar {
  text-align: right;
}

.al {
  text-align: left;
}

.ac {
  text-align: center;
}

.mt20 {
  margin-top: 20px;
}

.mb0 {
  margin-bottom: 0px;
}

.ma {
  margin: 0 auto;
}

.pb20 {
  padding-bottom: 20px;
}

@font-face {
  font-family: 'Material Symbols Sharp';
  font-style: normal;
  font-weight: 400;
  src: url(../font/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H5OdzEL3sVTgJtfbYxOLojCLJ1H7-0Hk.woff2) format('woff2');
}

.material-symbols-sharp {
  font-family: 'Material Symbols Sharp';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

.material-symbols-sharp {
  font-family: 'Material Symbols Sharp';
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48;
}


section {
  margin-bottom: 40px;
}

section:last-child {
  margin-bottom: 0px;
}

button {
  border-radius: var(--radius);
  background-color: var(--verde3);
  color: white;
  text-align: center;
  border: none;
  padding: 8px 10px;
  font-family: 'Rr';
  font-size: 16px;
  cursor: pointer;
  box-shadow: var(--shadow);
}

button:hover {
  background-color: white;
  color: var(--verde3);
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 60px;
  aspect-ratio: 4;
  background: radial-gradient(circle closest-side, #ffffff 90%, #ffffff00) 0/calc(100%/3) 100% space;
  clip-path: inset(0 100% 0 0);
  animation: l1 1s steps(4) infinite;
}

.loader.gray {
  filter: brightness(0.5);
  height: 6px;
  width: 30px;
}

@keyframes l1 {
  to {
    clip-path: inset(0 -34% 0 0)
  }
}

.col-2-1 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.col-1-3 {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 20px;
}

.col-1-1 {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
}
