/*album-list*/

.seed-album-list {
    width: 100%;
}

.seed-album-list .album-img {
    position: relative;
    background-size: 100%;
}

.seed-album-list .album-img::before {
    content: '';
    display: block;
    padding-bottom: 75%;
}

.seed-album-list .album-card:before,
.seed-album-list .album-card:after,
.seed-album-list .album-card {
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.seed-album-list .album-card {
    text-align: center;
    position: relative;
    margin-bottom: 2rem;
    padding: 5px;
    padding-bottom: 6px;
    margin-left: 10px;
    margin-right: 10px;
    border: 1px rgba(0,0,0,0)solid;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.seed-album-list .album-card:hover{
    border: 1px #e5e5e5 solid;
}

.seed-album-list .album-card:before,
.seed-album-list .album-card:after {
    content: "";
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: -1;
    left: 0;
    top: 0;
}

.seed-album-list .album-card:hover:before {
    background: #ffffff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
    left: -5px;
    top: 1px;
    transform: rotate(-4deg);
}

.seed-album-list .album-card:hover:after {
    background: #ffffff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
    right: -5px;
    top: 1px;
    transform: rotate(6deg);
}

.seed-album-list .album-info a {
    text-decoration: none;
    color: #0A5A99;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
}

.seed-album-list .album-info {
    padding: 12px 4px;
    font-weight: bold;
    text-align: left;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 63px;
    overflow: hidden;
    word-break: break-all;
    margin-bottom: 5px;
}

.seed-album-list .album-card:hover .album-img {
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    transition: all 0.3s ease-in;
    background-color: rgb(110 136 149 / 20%);
    background-blend-mode: multiply;
}

.seed-album-list .album-card .overflow-hidden {
    position: relative;
}

.seed-album-list .album-card .overflow-hidden::before {
    content: 'View';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    color: #0066B5;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    z-index: 1;
    opacity: 0;
    transition: all 0.3s ease-in;
}

.seed-album-list .album-card:hover .overflow-hidden::before {
    opacity: 1;
    transition: all 0.3s ease-in;
}

.seed-album-list .album-btn {
    display: flex;
    justify-content: center;
    margin-bottom: 1px;
}

.seed-album-list .album-btn > div {
    font-size: 14px;
    font-weight: 400;
    border: 1px #0066B5 solid;
    display: inline-block;
    padding: 0 10px;
    border-radius: 50px;
    color: #0066B5;
    line-height: 25px;
}

.seed-album-list .album-btn i {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    font-size: 7px;
    padding-left: 2px;
    margin-left: 2px;
    color: #0066B5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in;
}

.seed-album-list .album-card:hover .album-btn > div {
    background-color: #0066B5;
    color: #fff;
    transition: all 0.3s ease-in;
}

.seed-album-list .album-card:hover .album-btn > div i {
    color: #fff;
    transition: all 0.3s ease-in;
}


