@font-face {
  font-family: 'Bauhaus';
  font-style: normal;
  font-weight: 300;
  src: url('/general/fuentes/bauhaus.woff') format('woff');
}

html,
body {
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

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

:root {
  --rojo: #D30000;
  --negro: #333333;
}

.boton {
  background: var(--rojo);
  text-shadow: 1px 1px rgba(0, 0, 0, 0.30);
  font-size: 25px;
  border: solid 2px var(--negro);
  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(--rojo) !important;
}