.wrapper-secondNavbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.wrapper-secondNavbarPages {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  background-image: linear-gradient(
      180deg,
      rgba(12, 12, 12, 1) 0%,
      rgba(12, 12, 12, 0.5264607063528537) 100%
    ),
    url("../img/img_cover.jpg");
  background-repeat: no-repeat;
  background-position: center/cover;
}

.input-search-navbar {
  width: 70%;
}

#navbar-secondary {
  /*width: min(100%, 1920px);*/
  margin: auto;
  position: relative;
  z-index: 10;
}

.link-dark {
  color: #2b2b2b;
  position: relative;
  display: inline-block;
  margin: block;
}
.link-dark:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #e7ff00;
  bottom: 10px;
  left: 0px;
  transform: scale(0);
  border-radius: 1rem;
  transform-origin: center;
  transition: 0.5s ease;
}

.link-dark:hover::after {
  transform: scale(1);
}

.left-menu {
  position: absolute;
  right: 1.2rem;
}

.labelNavbar {
  position: absolute;
  z-index: -1;
  top: -20px;
  left: 0;
  display: block;
  width: 10%;
}

/* OFFCANVAS */
nav {
  position: relative;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  /* Sub Menu */
  color: #333;
  display: block;
}

nav ul li a {
  display: block;
  padding: 3px 15px;
  color: #333;
  text-decoration: none;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}

nav ul li a:hover {
  /* background: #1d4f71; */
  color: #3498db;
}

nav ul li a i {
  width: 16px;
  text-align: center;
  margin-right: 5px;
  float: right;
}

nav ul li ul li a {
  border-left: 2px solid transparent;
}

nav ul li ul li a:hover {
  border-left: 2px solid #3498db;
}

.wrapper-offcanvas-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  display: none;
}
.offcanvas.show {
  transform: none;
  height: 100vh;
  /* border-top-left-radius: 1rem;
  border-top-right-radius: 1rem; */
}

@media screen and (max-width: 991px) {
  .wrapper-offcanvas-bottom {
    display: block;
  }
}
.wrapper-iconOffcanvasBottom {
  margin: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wrapper-iconOffcanvasBottom i {
  margin: 0 1rem;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.wrapper-iconOffcanvasBottom i:hover {
  transform: scale(1.1);
}

.container-filter-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  left: 0;
  z-index: 100;
  width: 100%;
  bottom: 5vh;
  background-color: #fff;
  padding: 1rem;
  display: none;
}
.container-filter-btn-dettaglio {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  left: 0;
  z-index: 100;
  width: 100%;
  bottom: 5vh;
  background-color: #fff;
  padding: 1rem;
  display: none;
}

@media screen and (max-width: 560px) {
  .container-filter-btn {
    display: flex;
  }
  .container-filter-btn-dettaglio {
    display: flex;
  }
}
