.new_header .new_menu .menu__sections {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.new_header .new_menu .more_toggle {
    margin-bottom: 0;
    background: url(/local/templates/yapona/img/i-more.svg);
    height: 20px;
    width: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.new_header .new_menu .menu__sections li.more {
    padding-right: 30px;
}
.new_header .fly_basket_btn img {
    margin-left: 10px;
}
.new_header .new_menu {
    align-items: center;
}
.new_header .new_menu .menu__sections > li a.btn_dropdown {
    margin-bottom: 0;
}


.new_header.sticky {
    height: max-content;
    padding: 30px 0;
}
.new_header.sticky .new_header-top {
    display: none;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.emoji-preloader {
    text-align: center;
}

.emoji-container {
    font-size: 50px;
    animation: bounce 1s infinite;
}

.loading-text {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #ff463e;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}