/*menu mobile dropdown*/
/*was 720px*/
@media screen and (max-width: 620px)
{
.laptoponly{display:none;}
}
@media screen and (min-width: 621px)
{
.apponly{display:none;}
}


#toggle, .toggle {
    display: none;
}
.menu > li {
    float: left;
    list-style: outside none none;
}

/*@media only screen and (max-width: 720px) {*/


.menu {
    display: none;
    opacity: 0;
    position: absolute;
    right: 0;
    width: 100%;
}
.menu > li {
    display: block;
    margin: 0;
    width: 100%;
}
.menu > li > a {
    box-sizing: border-box;
    display: block;
    text-decoration: none;
    width: 100%;
}
.toggle {
    cursor: pointer;
    display: block;
    margin-top: 5px;
    position: relative;
}
#toggle:checked ~ .menu {
    display: block;
    opacity: 1;
}
}

.nav {
    display: block;
    float: left;
    text-align: left;
}
.nav, .menu, .menu > li, .menu > li > a {
    height: 100%;
}
.menu > li > a {
    box-sizing: border-box;
    color: #3f3f3f;
    display: block;
    font-size: 1.2em;
    font-weight: normal;
    line-height: 1;
    padding: 0px;
    text-decoration: none;
    transition: all 0.25s linear 0s;
}
.menu > li > a:hover, .menu > li > a:focus {
    background: #fff none repeat scroll 0 0;
    box-shadow: 0 5px #51c1f1 inset;
    color: #51c1f1;
}
.menu > li > a.current {
    color: #51c1f1;
}
.toggle {
    z-index: 2;
}
/*@media only screen and (max-width: 720px) {*/
.menu {
    background: #fff none repeat scroll 0 0;
    border-top: 1px solid #f0f0f0;
    padding-bottom:50px;
}
.menu, .menu > li, .menu > li > a {
    height: auto;
}
.menu > li > a {
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
    padding: 10px!important;
    text-align: left;
}
.menu > li > a:hover, .menu > li > a:focus {
    background: #fff none repeat scroll 0 0;
    box-shadow: 5px 0 #fc4660 inset;
    padding: 15px 15px 15px 25px;
}
.toggle::after {
    background: #0099cc none repeat scroll 0 0;
    border-radius: 2px;
    box-sizing: border-box;
    color: #fff;
    content: "";
    display: block;
    font-size: 13px;
    height: 30px;
    margin: 0;
    padding: 0;
    text-align: center;
    transition: all 0.5s linear 0s;
    width: 36px;
}
.toggle:hover::after {
    background: #ff0066 none repeat scroll 0 0;
}
#toggle:checked + .toggle::after {
    content: "";
}
.toggle .icon-bar {
    background-color: #fff;
    display: block;
    height: 2px;
    left: 7px;
    position: absolute;
    top: 0;
    width: 22px;
}