.spanish {
  font-family: Arial, Helvetica, sans-serif;
  direction: ltr;
}

HR {
  color: var(--primary-color);
}

P {
  margin: 0px;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center-flex {
  display: flex;
  justify-content: center;
}

.marginBottomXS {
  margin-bottom: 10px !important;
}

.marginBottomS {
  margin-bottom: 20px !important;
}

.marginBottomM {
  margin-bottom: 30px !important;
}

.marginBottomL {
  margin-bottom: 40px !important;
}

.marginBottomXL {
  margin-bottom: 50px !important;
}

.marginTopXS {
  margin-top: 10px !important;
}

.marginTopS {
  margin-top: 20px !important;
}

.marginTopM {
  margin-top: 30px !important;
}

.marginTopL {
  margin-top: 40px !important;
}

.marginTopXL {
  margin-top: 50px !important;
}

.notice {
  display: none;
  text-align: center;
  opacity: 0;
}
.notice.show {
  display: block;
  animation: notice 3s linear;
  animation-fill-mode: forwards;
}

@keyframes notice {
  0%, 100% {
    opacity: 0;
  }
  30%, 70% {
    opacity: 1;
  }
}