@media (min-width: 1200px) and (max-width: 1699px) {
    #header .container {
        max-width: 1220px;
    }
}

.section.extra_logos .logos img {
    max-height: 250px;

    @media (max-width: 1024px) {
        max-height: 150px;
    }
}

.room-features .feature-item .data {
    font-size: 18px;

    @media (min-width: 1024px) {
        font-size: 16px;
    }
}

.page-template-template-restaurant .de_block_additional_content.image_left .featured_img .thumb_wrap {
    aspect-ratio: 16/10;
}

@media (max-width: 1024px) {
    .section.main_content.aside_content .container .content_wrap {
        padding: 60px 0;
    }
}

.arrow .icon:after,
.arrow .icon:before,
.arrow_slide .icon:after,
.arrow_slide .icon:before {
    width: 17px;
    height: 2px;
    left: 19%;
}

.arrow .icon:before,
.arrow_slide .icon:before {
    transform: rotate(45deg);
    margin-top: -1px;
    left: 24%;
}

.arrow,
.arrow_slide {
    background: #A8ACA1;
}

#btt_button {
    cursor: pointer;
    background-color: #A8ACA1;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 20px;
    right: 30px;
    transition: background-color .3s,
    opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 109;
    border: 1px solid #fff;
    display: none;

    @media (max-width: 767px) {
        bottom: 80px;
        display: inline-block;
    }

    &:after,
    &:before {
        content: '';
        height: 1px;
        background: #fff;
        display: block;
        position: absolute;
        width: 12px;
        top: 40%;
        left: 50%;
        transform: translateY(-50%);
        transform-origin: 0 0;
        transition: all 0.3s ease;

        @media (max-width: 480px) {
            width: 10px;
        }
    }

    &:before {
        transform: rotate(135deg);
    }

    &:after {
        transform: rotate(45deg);
    }

    &:hover {
        cursor: pointer;
        background-color: #fff;
        border: 1px solid #A8ACA1;

        &:after,
        &:before {
            background: #A8ACA1;
        }
    }

    &.show {
        opacity: 1;
        visibility: visible;
    }
}

/* Menu sidebar toggle button styling */
#menu_sidebar_wrap li.menu-item-has-children {
    position: relative;
}

#menu_sidebar_wrap .menu-item-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

#menu_sidebar_wrap .menu-toggle {
    background: none;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    color: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: auto;
    line-height: 1;
}

#menu_sidebar_wrap .menu-toggle:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

#menu_sidebar_wrap .menu-toggle .toggle-icon {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 12px;
}

#menu_sidebar_wrap .menu-item-inner > a {
    display: block;
    flex: 1 1 auto;
}

#menu_sidebar_wrap .sub-menu {
    display: none;
    margin-top: 8px;
    padding-left: 20px;
    list-style: none;
}

#menu_sidebar_wrap .sub-menu li {
    margin: 5px 0;
}

#menu_sidebar_wrap .sub-menu li a {
    text-decoration: none;
    display: block;
    padding: 6px 8px;
    border-radius: 3px;
    transition: all 0.2s ease;
}

#menu_sidebar_wrap .sub-menu li a:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

#header .menu_left ul.menu ul.sub-menu {
    scrollbar-color: #707070 #dddddd;
    scrollbar-width: thin;
}

#header .menu_left ul.menu ul.sub-menu:hover {
    scrollbar-width: auto;
}

#header .menu_left ul.menu ul.sub-menu::-webkit-scrollbar {
    width: 16px;
}

#header .menu_left ul.menu ul.sub-menu::-webkit-scrollbar-track {
    background: #dddddd;
    border-radius: 3px;
}

#header .menu_left ul.menu ul.sub-menu::-webkit-scrollbar-thumb {
    background-color: #707070;
    background-clip: padding-box;
    border: 4px solid #dddddd;
    border-radius: 8px;
    transition: border-width 0.3s ease, background-color 0.3s ease;
}

#header .menu_left ul.menu ul.sub-menu:hover::-webkit-scrollbar-thumb {
    border-width: 1px;
    background-color: #555555;
}