.mobileMenu-toggle .mobileMenu-toggleIcon::before, .mobileMenu-toggle .mobileMenu-toggleIcon::after {
    background: #ffffff !important;
}

.mobileMenu-toggle .mobileMenu-toggleIcon {
    background: #ffffff;
}

.mobileMenu-toggle.is-open .mobileMenu-toggleIcon {
    background-color: transparent;
}

/* (A) SAME DIMENSIONS FOR OUTER WRAPPER & SLIDES */
.vwrap, .vslide { width: 100%; height: 2rem; line-height: 2rem;}
 
/* (B) OUTER WRAPPER HIDE SCROLLBAR */
.vwrap { overflow: hidden; }

.vslide {
    text-align:center; 
    background-color:#f15722; 
    color:#ffffff;
    font-size: 0.9rem;
}
 
/* (C) SHIFT SLIDES WITH CSS ANIMATION */
/* (C1) SLIDES POSITION */
.vmove { position: relative; bottom: 0%; }
@keyframes slidev {
  0% { bottom: 0; } 30% { bottom: 0; }
  33% { bottom: 100%; } 63% { bottom: 100%; }
  66% { bottom: 200%; } 97% { bottom: 200%; }
  100% { right: 0; }
}
 
/* (C2) MOVE SLIDES */
.vmove { animation: slidev linear 15s infinite; }
.vmove:hover { animation-play-state: paused; }