.side-menu-container {
    position: fixed;
    z-index: 100;
    margin-top: 50px;
    background-color: transparent;
    height: calc( 100vh - 50px );
    display: flex;
    flex-direction: row;
}

.side-menu-tab {
    width: 400px;
    background-color: #fff;
    height: 100%;
    border-right: 1px solid #d5d6d5;
    position: relative;
}

.side-menu-tab ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
}

.side-menu-tab ul li {
    flex: 1 1 100%;
    padding: 12px 40px;
    border-bottom: 1px solid #f3f4f4;
    cursor: pointer;
}

.side-menu-tab ul li:hover {
    background-color: #f3f4f4;
}

.side-menu-tab ul li a {
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    color: #4A4A4A;
}

.side-menu-tab ul li a:hover {
    text-decoration: underline;
}

.side-menu-tab .menu-list-footer {
    position: absolute;
    bottom: 0;
    width: 400px;
}

.side-menu-tab .menu-list-footer .footer-list {
    background-color: #FEF3F3;
    padding: 20px 0;
}

.side-menu-tab .menu-list-footer .footer-list li {}

.side-menu-tab .menu-list-footer .footer-list a {
    position: relative;
    padding-left: 24px;
    color: #000;
}

.side-menu-tab .menu-list-footer .footer-list a:before {
    background-color: #E52729;
    content: "";
    width: 15px;
    height: 15px;
    left: 0;
    top: 3px;
    position: absolute;
    border-radius: 50%;
}

.side-menu-tab .menu-list-footer .footer-posts {
    padding: 20px 40px;
    background-color: #f3f4f4;
}
.footer-posts .ft-post-list .ft-post-list-single {
    width: 100%;
    display: flex;
    margin: 14px 0;
    background: #fff;
    border-radius: 10px;
    min-height: 80px;
    overflow: hidden;
}

.footer-posts .ft-post-label {
    font-size: 14px;
    font-family: 'Alaska';
}

.footer-posts .ft-post-list .ft-post-list-single-thumb img {
    width: 100px;
    height: 100%;
}

.footer-posts .ft-post-list .ft-post-list-single-thumb {
    flex: 1 1 20%;
    justify-content: center;
    align-items: center;
    display: flex;
}

.footer-posts .ft-post-list .ft-post-list-single-content {
    flex: 1 1 60%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
}

.footer-posts .ft-post-list .ft-post-list-single-content .sg-title {
    color: #E52729;
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 150%;
    font-family: Alaska, Nunito Sans, sans-serif;
    font-weight: 500;
}

.footer-posts .ft-post-list .ft-post-list-single-content .sg-content {
    font-size: 14px;
    font-weight: bold;
    line-height: 130%;
    font-family: Alaska, Nunito Sans, sans-serif;
}


.footer-posts .ft-post-list .ft-post-list-single-cta {
    flex: 1 1 20%;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.footer-posts .ft-post-list .ft-post-list-single-cta-inner {
    /* border: 1px solid #E52729; */
    border-radius: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-posts .ft-post-list .ft-post-list-single-cta-inner .arrow-btn {
    color: #E52729;
    font-size: 15px;
    width: 0;
    height: 0;
}

.footer-posts .ft-post-list .ft-post-list-single-cta-inner .arrow-btn img {
    width: 100%;
    height: 100%;
}

.footer-posts .ft-post-list .ft-post-list-single-cta-inner .nvg-btn img {
    width: 100%;
    height: 100%;
}



.side-menu-tab .side-menu-tab-inner .menu-list .menu-item {
    display: flex;
    position: relative;
}

.side-menu-tab .side-menu-tab-inner .menu-list .menu-item.menu-active {
    background-color: #f3f4f4;
}

.side-menu-tab .side-menu-tab-inner .list-arr {
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-right: 30px; */
    position: absolute;
    right: 125px;
    top: 16px;
}


.side-menu-tab .side-menu-tab-inner .menu-item.no-children .list-arr {
    display: none;
}

.side-menu-tab .side-menu-tab-inner .list-arr img {
    width: 100%;
    height: 100%;
}

.side-menu-tab .side-menu-tab-inner .list-arr.rv-icon img {
    transform: rotate(180deg);
}

#side-menu-inner {
    transform: translateX(-410px);
    transition: transform 0.4s ease; 
}

#side-menu-inner.show {
    transform: translateX(0);
}

.side-menu-tab.menu-lvl-1 {
    z-index: 5;
}



.side-menu-tab.menu-lvl-2 {
    z-index: 4;
    display: none;
    transform: translateX(-410px);
    transition: transform 0.4s ease; 
}

.side-menu-tab.menu-lvl-2.show {
    display: block;
}

.side-menu-tab.menu-lvl-2.transform {
    transform: translateX(0);
}

.side-menu-tab.menu-lvl-3 {
    z-index: 3;
    display: none;
    transform: translateX(-410px);
    transition: all 0.4s ease; 
}

.side-menu-tab.menu-lvl-3.show {
    display: block;
}

.side-menu-tab.menu-lvl-3.transform {
    transform: translateX(0);
}
#sidebar-menu-trigger {
    cursor: pointer;
    padding: 6px 16px;
    border-radius: 8px;
    background-color: transparent;
    transition: all 0.4s ease;
}
#sidebar-menu-trigger:hover {
    background-color: #f3f4f4;
}
#sidebar-menu-trigger.active {
    background-color: #f3f4f4;
}

#sidebar-menu-trigger .tg-open{
    display: block;
}

#sidebar-menu-trigger.active .tg-open{
    display: none;
}

#sidebar-menu-trigger .tg-close{
    margin-right: 0;
    display: none;
}

#sidebar-menu-trigger.active .tg-close{
    display: block;
}

#blurScreen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(4px);
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 99;
}

.aw-side-menu.mobile-menu-parent {
    border-bottom: 3px solid #f3f4f4;
    display: none;
}

.side-menu-tab .side-menu-tab-inner .mobile-menu-parent .list-arr {
    margin-right: 0;
    display: inline-block;
}

#open-search.active .hd-search-icon {
    display: none;
}

#open-search .hd-search-icon {
    display: block;
}

#open-search.active .hd-close-search-icon {
    display: block;
}

#open-search .hd-close-search-icon {
    display: none;
}

@media only screen and (max-width: 768px) {
    #open-search.active .hd-close-search-icon {
        display: none;
    }

    .side-menu-tab {
        width: 100vw;
    }

    #side-menu-inner {
        transform: translateX(-110%);
    }

  .side-menu-tab.menu-lvl-2 {
    position: absolute;
    top:0;
    left: 0;
    z-index: 6;
  }
    .side-menu-tab.menu-lvl-3 {
        position: absolute;
        top:0;
        left: 0;
        z-index: 7;
    }
    .aw-side-menu.mobile-menu-parent  {
        display: block;
    }

    .side-menu-tab .menu-list-footer .footer-posts {
        display: none;
    }
}
