/**
 * UTILITY CLASSES - Club Atlético Santa Rosa
 * Clases de utilidad reutilizables para reemplazar estilos inline comunes
 */

/* ===========================
   COLORES DE TEXTO
   =========================== */

.text-red {
  color: #f00 !important;
}

.text-green {
  color: #0f0 !important;
}

.text-blue {
  color: #00f !important;
}

.text-danger {
  color: #E30613 !important;
}

.text-success {
  color: #00843D !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-white {
  color: #fff !important;
}

.text-black {
  color: #000 !important;
}

/* ===========================
   COLORES DE ICONOS
   =========================== */

.icon-red {
  color: #f00 !important;
}

.icon-green {
  color: #0f0 !important;
}

.icon-blue {
  color: #00f !important;
}

.icon-danger {
  color: #E30613 !important;
}

.icon-success {
  color: #00843D !important;
}

/* ===========================
   CURSOR
   =========================== */

.cursor-pointer {
  cursor: pointer !important;
}

.cursor-default {
  cursor: default !important;
}

.cursor-not-allowed {
  cursor: not-allowed !important;
}

/* ===========================
   DISPLAY
   =========================== */

.display-none {
  display: none !important;
}

.display-block {
  display: block !important;
}

.display-inline {
  display: inline !important;
}

.display-inline-block {
  display: inline-block !important;
}

.visible {
  visibility: visible !important;
}

.hidden {
  visibility: hidden !important;
}

/* ===========================
   ALINEACIÓN DE TEXTO
   =========================== */

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-justify {
  text-align: justify !important;
}

/* ===========================
   TAMAÑOS DE FUENTE
   =========================== */

.font-size-10 {
  font-size: 10px !important;
}

.font-size-11 {
  font-size: 11px !important;
}

.font-size-12 {
  font-size: 12px !important;
}

.font-size-13 {
  font-size: 1.3rem !important;
}

.font-size-14 {
  font-size: 14px !important;
}

.font-size-16 {
  font-size: 16px !important;
}

.font-size-18 {
  font-size: 18px !important;
}

.font-size-xxl {
  font-size: xx-large !important;
}

/* ===========================
   PESO DE FUENTE
   =========================== */

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold,
.bold {
  font-weight: 600 !important;
}

.font-weight-bolder {
  font-weight: 700 !important;
}

/* ===========================
   ALTURA DE LÍNEA
   =========================== */

.lh-1 {
  line-height: 1 !important;
}

.lh-12 {
  line-height: 1.2 !important;
}

.lh-15 {
  line-height: 1.5 !important;
}

/* ===========================
   ESTILO DE FUENTE
   =========================== */

.italic {
  font-style: italic !important;
}

.uppercase {
  text-transform: uppercase !important;
}

.lowercase {
  text-transform: lowercase !important;
}

.capitalize {
  text-transform: capitalize !important;
}

/* ===========================
   MÁRGENES (Margin)
   =========================== */

.m-0 {
  margin: 0 !important;
}

.m-5 {
  margin: 5px !important;
}

.m-10 {
  margin: 10px !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-5 {
  margin-top: 5px !important;
}

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

.mt-15 {
  margin-top: 15px !important;
}

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

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

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

.mb-15 {
  margin-bottom: 15px !important;
}

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

.ml-0 {
  margin-left: 0 !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

/* ===========================
   RELLENO (Padding)
   =========================== */

.p-0 {
  padding: 0 !important;
}

.p-5 {
  padding: 5px !important;
}

.p-10 {
  padding: 10px !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

/* ===========================
   ANCHO Y ALTO
   =========================== */

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.h-36 {
  height: 36px !important;
}

.h-60 {
  height: 60px !important;
}

.h-500 {
  height: 500px !important;
}

.max-h-60 {
  max-height: 60px !important;
}

.max-w-100 {
  max-width: 100% !important;
}

/* ===========================
   BORDES
   =========================== */

.border-0,
.no-border {
  border: 0 none !important;
}

.border-bottom {
  border-bottom: 1px solid #ddd !important;
}

.border-top {
  border-top: 1px solid #ddd !important;
}

.border-left {
  border-left: 1px solid #ddd !important;
}

.border-right {
  border-right: 1px solid #ddd !important;
}

.border-dotted {
  border-bottom: 1px dotted #ccc !important;
}

.border-bottom-dark {
  border-bottom: 2px solid #999 !important;
}

/* ===========================
   OVERFLOW
   =========================== */

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-y-hidden {
  overflow-y: hidden !important;
}

.overflow-auto {
  overflow: auto !important;
}

/* ===========================
   POSICIONAMIENTO Y FLOAT
   =========================== */

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* ===========================
   COLORES DE FONDO
   =========================== */

.bg-success {
  background-color: #00843D !important;
  color: white !important;
}

.bg-warning {
  background-color: #ffc107 !important;
  color: #856404 !important;
}

.bg-danger {
  background-color: #E30613 !important;
  color: white !important;
}

.bg-info {
  background-color: #17a2b8 !important;
  color: white !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-gray {
  background-color: #ccc !important;
}

/* ===========================
   POSICIONAMIENTO
   =========================== */

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.top-0 {
  top: 0 !important;
}

.top-16 {
  top: 16px !important;
}

/* ===========================
   UTILIDADES DE IMPRESIÓN
   =========================== */

.no-print {
  display: block !important;
}

@media print {
  .print-only {
    display: block !important;
  }

  .no-print {
    display: none !important;
  }
}

/* ===========================
   BORDES REDONDEADOS
   =========================== */

.rounded {
  border-radius: 4px !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

/* ===========================
   SOMBRAS
   =========================== */

.shadow {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;
}

.shadow-sm {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

.shadow-lg {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
}

/* ===========================
   UTILIDADES VARIAS
   =========================== */

.vertical-align-middle {
  vertical-align: middle !important;
}

.white-space-nowrap {
  white-space: nowrap !important;
}

.text-decoration-none {
  text-decoration: none !important;
}
