.pdf-search-bar {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 24px;
    background: #DFDFDF;
    border-radius: 8px;
}


/* button */

.pdf-search-bar .button {
    /* Auto layout */
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 12px 16px;
    background: #000000;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.24);
    border-radius: 4px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.pdf-search-bar .button img {
    height: 15px;
    width: 15px;
    float: left;
    align-self: center;
    margin-right: 16px;
}

.pdf-search-bar .button .text {
    float: left;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    text-transform: none !important;
}


/* input */

.pdf-search-bar .search-input {
    float: left;
    width: inherit;
    margin-left: 24px;
    margin-right: 24px;
}

.pdf-search-bar .search-input .icon {
    position: absolute;
    padding: 10px;
    color: green;
    min-width: 50px;
    text-align: center;
}

.pdf-search-bar .search-input input {
    width: 100%;
    align-items: flex-start;
    padding: 12px 16px;
    padding-left: 56px;
    background: #FFFFFF;
    border: 1px solid #DFDFDF;
    border-radius: 4px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
}


/* text button */

.pdf-search-bar .text-button {
    float: left;
    z-index: 1;
    width: inherit;
    max-width: 260px;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: #000000;
}

@media screen and (max-width: 992px) {
    .pdf-search-bar {
        flex-flow: wrap;
    }
    .pdf-search-bar .button {
        width: 50%;
        min-width: 17px;
    }
    .pdf-search-bar .search-input {
        width: 50%;
        min-width: 17px;
        margin: 0px;
        padding-left: 16px;
    }
    .pdf-search-bar .text-button {
        margin: auto;
        margin-top: 16px;
    }
}