/*BASE STYLE*/
* {
	margin: 0;
	padding: 0;
}
body * {
	font-family: 'Lato', sans-serif;
}
.menu{
	padding: 8px;
	display: block;
}
.link-page{
	font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
	text-decoration: none;
	color: #2d3238;
}
.btnCuenta{
	font-weight: 700;
	text-transform: uppercase;
	font-size: 13px;
	padding-top: 8px;
}
.btnUser:hover{
	background: white;
}
.btnUser:hover .material-icons{
	color:#110b0b;
}
.btn .material-icons{
	font-size: 20px;
}
.bandera{
	padding: 0;
	border: 0;
	border-radius: 50%;
	box-shadow: 0 0 0 5px #e6e6e6;
	margin-right: 10px;
}
.text-bandera{
	font-size: 11px;
}
.navbar, .menuMobile{
	background-color: #333;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 13px;
}
.navbar .material-icons{
	vertical-align: bottom;
	font-size: 20px;
}
.navbar .nav-item:hover{
	background: #505050;
}
.footerTS{
	border-top: 1px solid #e8e8e5;
}

.subFooterTS{
	padding: 15px;
}
.subFooterTS p{
	font-size: 12px;
}
.text-condiciones{
	color: #110b0b;
}
.derechos{
	text-align: right;
}
#menu-nav {
	display: none;
}

#menu-nav::before {
	content: '';
	position: absolute;
	top: -20px;
	right: 22.5px;
	border: 10px solid transparent;
	border-bottom: 10px solid black;
}
.idiomas{
	cursor: pointer;
}
.idiomas:hover #menu-nav {
	background-color: white;
	position: absolute;
	top: 12%;
	right: 25%;
	width: 120px;
	display: grid;
	align-content: center;
	z-index: 10;
	border: 1px solid;
}

.menu-list a {
	padding: 8px 0 8px 8px;
	text-decoration: none;
	color: black;
	font-size: 0.95rem;
	font-weight: 500;
	transition: 0.5s;
}

.menu-list a:nth-child(4) {
	border-bottom: none;
}

.menu-list a:hover, .menu-list .active {
	background-color: black;
	color: white!important;
}
.mobile {
	display: none;
}
.navbar-toggler{
	border: 1px solid #110b0b;
}
@media (max-width: 767.98px) {
	.menu, .desk{
		display: none;
	}
	.mobile {
		display: block;
	}
	.subFooterTS{
		text-align: center;
	}
	.navbar-collapse .nav-item{
		padding: 10px 15px;
		border-top: 1px solid #ebebeb;
	}
	.derechos{
		text-align: center;
	}
}