@font-face {
  font-family: 'Rotis II Sans Pro';
  font-style: normal;
  font-weight: 400;
  src: local('Rotis II Sans Pro'), url('/general/fuentes/rotis.woff') format('woff');
}

html, body {
  font-family: 'Rotis II Sans Pro', sans-serif;
  font-size: 18px;
  color: #444;
}

.clear:after {
  clear: both;
  content: ".";
  display: block;
  font-size: 0;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

:root {
  --verde: #8BBC07;
}

.boton {
  background: var(--verde);
  text-shadow: 1px 1px rgba(0, 0, 0, 0.30);
  font-size: 25px;
  border: solid 2px var(--verde);
  color: #FFF;
  border-radius: 5px;
  padding: 15px 15px;
  text-decoration: none;
  cursor: pointer;
  display: table;
  line-height: 1;
  transition: transform 100ms;
  outline: none;
  user-select: none;
}

.boton:hover {
  transform: scale(1.05);
}

.swal-button, .swal-button:focus {
  background-color: var(--verde) !important;
}