#photobook .pd_list_body,
#photobook .pd_pool_container,
#photobook .photo_list_body {
    width: 100%;
}

#photobook .photo_list_body .img_container {
    overflow: hidden;
}

#photobook .photo_list_body .img_holder {
    position: relative;
    background-repeat: no-repeat;
}

#photobook .photo_list_body .img_holder .camera {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.65);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

#photobook .photo_list_body .img_holder .camera:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translate(-50%, -50%);
    background-image: url("../../images/new/layout/inpage_iconset.svg");
    background-size: auto 100%;
    background-position: 91.84% 0;
}

#photobook .photo_list_body .item:hover .camera {
    opacity: 1;
}

#photobook .pagination_container {
    display: block;
}

#photobook .pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

#photobook .pagination a,
#photobook .pagination span {
    min-width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d8d0c2;
    background: #fff;
    color: #5d5245;
    text-decoration: none;
    padding: 0 10px;
}

#photobook .pagination a.active {
    color: #fff;
    background: #3a3026;
    border-color: #3a3026;
}
