/*!
 * mmenujs.com/mmenu-light
 *
 * Copyright (c) Fred Heusschen
 * www.frebsite.nl
 *
 * License: CC-BY-4.0
 * http://creativecommons.org/licenses/by/4.0/
 */
 
 
.mm,
.mm a,
.mm li,
.mm ul {
    display: block;
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
	
}

.mm li.mobileonly{
	display: none;
}
@media screen and (max-width: 768px) {
	.mm li.mobileonly{
		display: block;
	}
}

:root {
    --mm-item-height: 64px;
    --mm-item-indent: 20px;
    --mm-line-height: 35px
}

.mm-hidden {
    display: none!important
}

.mm {
    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    color: #ffffff;
    background: var(--color-blu-medium);
    line-height: 24px;
    line-height: var(--mm-line-height);
     -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); 
    cursor: pointer
}

.mm:before {
    content: '';
    display: block;
    position: absolute;
    top: 25px;
    top: calc(var(--mm-item-height)/ 2);
    left: 20px;
    left: var(--mm-item-indent);
    width: 10px;
    height: 10px;
    margin-top: 16px;
/*     border-top: 2px solid;
    border-left: 2px solid; */
    -webkit-transform:  translate(50%, -50%) rotate(180deg);
    -ms-transform:  translate(50%, -50%) rotate(180deg);
    transform:  translate(50%, -50%) rotate(180deg);
    
	
	background-image: url(/includes/icons/arrow-right-sidenav.svg);
	background-repeat: no-repeat;
	background-size: 10px;
	
}

.mm.mm--main {
    cursor: default
}

.mm.mm--main:before {
    content: none;
    display: none
}

.mm:after {
    content: attr(data-mm-title);
    display: block;
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 50px;
    height: var(--mm-item-height);
    padding: 0 50px;
    /* padding: 0 calc(var(--mm-item-indent) * 2); */
    line-height: 50px;
    line-height: var(--mm-item-height);
   
	font-size: 16px;
   
    
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
/*     -webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, .625), 0 1px 0 0 currentColor;
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, .625), 0 1px 0 0 currentColor */
}

.mm.mm--main:after {
    padding-left: 20px;
    padding-left: var(--mm-item-indent);
	
}

.mm > ul {
    -webkit-overflow-scrolling: touch;
    position: fixed;   
    top: var(--mm-item-height);
    left: 100%;
    bottom: 0;
    width: 200%;
    padding-right: 100%;
    overflow: visible;
    overflow-y: auto;
    background: inherit;
    -webkit-transition: left .3s ease 0s, opacity .3s ease;
    -o-transition: left .3s ease 0s, opacity .3s ease;
    transition: left .3s ease 0s, opacity .3s ease;
    cursor: default;
}

.mm > ul:after {
    content: '';
    display: block;
    height: 50px;
    height: var(--mm-item-height)
}

.mm > ul {
    left: 0
}

.mm > ul.mm--open {
    left: 0
}

.mm > ul.mm--parent {
    left: -100%;
    overflow-y: hidden
}

.mm li {
    position: relative;
    background: inherit;
    cursor: pointer;

	display: flex;
	height: var(--mm-item-height);
	padding: 20px;
	justify-content: flex-start;
	align-items: center;
	align-self: stretch;
}


.mm  li a {
    position: relative;
    z-index: 1;   
    padding: calc((var(--mm-item-height) - var(--mm-line-height))/ 2) var(--mm-item-indent);
		
	text-decoration: none;
	color: #ffffff;
	display: block;
	transition: right .3s ease, opacity .3s ease;
	border-bottom: solid 2px transparent;
	width: 100%;
	color: var(--white, #FFF);
	font-size: 25px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	background: inherit;
    color: inherit;
    text-decoration: none;
	border: none;
	text-decoration: none;
	
	word-break: keep-all;
	white-space: break-spaces;
	
}


.mm li.contact {
	height: 41px;
	padding: 10px 20px;
}
.mm  li.contact a {
    position: relative;
    z-index: 1;   
    padding: 8px 20px;
		
	text-decoration: none;
	color: #ffffff;
	display: block;
	transition: right .3s ease, opacity .3s ease;
	border-bottom: solid 2px transparent;
	width: 100%;
	color: var(--white, #FFF);
	font-size: 25px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	background: inherit;
    color: inherit;
    text-decoration: none;
	border: none;
	text-decoration: none;
	
	word-break: keep-all;
	white-space: break-spaces;
	
}
.mm li.contact.first {
	margin-top: 40px;
}

.mm li.contact a {
	font-size: 17px;
	font-style: normal;
	font-weight: 500;
	line-height: 25px; /* 147.059% */
}



.mm a:not(:last-child) {
    width: calc(100% - 100px);
    width: calc(100% - var(--mm-item-height) - 50px);
	width: 100%;
}


.mm.mm--dark {
    background: #333;
    color: #ccc
}

.mm.mm--vertical:after,
.mm.mm--vertical:before {
    content: none;
    display: none
}

.mm.mm--vertical {
    overflow-y: auto
}

.mm.mm--vertical ul {
    width: 100%;
    padding-right: 0;
    position: static
}

.mm.mm--vertical ul ul,
.mm ul ul {
    display: none;
    padding-left: 20px;
    padding-left: var(--mm-item-indent)
}

.mm > ul > li.active > a,
.mm > ul > li:hover > a,
.mm > ul > li > a:hover  {
	border-radius: 4px;
	background-color: var(--color-blu-dark);
}

.mm ul li.active ul {
	margin-bottom: 20px;
	display: block;
}

.mm ul ul li a {
	font-weight: normal;
	padding: calc((var(--mm-item-height) - var(--mm-line-height))/ 2) calc(var(--mm-item-indent) / 3 * 2);
}
.mm ul ul li > span {
	
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 20px;
	border: solid 2px #000000;
	background-color: transparent;
	margin-right: 5px;
	margin-left: calc(var(--mm-item-indent) / 3 * 2);	
	margin-top: 2px;
	float: left;
}
.mm ul ul li:hover > span,
.mm ul ul li > span:hover {
	text-decoration: none !important;
	
}



.mm.mm--vertical ul ul:after,
.mm ul ul:after {
    height: 25px;
    height: calc(var(--mm-item-height)/ 2)
}

.mm.mm--vertical ul.mm--open {
    display: block
}

.mm.mm--vertical li.mm--open:before {
    -webkit-transform: rotate(135deg) translate(-50%, 0);
    -ms-transform: rotate(135deg) translate(-50%, 0);
    transform: rotate(135deg) translate(-50%, 0)
}

.mm.mm--vertical ul ul li:last-child:after {
    content: none;
    display: none
}

:root {
    --mm-width: 100%;
    --mm-min-width: 200px;
    --mm-max-width: 460px
}

.mm-body--open {
    overflow-y: hidden;
    pointer-events: none;
}

.mm {
    pointer-events: auto;
}

.mm.mm--offcanvas {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 9995;
    width: 80%;
    width: var(--mm-width);
    min-width: 200px;
    min-width: var(--mm-min-width);
    max-width: 440px;
    max-width: var(--mm-max-width);
    -webkit-transition: bottom 0s ease 0s, -webkit-transform .3s ease 0s;
    transition: bottom 0s ease 0s, -webkit-transform .3s ease 0s;
    -o-transition: transform .3s ease 0s, bottom 0s ease 0s;
    transition: transform .3s ease 0s, bottom 0s ease 0s;
    transition: transform .3s ease 0s, bottom 0s ease 0s, -webkit-transform .3s ease 0s
}

.mm.mm--offcanvas:not(.mm--open) {
    bottom: 100%;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition-delay: 0s, .6s;
    -o-transition-delay: 0s, .6s;
    transition-delay: 0s, .6s
}

.mm.mm--right {
    left: auto;
    right: 0
}

.mm.mm--right:not(.mm--open) {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%)
}

.mm-blocker {
    pointer-events: auto;
    display: block;
    position: fixed;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, .2);
    top: 100%;
    z-index: 9990;
    width: 100%;
    opacity: 0;
    -webkit-transition-property: opacity, top;
    -o-transition-property: opacity, top;
    transition-property: opacity, top;
    -webkit-transition-timing-function: ease, linear;
    -o-transition-timing-function: ease, linear;
    transition-timing-function: ease, linear;
    -webkit-transition-duration: .45s, 0s;
    -o-transition-duration: .45s, 0s;
    transition-duration: .45s, 0s;
    -webkit-transition-delay: 0s, .45s;
    -o-transition-delay: 0s, .45s;
    transition-delay: 0s, .45s
}

.mm-blocker.mm--open {
    top: 0;
    z-index: 9999;
    width: calc(100% - 80%);
    width: calc(100% - var(--mm-width));
    min-width: calc(100% - 440px);
    min-width: calc(100% - var(--mm-max-width));
    max-width: calc(100% - 200px);
    max-width: calc(100% - var(--mm-min-width));
    opacity: 1;
    -webkit-transition-delay: .3s, 0s;
    -o-transition-delay: .3s, 0s;
    transition-delay: .3s, 0s
}

.mm.mm--right {
    left: auto;
    right: 0
}

.mm.mm--right:not(.mm--open) {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%)
}

.mm-blocker.mm--right {
    right: auto;
    left: 0
}