#album {
    width: 100%;
    min-height: 510px
}

#album {
    width: 100%;
    height: 100vh;
    position: relative;
    background: #dbdbdb;
	background: rgba(0,83,150,0.35)
}

#album::after{
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 30%;
    background: linear-gradient(#0009,#0000);
    pointer-events: none;
}

#album #albumCanvas {
    width: 100%;
    height: 100%;
    position: absolute
}

#album #albumCanvas.cursor {
    cursor: pointer
}

#album .close {
    position: absolute;
    z-index: 1;
    width: 40px;
    height: 40px;
    background: url("../images/btnClose.png") center center no-repeat;
    background-size: contain;
    cursor: pointer;
    display: none
}

@media(max-width:750px){
    #album {
        height: 60vh
    }
}