/* === Vertical Overlay Nav (basics) === */
.vo-nav {
    position: relative;
   /* max-width: 360px; */
}

.vo-container {
    position: relative;
    /*overflow: hidden; */
}

.vo-root,
.vo-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vo-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    width: fit-content;

}

.vo-link {
    display: block;
    padding: .5rem 1rem;
    color: #2D2D2D!important;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-size: 26px;
    font-weight: 500;
    font-style: normal;
    text-decoration: none;
    line-height: 1.2em;
    position: relative;
}
/*.vo-root .vo-item > .vo-link{
    text-transform: uppercase;
}*/
.vo-link::after{
    content: '';
    height: 1px;
    width: 0%;
    background: #86267A;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all .2s ease-in-out;
}
.vo-link:hover::after{
    width: 100%;
    transition: all .2s ease-in-out;
}
.vo-link:hover::after{
    opacity: 1
}

li .vo-toggle {
    border: 0!important;
    background: transparent!important;
    padding: 5px!important;
    cursor: pointer!important;
    line-height: 1!important;
    border-radius: 0!important;
}

.vo-toggle-ico {
    display: inline-block;
    transform: translateY(1px);
    color: #2D2D2D!important;
    line-height: 1;
}

/* Pannelli: il livello 0 è statico; i sottomenu coprono il precedente e slittano in avanti */
.vo-root {
    position: relative;
}

.vo-submenu {
    position: absolute;
    inset: 0;
    background: #F3F3F6;
    transform: translateX(100%);
    transition: transform .25s ease;
    z-index: 2;
    padding-top: .25rem;
    /*box-shadow: 0 0 0 1px rgba(0,0,0,.05  );*/
}

.vo-submenu.is-open {
    transform: translateX(0);
}
.vo-submenu a.vo-link {
	font-size:20px;
}
.vo-submenu[aria-hidden="true"] {
    visibility: hidden;
}

/* Barra top del submenu (back) */
.vo-submenu .vo-back {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1rem .75rem 0;
    font-weight: 600;
    border-bottom: 1px solid #86267A;
    margin-bottom: 15px;
}

.vo-back button {
    border: 0!important;
    background: transparent!important;
    cursor: pointer!important;
    padding: .25rem .5rem!important;
    line-height: 1!important;
    border-radius: 0!important;
    color: #2D2D2D!important;
}

.vo-back .vo-parent-label {
    padding: 5px;
    color: #86267A!important;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-size: 26px;
    font-weight: 700;
    font-style: normal;
    text-decoration: none;
    line-height: 1.2em;
    position: relative;
}

/* Stati focus accessibili 
.vo-link:focus,
.vo-toggle:focus,
.vo-back button:focus {
    outline: 2px solid!important;
    outline-offset: -2px!important;
}
*/
/* Opzionale: separatori */
/*.vo-item + .vo-item .vo-link { border-top: 1px solid rgba(0,0,0,.06); }*/


.vo-link{
  display: flex;
  align-items: center;
  gap: 10px;
}

.vo-icon{
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex: 0 0 auto;
  margin-right:10px;
}

.vo-title{
  line-height: 1;
}

@media only screen and (max-width: 1024px) {
.vo-link, .vo-back .vo-parent-label {
	font-size:30px;
}
}
@media only screen and (max-width: 767px) {
.vo-link, .vo-back .vo-parent-label {
	font-size:26px;
}
.vo-submenu.is-open .vo-link {
	font-size:18px;
}

}

