html
{
	font-size: 14px;
}

.bg-turquesa
{
	background-color: #b3fe00;
	color: white;
}

.fs-7{ font-size: 0.9rem; }

.fs-8{ font-size: 0.8rem; }

#nav-busqueda
{
	border-radius: 2px;
}

#nav-busqueda input[type='search']
{
	border: none;
}

#nav-busqueda button
{
	border: none;
	border-radius: 0;
	height: 80%;
}

.card.articulo
{
	min-height: 330px;
}

.card-title{
	height: 32px;
	display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

.bd-links .btn-cat[aria-expanded="true"]::before
{
    transform: rotate(90deg);
}

.bd-links .btn-cat::before
{

    width: 1.25em;
    line-height: 0;
    content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
    transition: transform 0.35s ease;
	transform-origin: .5em 50%;
	margin-right: 0.5rem;
}

.bd-sidebar
{
	grid-area: sidebar;
}

.bd-main
{
	display: grid;
	gap: inherit;
}

.btn-facebook
{
	display: inline-block;
	background-color: #4080ff;
	font-size: 0.7rem;
	font-weight: 600;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.96);
	padding: 4px 10px 3px 10px;
	border-radius: 3px;
	margin-top: -4px;
}
.btn-facebook:hover
{
	color: rgba(255, 255, 255, 0.96);
}

.dropdown-submenu > .dropdown-menu
{
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin-top: -6px;
    margin-left: -1px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}

.dropdown-submenu:hover > .dropdown-menu
{
    display: block;
}

footer
{
	line-height: 200%;
}

#imagen-contenedor
{
	position: relative;
}

.imagen-resultado
{
	border: 1px solid #d4d4d4;
	width: 400px;
	height: 400px;
	background-color: black;
	position: absolute;
	top: 0;
	right: -400px;
	z-index: 1;
}

#imagen-lente
{
	position: absolute;
	border: 1px solid #d4d4d4;
	width: 110px;
	height: 110px;
	display:none;
}

.cursor-pointer
{
	cursor: pointer;
}

@media (max-width: 360px)
{
	.ms-xs-0
	{
		margin-left: 0px !important;
	}
}
@media (min-width: 768px)
{
	.bd-layout
	{
		display: grid;
		gap: 1.5rem;
		grid-template-areas: "sidebar main";
		grid-template-columns: 1fr 4fr;
	}
	.bd-links
	{
		position: -webkit-sticky;
		position: sticky;
		top: 5rem;
		display: block !important;
		height: calc(100vh - 9rem);
		padding-left: .25rem;
		margin-left: -.25rem;
		overflow-y: auto;
	}
}