@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@300;400;500&display=swap');

body {
    /*font-family: 'Mukta', sans-serif;*/
    color:#666;
    font-size:14px;
    background-color:#E5E5E5; /* f1efef*/
}

.fondo-login{
	/*
	background-image:url('../imagenes/03.png');
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-color:#ff7200;
	*/
	background-color:#E5E5E5;
}

.fondo-menu{
	background-image:url('../imagenes/fondo-menu.png');

	background-color:#ff7200;
}



.form-control::placeholder {
  color: #C0C0C0;
  opacity: 1.5;
}

.titulo {
  background-color: #f79b31;
  color:#fff;
  font-size: 18px;
}
/*MENU*/

.dropdown-submenu {
  position: relative;
}

.dropdown-item:hover {
  background-color: #FF9700;
  color:#fff;
}

.dropdown-item:active {
  background-color: #FF9700;
  color:#fff;
}

.dropdown-submenu>a:after {
  content: "\f0da";
  float: right;
  font-weight: 900;
  border: none;
  font-family: 'Font Awesome 5 Free';
}



.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: 0px;
  margin-left: 0px;
}

@media (min-width: 991px) {
  .dropdown-menu {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
}


/*FIN MENU*/

.table{
	background-color:#fff;
}

.table-hover tbody tr:hover td, .table-hover tbody tr:hover th {
  background-color: #FBFF9B;
  color: #000;
}


/* subtabla */
.display-none {
    display: none;
}


.tr_ver_mas {
    text-decoration: none;
}

.tr_ver_mas:hover {
	text-decoration: none;
	cursor:pointer;
}


.modal-open .select2-container {
  z-index: 9999;
}


.alert-success {
    color: #fff;
    background-color: #52b569;
    border-color: #305f3b;
}

.btn-warning {
    background-color: #FF9700;
}

.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 1rem;
}


.icon-badge-container {
	position: relative;
	display: inline-block;
}

.icon-badge {
	position: absolute;
	top: -10px;
	right: -16px;
	border-radius: 40%;
	padding: 3px 7px;
	font-size: 10px;
	font-weight:bold;
}

/* Asegúrate de que el backdrop y el modal tengan un z-index mayor que el select2 */
.modal-backdrop {
  z-index: 10400 !important;
}
.bootbox.modal {
  z-index: 10500 !important;
}
.select2-container--open {
  z-index: 999 !important; /* Asegúrate de que el z-index del dropdown del select2 sea menor que el del modal */
}