.admin-edit {
    position: relative;
    transition: all 0.3s ease;
}

.admin-edit:hover {
    border: 5px dashed #ea650a;

}

.admin-edit:hover .admin-edit-btn {
    opacity: 1;
}


.admin-edit-btn {
    position: absolute;
    bottom: 5px;
    right: 25px;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 18px;
    padding: 6px 8px;
    border: 1px solid #999;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    cursor: pointer;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

body:not(.is_mobile) .mobile-pdf {
    display: none;
}

body.is_mobile .desktop-pdf {
    display: none;
}

.mobile-pdf {
    background-color: var(--black);
    padding: 5px 5px 15px 5px;
}

.mobile-pdf .download-file {
    margin-top: 15px;
    margin-left: 10px;
    font-size: 1rem;
    color: var(--white);
    font-family: NAMU;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.mobile-pdf #pdf-container,
.mobile-pdf .mobile-pdf-container {
    max-height: 45vh;
    overflow-y: auto;
}

.mobile-pdf canvas {
    width: 100%;
}

.materials-items-list {
    display: flex;
    justify-content: space-between;
}

.materials-items-list .list-col {
    width: calc(50% - 1rem);
    display: flex !important;
    flex-direction: column;
}

@media screen and (max-width: 767px){
    .materials-items-list {
        display: flex;
        flex-direction: column;
        justify-content: unset;
    }

    .materials-items-list .list-col {
        width: 100%;
    }
}
