/*
Theme Name:  Salient
Version:     17.0.3
Description: An Ultra Responsive Multi-Purpose Theme.
Theme URI:   https://themeforest.net/item/salient-responsive-multipurpose-theme/4363266
Author:      ThemeNectar
Author URI:  https://themeforest.net/user/themenectar
License:     Custom license
License URI: http://themeforest.net/licenses/terms/regular
Text Domain: salient
*/

/*-------------------------------------------------------------------------*/
/* Note: The theme CSS files are loaded through the /css/ folder. 
/*-------------------------------------------------------------------------*/

.disp-block {
	display: block !important;
}

.lv-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}


/* Bloque colores y acabados items portfolio */

/*
.bloque-colores-acabados > div {
    width: 100%;
    max-width: calc((100% / 3) - 34px);
}
*/

.bloque-colores-acabados > div {
    width: 100%;
    max-width: 100%;
	margin-bottom: 50px;
}

.bloque-colores-acabados > div.titulo {
	margin-bottom: 20px;
}

.bloque-colores-acabados > div > h3 {
    margin-bottom: 20px;
	font-weight: 400;
}

.bloque-colores-acabados > div.titulo > h3 {
	font-weight: 700;
}

.bloque-colores-acabados > div > ul {
    margin: 0;
    padding: 0;
	gap: 20px;
}

/*
.bloque-colores-acabados > div > ul > li {
    display: block;
	width: 100%;
    max-width: calc((100% / 4) - 15px);
	text-align: center;
}
*/

.bloque-colores-acabados > div > ul > li {
    display: block;
	text-align: center;
}

.bloque-colores-acabados > div > ul > li > img {
   	max-width: 60px !important;
    margin: 0 auto;
	margin-bottom: 0 !important;
}

.bloque-colores-acabados > div > ul > li > span {
    font-size: 12px;
}




/*
@media screen and (max-width: 1024px) {

	.bloque-colores-acabados > div > ul > li {
		max-width: calc((100% / 3) - 14px);
	}
	
}

@media screen and (max-width: 768px) {

	.bloque-colores-acabados > div > ul > li {
		max-width: calc((100% / 2) - 10px);
	}
	
}
*/

@media screen and (max-width: 580px) {

	.bloque-colores-acabados > div > ul > li {
		width: 100%;
		max-width: calc((100% / 4) - 15px);
	}
	
}

@media screen and (max-width: 420px) {

	.bloque-colores-acabados > div > ul > li {
		max-width: calc((100% / 3) - 14px);
	}
	
}


@media screen and (max-width: 350px) {

	.bloque-colores-acabados > div {
		width: 100%;
		max-width: 100%;
	}
	
}













/*PORTFOLIO*/

.portfolio-items .work-info {
    opacity: 1;
}

.portfolio-items .col .work-info .vert-center {
    margin-top: 0;
	position: absolute;
    top: unset;
    bottom: 0;
    left: 0;
    text-align: left;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.portfolio-items .col .work-item.style-2 h3 {
    margin-bottom: 0;
}

.portfolio-items .col .work-info .vert-center * {
    opacity: 1;
}

.portfolio-items .col .work-item .work-info .vert-center svg {
	width: 30px;
    height: auto;
	opacity: 0;
	transform: translate(-30px, 0);
	transition: 0.4s;
}

.portfolio-items .col .work-item:hover .work-info .vert-center svg {
	transform: translate(0, 0);
	opacity:1;
}

.portfolio-items .col .work-item .work-info .vert-center .next-arrow,
.portfolio-items .col .work-item .work-info .vert-center .line {
	display: none;
}






























/**
 * Tabla responsive reutilizable construida con DIVS y Flexbox.
 *
 * Estructura esperada:
 *
 * .db-table-box
 *   .db-data-table
 *     .db-table-inner
 *       .db-table-head
 *         .db-table-row.db-table-header-row
 *           .db-table-header
 *       .db-table-body
 *         .db-table-row.db-table-data-row
 *           .db-table-cell
 *             .db-table-cell-label
 *             .db-table-cell-value
 */


/* ==========================================================
   ESTILOS LANDSCAPE / ESCRITORIO
   ========================================================== */

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

.db-table-box {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	margin: 0;
	overflow-x: auto;
	overflow-y: hidden;
	overscroll-behavior-inline: contain;
	-webkit-overflow-scrolling: touch;
	font-size: 14px;
	line-height: 1.35;
}

.db-table-box .db-data-table {
	width: 100%;
	min-width: var(--db-table-min-width, 1100px);
	max-width: none;
	margin: 0;
	background: transparent;
	color: #747474;
}

.db-table-box .db-table-inner,
.db-table-box .db-table-head,
.db-table-box .db-table-body {
	width: 100%;
	min-width: 0;
}

.db-table-box .db-table-row {
	display: flex;
	width: 100%;
	min-width: 0;
	margin: 0;
	padding: 0;
}

.db-table-box .db-table-data-row:nth-child(even) {
    background-color: #eee;
}

.db-table-box .db-table-header,
.db-table-box .db-table-cell {
	display: flex;
	flex: 1 1 0;
	min-width: 0;
	align-items: center;
	justify-content: center;
	padding-right: 10px;
	padding-left: 10px;
	text-align: center;
	overflow-wrap: anywhere;
}

.db-table-box .db-table-header-row {
	align-items: stretch;
	border-bottom: 1px solid #96949f;
}

.db-table-box .db-table-header {
	align-items: flex-end;
    padding-top: 0;
    padding-bottom: 10px;
    color: #174358;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.db-table-box .db-table-header-title,
.db-table-box .db-table-header-subtitle,
.db-table-box .db-table-cell-label-title,
.db-table-box .db-table-cell-label-subtitle,
.db-table-box .db-table-cell-value {
	display: block;
}

.db-table-box .db-table-header-title {
	letter-spacing: 0.01em;
}

.db-table-box .db-table-header-subtitle {
	margin-top: 3px;
	color: #7d7d7d;
	font-size: 13px;
	font-style: italic;
	font-weight: 400;
	line-height: 1.2;
}

.db-table-box .db-table-data-row {
	align-items: stretch;
	border: 0;
}

.db-table-box .db-table-cell {
	min-height: 36px;
	padding-top: 8px;
	padding-bottom: 8px;
	color: #767676;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.3;
	white-space: normal;
}

.db-table-box .db-table-data-row:first-child .db-table-cell {
	padding-top: 13px;
}

.db-table-box .db-table-data-row:last-child .db-table-cell {
	padding-bottom: 2px;
}

/*
 * En escritorio las etiquetas repetidas dentro de cada celda
 * se ocultan porque ya existe una cabecera superior.
 */
.db-table-box .db-table-cell-label {
	display: none;
}

/*
 * Primera columna: medida o descripción.
 */
.db-table-box .db-table-header:first-child,
.db-table-box .db-table-cell:first-child {
	flex-grow: 1;
	justify-content: flex-start;
	padding-left: 10px;
	text-align: left;
}

/*
 * Segunda columna: código.
 */
.db-table-box .db-table-header:nth-child(2),
.db-table-box .db-table-cell:nth-child(2) {
	flex-grow: 0.5;
}

/*
 * Título opcional generado por el shortcode.
 */
.db-table-box .db-table-caption {
	width: 100%;
	margin: 0;
	padding: 0 0 18px;
	color: #595959;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.25;
	text-align: left;
}

.db-table-empty {
	width: 100%;
	margin: 0;
	color: #767676;
	font-size: 14px;
	line-height: 1.4;
}


/* ==========================================================
   ESTILOS RESPONSIVE / TABLET Y MÓVIL
   Cada fila de datos se convierte en una ficha.
   Todas las columnas se comportan igual, incluida la primera.
   ========================================================== */

@media screen and (max-width: 900px) {

	.db-table-box {
		overflow: visible;
	}

	.db-table-box .db-data-table {
		width: 100%;
		min-width: 0;
		max-width: 100%;
	}

	.db-table-box .db-table-caption {
		padding-bottom: 14px;
		font-size: 18px;
	}

	.db-table-box .db-table-head {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		clip-path: inset(50%);
		white-space: nowrap;
		border: 0;
	}

	.db-table-box .db-table-body {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		gap: 14px;
	}

	.db-table-box .db-table-data-row {
		display: flex;
		flex-direction: column;
		width: 100%;
		margin: 0;
		padding: 13px 16px;
		border: 1px solid #dedee2;
		border-radius: 7px;
		background: #fff;
	}

	.db-table-box .db-table-cell,
	.db-table-box .db-table-cell:first-child,
	.db-table-box .db-table-cell:nth-child(2),
	.db-table-box .db-table-data-row:first-child .db-table-cell,
	.db-table-box .db-table-data-row:last-child .db-table-cell {
		display: flex;
		flex: 0 0 auto;
		align-items: flex-start;
		justify-content: space-between;
		gap: 18px;
		width: 100%;
		min-height: 0;
		padding: 7px 0;
		color: #767676;
		font-size: 14px;
		font-weight: 400;
		line-height: 1.35;
		text-align: right;
		white-space: normal;
	}

	.db-table-box .db-table-cell-label {
		display: block;
		flex: 0 1 46%;
		min-width: 0;
		color: #595959;
		font-weight: 500;
		line-height: 1.3;
		text-align: left;
	}

	.db-table-box .db-table-cell-label-subtitle {
		margin-top: 2px;
		color: #7d7d7d;
		font-size: 12px;
		font-style: italic;
		font-weight: 400;
		line-height: 1.2;
	}

	.db-table-box .db-table-cell-value {
		flex: 1 1 54%;
		min-width: 0;
		color: #767676;
		text-align: right;
		overflow-wrap: anywhere;
	}
}


/* ==========================================================
   RESPONSIVE MÓVIL PEQUEÑO
   ========================================================== */

@media screen and (max-width: 480px) {

	.db-table-box .db-table-body {
		gap: 12px;
	}

	.db-table-box .db-table-data-row {
		padding: 11px 13px;
		border-radius: 6px;
	}

	.db-table-box .db-table-cell,
	.db-table-box .db-table-cell:first-child,
	.db-table-box .db-table-cell:nth-child(2),
	.db-table-box .db-table-data-row:first-child .db-table-cell,
	.db-table-box .db-table-data-row:last-child .db-table-cell {
		gap: 12px;
		padding: 6px 0;
	}

	.db-table-box .db-table-cell-label {
		flex-basis: 48%;
	}

	.db-table-box .db-table-cell-value {
		flex-basis: 52%;
	}
}




















/* PÁGINAS DE COMPLEMENTOS CON FILTRO */

.complementos .titulo-complementos {
	margin-bottom: 50px;
}

.complementos .menu-tax-complementos {
	margin-bottom: 30px;
	display: flex;
    justify-content: center;
}

.complementos .menu-tax-complementos ul {
    margin: 0;
    padding: 0;
    display: flex;
}

.complementos .menu-tax-complementos ul li {
    display: block;
    padding: 10px 20px;
    cursor: pointer;
	transition: 0.4s;
}

.complementos .menu-tax-complementos ul li:hover,
.complementos .menu-tax-complementos ul li.activo {
    font-weight: 700;
}

.complementos .items-complementos {
	margin-bottom: 100px;
}

.complementos .items-complementos ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.complementos .items-complementos ul li {
    display: flex;
    width: 100%;
    max-width: calc(100% / 3);
	position: relative;
	overflow: hidden;
}

.complementos .items-complementos ul li.mosaico-par {
	background-color: #004059;
}

.complementos .items-complementos ul li.mosaico-impar {
	background-color: #6693a8;
}

.complementos .items-complementos ul li img {
	margin: 0;
}

.complementos .items-complementos ul li img {
	margin: 0;
	transition: 0.4s;
}

.complementos .items-complementos ul li:hover img {
	transform: scale(1.1);
}

.complementos .items-complementos ul li .contenido {
	position: absolute;
    bottom: 0;
    padding: 30px;
}

.complementos .items-complementos ul li .contenido h2,
.complementos .items-complementos ul li .contenido span {
	color: #fff;
}

.complementos .items-complementos ul li .contenido h2 {
    line-height: 1.2em;
    margin-bottom: 5px;
	font-size: 25px;
}



/* Select oculto por defecto en escritorio */
.menu-tax-complementos .select-tax-complementos {
	display: none;
	width: 100%;
	padding: 12px 40px 12px 15px;
	font-size: 14px;
	line-height: 1.4;
	border: 1px solid #ddd;
	background-color: #fff;
	color: #004059;
	cursor: pointer;
	box-sizing: border-box;
}


/* RESPONSIVE */
@media only screen and (max-width: 920px) {

	/* Ocultamos el menú horizontal */
	.menu-tax-complementos > ul {
		display: none !important;
	}

	/* Mostramos el select */
	.menu-tax-complementos .select-tax-complementos {
		display: block;
	}

}




@media screen and (max-width: 820px) {
	.complementos .items-complementos ul li {
		max-width: calc(100% / 2);
	}
}

@media screen and (max-width: 560px) {
	.complementos .items-complementos ul li {
		max-width: 100%;
	}
}








/* PAG COMPLEMENTOS */

.box-tax-complementos ul {
	margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
}

.box-tax-complementos ul li {
	display: flex;
	position: relative;
	overflow: hidden;
	width: 100%;
    max-width: calc((100% / 2) - 15px);
}

.box-tax-complementos ul li a {
	display: flex;
}

.box-tax-complementos ul li a img {
	margin: 0 !important;
	transition: 0.4s;
}

.box-tax-complementos ul li a:hover img {
	transform: scale(1.1);
}

.box-tax-complementos ul li .vert-center {
	position: absolute;
    bottom: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.box-tax-complementos ul li .vert-center h3 {
	color: #fff;
}

.box-tax-complementos ul li a .vert-center svg {
    width: 30px;
    height: auto;
    opacity: 0;
    transform: translate(-30px, 0);
    transition: 0.4s;
}

.box-tax-complementos ul li a:hover .vert-center svg {
    transform: translate(0, 0);
	opacity: 1;
}





@media screen and (max-width: 560px) {
	.box-tax-complementos ul li {
		max-width: 100%;
	}
}














.botones-sub-colecciones {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;	
}

.botones-sub-colecciones > a {
    border: 2px solid rgba(23, 67, 88);
    color: rgb(23, 67, 88);
    background-color: transparent;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 20px;
	transition: 0.4s;
}

.botones-sub-colecciones > a:hover {
    color: #ffffff;
    background-color: rgba(23, 67, 88);
}

.botones-sub-colecciones > a > svg {
    width: 25px;
    height: auto;
}










	
	
	
	
	
	
	
	
	
	
	
	
	


