@media only screen and (min-width: 1025px) {
    #side-menu {
        display: none;
    }
}

@media only screen and (max-width: 1024px) {
    #side-menu {
        display: block;
    }
}

@media only screen and (max-width: 360px) {
    #side-menu a {
        height: 40px !important;
        font-size: 17px !important;
        line-height: 40px !important;
    }
}

@media only screen and (min-width: 1024px) {
    #logo_container {
        display: flex;
    }
}

@media only screen and (max-width: 768px) {
    #logo_container > a {
        margin: 10px auto;
    }
}

@media only screen and (max-width: 360px) {
    #side-menu a {
        height: 40px !important;
        font-size: 17px !important;
        line-height: 40px !important;
    }
}

.hidden-info {
    display: none;
}

#smartmenus_sub > li > ul {
    background-color: #dedede;
}

#smartmenus_sub ul {
    max-height: 350px;
    overflow-y: scroll;
}

#smartmenus_sub ul::-webkit-scrollbar {
    width: 5px;
}

#smartmenus_sub ul::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background: #ccc;
}

#slogan {
    width: 100%
}

#slogan > p {
    text-align: center;
    /*font-family: 'DancingScript-Bold', sans-serif;*/
    font-size: 4.5em;
    letter-spacing: .02em;
    color: #ca0411;
}

#side-menu > .menu-button {
    border: 1px solid #BBB;
    border-radius: 3px;
    color: #BBB;
    width: 30px;
    height: 30px;
    padding: 5px;
    font-size: 20px;
    cursor: pointer;
    margin-left: 10px;
    margin-bottom: 10px;
}

#side-menu > ul {
    position: fixed;
    width: 300px;
    top: 0;
    left: -300px;
    z-index: 999;
    display: block;
    padding: 0 10px;
    height: 100%;
    background-color: #dedede;
    transition: 0.3s;
    overflow-y: scroll;
    overflow-x: hidden;
}

#side-menu > ul ul {
    /*list-style-type: none;*/
    padding-left: 20px;
}

#side-menu a {
    display: block;
    height: 45px;
    width: 100%;
    font-size: 20px;
    line-height: 45px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: #525252;
    border-bottom: 1px solid rgba(0,0,0,.1);
}

#side-menu > ul i {
    font-size: 14px;
    width: 25px;
    text-align: center;
    float: left;
}
