/*--------------------------------------------------------------
This is your custom stylesheet.

Add your own styles here to make theme updates easier.
To override any styles from other stylesheets, simply copy them into here and edit away.

Make sure to respect the media queries! Otherwise you may
accidentally add desktop styles to the mobile layout.
https://www.w3schools.com/css/css_rwd_mediaqueries.asp
--------------------------------------------------------------*/
.select-pdf-modal {
    display: none; 
    position: fixed; 
    z-index: 999999; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4); 
    border: 1px solid var(--bb-content-border-color);
}

.select-pdf-modal-content {
    background-color: #f5f7fc;
    border-radius: 8px;
    margin: 15% auto;
    padding: 20px;
    width: 40%;
    max-width: 100%;
    text-align: center;
}

/* .select-pdf-modal-close {
    float: right;
    margin-top: -7px;
    cursor: pointer;
} */

.select-pdf-modal-body ul {
    list-style-type: none;
}

#insert-shortcode-btn {
    display: none;
}

   


@media only screen and (max-width: 600px) {
    .select-pdf-modal-content  {
    width: 90% !important;
    }
}
.select-pdf-modal-close {
    right: 10px;
    cursor: pointer;
    position: absolute;
    margin-top: 10px;
}
.pdf-search-group{
    display: flex; 
    line-height: 28px; 
    align-items: center; 
    position: relative; 
    width: 100%;
}
.pdf-search-group .icon {
    position: absolute; 
    left: 1rem; 
    fill: #9e9ea7;
    width: 1rem; 
    height: 1rem;
}
.pdf-search-group .input {
    width: 100%; 
    height: 50px; 
    line-height: 28px; 
    padding: 0 1rem; 
    padding-left: 2.5rem; 
    border: 2px solid transparent; 
    border-radius: 8px; 
    outline: none; 
    background-color: #ffffff; 
    color: #0d0c22; 
    transition: .3s ease;
}
#pdf-list input {
    display: none;
    }

    #pdf-list {
        display: flex;
        flex-direction: column;
        background-color: #ffffff;
        color: #000;
        border-radius: 10px;
        width: 100%;
        margin-top: 21px;
        margin-bottom: 21px;
    
    }

    #pdf-list label {
        display: flex;
        background-color: #fff;
        padding: 14px;
        margin: 8px 0 0 0;
        font-size: 13px;
        font-weight: 600;
        border-radius: 10px;
        cursor: pointer;
        border: 1px solid rgba(187, 187, 187, 0.164);
        color: #000;
        transition: .3s ease;
        }

        #pdf-list label:hover {
            background-color: rgba(24, 24, 24, 0.13);
            border: 1px solid #bbb;
        }
        #pdf-list input:checked + label {
            border-color: #285678;
            color: #285678;
        }