/* Slide menu right width HTML+CSS by Zzbaivong (devs.forumvi.com) */
/** {
    margin: 0px;
    padding: 0px;
}*/
.languageSelectField:not(.skipStyle) {
    position: absolute;
    top: 0px;
    left: 0px;
}
.languageSelectField:not(.skipStyle) > select {
	margin: 8px 8px;
	padding: 2px 10px;
    line-height: 26px;
}



.slide-menu {
    font-family: "Segoe UI",Tahoma,Helvetica,sans-serif;
    font-size: 14px;
}
.slide-menu .menu-list li:nth-child(odd) { background:#34de48; }
.slide-menu .menu-list li:nth-child(even) { background:#49bbd5; }
.start-menu-button {
    /*display: inline-block;
    margin: 4px;
    padding: 7px 20px;
    color: #FFF;
    background: #67B5D1;*/
    color: white;
    white-space: nowrap;
    display: block;
    text-decoration: none;
    font-size: 0.77em;
    background: none;
    outline: none;
    border: none;
}
body:not(.loggedin) .start-menu-button {
     font-size:1em;
}
.start-menu-button:hover {
    background: #3184A1;
    cursor: pointer;
}
.menu-wrap {
    background-color: #dfeadd;
    padding: 40px 0;
    overflow: hidden;
    transition: all 0.3s;
    position: fixed;
    width: 77vw;
    top: 0;
    right: -100vw;
    bottom: 0;
    z-index: 1000; /**/
}
.menu-overlay {
    background: rgba(0, 0, 0, 0.4);
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 900;
}
.menu-close {
    background: url(img/X.png) no-repeat scroll center center #49bbd5;
    /*opacity: 0;*/
    position: absolute;
    width: 45px;
    height: 45px;
    right: 0;
    top: 0;
    text-indent: -9999px;
    transition: all 0.3s;
}
.menu-close:hover {
    background-color: rgba(236, 69, 69, 1);
    cursor: pointer;
}
.menu-wrap:hover .menu-close {
    opacity: 1;
}
.menu-toggle {
    display: none;
}
.menu-toggle:checked + .menu-wrap,
.menu-toggle:checked .menu-wrap /* bug on mobile that dont open?x?*/,
.menu-toggle.active .menu-wrap /* bug --||-- real bug was 2 times included fu*x menu */ {
    right: 0;
}
.menu-toggle:checked ~ .menu-overlay {
    display: block;
}
.menu-title {
    color: #FFF;
    padding-left: 40px;
    font-weight: 300;
}
.menu-list {
    width: 100%;
    height: inherit;
    display: block;
    overflow: hidden;
    margin-top: 8vh;
}
.menu-wrap:hover .menu-list {
    overflow-y: auto;
}
.menu-list ul {
    list-style-type: none;
}
.menu-list li {
    display: block;
}
.menu-list li:first-child {
    border-top: medium none;
}
.menu-list li a {
	display: block;
    font-size: 18px;    
    text-decoration: none;
    text-transform:capitalize;
}
.menu-list li:not(.yel) a {
    padding: 10px 40px;
    color: #FFF;
}
.menu-list li.yel a {
    padding: 10px 18px;
}
.menu-list li a:hover {
    background: #359BED;
}
.menu-list li a:active {
    background: #666;
}
