/* Tabs */

#librarySearchTab {
    margin-bottom: 1.5rem;
}

#librarySearchTab li button {
    color: #249F8D;
}

#librarySearchTab li button.active {
    background-color: #249F8D;
    color: #FFF;
}

/* Content */

#librarySearchContent .checkCatalog{
    display: none;
}

#librarySearchContent form{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

#librarySearchContent .link-buoh{
    color: #249F8D;
    font-size: initial;
    font-weight: initial;
}

#librarySearchContent .link-buoh:hover{
    color: darken(#249F8D, 20%);
}

#librarySearchContent form label:not(.form-check-label) {
    display: block;
    width: 100%;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

#librarySearchContent form select {
    border-radius: 1rem;
    width: 200px;
    height: 40px;
}

#librarySearchContent .buoh-form input:not(.form-check-input),
#librarySearchContent .ruoh-form input:not(.form-check-input) {
    width: calc(100% - 210px);
}

#librarySearchContent .duoh-form input:not(.form-check-input) {
    width: calc(100% - 420px);
}

#librarySearchContent form input:not(.form-check-input) {
    border-radius: 1rem;
    border: 1px solid #249F8D;
    height: 40px;
    padding: 0 20px;
}

#librarySearchContent form button {
    border-radius: 1rem;
    background-color: #249F8D;
    border: 1px solid #249F8D;
    color: #FFF;
    width: 200px;
    height: 40px;
}

#librarySearchContent form button:hover {
    background-color: #FFF;
    border: 1px solid #249F8D;
    color: #249F8D;
}

@media (max-width:576px){
    input[type="search"]{
        width: 100% !important;
        margin-bottom: 10px;
    }

    button[type="submit"]{
        width: 100% !important;
    }
}