
h3.main-title {
    background-color: #4643C9;
    color: #fff;
    font-size: 23px;
    font-weight: normal;
    padding: 12px 10px;
    width: 100%;
}

h3.sub-titulo {
    background-color: #333;
    color: #fff;
    display: inline-block;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 1px;
    margin-top: 0;
    padding: 10px;
}

label{
	font-weight: normal;
}

.checkboxes_error{
	border-color: #a94442 !important;
    /*border: 1px solid #a94442 !important;*/
}

.checkboxes_error label{
	color: #a94442;
}

.grupo-checkboxes{
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #ccc;
    color: #555;
    font-size: 14px;
    line-height: 1.42857143;
    width: 100%;

    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.grupo-checkboxes label{
	font-weight: normal;
}


/*.btn-primary{background-color: #4643C9; }*/
.btn-warning {
	background-color: #4643C9;   /* Azul personalizado */
	border-color: #3b39a8;       /* Un poco más oscuro para el borde */
	color: #ffffff;              /* Texto blanco */
  }
/* Cambia el color cuando el mouse está encima */
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  background-color: #2e2c8b;   /* Más oscuro para hover */
  border-color: #25236d;
  color: #ffffff;
}

/* Cambia el color cuando el botón está activo */
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  background-image: none;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

/* Deshabilitado */
.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning {
  background-color: #4643C9;
  border-color: #3b39a8;
  opacity: 0.65;
}


.panel{
    border: 1px solid #bcbcbc;
}

.ts-callout-info{
    border-top: 5px solid #4643C9;
}

.ts-callout-info2{
    border-top: 5px solid #ccc;
}

.con-margen{
	padding-left: 60px;
}

.swipe{
	display: none;
}










td .switch-label, td label {
    margin-bottom: 0;
}
.switch-input {
	display: none;
}
.switch-label {
	/*margin: 16px;*/
	cursor: pointer;
	display: inline-block;
	font-weight: normal;
	min-width: 112px;
	padding: 0 0 0 44px;
	position: relative;
	text-align: left;
}
.switch-label:before, .switch-label:after {
	content: "";
	margin: 0;
	outline: 0;
	position: absolute;
	top: 50%;
	-ms-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.switch-label:before {
	background-color: #9E9E9E;
	border-radius: 8px;
	height: 14px;
	left: 1px;
	width: 34px;
}
.switch-label:after {
	left: 0;
	width: 20px;
	height: 20px;
	background-color: #eee;
	border-radius: 50%;
	box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.14), 0 2px 2px 0 rgba(0, 0, 0, 0.098), 0 1px 5px 0 rgba(0, 0, 0, 0.084);
}
.switch-label .toggle--on {
 	display: none;
}
.switch-label .toggle--off {
  	display: inline-block;
}
.switch-input:checked + .switch-label:before {
  	background-color: #70B4ED;
}
.switch-input:checked + .switch-label:after {
	background-color: #14609f;
	-ms-transform: translate(80%, -50%);
	-webkit-transform: translate(80%, -50%);
	transform: translate(80%, -50%);
}
.switch-input:checked + .switch-label .toggle--on {
  	display: inline-block;
}
.switch-input:checked + .switch-label .toggle--off {
  	display: none;
}





.radio-buttons {
	display: flex;
	flex-direction: column;
	gap: 10px;
  }

  .radio-buttons input[type="radio"] {
	display: none;
  }

  .radio-buttons label, 
  .radio-buttons .options
  {
	padding: 10px 20px;
	border: 1px solid #4643C9;
	border-radius: 5px;
	cursor: pointer;
	/* color: #4643C9; */
	color: #666;
	text-align: left;
	transition: all 0.3s;
	user-select: none;
  }

  .radio-buttons input[type="radio"]:checked + label, .radio-buttons label:has(input[type="radio"]:checked)
  {
	background-color: #4643C9;
	color: white;
  }

  .radio-buttons label:hover, 
  .radio-buttons label:hover
  {
	background-color: #e0f7fc;
  }

  .opcion-content {
	display: none;
	padding: 10px 20px;
	border: 1px solid #4643C9;
	border-radius: 5px;	
  }