#menu-widget {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 2;
    transition: cubic-bezier(0.1, 0.07, 0.01, 0.95) 300ms;
    background-color: var(--sc);
    box-shadow: 0 0 4px 0px #0000007a;
}

#menu-widget>.content {
    width: 100%;
    height: 100%;
    max-width: 400px;
    margin: auto;
    overflow-y: auto;
}

#menu-widget>.content>.text {
    direction: rtl;
    width: 100%;
    text-align: center;
    margin: 40px 0 40px 0;
    font-size: 20px;
}

#menu-widget>.content>.holder {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 25px;
}

#menu-widget>.content .btn {
    width: 200px;
    height: 30px;
    padding: 10px 10px;
    display: flex;
    justify-content: right;
    align-items: center;
    border: 2px solid var(--dc);
    margin: 6px 0;
    background-color: #fff;
    border-radius: 5px;
}

#menu-widget>.content .number-btn {
    justify-content: center;
}

#menu-widget>.content .btn>.text {
    direction: rtl;
    margin-left: 10px;
    font-weight: bold;
}

#menu-widget>.content .btn>.lefter{
    margin-left: auto;
}

#menu-widget>.content .btn>.number {
    direction: ltr;
}

#menu-widget>.content .btn>.icon {
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0 10px;
}

#menu-widget>.content>.holder>.large-icon {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 30px;
    height: 30px;
}

#menu-widget>.content>.holder>.wa-icon {
    background-image: url(../assets/call.svg);
}

#menu-widget>.content>.holder>.call-icon {
    background-image: url(../assets/whatsapp.svg);
}

#menu-widget>.content>.holder>.separator {
    width: 30%;
    height: 0px;
    border-bottom: dashed 1px var(--dc);
    margin: 10px 0px 5px 0px;
}

#menu-widget>.content>.holder a {
    text-decoration: none;
    color: var(--dc);
}

#menu-widget>.content>.holder a:hover {
    color: #fff;
    background-color: var(--dc);
    transform: scale(0.97);
    transition:150ms;
}

#menu-widget>.content>.holder a:hover .icon {
    filter: brightness(100);
}

#menu-widget .bar {
    background-color: var(--dc);
    z-index: 2;
}

#menu-widget .logo {
    background-image: url(../assets/text-title-w.svg);
}

#menu-widget #barMenuClose {
    background-image: url(../assets/close.svg);
}
