
.wollemiah-menu-offcanvas {
  /* background: linear-gradient(
    90deg, 
      rgba(0, 0, 0, 0.3) 40%, 
      rgba(0, 0, 0, 0.12) 60%, 
      rgba(0, 0, 0, 0.12) 80%, 
      rgba(0, 0, 0, 0) 100%
    );
  backdrop-filter: blur(4px); */
  /* Hide initially from screen */
  position: absolute; z-index: 15;
  width: 0; height: 0; opacity: 0.0; visibility: hidden;
  transition: all 0.5s ease-in-out;
}



.wollemiah-menu-offcanvas.active {
  
  background: linear-gradient(
    90deg, 
      /* rgba(0, 0, 0, 0.3) 40%, 
      rgba(0, 0, 0, 0.12) 60%, 
      rgba(0, 0, 0, 0.12) 80%, 
      rgba(0, 0, 0, 0) 100% */
      rgba(0, 0, 0, 0.4) 40%, 
      rgba(0, 0, 0, 0.6) 60%, 
      rgba(0, 0, 0, 0.8) 70%, 
      rgba(0, 0, 0, 0.6) 80%, 
      rgba(0, 0, 0, 0.4) 100%
    );
  backdrop-filter: blur(4px);

  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  width: 100vw; height: 120vh; overflow: auto;
  top: 80px;
  /* padding: 10vh 10vw; */
  visibility: visible; opacity: 1.0;
  transition: all 0.5s ease-in-out;
}

.menu-offcanvas--wrapper {
  display: none; width: 0px; height: 0px; visibility: hidden; opacity: 0.0;
}

.menu-offcanvas--wrapper.active {
  display: flex;
  flex-flow: column wrap; 
  align-items: center;
  padding-top: 44px;
  row-gap: 24px;
  width: auto;
  height: auto; min-height: 220px;
  z-index: 15;
  visibility: visible; opacity: 1.0;
}

.menu-offcanvas--wrapper.active .offcanvas-header--menu {
  list-style: none;
  display: flex; flex-flow: column wrap;
  align-items: center;
  font-family: 'Roboto Flex';
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  z-index: 17;
}

.menu-offcanvas--wrapper.active .offcanvas-header--menu .offcanvas-menu-item {
  margin-bottom: 24px;
  width: 100%;
  text-align: center;
  color: white;
}

.menu-offcanvas--wrapper.active .offcanvas-header--menu .offcanvas-menu-item-url {
  color: white;
  display: block;
  min-width: 250px;
  text-align: center;
}

.menu-offcanvas--wrapper.active .offcanvas-header--menu .offcanvas-menu-item-text {
  font-family: 'Roboto Flex';
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
  color: rgba(255, 255, 255, 1);
}

.menu-offcanvas--wrapper.active .offcanvas-phones-menu .offcanvas-menu-item-url {
  position: relative; display: inline-block;
  padding-left: 38px; 
  font-family: 'Roboto Flex';
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
}

.menu-offcanvas--wrapper.active .offcanvas-phones-menu .offcanvas-menu-item-url:before {
  transition: all 0.35s ease-in-out;
  content: '  ';
  position: absolute;
  display: block; top:0; left: 0;
  height: 100%; width: 30px;
  background: url('../images/phone.svg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.menu-offcanvas--wrapper.active .offcanvas-phones-menu .offcanvas-menu-item-url:hover:before,
.menu-offcanvas--wrapper.active .offcanvas-phones-menu .offcanvas-menu-item-url:focus:before,
.menu-offcanvas--wrapper.active .offcanvas-phones-menu .offcanvas-menu-item-url:active:before {
  transform: rotate(60deg);
}


@media (max-width: 767px) {

  .menu-offcanvas--wrapper.active .offcanvas-header--menu .offcanvas-menu-item-text {
    text-align: center;
    color: rgba(255, 255, 255, 1);
  }

}