/* Reset CSS */
*,.row {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/* El footer siempre estara en la parte de abajo aunque no alla contenido en medio */
body{
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}


/* importants */

.container-xxl {
	max-width: 1450px !important;

}

.accordion-button:not(.collapsed) {
	color: #000!important;
	background-color: #ebe2d9!important;
}

.accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")!important;
	transform: rotate(-180deg);
}

.fs-7 {
	font-size: 13px !important;
}

.fs-8 {
	font-size: 11px !important;
}


.bg-success {
	background-color: #91ACA0 !important;
}

.bg-danger {
	background-color: #F4F3F1!important;
}



a:hover {
	background-color: rgba(150, 150, 150, 0.1);
	text-decoration: underline!important;
}

.btn-success{
	color: #ffff;
	background-color: #91ACA0 !important;
	border-color: #91ACA0;
	position: relative;
	cursor: pointer;
	overflow: hidden;
	display: block;
	width: 90%;
	padding: 7px;
	font-size: 20px;
	font-weight: 600;
	margin: auto;
}

.title_main{
	color: #91ACA0 !important;
}

@media only screen and (min-width: 768px) {
	.btn-success-carousel{
		width: 30%!important;
		margin-right: 10% !important;
	}
}

.btn-success:hover{
	background-color: #7f998d !important;
	border-color: #7f998d;
}

.btn-success::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: -100%;
	width: 100%;
	height: 5px;
	background-color: #EBE2D9;
	transform-origin: left;
	transition: left 0.6s ease;
  }
  
  .btn-success:hover::after {
	left: 0;
  }
  

  .bg-primary{
	background-color: #91ACA0!important;
  }

  .btn-gray {
	color: #fff;
	background-color: #868e96;
	border-color: #868e96;
  }

  .btn-gray:hover {
	color: #fff;
	background-color: #727b84;
	border-color: #6c757d;
  }

/* se hizo este cambio porque el modal backdrop se superponia al offcanvas inicialmente */
.modal-backdrop {
    z-index: 10;
}
.offcanvas {
    z-index: 100;
}

/* Tablas */

tbody a{
	color: #91ACA0!important;
	text-decoration: none;
}

/* Feature Titles */

nav .active{
text-decoration: underline!important;	
}


  /* hace que el loader palpite */
  @keyframes pulse {
	0% {
	  transform: scale(1);
	}
	50% {
	  transform: scale(1.1);
	}
	100% {
	  transform: scale(1);
	}
}

@media (min-width:768px) {
	.containerWidth {
		width: 50%;
	}
	.overDiv{
		margin-top: -100px; 
		z-index: 1;
	}
}

.select2-container--bootstrap-5 .select2-selection {
    display: flex;
    align-items: center;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .375rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
    display: block;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.select2-container--bootstrap-5 .select2-selection__arrow {
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    width: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.select2-container--bootstrap-5 .select2-selection__arrow::after {
    font-family: 'Font Awesome 5 Free';
    content: "\f078"; /* Código Unicode para la flecha hacia abajo */
    font-weight: 900;
    font-size: 1em;
}
