
.ArtsDot-Lists-Content-SingleItem{
	//width:25%;
	margin-bottom: 1vW;
	text-align:center;
}
.ArtsDot-Lists-Content-SingleItem img{
    display: inline-block;
    max-width: 100%;
    position: relative;
    filter: none;
    -webkit-filter: none;
    -webkit-transition: all 0.6s ease-out, transform 1.2s ease-out;
    -moz-transition: all 0.6s ease-out, transform 1.2s ease-out;
    -o-transition: all 0.6s ease-out, transform 1.2s ease-out;
    -ms-transition: all 0.6s ease-out, transform 1.2s ease-out;
    transition: all 0.6s ease-out, transform 1.2s ease-out;
}
.ArtsDot-Lists-Content-Items li a:first-child {
    //-webkit-box-shadow: 0vW 0.2vW 0.4vW 0.05vW rgba(0,0,0,0.4);
    //box-shadow: 0vW 0.2vW 0.4vW 0.05vW rgba(0,0,0,0.4);
}
.ArtsDot-Lists-Content-Artwork{
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
font-style: normal;
width:80%;
margin: 0 auto;
margin-top: 10px;
display: initial;
}
.ArtsDot-Lists-Content-Artist{
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
font-style: normal;
width:80%;
margin: 0 auto;
display: block;
height: inherit;
}
.ArtsDot-Lists-Content-Items{
display:block;
margin: 0.5vW auto;
}

.loader {

  position:relative;
  top: 8vW;
  margin: 0 auto;
  margin-bottom: 8vW;
  border: 1vW solid #f3f3f3;
  border-radius: 50%;
  border-top: 1vW solid #ee2a24;
  border-right: 1vW solid #fbab2c;
  border-bottom: 1vW solid #781214;
  border-left: 1vW solid #a71a1e;
  width: 7.5vW;
  height: 7.5vW;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}