/*------------------------------------------------------------------------
--------------------------------------------------------------------------
--------------------     ESTILOS PÁGINA LOGIN          -------------------
--------------------------------------------------------------------------
------------------------------------------------------------------------*/

.body-sign {
	display: table;
	height: 100vh;
	margin: 0 auto;
	max-width: 500px;
	padding: 0 15px;
	width: 100%;
}
.body-sign .center-sign {
	display: table-cell;
	padding-top: 20px;
	vertical-align: middle;
}
.body-sign .card-sign {
	background: transparent;
}
.body-sign .card-sign .card-title-sign .title {
	background-color: #0088cc;
	border-radius: 5px 5px 0 0;
	color: #FFF;
	display: inline-block;
	font-size: 0.75rem;
	padding: 6px 17px;
	vertical-align: bottom;
}
.body-sign .card-sign .card-body {
	background: #FFF;
	border-top: 5px solid #0088cc;
	border-radius: 5px 0 5px 5px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	padding: 33px 33px 15px;
}

/* Sign Screens - Elements */
.body-sign .input-group-icon .input-group-addon i {
	width: 14px;
}
.body-sign .checkbox-custom {
	margin-top: 8px;
}
.body-sign .line-thru {
	display: block;
	font-size: 0.75rem;
	position: relative;
}
.body-sign .line-thru span {
	color: #0088cc;
	position: relative;
	z-index: 3;
}
.body-sign .line-thru:before {
	background-color: #FFF;
	content: '';
	height: 10px;
	left: 50%;
	position: absolute;
	margin: -5px 0 0 -20px;
	top: 50%;
	width: 40px;
	z-index: 2;
}
.body-sign .line-thru:after {
	border-bottom: 1px solid #DADADA;
	content: '';
	display: block;
	left: 10%;
	position: absolute;
	top: 47%;
	width: 81%;
	z-index: 1;
}

.body-signup {
	display: table;
	margin: 0 auto;
	max-width: 800px;
	padding: 0 15px;
	width: 100%;
}
.body-signup .center-signup {
	display: table-cell;
	padding-top: 20px;
	vertical-align: middle;
}
.body-signup .card-signup {
	background: transparent;
}
.body-signup .card-signup .card-title-signup .title {
	background-color: #0088cc;
	border-radius: 5px 5px 0 0;
	color: #FFF;
	display: inline-block;
	font-size: 1.2rem;
	line-height: 2rem;
	padding: 13px 17px;
	vertical-align: bottom;
}
.body-signup .card-signup .card-body {
	background: #FFF;
	border-top: 5px solid #0088cc;
	border-radius: 5px 0 5px 5px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	padding: 33px 33px 15px;
}

/* signup Screens - Elements */
.body-signup .input-group-icon .input-group-addon i {
	width: 14px;
}
.body-signup .checkbox-custom {
	margin-top: 8px;
}
.body-signup .line-thru {
	display: block;
	font-size: 1.2rem;
	position: relative;
}
.body-signup .line-thru span {
	color: #CCC;
	position: relative;
	z-index: 3;
}
.body-signup .line-thru:before {
	background-color: #FFF;
	content: '';
	height: 10px;
	left: 50%;
	position: absolute;
	margin: -5px 0 0 -20px;
	top: 50%;
	width: 40px;
	z-index: 2;
}
.body-signup .line-thru:after {
	border-bottom: 1px solid #DADADA;
	content: '';
	display: block;
	left: 10%;
	position: absolute;
	top: 47%;
	width: 81%;
	z-index: 1;
}


/*------------------------------------------------------------------------
--------------------------------------------------------------------------
--------------------       ESTILOS PULSO ALERTA        -------------------
--------------------------------------------------------------------------
------------------------------------------------------------------------*/


.pulse {
  /*margin:100px;
  display: block;
 /* width: 22px;
  height: 22px;*/
  border-radius: 50%;
  background: #cca92c;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(82,171,33, 0.8);
  animation: pulse 2s infinite;
  background-color: #52ab21 !important;
}
.pulse:hover {
  animation: none;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(82,171,33, 0);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(82,171,33, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(82,171,33, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(82,171,33, 0.8);
    box-shadow: 0 0 0 0 rgba(82,171,33, 0.4);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(82,171,33, 0);
      box-shadow: 0 0 0 10px rgba(82,171,33, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(82,171,33, 0);
      box-shadow: 0 0 0 0 rgba(82,171,33, 0);
  }
}




/*------------------------------------------------------------------------
--------------------------------------------------------------------------
--------------------       ESTILOS BOTON VIOLETA       -------------------
--------------------------------------------------------------------------
------------------------------------------------------------------------*/




.btn-violeta {
  color: #fff;
  background-color: #623085;
  border-color: #623085;
}

.btn-violeta:hover {
  color: #fff;
  background-color: #572971;
  border-color: #47215D;
}

.btn-violeta:focus, .btn-violeta.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-violeta.disabled, .btn-violeta:disabled {
  background-color: #623085;
  border-color: #623085;
}

.btn-violeta:not([disabled]):not(.disabled):active, .btn-violeta:not([disabled]):not(.disabled).active,
.show > .btn-violeta.dropdown-toggle {
  color: #fff;
  background-color: #572971;
  border-color: #47215D;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}


/*------------------------------------------------------------------------
--------------------------------------------------------------------------
--------------------       thumb-info centrado       -------------------
--------------------------------------------------------------------------
------------------------------------------------------------------------*/
.thumb-info .thumb-info-title-center {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	background: rgba(36, 27, 28, 0.9);
	bottom: 10%;
	color: #FFF;
	font-size: 18px;
	font-weight: 700;
	left: 0;
	letter-spacing: -1px;
	padding: 9px 1px 9px;
	position: center;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
	text-transform: uppercase;
	z-index: 1;
}

.thumb-info .thumb-info-inner-center {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	display: block;
	position:center;
	white-space: nowrap;
}

.thumb-info .thumb-info-type-center {
	background-color: #CCC;
	border-radius: 2px;
	display: inline-block;
	position: relative;
	float:left;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0;
	margin: 8px -2px -15px -2px;
	padding: 2px 9px;
	text-transform: none;
}


/*------------------------------------------------------------------------
--------------------------------------------------------------------------
--------------------        MÁS TIPOS DE CARDS         -------------------
--------------------------------------------------------------------------
------------------------------------------------------------------------*/



html .card-violeta .card-header {
	background: #623085;
}

html .card-violeta .card-subtitle {
	opacity: 0.8;
	color: #FFF;
}

html .card-violeta .card-title {
	color: #FFF;
}

html .card-violeta .card-actions a {
	background-color: transparent !important;
	color: #FFF;
}
/*------------------------------------------------------------------------
--------------------------------------------------------------------------
--------------------        CUSTOMIZAR GUARDIAS        -------------------
--------------------------------------------------------------------------
------------------------------------------------------------------------*/
/* ---- TOGGLE ----*/
.toggle-table {
	cursor:pointer;	
}

/* ---- MODAL ----*/
.center-block {
	text-align:center !important;	
}

.selectable {
	cursor: pointer !important;	
}