<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.happy-menu-container {
    position: relative;
}

.happy-menu {
    position: absolute;
    background-color: #F26722;
    padding: 6px 15px 5px 10px;
    border-radius: 3px;
    margin-bottom: 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    border: 1px solid #E15916;
    cursor: pointer;

}

.happy-menu:hover {
    box-shadow: 0 0 5px rgba(0,0,0,.3);
}

.happy-menu &gt; a{
    color: #FFFFFF;
    font-size: 12px;
}

.fa-indicator {
    position: relative;
    top: -1px;
    float: none;
    display: inline-block;
    vertical-align: middle;
    margin: 0 -7px 0 3px;
    font-size: 9px;
    line-height: 1;
    text-align: right;
}

.happy-menu-container .categories, .happy-menu-container .sub-menu {
    background-color: #FFFFFF;
    border: 1px solid #dedede;
    border-top: 0;
    border-radius: 3px;
    box-shadow: 3px 3px 3px 0 rgba(0,0,0,0.2);
    display: none;

    -webkit-transition: all 0.7s ease-out;
    -moz-transition: all 0.7s ease-out;
    -ms-transition: all 0.7s ease-out;
    -o-transition: all 0.7s ease-out;
    transition: all 0.7s ease-out;
}

.happy-menu-container .categories {
    position: absolute;
    margin-top: 30px;
    z-index: 999999;

    width: 245px;
}

.happy-menu-container .categories ul {
    background-color: #FFFFFF;
}

.happy-menu-container .categories ul li {
    display: block;
    line-height: 21px;
}

.happy-menu-container .categories li a {
    padding: 12px 20px;
    display: block;
    text-decoration: none;
    color: #666;

    transition: background 0.4s, color 0.4s;
    -o-transition: background 0.4s, color 0.4s;
    -ms-transition: background 0.4s, color 0.4s;
    -moz-transition: background 0.4s, color 0.4s;
    -webkit-transition: background 0.4s, color 0.4s;

}

.happy-menu-container .categories li a i {
    top: 0;
    float: right;
    display: block;
    line-height: inherit;
    width: 16px;
}

.happy-menu-container .categories li a:hover {
    background-color: #EEEEEE;
}

.happy-menu-container .sub-menu {
    position: absolute;
    left: 246px;
    top: 0;
    width: 100%;
    display: none;
    min-height: 405px;
}

.happy-menu-container .sub-menu .all {
    border-bottom: 1px solid #dedede;
    font-weight: bold;
}


</pre></body></html>