.custom-wrapper {
    -webkit-font-smoothing: antialiased;
    height: 2.1em;
    overflow: hidden;
    -webkit-transition: height 0.5s;
    -moz-transition: height 0.5s;
    -ms-transition: height 0.5s;
    transition: height 0.5s;
    border-bottom: 1px solid #ddd;
    display: none;
}

.custom-wrapper.open {
    height: 15em;
}

.custom-menu-3 {
    text-align: right;
}

.custom-toggle {
    width: 34px;
    height: 34px;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    display: none;
}

.custom-toggle .bar {
    background-color: #777;
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 100px;
    position: absolute;
    top: 18px;
    right: 7px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.custom-toggle .bar:first-child {
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
}

.custom-toggle.x .bar {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.custom-toggle.x .bar:first-child {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

@media (max-width: 47.999em) {

    .custom-menu-3 {
        text-align: left;
    }

    .custom-toggle {
        display: block;
    }

}

#appMain {
   min-height: 600px;
   background-color: #ededed;
}
#topMsg {
    width: 100%;
    color: #333;
    background-color: #ed8658;
    padding: 5px;
    text-align: center;
    display: none;
    font-size: 1.2em;
    overflow: hidden;
}
#appMsg {
    position: absolute;
    left: 50px;
    margin-top: 5px;
    padding: 5px;
    color: #353216;
    background-color: #FFEB3B;
    border: 2px solid #bdae29;
    z-index: 1700;
    display: none;
}

#appMsg i {
    margin-left: 5px;
    color: #333;
    cursor: pointer;
}

#appFooter {
    width: 100%;
    font-weight: bold;
    text-align: center;
    color: lightslategray;
    font-size: 0.8em;
    padding-bottom: 5px;
    margin-top: 40px;
    bottom: 20px;
}

