html,
body {
  overflow: auto;
  overflow-x: hidden;
  margin: 0;
}

.color-naranja {
  color: #ea6117;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

footer {
  height: 10vh;
}

.table-bordered {
  border-top: 1px solid #ea6117;
  border-bottom: 1px solid #ea6117;
  border-left: none;
  border-right: none;
}

.btn-calcular {
  background-color: #ea6117;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #ea6117;
  padding: 0 20px 0 20px;
  text-decoration: none;
  border-radius: 20px;
}
.border-p-brand{
  border-color: #ea6117;
  border: 1px solid #ea6117;
  border-radius: 0px;
}

.border-card-header {
  border: 2px solid #ea6117;
  border-radius: 0;
}

#nombreSegmentoError {
  display: none;
}

.input-row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-imagen-home {
  background-image: var(--background-image);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  height: 240px;
  width: 100%;
}

.btn-custom {
  background-color: white;
  color: #ea6117;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #ea6117;
  padding: 0 20px 0 20px;
  text-decoration: none;
}

.custom-button {
  border: none;
  width: 38%;
  padding: 8px;
  background: #ea6117;
  color: #FFFFFF;
  text-decoration: unset;
  padding: 13px 15px;
  display: inline-block;
  text-align: center;
}

.btn-delete {
  background-color: white;
  color: red;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid red;
  padding: 0 20px 0 20px;
  text-decoration: none;
}

.btn-success {
  background-color: white;
  color: blue;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid blue;
  padding: 0 20px 0 20px;
  text-decoration: none;
}

#comunidadError {
  display: none;
}

.table-container {
  max-height: 300px;
  overflow-y: auto;
}

@media (min-width: 768px) {
  .bg-imagen-home {
    background-image: var(--background-image);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    height: 500px;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .bg-imagen-home {
    background-image: var(--background-image);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    height: 500px;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .bg-imagen-home {
    background-image: var(--background-image);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    height: 400px;
    width: 100%;
  }
}

@media (min-width: 1400px) {
  body {
    overflow: hidden;
  }

  .bg-imagen-home {
    background-image: var(--background-image);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    height: 500px;
    width: 100%;
  }
}

@media (min-width: 1600px) {
  body {
    overflow: hidden;
  }

  .bg-imagen-home {
    background-image: var(--background-image);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    height: 500px;
    width: 100%;
  }
}

.catalog-card-border {
  height: 350px;
  border-color: #ea6117;
  border-radius: 0px;
}

ul li::marker {
  color: #ea6117;
}
.input-disabled {
  background-color: #f5f5f5 !important;
  border-color: #ddd !important;
  color: #888 !important;
  cursor: not-allowed !important;
  opacity: 0.7;
}

/* Clase para input cuando el checkbox está marcado */
.input-enabled {
  background-color: white !important;
  border-color: #000 !important;
  color: #000 !important;
}

.form-check-input {
  cursor: pointer;
}

/* Estilos para el checkbox cuando está marcado */
.form-check-input:checked {
  background-color: #ea6117 !important;
  border-color: #ea6117 !important;
}