#logo{
    height: 25px;
    margin: 0 auto; 
    border-radius: 1px;
    margin-right: 1px;
}
footer{
    background-color: #1c1c1c;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}
.filters{
    position: absolute;
    top: 100%;
    left: 0;
    padding: 40px;
    background-color: #f1f1f1;
    width: 100%;
    box-sizing: border-box;
    z-index: 900;
}
.filters div{
    width: 100%;
}
.language-switcher{
    display: none;
}
.search-input:focus{
    outline: none;
}
.search-input{
    border:1px solid #ebebeb;
    border-radius: 20px 0 0 20px;
    margin-left: 40px;
}
.search-button{
    border-radius: 0 20px  20px 0;
}
.search-rel-wrap{
    z-index: 1000;

}
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ebebeb;
    border-top: none;
    display: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
}
.search-results .suggest-item {
    display: block;
    padding: 0.5rem 1rem;
    color: #1c1c1c;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.search-results .suggest-item:hover {
    background: #f1f1f1;
}
.search--wrap{
    flex-grow: 0;
    transition: flex-grow 0.3s ease;
}

.search--wrap:focus-within{
    flex-grow: 1;
}
.nav-rel-wrap{
    position: relative;
    z-index: 1100;    
    padding: 0px;
}
[x-cloak]{
    display: none !important;
}
.copyright{
    text-align: center;
    font-size: 11px;
    color: #f1f1f1;
    margin: 42px auto;
}
.header-name{
    font-size: 0.8rem;
    color: #1c1c1c;
    margin: 0px 10px;
    text-align: center;
}
.avatar-wrap{
    margin: 0 10px;
}
.main-logo-wrap{
    display: flex;
    line-height: 26px;
    font-size: 34px;
    color: #1c1c1c;
    margin-right: 40px;
    text-transform: capitalize !important;
}
header{
    background-color: #fff;
    text-transform: uppercase;
}
.top--header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    border-bottom: 1px solid #ebebeb;
    position: relative;
    z-index: 1200;
}
.navbar-nav li{
    padding-left: 15px;
}
.account--wrap{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}
.bottom--header{
    padding: 0px 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.navbar--links{
    background-color: #eee;
}
.navbar--links-wrap{
    padding: 0;
    
}
.navbar--links-wrap ul{
    padding: 0;
    margin: 0;
}
.navbar--links-wrap ul li{
    list-style: none;
    display: inline-block;
    padding: 0px 0px;
    padding-right: 15px;
}
.navbar--links-wrap ul li a{
    color:#1c1c1c;
    text-decoration: none;
    font-weight: 400;
}
.nav--logo--link{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
}
#cookie-consent-overlay{
    z-index: 9999;
}
.lang--btn{
    padding-left: 0;
    padding:  0.375rem 0.75rem  0.375rem 0;
    text-transform: uppercase;
    font-size: 0.8rem;
}
.lang--btn svg{
    margin-left: 0.5rem;
}
.lang--btn:hover{
    color: var(--bs-link-hover-color);
}
.lang-list{
    top: calc(100% + 3px);
    visibility: hidden;
    opacity: 0;
    font-size: 0.8rem;
    text-transform: uppercase;
}
.lang--wrap::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 4px; /* немного больше чем margin-top */
    z-index: 10;
}
.lang--wrap:hover .lang-list,
.lang--wrap:focus .lang-list{
    visibility: visible;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}
.lang--select{
   text-transform: uppercase; 
   font-size: 0.8rem;
}
.lang--select:hover{
    color: var(--bs-link-hover-color);
}
.nav-link-bottom{
    text-transform: uppercase; 
   font-size: 0.8rem;
   
}
.nav-item-bottom{
    padding: 2.5rem 0.75rem;
}
.container--width{
    padding-left: 30px;
    padding-right: 30px;
}