html,
body {
  height: 100%;
}

body.body-login {
  display: flex !important;
  padding-top: 40px !important;
}
body {
  align-items: center;
  font-family: "Raleway", sans-serif;
  padding-top: 100px;
  padding-bottom: 40px;
  background-color: #ffffff;
  color: #212529;
}

/*
 * Backgorund
 * * * * * * * * * * * * * * * * * * * * * * * */

.btn-close-modal {
  padding: calc(var(--bs-modal-header-padding-y) * 0.5)
    calc(var(--bs-modal-header-padding-x) * 0.5) !important;
  margin: calc(-0.5 * var(--bs-modal-header-padding-y))
    calc(-0.5 * var(--bs-modal-header-padding-x))
    calc(-0.5 * var(--bs-modal-header-padding-y)) auto !important;
  box-sizing: content-box !important;
  width: 1em !important;
  height: 1em !important;
  padding: 0.25em 0.25em !important;
  background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat !important;
  border: 0 !important;
  border-radius: 0.375rem !important;
}
.ancho-body {
  max-width: 1200px;
  margin: 0 auto;
}
.bg-primary-subtle {
  background-color: var(--bs-success-bg-subtle) !important;
}
.bg-light,
.accordion .accordion-item .accordion-header .accordion-button {
  background: #F38906 !important;
}
.box-sombra {
  box-shadow: 0px 4px 4px rgba(7, 94, 84, 0.25);
}
.bg-lila {
  background: #F38906;
  color: white;
}
.bg-green {
  background: #F38906;
  color: white;
}
.bg-rosa {
  background: #F38906;
  color: white;
}
.bg-orange {
  background: #F38906;
  color: white;
}
/*
 * Textos
 * * * * * * * * * * * * * * * * * * * * * * * */
.text-sombra {
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
}
.text-orange {
  color: #F38906;
}
.text-celeste {
  color: #3bacd9;
}
/*
 * Table
 * * * * * * * * * * * * * * * * * * * * * * * */
.table th {
  font-size: 14px;
  padding: 0.5rem;
}
.table td {
  font-size: 14px;
}
.table-sm th,
.table-sm td {
  font-size: 12px;
}
.table-sm td .form-select-sm {
  font-size: 0.75rem;
  width: auto;
}

/*
 * Formularios
 * * * * * * * * * * * * * * * * * * * * * * * */
.form-teddy .form-control,
.form-teddy .form-select {
  background: #f8fafb;
}

/*
 * Botones
 * * * * * * * * * * * * * * * * * * * * * * * */
.btn {
  text-transform: lowercase;
}
.btn-sm {
  font-size: 0.75rem;
}
.btn-sm.rounded-circle {
  font-size: 14px !important;
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

/*
 * Menu Superior
 * * * * * * * * * * * * * * * * * * * * * * * */
.navbar {
  background: #fff !important;
  border-bottom: 1px solid #a8a8a8;
}
.navbar-toggler {
  background: #fff;
}
/* .dropdown-menu { background: #8B41F2; } */
.bg-menu {
  background: #fff;
}
.bg-menu .dropdown-item {
  color: #000;
  font-size: 14px;
}
.dropdown-item:focus,
.dropdown-item:hover {
  /*background: #313131*/
  color: #F38906;
  background: #fff !important;
}
/*
.navbar .navbar-brand img {
  margin-left: 1rem;
} */
.navbar-nav .nav-item {
  background: #fff !important;
  font-size: 14px;
}
.navbar-nav .nav-item a,
.navbar-nav .nav-item a.active {
  color: #000;
  background: #fff !important;
}

.navbar-nav .nav-item .active,
.navbar-nav .nav-item a:hover {
  /*border-bottom: 2px solid #F38906;*/
  color:#F38906;
  /*font-weight: 600;*/
  /*text-shadow: 0 0 2px #313131*/
}

.btn-salir,
.btn {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}

/*
 * Login
 * * * * * * * * * * * * * * * * * * * * * * * */
.login {
  max-width: 330px;
  padding: 15px;
}
.login .form-floating:focus-within {
  z-index: 2;
}

.login input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.login input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.login .form-control:focus,
.form-teddy .form-control:focus,
.form-teddy .form-select:focus {
  color: #212529;
  background-color: #fff;
  border-color: #f23847;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgb(242 56 71 / 25%) !important;
}

/*
 * Puntos de Colores
 * * * * * * * * * * * * * * * * * * * * * * * */
.punto-azul {
  position: relative;
}

.punto-azul::before {
  content: "\2022";
  /* Representación del punto */
  color: #00aeff;
  font-size: 40px;
  position: absolute;
  /* Posicionamos el punto de manera absoluta */
  top: 50%;
  /* Ajustamos la posición verticalmente al centro */
  transform: translateY(-50%);
  /* Centramos verticalmente el punto */
}

.punto-verde {
  position: relative;
  /* Agregamos position:relative al contenedor */
}

.punto-verde::before {
  content: "\2022";
  /* Representación del punto */
  color: #02aa77;
  /* Cambia el color del punto aquí */
  font-size: 40px;
  /* Cambia el tamaño del punto aquí */
  position: absolute;
  /* Posicionamos el punto de manera absoluta */
  top: 50%;
  /* Ajustamos la posición verticalmente al centro */
  transform: translateY(-50%);
  /* Centramos verticalmente el punto */
}

/*
 * Botones 3D
 * * * * * * * * * * * * * * * * * * * * * * * */
.btn3d {
  position: relative;
  top: -6px;
  border: 0;
  transition: all 40ms linear;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 2px;
  margin-right: 2px;
}

.btn3d:active:focus,
.btn3d:focus:hover,
.btn3d:focus {
  -moz-outline-style: none;
  outline: medium none;
}

.btn3d:active,
.btn3d.active {
  top: 2px;
}

.btn3d.btn-white {
  color: #666666;
  box-shadow: 0 0 0 1px #ebebeb inset, 0 0 0 2px rgba(255, 255, 255, 0.1) inset,
    0 4px 0 0 #f5f5f5, 0 4px 4px 1px rgba(0, 0, 0, 0.2);
  background-color: #F38906;
}

.btn3d.btn-white:active,
.btn3d.btn-white.active {
  color: #666666;
  box-shadow: 0 0 0 1px #ebebeb inset, 0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 1px 3px 1px rgba(0, 0, 0, 0.1);
  background-color: #F38906;
}

.btn3d.btn-default {
  color: #666666;
  box-shadow: 0 0 0 1px #F38906 inset, 0 0 0 2px rgba(255, 255, 255, 0.1) inset,
    0 4px 0 0 #d15801, 0 4px 4px 1px rgba(0, 0, 0, 0.2);
  background-color: #F38906;
}

.btn3d.btn-default:active,
.btn3d.btn-default.active {
  color: #666666;
  box-shadow: 0 0 0 1px #F38906 inset, 0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 1px 3px 1px rgba(0, 0, 0, 0.1);
  background-color: #F38906;
}

.btn3d.btn-primary {
  
  box-shadow: 0 0 0 1px #F38906 inset, 0 0 0 2px rgba(255, 255, 255, 0.15) inset,
    0 4px 0 0 #d15801, 0 4px 4px 1px rgba(0, 0, 0, 0.5);
  background-color: #F38906;
}

.btn3d.btn-primary:active,
.btn3d.btn-primary.active {
  box-shadow: 0 0 0 1px #F38906 inset, 0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 1px 3px 1px rgba(0, 0, 0, 0.3);
  background-color: #F38906;
}

.btn3d.btn-success {
  box-shadow: 0 0 0 1px #F38906 inset, 0 0 0 2px rgba(255, 255, 255, 0.15) inset,
    0 4px 0 0 #d15801, 0 4px 4px 1px rgba(0, 0, 0, 0.5);
  background-color: #F38906;
}

.btn3d.btn-success:active,
.btn3d.btn-success.active {
  box-shadow: 0 0 0 1px #F38906 inset, 0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 1px 3px 1px rgba(0, 0, 0, 0.3);
  background-color: #F38906;
}

.btn3d.btn-info {
  box-shadow: 0 0 0 1px #F38906 inset, 0 0 0 2px rgba(255, 255, 255, 0.15) inset,
    0 4px 0 0 #d15801, 0 4px 4px 1px rgba(0, 0, 0, 0.5);
  background-color: #F38906;
}

.btn3d.btn-info:active,
.btn3d.btn-info.active {
  box-shadow: 0 0 0 1px #F38906 inset, 0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 1px 3px 1px rgba(0, 0, 0, 0.3);
  background-color: #F38906;
}

.btn3d.btn-warning {
  box-shadow: 0 0 0 1px #F38906 inset, 0 0 0 2px rgba(255, 255, 255, 0.15) inset,
    0 4px 0 0 #d15801, 0 4px 4px 1px rgba(0, 0, 0, 0.5);
  background-color: #F38906;
}

.btn3d.btn-warning:active,
.btn3d.btn-warning.active {
  box-shadow: 0 0 0 1px #F38906 inset, 0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 1px 3px 1px rgba(0, 0, 0, 0.3);
  background-color: #F38906;
}

.btn3d.btn-danger {
  box-shadow: 0 0 0 1px #F38906 inset, 0 0 0 2px rgba(255, 255, 255, 0.15) inset,
    0 4px 0 0 #d15801, 0 4px 4px 1px rgba(0, 0, 0, 0.5);
  background-color: #F38906;
}

.btn3d.btn-danger:active,
.btn3d.btn-danger.active {
  box-shadow: 0 0 0 1px #F38906 inset, 0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 1px 3px 1px rgba(0, 0, 0, 0.3);
  background-color: #F38906;
}

.btn3d.btn-magick {
  color: #fff;
  box-shadow: 0 0 0 1px #F38906 inset, 0 0 0 2px rgba(255, 255, 255, 0.15) inset,
    0 4px 0 0 #d15801, 0 4px 4px 1px rgba(0, 0, 0, 0.5);
  background-color: #F38906;
}

.btn3d.btn-magick:active,
.btn3d.btn-magick.active {
  box-shadow: 0 0 0 1px #F38906 inset, 0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 1px 3px 1px rgba(0, 0, 0, 0.3);
  background-color: #F38906;
}

.btn3d.btn-secondary {
  box-shadow: 0 0 0 1px #F38906 inset, 0 0 0 2px rgba(255, 255, 255, 0.15) inset,
    0 4px 0 0 #d15801, 0 4px 4px 1px rgba(0, 0, 0, 0.5);
  background-color: #F38906;
}

.btn3d.btn-secondary:active,
.btn3d.btn-secondary.active {
  box-shadow: 0 0 0 1px #F38906 inset, 0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 1px 3px 1px rgba(0, 0, 0, 0.3);
  background-color: #F38906;
}
.tr-viaje {
  cursor: pointer;
}

.bg-modal-header {
  background: #F38906 !important;
  color: white;
}
/*
 * MOVIL
 * * * * * * * * * * * * * * * * * * * * * * * */
@media (max-width: 768px) {
  .form-teddy .form-label {
    font-size: 13px;
  }
  .form-teddy .form-control,
  .form-teddy .form-select {
    font-size: 14px;
  }
}
