body{
    .dd_container{
        background: #ffffff;
        &.small-menu{
            transform: translate3d(0, 58px, 0px) !important;
            width: 100%;
            .menu-item{
                .sub-menu-items{
                    display: flex;
                }
            }
        }
    }
}
.top_bar{
    background-color: #fff;
    -webkit-box-shadow: 0px 4px 40px rgb(0 0 0 / 7%);
    box-shadow: 0px 4px 40px rgb(0 0 0 / 7%);
    z-index: 8;
    display: flex;
    justify-content: space-between;
    .welcome_text{
        font-style: normal;
        font-weight: normal;
        font-size: 24px;
        line-height: 38px;
        color: #8D8D8D;
        .text-black {
            color: #000000;
        }
    }
    .display-time{
        display: flex;
        gap: 7px;
        .time{
            color: #8D8D8D;
            font-size: 12px;
        }
    }
}
.language_menu {
    margin-right: 1rem;
    div{
        min-width: 5rem;
        display: flex;
        svg {
            width: 20px;
            height: 20px;
        }
        span{
            margin-left: 6px;
        }
    }
}
.language_menu_list {
    display: flex;
    flex-flow: column;
    a.block {
        display: flex;
        padding-left: 12px;
        padding-top: 5px;
        padding-bottom: 5px;
        svg {
            width: 20px;
            height: 20px;
        }
        span.lang_name{
            margin-left: 6px;
        }
    }
}
.mobile-menu-selector{
    fill: #8D8D8D;
}
.menu-item {
    width: 100%;
    padding: 5px 20px;
    position: relative;
    .menu-link{
        border-radius: 8px;
        padding: 12px 15px;
        font-weight: 500;
        .menu__name{
            color: #2c323f;
            font-size: 15px;
        }
        &.have-sub-menu{
            &:after{
                content: '';
                position: absolute;
                width: 15px;
                height: 15px;
                background-image: url("/images/svg/angle-right.svg");
                background-repeat: no-repeat;
                display: block;
                top: 24px;
                right: 36px;
            }
        }
    }
    .sub-menu-items{
        display: none;
        flex-flow: column;
        gap: 15px;
        margin: 15px 24px;
        .sub-menu-item{
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 4px;
            .menu__name{
                font-size: 14px;
            }
        }
    }
    &.active{
        .menu-link{
            background-color: #7366ff;
            -webkit-transition: all 0.5s ease;
            transition: all 0.5s ease;
            .menu__name{
                color: #ffffff;
                -webkit-transition: all 0.3s ease;
                transition: all 0.3s ease;
            }
            .menu__icon{
                fill: #ffffff;
                -webkit-transition: all 0.3s ease;
                transition: all 0.3s ease;
            }
            &.have-sub-menu{
                background-color: #dad6ff;
                .menu__name{
                    color: #7366ff;
                }
                .menu__icon{
                    fill: #7366ff;
                }
                &:after{
                    background-image: url("/images/svg/angle-down.svg");
                }
            }
        }
        .sub-menu-items{
            display: flex;
            .sub-menu-item{
                &.active{
                    .menu__name{
                        color: #7366ff;
                        -webkit-transition: all 0.3s ease;
                        transition: all 0.3s ease;
                    }
                    .menu__icon{
                        fill: #7366ff;
                        -webkit-transition: all 0.3s ease;
                        transition: all 0.3s ease;
                    }
                }
            }
        }
    }
    &.hover{
        .menu-link{
            &.have-sub-menu{
                background-color: #dad6ff;
                .menu__name{
                    color: #7366ff;
                    -webkit-transition: all 0.3s ease;
                    transition: all 0.3s ease;
                }
                .menu__icon{
                    fill: #7366ff;
                    -webkit-transition: all 0.3s ease;
                    transition: all 0.3s ease;
                }
                &:after{
                    background-image: url("/images/svg/angle-down.svg");
                }
            }
        }
        .sub-menu-items{
            display: flex;
        }
    }
}
