ul.search-results {
    padding: 0;
    list-style: none;
}

.search-result-item {
    margin-top: 10px;
}

.search-result-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.search-result-item img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.search-results-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }
}

::-webkit-scrollbar {
    width: 10px;
    background-color: #a0a0a0;

}

::-webkit-scrollbar-thumb {
    background-color: #616161;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #757575;
}


::-webkit-scrollbar-button {
    display: none;
}

.descripton {
    word-wrap: break-word !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 4 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.title-blog {
    word-wrap: break-word !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.about-us {
    word-wrap: break-word !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 11 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.port-in {
    word-wrap: break-word !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.loading-indicator {
    display: none;
}

.search-message {
    display: none;
    color: #333;
}

.fa-camera {
    margin-top: 12px !important;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(80, 80, 80, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.preloader img {
    width: 100px;
}

#cookie-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    z-index: 1000;
    display: none;
}


#close-cookie-notification {
    background-color: #fff;
    color: #333;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}