#album-rotator {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    word-break: keep-all;
    margin-top: .5rem;
    padding: 2rem 0 1rem;
}

#album-rotator-holder::-webkit-scrollbar-track
{
	border-radius: 5px;
	background-color: #2C2C2C;
}

#album-rotator-holder::-webkit-scrollbar
{
	width: 5px;
}

#album-rotator-holder::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	background-color: #0a7ef2;
}
#album-rotator-holder {
    overflow: auto;
    text-align: center;
    position: relative;
    user-select: none;
    will-change: transform;
    padding-top: 2rem;
    padding-bottom: 20px;
    /* transition: all 0.01s ease-out; */
    /* transition: all 0.01s linear; */
}
#album-rotator-holder a {
    text-align: left;
}

div#album-rotator-holder {}
#album-rotator:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.album-item {
    word-break: keep-all;
    background: black;
    box-shadow: 0 2px 30px rgba(0,0,0,0.5);
    position: relative;
    width: 250px;
    -webkit-user-drag: none;
    user-drag: none;
    height: 300px;
    user-select: none;
    border-radius: 10px;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    margin: 0 1.5rem 0 1.5rem;
    transition: all 0.2s ease-out;
    transform: scale(1);
}

.album-item:hover {
    transform: scale(1.02);
}
.album-details {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
    padding: 1rem;
    white-space: initial;
    float: left;
    box-sizing: border-box;
    color: white;
    height: 100%;
    font-size: 2.5rem;
    font-weight: 600;
    z-index: 99;
}
.title {
    font-weight: 900;
    display: inline-block;
    width: 100%;
}
.subtitle {
    font-weight: 100;
    line-height: 1.25rem;
}
.subtext {
    font-size: 1.1167rem;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1.25rem 1rem;
    width: 100%;
    white-space: initial;
    letter-spacing: 0;
    box-sizing: border-box;
    font-weight: 400;
    color: white;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    text-shadow: 2px .5px 2px black;
}
.icon {
    font-size: 1rem;
    line-height: 1rem;
    display: block;
    padding: 0 0 0.5rem 0;
}
canvas {
    position: absolute;
    top: 0;
    left: 0;
}