body{
	background-color : #322F2B;
}
#footer, #sidebar{
	z-index : 100;
}
#topbar{
	z-index : 200 !important;
}
#title-breadcrumb-option-demo{
	margin-left: 250px;
	padding-top: 0px;
}
.navbar{
	margin-bottom : 0px;
}

.texto-primary{
	font-weight: bold !important;
	color: #31708f !important;
}

.texto-success{
	font-weight: bold !important;
	color: #31AA4D !important;
}

.texto-danger{
	font-weight: bold !important;
	color: #DC3545 !important;
}

.texto-warning{
	font-weight: bold !important;
	color: #FFA500 !important;
}

.texto-info{
	font-weight: bold !important;
	color: #17A2B8 !important;
}

.disabled-text{
	color:#b2b2b2 !important;
}

.hide{
	display:none !important;
}

.error-page{
	background-color:#e3e3e3;
}

.footer{
	text-align: center;
}

.sidebar-collapse{
	margin-top: 40px;
}

.texto-small{
	font-size: 100% !important;
}

.single_line{
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.factura-color{
    background-color: #eeeeee;
}

input[type=file] {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 100%;
}

.loader {
	border: 16px solid #f3f3f3;
	border-radius: 50%;
	border-top: 16px solid #3498db;
	width: 80px;
	height: 80px;
	-webkit-animation: spin 2s linear infinite; /* Safari */
	animation: spin 2s linear infinite;
}

#title-breadcrumb-option-demo .page-header{
	width: 100%;
}

#title-breadcrumb-option-demo > .page-header > .page-title{
	width: 100%;
}

#page-wrapper > .space-margin{
	margin: 10px;
}

.page-content{
	min-height: 900px !important;
}

.chat-container{
	background-color: #f0f2f5;
	border-radius: 0.3em;
	border: 1px solid #cccccc;
	padding-top: 10px;
	overflow-y: auto;
	max-height: 500px;
	min-height: 400px;
}
.bubble-chat{
	display: inline-block;
	max-width: 80%;
	background-color: white;
	padding: 5px;
	margin-bottom: 5px;
	border-radius: 4px;
	position: relative;
	border-width: 1px;
	border-style: solid;
	border-color: grey;
}

.left{
	float: left;
}

.bubble-chat.left:after{
	content: "";
	display: inline-block;
	position: absolute;
	left: -8px;
	top: 7px;
	height: 0px;
	width: 0px;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-right: 8px solid white;
}

.bubble-chat.left:before{
	content: "";
	display: inline-block;
	position: absolute;
	left: -9px;
	top: 7px;
	height: 0px;
	width: 0px;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-right: 8px solid black;
}

.bubble-chat.right:after{
	content: "";
	display: inline-block;
	position: absolute;
	right: -8px;
	top: 6px;
	height: 0px;
	width: 0px;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 8px solid white;
}

.bubble-chat.right:before{
	content: "";
	display: inline-block;
	position: absolute;
	right: -9px;
	top: 6px;
	height: 0px;
	width: 0px;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 8px solid black;
}

.bubble-chat.right{
	float: right;
}
.bubble-chat.warning{
	background-color: #fcf8e3;
}
.bubble-chat.left.warning:after{
	border-right: 8px solid #fcf8e3;
}
.bubble-chat.right.warning:after{
	border-left: 8px solid #fcf8e3;
}

.bubble-chat.success{
	background-color: #dff0d8;
}
.bubble-chat.left.success:after{
	border-right: 8px solid #dff0d8;
}
.bubble-chat.right.success:after{
	border-left: 8px solid #dff0d8;
}

.bubble-chat.info{
	background-color: #d9edf7;
}
.bubble-chat.left.info:after{
	border-right: 8px solid #d9edf7;
}
.bubble-chat.right.info:after{
	border-left: 8px solid #d9edf7;
}

.align-center-message{
	float: none !important;
}
.clear{
	clear: both;
}

.footer-message{
	font-size: 9px;
	font-style: Italic;
	letter-spacing: 1px;
}

.parameters-chat-room{
	width: 100% !important;
}

.submit-chat-room{
	margin-top: 10px;
}

.radio-inline{
	line-height: 25px;
}

.padding-0{
	padding: 0;
}

.dangerous{
	background-color: #f46060;
}
.dangerous:hover{
	background-color: #f73636 !important;
}



 /* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.color-progress-bar{
	background-color: #337ab7 !important;
}

.hidden-password {
	font-family: monospace;
	font-size: 16px;
	letter-spacing: 3px;
	-webkit-text-security: disc;
	text-security: disc;
}

/* Estilos modal pagos */ 

.custom-large-modal .modal-dialog {
	width: 90%;
	max-width: 1200px;
}

.panel-heading {
	cursor: pointer;
	padding: 10px 15px;
}
.panel-heading .badge {
	margin-left: 5px;
}

.panel-encabezado-acordeon{
	background-color: #337ab7 !important;
	color: #f5f5f5 !important;
	font-weight: 600 !important;
	font-size: 18px !important;
}

.panel-heading .fa-chevron-down {
	transition: transform 0.3s ease;
	margin-right: 8px;
}
.panel-heading .collapsed .fa-chevron-down {
	transform: rotate(-90deg);
}

/* Estilos spinner reservas */

#loading-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0;
	padding: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 9999;
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	flex-direction: column;
	gap: 1rem;
	color: white;
	opacity: 0;
	transition: opacity 0.3s ease;
}

#loading-overlay.show {
	opacity: 1;
}

#loading-overlay > .spinner-border {
	width: 3rem;
	height: 3rem;
}

#loading-overlay > h3 {
	margin: 0;
	padding: 0;
	font-size: 1.25rem;
}

.custom-spinner {
	width: 3rem;
	height: 3rem;
	border: 0.25rem solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: white;
	animation: spin 1s ease-in-out infinite;
}