@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700");
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  height: 100%;
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

.abs-center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.form {
  width: 450px;
  min-height: 300px;
  height: 100%;
}

.f15 {
  font-size: 24px;
}

/* Hacer iframe resposive */
.responsive-iframe {
  display: block;
  /* iframes are inline by default */
  border: none;
  /* Reset default border */
  height: 100vh;
  /* Viewport-relative units */
  width: 100%;
}

.anyClass {
  height: 500px;
  overflow-y: scroll;
}

.titulo {
  font-weight: bold;
}

.loader {
  z-index: 9999;
  background: url('../image/pageLoader.gif') 50% 50% no-repeat rgba(250, 240, 245, 0.5);
  opacity: .5;
}



.bg-orange-disabled {
  background-color: #F8C471 !important;
}

.bg-gris-table {
  background-color: #D6D8DB !important;
}


.bg-rosa-claro {
  background-color: #996699 !important;
}

.bg-rosa-2 {
  background-color: #886688 !important;
}

.bg-rosa {
  background-color: #9966CC !important;
}

.bg-darker {
  background-color: #200144 !important;
}

.bg-push {
  background-color: #ecdcfa !important;
}

.text-darker {
  color: #200144 !important;
}

.text-inoffice {
  color: #afd037 !important;
}

.bg-inoffice {
  background-color: #afd037 !important;
}

.border-inoffice {
  border: 0.15rem solid #afd037 !important;
}

.bg-gradient-inoffice {
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(45deg, rgba(0, 0, 0, 1) 0%, rgba(175, 208, 55, 1) 100%);
  background: -webkit-linear-gradient(45deg, rgba(0, 0, 0, 1) 0%, rgba(175, 208, 55, 1) 100%);
  background: linear-gradient(45deg, rgba(0, 0, 0, 1) 0%, rgba(175, 208, 55, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#afd037", GradientType=1);
  background-attachment: fixed;
}

.bg-gradient-purple {
  background: rgb(197, 61, 226);
  background: -moz-linear-gradient(126deg, rgba(197, 61, 226, 1) 0%, rgba(18, 20, 144, 1) 100%);
  background: -webkit-linear-gradient(126deg, rgba(197, 61, 226, 1) 0%, rgba(18, 20, 144, 1) 100%);
  background: linear-gradient(126deg, rgba(197, 61, 226, 1) 0%, rgba(18, 20, 144, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c53de2", endColorstr="#121490", GradientType=1);
  background-attachment: fixed;
}


.opacity-0 {
  opacity: 0 !important;
}

.opacity-1 {
  opacity: 0.2 !important;
}

.opacity-2 {
  opacity: 0.4 !important;
}

.opacity-3 {
  opacity: 0.6 !important;
}

.opacity-4 {
  opacity: .8 !important;
}

.opacity-5 {
  opacity: 1 !important;
}

/* Maybe even support hover opacity shifts */
.opacity-0h5 {
  opacity: 0 !important;
  transition: opacity .25s ease-in-out !important;
  -moz-transition: opacity .25s ease-in-out !important;
  -webkit-transition: opacity .25s ease-in-out !important;
}

.opacity-0h5:hover {
  opacity: 1 !important;
}

.bg-gradient-header {
  background: rgb(232, 156, 249);
  background: -moz-linear-gradient(-126deg, rgba(232, 156, 249, 1) 0%, rgba(46, 11, 54, 1) 100%);
  background: -webkit-linear-gradient(-126deg, rgba(232, 156, 249, 1) 0%, rgba(46, 11, 54, 1) 100%);
  background: linear-gradient(-126deg, rgba(232, 156, 249, 1) 0%, rgba(46, 11, 54, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e89cf9", endColorstr="#2e0b36", GradientType=1);
}

/* Para cargar logo de carga */
#contenedor_carga {
  background-color: rgba(250, 240, 245, 0.5);
  height: 100%;
  width: 100%;
  position: fixed;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  z-index: 10000;
}

#carga {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: url("../image/pageLoader.gif") 50% 50% no-repeat rgb(249, 249, 249);
}

.bg-darker {
  background-color: #200144 !important;
}

.text-darker {
  color: #200144 !important;
}

/* Gray CSS */
.text-gray-100 {
  color: #f8f9fc !important;
}

.text-gray-200 {
  color: #eaecf4 !important;
}

.text-gray-300 {
  color: #dddfeb !important;
}

.text-gray-400 {
  color: #d1d3e2 !important;
}

.text-gray-500 {
  color: #b7b9cc !important;
}

.text-gray-600 {
  color: #858796 !important;
}

.text-gray-700 {
  color: #6e707e !important;
}

.text-gray-800 {
  color: #5a5c69 !important;
}

.text-gray-900 {
  color: #3a3b45 !important;
}

.bg-gray-100 {
  background-color: #f8f9fc !important;
}

.bg-gray-200 {
  background-color: #eaecf4 !important;
}

.bg-gray-300 {
  background-color: #dddfeb !important;
}

.bg-gray-400 {
  background-color: #d1d3e2 !important;
}

.bg-gray-500 {
  background-color: #b7b9cc !important;
}

.bg-gray-600 {
  background-color: #858796 !important;
}

.bg-gray-700 {
  background-color: #6e707e !important;
}

.bg-gray-800 {
  background-color: #5a5c69 !important;
}

.bg-gray-900 {
  background-color: #3a3b45 !important;
}

.bg-rosado {
  background-color: #DBD2FA !important;
}

.link {
  cursor: pointer;
}

.btn-wsp {
  position: fixed;
  width: 55px;
  height: 55px;
  line-height: 55px;
  bottom: 40px;
  right: 20px;
  background-color: #00bb2d;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
  cursor: pointer;
}

.btn-wsp:hover {
  text-decoration: none;
  color: #00bb2d;
  background-color: #fff;
}

.border-left-primary {
  border-left: 0.25rem solid #4e73df !important;
}

.border-bottom-primary {
  border-bottom: 0.25rem solid #4e73df !important;
}

.border-left-secondary {
  border-left: 0.25rem solid #858796 !important;
}

.border-bottom-secondary {
  border-bottom: 0.25rem solid #858796 !important;
}

.border-left-success {
  border-left: 0.25rem solid #1cc88a !important;
}

.border-bottom-success {
  border-bottom: 0.25rem solid #1cc88a !important;
}

.border-left-info {
  border-left: 0.25rem solid #36b9cc !important;
}

.border-bottom-info {
  border-bottom: 0.25rem solid #36b9cc !important;
}

.border-left-warning {
  border-left: 0.25rem solid #f6c23e !important;
}

.border-bottom-warning {
  border-bottom: 0.25rem solid #f6c23e !important;
}

.border-left-danger {
  border-left: 0.25rem solid #e74a3b !important;
}

.border-bottom-danger {
  border-bottom: 0.25rem solid #e74a3b !important;
}

.border-left-light {
  border-left: 0.25rem solid #f8f9fc !important;
}

.border-bottom-light {
  border-bottom: 0.25rem solid #f8f9fc !important;
}

.border-left-dark {
  border-left: 0.25rem solid #5a5c69 !important;
}

.border-bottom-dark {
  border-bottom: 0.25rem solid #5a5c69 !important;
}


label {
  font-weight: bold;
}

.btn-icon-split {
  padding: 0;
  overflow: hidden;
  display: inline-flex;
  align-items: stretch;
  justify-content: center;
}

.btn-icon-split .icones {
  background: rgba(0, 0, 0, 0.15);
  display: inline-block;
  padding: 0.375rem 0.75rem;
}

.btn-icon-split .text {
  display: inline-block;
  padding: 0.375rem 0.75rem;
}

.btn-icon-split.btn-sm .icones,
.btn-group-sm>.btn-icon-split.btn .icones {
  padding: 0.25rem 0.5rem;
}

.btn-icon-split.btn-sm .text,
.btn-group-sm>.btn-icon-split.btn .text {
  padding: 0.25rem 0.5rem;
}

.btn-icon-split.btn-lg .icones,
.btn-group-lg>.btn-icon-split.btn .icones {
  padding: 0.5rem 1rem;
}

.btn-icon-split.btn-lg .text,
.btn-group-lg>.btn-icon-split.btn .text {
  padding: 0.5rem 1rem;
}

.text-danger-disabled {
  color: #f8d7da !important;
}

.text-primary-disabled {
  color: #cce5ff !important;
}

.text-success-disabled {
  color: #d4edda !important;
}

.text-warning-disabled {
  color: #fff3cd !important;
}

.text-info-disabled {
  color: #d1ecf1 !important;
}

.text-secondary-disabled {
  color: #e2e3e5 !important;
}

.bg-danger-disabled {
  background-color: #f8d7da !important;
}

.bg-primary-disabled {
  background-color: #cce5ff !important;
}

.bg-success-disabled {
  background-color: #d4edda !important;
}

.bg-warning-disabled {
  background-color: #fff3cd !important;
}

.bg-info-disabled {
  background-color: #d1ecf1 !important;
}

.bg-secondary-disabled {
  background-color: #e2e3e5 !important;
}

/* COLOR PURPLE */
.bg-purple {
  background-color: var(--purple) !important;
}

.text-purple {
  color: var(--purple) !important;
}

.border-purple {
  border-color: var(--purple) !important;
}

.table-purple,
.table-purple > th,
.table-purple > td {
  background-color: #E6E6FA;
}

.table-purple th,
.table-purple td,
.table-purple thead th,
.table-purple tbody + tbody {
  border-color: #DDA0DD;
}

.table-hover .table-purple:hover {
  background-color: #D8BFD8;
}

.table-hover .table-purple:hover > td,
.table-hover .table-purple:hover > th {
  background-color: #D8BFD8;
}

/* COLOR TEAL */
.bg-teal {
  background-color: var(--teal) !important;
}

.text-teal {
  color: var(--teal) !important;
}

.border-teal {
  border-color: var(--teal) !important;
}

.table-teal,
.table-teal > th,
.table-teal > td {
  background-color: #E6FCF5;
}

.table-teal th,
.table-teal td,
.table-teal thead th,
.table-teal tbody + tbody {
  border-color: #96F2D7;
}

.table-hover .table-teal:hover {
  background-color: #C3FAE8;
}

.table-hover .table-teal:hover > td,
.table-hover .table-teal:hover > th {
  background-color: #C3FAE8;
}

legend {
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	font-weight: bold;
	padding: 4px 10px 4px 10px;
	width: auto;
}
