@charset "utf-8";
/* CSS Document */

/* Hide scrollbar for Chrome, Safari and Opera */

::-webkit-scrollbar {
  /*  display: none;*/
  width: 0px;
}

#myMenu {
  /*  border: 1px solid orange;*/
  z-index: 9999;
  height: 100%;
  max-width: var(--width);
  margin: 0 auto;
  top: 0;
  overflow-x: hidden;
  transition: 0.2s;
}

.text-overlay {
  /*  z-index: 100000;*/
  bottom: 0;
  left: 0;
  right: 0;
  width: 100% !important;
  background: rgba(32, 72, 181, 0.2); /* semi-transparent background */
  /*  color: white;*/
  text-align: center;
  padding: 10px 0;
  border-radius: 0 0 5px 5px !important;
}

.text-overlay:hover {
  cursor: pointer;
  /*  font-weight: bold;*/
  color: white !important;
  opacity: 1 !important;
  /*  transform: scale(1.02);*/
}

html {
  scroll-behavior: smooth;
}

@keyframes slowScroll {
  from {
    scroll-behavior: auto;
  }
  to {
    scroll-behavior: smooth;
  }
}
