/* ---------- 2 MENU NORMAL ---------- */

.menu-orizzontale {
    position: fixed;
    background: var(--w-color-input);
    z-index: 999;
    top: calc(var(--w-header-up) + var(--w-header-down));
    left: 0px;
    height: var(--w-menu-orizontale-h);
    width: 100%;
    padding: var(--w-menu-orizontale-padding) 0px;
}
.menu-orizzontale.menu-scroll.small {
    background-color: var(--w-color-1);
    color: var(--sup); 
    top: var(--w-header-down-small);
    height: var(--w-menu-orizontale-h);
    // box-shadow: 5px 5px 5px var(--w-shadow);
    opacity: .95;
    // filter: blur(5px);

}
.menu-orizzontale.menu-scroll.small #cssmenu #menu-line { 
    background: var(--w-color-4); 
    height: 4px; 
    bottom: -7px;
}
#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a,
#cssmenu #menu-button {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    // background: var(--w-color-2);
}
.voce#cssmenu:after,
#cssmenu > ul:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
#cssmenu #menu-button {
    display: none;
}
#cssmenu {
    width: var(--w-max-width);
    line-height: 1;
    margin: 0 auto;
}
#cssmenu #menu-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--w-color-1);
    padding: 0px 0px;
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}
#cssmenu > ul > li {
    float: left;
}
#cssmenu.align-center > ul {
    font-size: 0;
    text-align: center;
}
#cssmenu.align-center > ul > li {
    display: inline-block;
    float: none;
}
#cssmenu.align-center ul ul {
    text-align: left;
}
#cssmenu.align-right > ul > li {
    float: right;
}
#cssmenu.align-right ul ul {
    text-align: right;
}
#cssmenu > ul > li > a {
    font-size: var(--font-normal);
    font-weight: 600;
    padding: 10px;
    margin-right: 5px;
    margin-left: 5px;
    text-decoration: none;
    -webkit-transition: color 0.2s ease;
    -moz-transition: color 0.2s ease;
    -ms-transition: color 0.2s ease;
    -o-transition: color 0.2s ease;
    transition: color 0.2s ease;
}
#cssmenu > ul > li:hover > a,
#cssmenu > ul > li.active > a {
    color: var(--w-color-hover);
}
#cssmenu > ul > li.has-sub > a {
    padding-right: 25px;
}
#cssmenu > ul > li.has-sub > a::after {
    position: absolute;
    top: 21px;
    right: 10px;
    width: 4px;
    height: 4px;
    border-bottom: 1px solid #000000;
    border-right: 1px solid #000000;
    content: "";
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: border-color 0.2s ease;
    -moz-transition: border-color 0.2s ease;
    -ms-transition: border-color 0.2s ease;
    -o-transition: border-color 0.2s ease;
    transition: border-color 0.2s ease;
}
#cssmenu > ul > li.has-sub:hover > a::after {
    border-color: #8bc53f;
}
#cssmenu ul ul {
    position: absolute;
    left: -9999px;
}
#cssmenu li:hover > ul {
    left: auto;
}
#cssmenu.align-right li:hover > ul {
    right: 0;
}
#cssmenu ul ul ul {
    margin-left: 100%;
    top: 0;
}
#cssmenu.align-right ul ul ul {
    margin-left: 0;
    margin-right: 100%;
}
#cssmenu ul ul li {
    height: 0;
    -webkit-transition: height 0.2s ease;
    -moz-transition: height 0.2s ease;
    -ms-transition: height 0.2s ease;
    -o-transition: height 0.2s ease;
    transition: height 0.2s ease;
}
#cssmenu ul li:hover > ul > li {
    height: 32px;
}
#cssmenu ul ul li a {
    padding: 10px 20px;
    width: 300px;
    font-size: 1em;
    font-weight: 600;
    background: #8bc53f;
    text-decoration: none;
    color: #ffffff;
    -webkit-transition: color 0.2s ease;
    -moz-transition: color 0.2s ease;
    -ms-transition: color 0.2s ease;
    -o-transition: color 0.2s ease;
    transition: color 0.2s ease;
}
#cssmenu ul ul li:hover > a,
#cssmenu ul ul li a:hover {
    color: #ffffff;
    background: #25a9e0;
}
#cssmenu ul ul li.has-sub > a::after {
    position: absolute;
    top: 13px;
    right: 10px;
    width: 4px;
    height: 4px;
    border-bottom: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
    content: "";
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: border-color 0.2s ease;
    -moz-transition: border-color 0.2s ease;
    -ms-transition: border-color 0.2s ease;
    -o-transition: border-color 0.2s ease;
    transition: border-color 0.2s ease;
}
#cssmenu.align-right ul ul li.has-sub > a::after {
    right: auto;
    left: 10px;
    border-bottom: 0;
    border-right: 0;
    border-top: 1px solid #dddddd;
    border-left: 1px solid #dddddd;
}
#cssmenu ul ul li.has-sub:hover > a::after {
    border-color: #ffffff;
}
@media all and (max-width: 800px),
    only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 800px),
    only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 800px),
    only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 800px),
    only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px),
    only screen and (min-resolution: 192dpi) and (max-width: 800px),
    only screen and (min-resolution: 2dppx) and (max-width: 800px) {
    #cssmenu, .menu-rock {
        width: 100% !important;
    }
    #cssmenu ul {
        width: 100%;
        display: none;
        overflow: scroll;
    }

    #cssmenu.align-center > ul,
    #cssmenu.align-right ul ul {
        text-align: left;
    }
    #cssmenu ul li,
    #cssmenu ul ul li,
    #cssmenu ul li:hover > ul > li {
        width: 100%;
        height: auto;
        border-top: 1px solid rgba(120, 120, 120, 0.15);
        overflow: scroll;
    }
    #cssmenu ul li a,
    #cssmenu ul ul li a {
        width: 100%;
        padding-left: 20px;
    }
    #cssmenu > ul > li,
    #cssmenu.align-center > ul > li,
    #cssmenu.align-right > ul > li {
        float: none;
        display: block;
        background-color: var(--sup);
    }
    #cssmenu ul ul li a {
        padding: 20px 20px 20px 30px;
        font-size: 12px;
        color: #000000;
        background: white;
    }
    #cssmenu ul ul li:hover > a,
    #cssmenu ul ul li a:hover {
        color: #000000;
    }
    #cssmenu ul ul ul li a {
        padding-left: 40px;
    }
    #cssmenu ul ul,
    #cssmenu ul ul ul {
        position: relative;
        left: 0;
        right: auto;
        width: 100%;
        margin: 0;
    }
    #cssmenu > ul > li.has-sub > a::after,
    #cssmenu ul ul li.has-sub > a::after {
        display: none;
    }
    #menu-line {
        display: none;
    }
    .menu-rock.small {
        height: 30px;
    }
    #cssmenu #menu-button {
        display: block;
        padding: 10px 20px;
        color: #000000;
        cursor: pointer;
        font-size: 12px;
        text-transform: uppercase;
    } 
    #cssmenu #menu-button::after {
        content: "";
        position: absolute;
        top: 10px;
        left: 60px;
        display: block;
        width: 15px;
        height: 2px;
        background: #000000;
    }
    #cssmenu #menu-button::before {
        content: "";
        position: absolute;
        top: 15px;
        left: 60px;
        display: block;
        width: 15px;
        height: 3px;
        border-top: 2px solid #000000;
        border-bottom: 2px solid #000000;
    }
    #cssmenu .submenu-button {
        position: absolute;
        z-index: 10;
        right: 0;
        top: 0;
        display: block;
        border-left: 1px solid rgba(120, 120, 120, 0.15);
        height: 52px;
        width: 52px;
        cursor: pointer;
    }
    #cssmenu .submenu-button::after {
        content: "";
        position: absolute;
        top: 21px;
        left: 26px;
        display: block;
        width: 1px;
        height: 11px;
        background: #000000;
        z-index: 99;
    }
    #cssmenu .submenu-button::before {
        content: "";
        position: absolute;
        left: 21px;
        top: 26px;
        display: block;
        width: 11px;
        height: 1px;
        background: #000000;
        z-index: 99;
    }
    #cssmenu .submenu-button.submenu-opened:after {
        display: none;
    }
}



/* ---------- 3 MENU PROFILO ---------- */

.menu-profile { 
    position: fixed;
    top: var(--w-header-up);
    right: 0px;
    z-index: 999999;
    background-color: var(--sup);   
}
.menu-profile.menu-scroll.small {
    position: fixed;
    top: 0px;
}
.menu-profile-header {
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: var(--w-header-down-small);
    justify-content: flex-end;
}
.menu-profile-img { width:40px;}
.menu-profile-date { }
.menu-profile-arrow { }
.menu-profile-link { box-shadow: 0px 8px 7px var(--w-shadow);  }
.menu-profile-link ul,
.menu-profile-link ul li {
    list-style: none;
    padding: 0px;
    margin: 0px;
    margin-right: 10px;

}
.menu-profile-link ul li a {
    display: inline-flex;
    align-items: center; 
    cursor: pointer;
    width: 100%;
    padding: 6px 0px 6px 8px;
    font-size: var(--font-small);
}
.menu-profile-link ul li a:hover { background-color: var(--w-hover); color: var(--w-hover-text);}
.menu-profile-link ul li a label {
    padding-left: 6px;
}
.menu-profile-link ul li a i {
    width: 30px; text-align: center;
}

@media only screen and (min-width: 0px) and (max-width: 749px){
    .menu-profile-date { display: none; }
}


/* ---------- 4 MENU LEFT ---------- */

.menu-left {
    position: fixed;
    top: calc(var(--w-header-down) + var(--w-header-padding) + var(--w-menu-orizontale-h) + var(--w-menu-orizontale-padding));
    left: 0px;
    height: 100%;
    background-color: var(--sup);
    width: var(--w-width-menu-left);
    overflow: hidden;
}
.menu-left.menu-scroll.small { 
    top: var(--w-header-down-small);
    box-shadow: 3px 0px 3px var(--w-shadow);
}
.menu-left-btn { 
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-normal) !important;
    background-color: var(--w-color-4);
}
.menu-left.expanded {
    width: 300px;
}
.menu-left a {
    display: inline-flex;
    align-items: center; 
    text-decoration: none;
    cursor: pointer;
    width: 100%;
    height: 50px;
}
.menu-left a:hover { 
    background-color: var(--w-hover);
    color: var(--w-hover-text);
}
.menu-left a i { 
    width: 52px !important;
    text-align: center;
    color: var(--w-color-1);
}
.menu-left a label {
    opacity: 0;
    font-size: var(--font-small);
    font-weight: 600;
    transition: opacity 0.01s ease;
    margin-left: 10px;
}
.menu-left.expanded a label {
    opacity: 1;
    transition: opacity 1.3s ease;
}




/* ---------- 8 MENU MOBILE EFFECT ---------- */

.menu-mobile { 
    background: var(--w-color-1);
    padding: 0px 50px;
    border-radius: 35px;
    margin: 40px 0px;
}
.menu-mobile.sticky-element.fixed { top: 55px; position: fixed; }
.menu-mobile-btn { 
    padding: 10px 30px; 
    color: var(--sup); 
}
.menu-mobile-btn i { margin-right: 10px }
.menu-mobile-btn label {  } 
.menu-mobile-btn:hover,
.menu-mobile-btn.active { 
    background-color: var(--w-color-4);
    color: var(--color-text); 
}
.menu-mobile-visibile {  }


/* WEBI MENU BASSO CHE SI NASCONDE ALLO SCROLL*/
@media only screen and (min-width: 0px) and (max-width: 1200px){
    .menu-mobile { 
        width: 100%;
        position: fixed;
        bottom: 0px;
        background: var(--w-color-1);
        padding: 0px 0px;
        padding-bottom: 0px;
        border-radius: 0px;
        z-index: 9999;
        margin: 0px 0px;
    }
    .menu-mobile-btn { 
        width:16.66%;
        padding: 5px 0px;
        text-align: center; 
    }
    .menu-mobile-btn i { width: 100%; margin-right: 0px;  }
    .menu-mobile-btn label { font-size: var(--font-x-small); } 
    .menu-mobile-visibile { transition: transform 0.3s ease-in-out; }
    .menu--hidden { transform: translateY(+100%); }
    .menu-mobile.menu-scroll.small { 
        position: fixed; 
        top: inherit;
    }
}





/* NAV MENU 1 */
.menu-burger-1 {
    height: 100%; /* 100% Full-height */
    width: 350px; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 9999; /* Stay on top */
    top: 0; /* Stay at the top */
    left: -350px;
    background-color: var(--w-color-2);
    overflow-x: hidden; /* Disable horizontal scroll */
    padding: 100px 0px 10px 0px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
} 
.menu-burger-1.active {
    width: 350px;
    left: 0px;
    // box-shadow: 3px 0px 15px var(--w-gray-400);
}
.menu-burger-bg-1 {
    height: 100%;
    width: 0%;
    background: var(--sup);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    
}
.menu-burger-bg-1.active {
    width: 100%;
    // transition: width .25s ease-out;
    background: var(--w-color-1);
    opacity: 0.6;
}


.menu-burger-1 ul, .menu-burger-1 ul li, .menu-burger-1 ul li a {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}

.menu-burger-1 > ul { 
    padding: var(--p35); 
}

.menu-burger-1 > ul > li > a { 
    font-weight: 500;
    font-size: 1.2em;
    padding: 10px 0px;
}

.menu-burger-1 > ul > ul > li > a { 
    font-weight: 300;
    font-size: 1em;
    padding: 5px 0px 5px 20px;
}

.x-burgher { right: var(--p20) }
.menu-burger-open { top: 40px; left:40px; position: absolute;}


.menu-burger-1 a {
    padding: 8px 8px 8px 12px;
    text-decoration: none;
    font-size: 1em;
    color: var(--w-color-5);
    display: block;
    transition: 0.3s;
    border: none;
}
.menu-burger-1 a:hover {
    color: var(--w-color-3);
}
.menu-burger-1 .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}




@media screen and (max-height: 450px) {
    .menu-burger-1 {padding-top: 15px;}
    .menu-burger-1 a {font-size: 18px;}
}




.menu-burger-2 {
    height: 100%; /* 100% Full-height */
    z-index: 9999; /* Stay on top */
    margin-top: 20px;
    border-right: 1px solid #f9f9f9 ;
} 

}
.menu-burger-bg-1 {
    height: 100%;
    width: 0%;
    background: var(--sup);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    
}
.menu-burger-bg-1.active {
    width: 100%;
    // transition: width .25s ease-out;
    background: var(--w-color-1);
    opacity: 0.6;
}


.menu-burger-2 a, .menu-burger-2 ul, .menu-burger-2 ul li, .menu-burger-2 ul li a {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    color: var(--w-color-1);
}

.menu-burger-2 > ul { 
    padding: 80px 10px 10px 40px;; 
}

.menu-burger-2 > ul > li > a, .menu-burger-2 a { 
    font-weight: 600;
    font-size: 1em;
    padding: 8px 0px;
}


.menu-burger-2 > ul > li > a.page { color: var(--w-hover) !important; }

.menu-burger-2 > ul > li > a > span, .menu-burger-2 a span { 
    padding-left: 8px;
}


.menu-burger-2 > ul > li > a > i, .menu-burger-2 a i  { width:20px; display: inline-block; text-align: center; }
.menu-burger-2 > ul > ul > li > a { 
    font-weight: 500;
    font-size: 1em;
    padding: 5px 0px 5px 20px;
}


.x-burgher { right: var(--p20) }
.menu-burger-open { top: 25px; left:35px; position: absolute;}


.menu-burger-2 a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 1em;
    display: block;
    transition: 0.3s;
    border: none;
}
.menu-burger-2 a:hover {
    color: var(--w-color-hover);
}
.menu-burger-2 .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.menu-burger-2 .logo-webi { position: fixed;  bottom: 0px; width: var(--main-left); text-align: center; padding-bottom: 30px;}
.menu-burger-2 .logo-webi img { width: 150px; }



@media screen and (max-height: 450px) {
    .menu-burger-2 {padding-top: 15px;}
    .menu-burger-2 a {font-size: 18px;}
}


/* NAV Amministrazione */

.button-menu { 
    cursor: pointer;
    font-size: 1.4em;
    width: 50px;
    position: fixed;
    top: 75px;
    right: 0px;
    font-weight: 400 !important;
}
.menu-down {display: none;}
.menu-down.active { 
    display: block; position: absolute; 
    z-index: 999; 
    text-align:center;
    // left: 40px;
    width: 100%;
s}

.lista-eventi.small {display: none !important;}

.menu-eventi { 
    background: var(--sup); 
    // padding: 10px;
    // border-radius: 25px;
    // border: 1px solid var(--w-gray-300);
    box-shadow: 2px 2px 3px 0px var(--w-shadow);
}

.menu-eventi div a { border-bottom: 0px; }

.bg-cazzo { 
    background-color: var(--w-color-1);
  height: 100vh;
  position: absolute;
  width: 100%;
  z-index: 9;
  opacity: 0.9;
}
 
.menu-eventi-voci { 
    width: 100px; 
    display:inline-block;  
    border: 0px;
    text-decoration: none;
    padding: 10px;
    vertical-align: top;
    text-align: center;
    border-left: 1px solid #f1f1f1 ;
    height: 80px;
}

.menu-eventi-voci { border-bottom: 0px; text-align: center; }
.menu-eventi-voci i { 
    display: block;  
    font-size: 2em;
    padding: 10px;
}
.menu-eventi-voci span { 
    line-height: 1em;
    font-weight: 400;
}

.menu-eventi-voci:hover { background: var(--w-hover); color: var(--sup);}


/* BURGER MENU 1 */
.burger1 {
\position: fixed;
  text-align: center;
  box-sizing: border-box;
  top: 0px;
  z-index: 99;
  left: 0px;
  background-color: var(--w-color-2);
  height: 100px;
  width: 100px;
  padding-top: 25px;
  border-bottom-right-radius: 35px;

}
@media only screen and (max-width: 1200px) {
    .burger-div1 {
        display: block;
    }
    .burger1 {
        height: 50px;
        width: 60px;
        padding-top: 15px;
        padding-left: 15px;
        text-align: left;
    }
}
.burger-button1,
.burger-button1 span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.burger-button1 {
  position: relative;
  width: 25px;
  height: 30px;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
}
.burger-button1 span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--sup);
  border-radius: 4px;
}
.burger-button1 span:nth-of-type(1) { 
  top: 0;
}
.burger-button1 span:nth-of-type(2) {
  top: 6px;
}
.burger-button1 span:nth-of-type(3) {
  top: 12px;
}


.burger-button1::after {
    position: absolute;
    left: 0;
    bottom: -5px;
    content: '';
    display: block;
    width: 100%;
    color: var(--sup);
    font-size: 10px;
    text-decoration: none;
    text-align: center;
    transition: all .4s;
}
/*
.burger-button1-active::after {
    content: 'CLOSE';
    bottom: -15px;
}

.burger-button1-active span:nth-of-type(1) {
    transform: translateY(5px) rotate(-45deg);
}
.burger-button1-active span:nth-of-type(2) {
    opacity: 0;
}
.burger-button1-active span:nth-of-type(3) {
    transform: translateY(-5px) rotate(45deg);
}
*/


/* MENU EVENT LONG - RESPONSIVE */

#cssmenu-events-long,
#menuH-events-long ul,
#menuH-events-long ul li,
#cssmenu-events-long ul li a,
#cssmenu-events-long #menu-button {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    //position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.voce#cssmenu-events-long:after,
#cssmenu-events-long > ul:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
#cssmenu-events-long #menu-button {
    display: none;
}
#cssmenu-events-long {
    width: 100%;
    line-height: 1;
    margin-bottom: 40px;
    // border-bottom: 1px solid black;
    //height: 40px;
    position: relative;
    text-align: center;
  z-index: 90;
  //top:50px;
}
#cssmenu-events-long.job-submenu { height: 60px; padding-top: 8px; z-index: 9999 }
#cssmenu-events-long.job-submenu a { width: auto !important }
#cssmenu-events-long > #menu-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 6px;
    background: var(--w-color-2);
    padding: 0px 0px;
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}
#cssmenu-events-long > ul > li {
    display: inline-block;
    width: 15%;
}
#cssmenu-events-long.align-center > ul {
    font-size: 0;
    text-align: center;
}
#cssmenu-events-long.align-center > ul > li {
    display: inline-block;
    float: none;
}
#cssmenu-events-long.align-center ul ul {
    text-align: left;
}
#cssmenu-events-long.align-right > ul > li {
    float: right;
}
#cssmenu-events-long.align-right ul ul {
    text-align: right;
}
#cssmenu-events-long > ul > li > a {
    font-size: .93em;
    font-weight: 400;
    padding: 8px 18px;
    text-decoration: none;
    color: var(--w-color-2);
    border: 1px solid var(--w-color-2);
    border-radius: 35px;
    -webkit-transition: color 0.2s ease;
    -moz-transition: color 0.2s ease;
    -ms-transition: color 0.2s ease;
    -o-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

#cssmenu-events-long > ul > li > a > i {padding-right: 6px}
#cssmenu-events-long > ul > li:hover > a,
#cssmenu-events-long > ul > li.active > a {
    background-color: var(--w-color-2);
    color: var(--sup);
}
#cssmenu-events-long > ul > li.has-sub > a {
    padding-right: 25px;
}
#cssmenu-events-long > ul > li.has-sub > a::after {
    position: absolute;
    top: 21px;
    right: 10px;
    width: 4px;
    height: 4px;
    border-bottom: 1px solid #000000;
    border-right: 1px solid #000000;
    content: "";
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: border-color 0.2s ease;
    -moz-transition: border-color 0.2s ease;
    -ms-transition: border-color 0.2s ease;
    -o-transition: border-color 0.2s ease;
    transition: border-color 0.2s ease;
}
#cssmenu-events-long > ul > li.has-sub:hover > a::after {
    border-color: #8bc53f;
}
#cssmenu-events-long ul ul {
    position: absolute;
    left: -9999px;
}
#cssmenu-events-long li:hover > ul {
    left: auto;
}
#cssmenu-events-long.align-right li:hover > ul {
    right: 0;
}
#cssmenu-events-long ul ul ul {
    margin-left: 100%;
    top: 0;
}
#cssmenu-events-long.align-right ul ul ul {
    margin-left: 0;
    margin-right: 100%;
}
#cssmenu-events-long ul ul li {
    height: 0;
    -webkit-transition: height 0.2s ease;
    -moz-transition: height 0.2s ease;
    -ms-transition: height 0.2s ease;
    -o-transition: height 0.2s ease;
    transition: height 0.2s ease;
}
#cssmenu-events-long ul li:hover > ul > li {
    height: 32px;
}
#cssmenu-events-long ul ul li a {
    padding: 10px 20px;
    width: 300px;
    font-size: 1em;
    font-weight: 600;
    background: #8bc53f;
    text-decoration: none;
    color: #ffffff;
    -webkit-transition: color 0.2s ease;
    -moz-transition: color 0.2s ease;
    -ms-transition: color 0.2s ease;
    -o-transition: color 0.2s ease;
    transition: color 0.2s ease;
}
#cssmenu-events-long ul ul li:hover > a,
#cssmenu-events-long ul ul li a:hover {
    color: #ffffff;
    background: #25a9e0;
}
#cssmenu-events-long ul ul li.has-sub > a::after {
    position: absolute;
    top: 13px;
    right: 10px;
    width: 4px;
    height: 4px;
    border-bottom: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
    content: "";
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: border-color 0.2s ease;
    -moz-transition: border-color 0.2s ease;
    -ms-transition: border-color 0.2s ease;
    -o-transition: border-color 0.2s ease;
    transition: border-color 0.2s ease;
}
#cssmenu-events-long.align-right ul ul li.has-sub > a::after {
    right: auto;
    left: 10px;
    border-bottom: 0;
    border-right: 0;
    border-top: 1px solid #dddddd;
    border-left: 1px solid #dddddd;
}
#cssmenu-events-long ul ul li.has-sub:hover > a::after {
    border-color: #ffffff;
}

@media only screen and (max-width: 1200px) {

    #cssmenu-events-long > ul > li > a > i {
        padding: 5px 0px;
        width: 100%;
        font-size: 1.2em;
        }
    #cssmenu-events-long > ul > li > a {
        padding: 5px 0px;
        border: 0px solid var(--w-color-5);
        border-radius: 0px;
        color: var(--sup);
    }
    .burger-button1 { width: 25px; display: none;  }
    .burger-button1::after { display: none; }
    .burger-button1 span:nth-of-type(2) { top: 6px; }
    .burger-button1 span:nth-of-type(3) { top: 12px; }
    #cssmenu-events-long > ul > li > a > span { font-size: .8em; }
    #cssmenu-events-long { position: fixed; bottom: 0px; background: var(--w-color-2); margin-bottom: 0px; 
        padding-bottom: 20px; }
    #cssmenu-events-long > ul > li:hover > a,
    #cssmenu-events-long > ul > li.active > a {
        border-top: 4px solid var(--w-color-5);
        background: transparent !important;
        color: var(--w-color-5);
        }
}


