.item-wrapper {
    display: flex;
    justify-content: space-between;
    grid-gap: 15px;
}
.thumbnail-wrapper img {
	height: 150px;
	max-width: 200px;
}
.artifact-abstract {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
.artifact-info {
	font-size: .825em;
	margin-bottom: 10px;
	display: none;
}
.tags li{
	display: inline-flex;
	margin-bottom: 5px;
}
.tag {
    height: 20px;
    font-size: 0.8em;
    display: flex;
    align-items: center;
    background-color: #efefef;
    margin-left: 5px;
    border-radius: 4px;
    position: relative;
    color: #777;
}
.tag::before {
    background: #fff;
    border-bottom: 10px solid transparent;
    border-right: 7px solid #efefef;
    border-top: 10px solid transparent;
    content: " ";
    right: 0;
    top: 0;
}
.tag:hover::before {
    border-right-color: gray;
}
.tag::after {
    position: absolute;
    left: 10px;
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 1px 1px rgba(0, 0, 0, 0.25);
    content: " ";
    height: 6px;
    left: 10px;
    width: 6px;
    top: 7px;
}
.tag span {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: auto;
    height: 100%;
    padding: 0 15px 0 18px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
	border-radius: 0 4px 4px 1px;
	line-height: 20px;
}
.tag:hover {
    background-color: gray;
    color: white;
}
@media (min-width: 992px) {
	.artifact-info, .ar {
		display: initial;
	}
}
/* COMPARTIR EN ITEM-LIST*/
.com-botones>div{    
	z-index: 1;
	display: inline-block;
	margin-bottom: 10px;
}

ul.sharelist{
    height: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    transition: all .5s;    
}

ul.sharelist li {
  position: absolute;
  top: 0;
  left: -60px;
  transition: all .5s;
  display: inline-block;
  opacity: 0;
}
ul.sharelist span{
    width: 38px !important;
    height: 34px !important;
    display: flex;
    justify-content: center;
    border-radius: 4px;
}
ul.sharelist li a{
    height: 34px !important;
    margin: 0;
    padding: 0;
}
ul.sharelist.active li{
    opacity: 1;
}
ul.sharelist.active li:nth-child(1){
    left: 0;
    transition-delay: 0.01s;
}
ul.sharelist.active li:nth-child(2){
    left: 40px;
    transition-delay: 0.03s;
}
ul.sharelist.active li:nth-child(3){
    left: 80px;
    transition-delay: 0.05s;
}
ul.sharelist.active li:nth-child(4){
    transition-delay: 0.07s;
    left: 120px;
}
ul.sharelist.active li:nth-child(5){
    transition-delay: 0.09s;
    left: 160px;
}
ul.sharelist.active li:nth-child(6){
    transition-delay: 0.11s;
    left: 200px;
}
ul.sharelist.active li:nth-child(7){
    transition-delay: 0.13s;
    left: 240px;
}