/* Table */
.ns_table{
	width: 100%;
	max-width: 100%;
	border: none;
	border-collapse: collapse;
	text-align: left;
}

.ns_table th{
	color: var(--hipnos-color-secondary-1);
	font-weight: var(--hipnos-font-weight-bold);
	background: var(--hipnos-color-secondary-3);
	font-size: 14px;
	line-height: 20px;
	text-transform: uppercase;
}

/*
.ns_table th a{
	color: var(--hipnos-color-neutral-1);
}
*/

.ns_table th,
.ns_table td{
	padding: 20px 8px;
	border: none;
	width: 16.6666%;
	vertical-align: middle;
}

.ns_table thead > tr:first-child > th:first-child {
	border-radius: var(--hipnos-border-radius) 0 0 0;
}

.ns_table thead > tr:first-child > th:last-child {
	border-radius: 0 var(--hipnos-border-radius) 0 0;
}

.ns_table th:first-child,
.ns_table td:first-child {
	padding-left: 24px;
}

.ns_table th:last-child,
.ns_table td:last-child {
	padding-right: 24px;
}

.ns_table td {
	position: relative;
	color: var(--hipnos-color-neutral-2);
	font-weight: var(--hipnos-font-weight-normal);
	background: var(--hipnos-color-neutral-4);
	padding-top: 40px;
	padding-bottom: 40px;
	font-size: 14px;
	line-height: 20px;
}

.ns_table tbody tr:not(:last-child) > td:after {
	position: absolute;
	display: block;
	content: "";
	bottom: 0;
	height: 2px;
	background: var(--hipnos-color-secondary-3);
	left: 0;
	right: 0;
}

.ns_table tbody tr:not(:last-child) > td:first-child:after {
	left: 24px;
}

.ns_table tbody tr:not(:last-child) > td:last-child:after {
	right: 24px;
}

.ns_table tbody>tr:last-child>td:first-child {
	border-radius: 0 0 0 var(--hipnos-border-radius);
}

.ns_table tbody>tr:last-child>td:last-child {
	border-radius: 0 0 var(--hipnos-border-radius) 0;
}

/* Tables wrapper */
.ns_tables-wrapper{
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	align-content: space-around;
}

.ns_tables-wrapper .ns_table + .ns_table{
	margin-top: 24px;
}

/* Table vertical */
.ns_table-vertical td{
	vertical-align: top;
}

.ns_table-vertical td > strong{
	text-transform: uppercase;
	margin-bottom: 4px;
	white-space: nowrap;
}

.ns_table-vertical td > strong,
.ns_table-vertical td > strong + div{
	display: block;
}

.ns_table-vertical tbody tr > td{
	padding-top: 8px;
	padding-bottom: 8px;
}

.ns_table-vertical tbody tr:first-child > td{
	padding-top: 24px;
}

.ns_table-vertical tbody tr:last-child > td{
	padding-bottom: 32px;
}

.ns_table-vertical tbody tr:not(:last-child) > td:after {
	display: none;
}
