
* {
  box-sizing: border-box;
}

.scroll_contain a:link,
.scroll_contain a:hover,
.scroll_contain a:active,
.scroll_contain a:visited {
  transition: color 150ms;
  color: #333333;
  text-decoration: none;
}
a:hover {
  color: #333333;
  text-decoration: underline;
}
.scroll_contain {
  width: 100%;
  background: #33ffff;
  color: #FF0000;
  display: flex;
     min-height: 80px;
 
  flex-direction: row;
  align-items: center;
 
    font-family: 'Roboto', sans-serif;

}
.scroll_row {
  overflow: scroll;
  width: 100%;
}
.row__inner {
  transition: 450ms -webkit-transform;
  transition: 450ms transform;
  transition: 450ms transform, 450ms -webkit-transform;
  font-size: 0;
  white-space: nowrap;
  margin: 8px 0;
  
}
.tile {
  position: relative;
  display: inline-block;
  background-color: white;
  width: 150px;
  height: 75px;
  margin-right: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: 450ms all;
  -webkit-transform-origin: center left;
          transform-origin: center left;
}

.tilewrap {
    display: flex;
    width: 100%;
}



.tile .albumimg {
    padding:5px;
    width: 62px;
}

.tile .albuminfo {
    width: 50%;
    padding: 5px;
    font-size: 8px;
    align-self: flex-end;
    text-transform: uppercase;
    white-space:normal;
    font-weight: bold;
}
.tile .albumname {
    font-style: italic;
    font-weight: normal;
}

.tile:hover .tile__details {
  opacity: 1;
}
.tile__title {
  position: absolute;
  bottom: 0;
  padding: 10px;
}
.row__inner:hover {
  -webkit-transform: translate3d(-16px, 0, 0);
          transform: translate3d(-16px, 0, 0);
}
.row__inner:hover .tile {
  opacity: 0.5;
}
.row__inner:hover .tile:hover {
  -webkit-transform: scale(1.25);
          transform: scale(1.25);
  opacity: 1;
}
.tile:hover ~ .tile {
  -webkit-transform: translate3d(31px, 0, 0);
          transform: translate3d(31px, 0, 0);
}

@media only screen and (min-width: 600px) {
    .scroll_contain {
        min-height: 80px;
    }
    
    .row__inner {
        margin: 25px 0;
        padding-bottom: 10px;
    }
    
    .tile {
         width: 250px;
         height: 125px;
    }
    
    .tile .albuminfo {
        font-size: 10px;
    }
    

    
    .tile .albumimg {
    padding:10px;
    width: 125px;
    }

    .row__inner:hover {
        -webkit-transform: translate3d(-31.5px, 0, 0);
          transform: translate3d(-31.5px, 0, 0);
    }
    .tile:hover ~ .tile {
        -webkit-transform: translate3d(62px, 0, 0);
          transform: translate3d(62px, 0, 0);
}
}
