span.material-symbols-outlined {
	vertical-align: middle;
	height: 1em;
}

div#toastContainer {
  position: fixed;
  top: 4.5rem;
  right: 1em;
  z-index: 7000;
}

span.chip {
	line-height: 2em;
	color: #2B88D9;
	border: solid 1px #2B88D9;
	display: inline-block;
	padding-left: 1.5em;
	padding-right: 1.5em;
	border-radius: 1em;
	cursor: pointer;
	transition: .15s ease-in-out;
	font-size: .8em;
}

span.chip:hover {
	color: white;
	background: #2B88D9;
}

span.chip.active {
  color: white;
  background: #2B88D9;
}

.ficha{
  padding: 1em;
  margin: 1em;
  border: solid 1px #a2aab5;
  border-radius: 5px;
  position: relative;
}
.form-fecha input.dia {
	width: 4em;
	display: inline-block;
}

.form-fecha label {
	display: block;
}

.form-fecha select.mes {
	display: inline-block;
	width: 5em;
	margin-left: .5em;
	margin-right: .5em;
}

.form-fecha input.anio {
	display: inline-block;
	width: 6em;
}

textarea.Objeto{
  display: none;
}
span#toogleMenu {
	position: fixed;
	left: .5rem;
	top: .5rem;
	background: white;
	font-size: 2em;
	width: 1.5em;
	height: 1.5em;
	line-height: 2em;
	text-align: center;
	border-radius: 2em;
	box-shadow: 1px 2px 3px #BBB;
	transition: .15s ease-in-out;
	line-height: 1.5em;
	background: #6FA6D2;
	color: white;
	z-index: 100;
}
table.reorder thead th .orderByControl {
  cursor: pointer;
  color: #DDD;
  margin-left: .5em;
  transition: .15s ease-in-out;
  opacity: 0;
}

table.reorder thead th .orderByControl:hover {
  color: #5E5E5E;
}

table.reorder thead th:hover .orderByControl {
  opacity: 1;
}

table.reorder thead th.orderBy .orderByControl {
  opacity: 1;
  color: #5E5E5E;
}
table.reorder thead th.orderBy.desc .orderByControl {
  transform: rotate(180deg);
}
table.reorder td.number{
  text-align: right;
  white-space: nowrap;
}
.nowrap{
  white-space: nowrap;
}
span#toogleMenu:hover{
  box-shadow: 1px 1px 2px #999;
}
h5#menuPrincipalLabel img {
	max-width: 50%;
}
.navbar-nav .nav-link{
  color: #5E5E5E;
}
.navbar-nav .nav-link:hover{
  color: #5E5E5E;
}
.navbar-nav .nav-link .material-symbols-outlined {
	vertical-align: bottom;
	margin-right: .5em;
}
.navbar-nav .nav-link:hover .material-symbols-outlined, .navbar-nav .nav-link:hover {
	color: #6FA6D2;
}
nav.navbar ul.cuentas {
	list-style: none;
	padding-left: 4em;
}

nav.navbar ul.cuentas li a {
	transition: .15s ease-in-out;
}

nav.navbar ul.cuentas li a:hover {
	color: #6FA6D2;
}
tr.inactivo{
  color: #b7b7b7;
}
td.monto{
  text-align: right;
}


h5#menuPrincipalLabel img {
	float: left;
	max-height: 5em;
	transform: translateY(-1em);
}

a h5#menuPrincipalLabel {
	text-align: right;
	height: 4em;
	padding-right: 2em;
	color: #5E5E5E;
	line-height: 1.2em;
	padding-top: .5em;
}

#menuPrincipal .offcanvas-header a {
	text-decoration: none;
}

body > div.container{
	padding-top: 5em;
}

.offcanvas-header .btn-close {
	transform: translateY(-3em);
}

@keyframes btnThinking {
	0%{
	  width: 10%;
	  left: 0px;
	  opacity: 1;
	}
	50%{
	  width: 100%;
	  left: 0%;
	  opacity: .5;
	}
	100%{
	  width: 10%;
	  left: 90%;
	  opacity: 1;
	}
}
.thinking {
	position: relative;
	background: #a2aab5;
	border-color: #a2aab5;
	cursor: wait;
}
.thinking:before {
	content: " ";
	position: absolute;
	width: 100%;
	height: 5px;
	bottom: 0px;
	background: #2B88D9;
	animation-name: btnThinking;
	animation-duration: 1s;
	animation-direction: alternate;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
	transition: .2s ease-in-out;
}
.thinking.btn-outline-danger {
	background: unset;
}
.thinking.btn-danger:before, .thinking.btn-outline-danger:before {
	background: #E74C12;
}

h1 span.material-symbols-outlined {
	font-size: 1.5em;
	vertical-align: bottom;
	color: #6FA6D2;
}

@keyframes spin {
	from {
		transform:rotate(0deg);
	}
	to {
		transform:rotate(-360deg);
	}
}

.spin {
  animation-name: spin;
  animation-duration: 3000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.calendarioReservaciones thead .cambioMes{
	cursor: pointer
}
.calendarioReservaciones tbody td{
	cursor: pointer;
}
.calendarioReservaciones .otroMes {
	color: #999999;
}
.calendarioReservaciones .hover {
	background: #2B88D9;
	color: white;
}
.calendarioReservaciones .reservada, .calendarioReservaciones .reservada.hover {
	color: white;
	background: #CCCCCC;
}
.calendarioReservaciones .futuro, .calendarioReservaciones .futuro.hover {
	color: #CCCCCC;
	background: unset;
}
.calendarioReservaciones .pasado, .calendarioReservaciones .pasado.hover {
	color: #CCCCCC;
	background: unset;
}
.calendarioReservaciones .CatWeek_3{
	color: rgb(17 187 35);
}
@media only screen and (max-width: 576px) {
  span#toogleMenu {
	  top: unset;
	  bottom: .5rem;
	  background: #2B88D9;
	  color: white;
  }
}