body.search-open {
    overflow: hidden;
    padding-right: 17px;
}

.es-flex-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}


.es-fulltext-input {
    display: flex;
    height: 38px;
    width: 500px;
    color: #434343;
    border: 2px solid #ccc;
}



.es-fulltext-input input::placeholder {
    color: #a1a1a1;
    opacity: 1;
}

.es-fulltext-input input::-ms-input-placeholder {
    color: #e1e1e1;
}

.es-fulltext-input input {
    padding: 16px;
    padding-top: 18px;
    flex: 1;
    line-height: 14px;
    border: none;
    background-color: white;
}

.es-fulltext-input button {
    background-color: #665C49;
    border: 1px solid #665C49;
    color: white;
    padding: 0 8px;
    text-transform: uppercase;
    font-weight: bold;
}

.es-fulltext-input button:hover {
    background-color: #EFC204;
    border: 1px solid #EFC204;
    color: black;
}

.es-fulltext-wrapper {
    position: fixed;
    width: 100vw;
    height: 100vh;
    max-height: calc(100vh - 52px);
    left: 0;
    right: 0;
    top: 52px;
    display: none;
    z-index: 1001;
}

.es-fulltext-wrapper .container {
    max-height: calc(100vh - 138px);
    overflow: auto;
    padding: 0!important;
}

.es-fulltext-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

    .es-fulltext-layout .left-side {
        background-color: #fcfcfc;
        border: 1px solid #e0e0e0;
        flex: 0 0 300px;
        height: fit-content;
        padding: 16px 0;
        margin-bottom: 32px;
    }

        .es-fulltext-layout .left-side section {
            margin-bottom: 24px;
        }

        .es-fulltext-layout .left-side section:last-of-type {
            margin-bottom: 0;
        }

        .es-fulltext-layout .left-side h5 {
            color: #000;
            font-weight: bold;
            text-transform: uppercase;
            padding: 0px 16px;
            margin-bottom: 16px;
            margin-top: 0;
            font-size: 14px;
            line-height: 14px;
        }

        .es-fulltext-layout .left-side ul {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 12px;
        }

    .es-fulltext-layout .left-side ul a {
        display: block;
        padding: 0 16px;
        line-height: 20px;
        color: #000;
    }

            .es-fulltext-layout .left-side ul a:hover {
                color: #000;
            }

        .es-fulltext-layout .left-side ul a b {
            font-weight: bold;
        }
    .es-fulltext-layout .right-side {
        flex: 1;
    }

        

    .es-fulltext-layout b {
        text-shadow: 1px 0 #000;
        letter-spacing: 1px;
    }

    .es-fulltext-results {
    background-color: white;
    padding-top: 32px;
    box-shadow: 0px 20px 20px -3px rgba(0,0,0,0.75);
}
    .es-fulltext-results section {
        margin-bottom: 16px;
    }

    .es-fulltext-results ul {
        margin-bottom: 0;
    }
    
    .es-fulltext-results section .results-title {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 8px;
    }

        .es-fulltext-results section .results-title h5 {
            margin-bottom: 0;
        }

        .es-fulltext-results section .results-title .results-title-separator {
            flex: 1;
            height: 1px;
           border-bottom: 1px dashed #e1e1e1;
        }

        .es-fulltext-results .right-side section a {
            color: black !important;
            display: block;
        }

    .es-fulltext-results section a:hover span {
        text-decoration: underline;
    }

    .es-fulltext-results section img {
        height: 48px;
        width: 48px;
    }

    .es-fulltext-results section.with-photo a {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 3px 5px;
    }

        .es-fulltext-results section.with-photo span {
           flex: 1;
        }

        .es-fulltext-results section.with-photo button {
            height: 36px;
            width: 36px;
            color: black;
            border: none;
            background-color: #EFC204;
            font-size: 14px;
            line-height: 14px;
        }

            .es-fulltext-results section.with-photo button:hover {
                background-color: #665C49;
                color: white;
            }

        .es-fulltext-results section.with-photo .search-button {
            display: flex;
            align-items: center;
            font-size: 14px;
            line-height: 14px;
            gap: 16px;
            font-weight: bold;
        }


        .es-fulltext-results li:hover {
            background-color: #f8f8f8;
        }

    .es-fulltext-results section.labels-section {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        align-items: center;
    }

        .es-fulltext-results section#results-most-searched {
            margin-bottom: 24px;
        }

        .es-fulltext-results section.labels-section .title {
            padding-top: 1px;

        }

        .es-fulltext-results section.labels-section a {
            background-color: #f1f1f1;
            border: 1px solid #dbdbdb;
            display: block;
            border-radius: 5px;
            padding: 10px;
            line-height: 14px;
        }

            .es-fulltext-results section.labels-section a:hover {
                background-color: #EFC204;
            }

                .es-fulltext-results section.labels-section a:hover span {
                    text-decoration: none !important;
                }

    .es-fulltext-results button.close-search {
        width: 100%;
        border: none;
        background-color: #665C49;
        color: white;
        padding: 16px;
        text-transform: uppercase;
        font-weight: bold;
    }

        .es-fulltext-results button.close-search:hover {
            background-color: #EFC204;
            color: black;
        }
        .es-fulltext-search.active .es-fulltext-overlay {
        height: 100%;
        width: 100%;
        background-color: black;
        opacity: 0.4;
    }

.es-fulltext-search.active .es-fulltext-wrapper {
    display: flex;
    flex-direction: column;
}

@media (max-width: 991px) {
    .es-flex-header {
        gap: 16px;
    }

    .es-fulltext-input {
        width: 400px;
    }

    .es-fulltext-layout .right-side {
        flex: 1 0 100%;
        order: 1;
    }
    .es-fulltext-layout .left-side {
        flex: 1 0 100%;
        order: 2;
    }
}

