 @import url('//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css');

a, a:hover {
	text-decoration: none;
}

.socialbtns, .socialbtns ul, .socialbtns li {
  margin: 0;
  padding: 5px;
}

.socialbtns li {
    list-style: none outside none;
    display: inline-block;
}

.socialbtns .fa {
	width: 40px;
    height: 28px;
	color: #000;
	background-color: #FFF;
	border: 1px solid #000;
	padding-top: 12px;
	border-radius: 22px;
	-moz-border-radius: 22px;
	-webkit-border-radius: 22px;
	-o-border-radius: 22px;
}

.socialbtns .fa:hover {
	color: #FFF;
	background-color: #000;
	border: 1px solid #000;
}
/* Contenedor título soporte portal */
.ctn-title-support-portal {
	box-shadow: 0 1px 1px #959595;
	padding: 25px 0;
}

/* Contenedor de iconos de interacción con la tabla */
.ctn-icon-dark-table,
.ctn-icon-striped-table {
	border-radius: 5px;
	float: right;
	height: 40px;
	line-height: 40px;
	margin-left: 5px; 
	right: 15px;
	transition: 0.3s ease all;
	width: 40px; 
}

/* Contenedor icono luna */
.ctn-icon-dark-table {
	background-color: #1c1c1c;
	color: #57e6ff;
	text-shadow: 0 0 15px;
}

/* Efecto hover a la caja del icono */
.ctn-icon-dark-table:hover,
.ctn-icon-dark-table:focus {
	background-color: #000000;
}

.ctn-icon-striped-table {
	background-color: #cdcdcd;
}

/* Color del icono del sol */
.ctn-icon-normal-table {
	color: #ffff00;
}

/* Título soporte portal */
.title-support-portal {
	color: #1c1c1c;
	font-family: 'Poiret one', sans-serif;
	margin: 15px 0;
}

/* subtítulo soporte portal */
.subtitle-support-portal {
	color: #7a7a7a;
	font: normal 14px 'Montserrat', sans-serif;
}

/* Línea inferior subtítulo */
.subtitle-support-portal:after {
	background-color: #7a7a7a;
	content: "";
	display: block;
	height: 2px;
	margin: 20px auto 20px;
	width: 115px;
}

/* Tabla */
.table {
	margin-bottom: 1em;
	max-width: 100%;
	width: 100%;
}

.table td,
.table th {
	border-top: 1px solid #dee2e6;
	padding: 0.75em;
	vertical-align: top;
}

/* Tabla responsive */
.table-responsive {
	display: block;
	overflow-scrolling: touch;
	overflow-x: auto;
	width: 100%;
}

/* Tabla tema oscuro */
.table-dark {
	background-color: #212529;
	color: #ffffff;
}

.table-dark td,
.table-dark th,
.table-dark thead th {
	border-color: #32383e;
}

/* Efecto para que se alterne el color en los pares en la tabla normal */
.table-striped tbody tr:nth-of-type(even) {
	background-color: rgba(0, 0, 0, 0.1);
}

/* Efecto para que se alterne el color en los pares en la tabla de tema oscuro */
.table-dark.table-striped tbody tr:nth-of-type(even) {
	background-color: rgba(255, 255, 255, 0.1);
}

/* Efecto para hacer hover en la columna y afecte a todo la fila tabla normal */
.table-hover tbody tr:hover,
.table-hover tbody tr:focus {
	background-color: rgba(0, 0, 0, 0.075);
}

/* Efecto para hacer hover en la columna y afecte a todo la fila tabla tema oscuro */
.table-dark.table-hover tbody tr:hover,
.table-dark.table-hover tbody tr:focus {
	background-color: rgba(255, 255, 255, 0.075);
}

* {
	margin: 0;
	padding: 0;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

body {
	background-color: #ffffff;
	font: normal 1em 'Nunito Sans', sans-serif;
	overflow-x: hidden; 
}

a {
	text-decoration: none;
}

table {
	border-collapse: collapse;
}

table thead th {
	border-bottom: 2px solid #dee2e6;
	vertical-align: bottom;
}

th {
	text-align: inherit;
}

/* Bordes */
.radius {
	border-radius: 50%;
}

/* Clases personalizadas */
.white {
	color: #ffffff;
}

.color-youtube {
	color: #ff0000;
}

/* Cursores */
.pointer {
	cursor: pointer;
}

/* Posición */
.relative {
	position: relative;
}

.fixed {
	position: fixed;
}

/* Texto */
.txt-center {
	text-align: center;
}

/* Contenedor */
.container:before,
.container:after {
	content: "";
	display: table;
}

.container {
  margin: 0 auto;
  padding: 0 15px;
}

.container:after {
	clear: both;
}

@media screen and (min-width: 768px) {
	.container {
		width: 750px;
	}
}

@media screen and (min-width: 992px) {
	.container {
		width: 970px;
	}
}

@media screen and (min-width: 1200px) {
	.container {
		width: 1170px;
	}
}

@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1425px;
		padding: 0 90px;
		width: 100%;
	}
}

/* Columnas */
div[class^="col"] {
	float: left;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

/* Columnas celular */
.col-xs-12 {
  width: 100%;
}

/* Columnas tablet */
@media screen and (min-width: 768px) {
	.col-sm-12 {
		width: 100%;
	}
}

/* Columnas pc */
@media screen and (min-width: 992px) {
	.col-md-12 {
		width: 100%;
	}
}