/*Меню панелі навигації */
             .nav-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
}

.nav-modal-content {
  background-color: var(--bg-lightest);
  margin: 0% auto;
  padding: 10px;
  border-radius: 12px;
  width: 10%; 
  max-width: 1000px;
  position: relative;
    margin-left: 1%;
}

.close-nav {
  color: #aaa;
  float: right;
  font-size: 38px;
  font-weight: bold;
  position: absolute;
  left: 240%;
  top: 10px;
  cursor: pointer;
}

.close-nav:hover,
.close-nav:focus {
  color: #9b2208;
}

.open-nav-btn {
  display: block;
  margin: 5px auto;
  padding: 5px 5px;
  font-size: 16px;
  background: rgba(0, 0, 0, 0.0);
  color: #fff;
  border: none;
  border-radius: 28px;
  cursor: pointer;
    margin-left: 1px !important; 
}

.open-nav-btn:hover {
  background: #9ab96d;
       margin-left: 5px !important; 
    
}
    
        @media screen and (max-width: 768px) {
        .close-nav {
  color: #aaa;
  float: right;
  font-size: 38px;
  font-weight: bold;
  position: absolute;
  left: 740%;
  top: -5px;
  cursor: pointer;
}
            .close-nav:focus {
  color: #9b2208;
}
}
/*/Меню панелі навігації */