.file-preview-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.file-preview-container .pdf-item {
    border: 1px dashed #9e9797;
    margin: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.file-preview-container .pdf-page {
    margin: 4px;
    width: 198px !important;
    height: 244px !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0);
    flex-direction: column;
    background: #fdfdfd;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, .08);
    -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, .08);

}

.file-preview-container .pdf-page img {
    width: 80%;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, .08);
    -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, .08);
}

.file-preview-container .pdf-item .file-info {
    font-size: 12px;
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
}

.selected::after {
    content: url("/images/svg/multiply.svg");
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(243, 243, 243, 0.6);
    color: #FF0000;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.file-preview-container .pdf-item:hover {
    background: #fdfdfd;
    cursor: pointer;
}

.file-preview-container .pdf-item:hover .pdf-page {
    border: 1px solid #666565 !important;
    box-shadow: unset;
    -webkit-box-shadow: unset;
}