@media (min-width: 1050px) {
  .mobile-nav {
    display: none;
  }
}

.mobile-nav {
  height: 5vh;
  height: calc(var(--vh, 1vh) * 7);
  width: 100%;
  background-color: var(--ross-red);
  position: fixed;
  z-index: 100;
}

.mobile-nav-heading-con {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  padding: 2vw 5vw;
  height: 5vh;
  height: calc(var(--vh, 1vh) * 7);
  z-index: 1001;
}

#nav-logo-con {
  grid-area: 1/1;
  align-self: center;
  text-align: left;
  position: relative;
}

.mobile-nav-logo {
  width: auto;
  height: 2em;
}

.nav-menu-icon-con {
  grid-area: 1/3;
  text-align: right;
  align-self: center;
  cursor: pointer;
}

.nav-menu-icon {
  height: 2em;
  width: auto;
}

.menu-dropdown {
  position: absolute;
  width: 50vw;
  background-color: var(--background-color);
  height: calc(100vh + 70px);
  min-height: 100vw;
  z-index: 100;
  right: 0;
  overflow: scroll;
  padding-top: 10px;
  overflow-y: scroll;
  display: none;
}

.menu-dropdown {
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
  scrollbar-width: none;  /* Firefox */
}
.menu-dropdown::-webkit-scrollbar { 
  display: none;  /* Safari and Chrome */
}

.mobile-nav-item {
  color: var(--primary-text-color);
  text-align: left;
  height: 11vw;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: left;
  border-bottom: 2px solid #3a3b3c;
  border-radius: 20px 0px 20px 0px;
  text-decoration: none;
  padding-left: 10%;
}

.mobile-nav-icon {
  height: 30px;
}

.mobile-nav-text {
  margin-left: 10px;
  font-size: 18px;
  font-family: 'Open Sans', sans-serif;
}

@media (max-width: 1050px) {
  .mobile-spacer {
    width: 100%;
    height: 5vh;
    height: calc(var(--vh, 1vh) * 7);
    background-color: var(--background-color);
  }
}

