/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 1150px) {
  #custom-top-bar {
    display: none !important;
  }

  .TabUser {
    display: none !important;
  }

  .TabAccount {
    display: none !important;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  /* .navbarv {display: none;}  */
}

/* Medium devices (landscape tablets, 768px and up) */
/* @media only screen and (min-width: 799px) { */
  @media only screen and (min-width: 1149px) {
  .navbarv {
    display: none;
  }

  .cardGoBack {
    display: none;
  }

}

#title-ILIS {
  font-family: "Google Sans";
  font-weight: bold;
  color: #0078d4;
  /* width: calc(100% - 100px); */
}

.cardTextTitle {
  margin-top: -1px;
  margin-left: 20px;
  flex: 1;
  margin-right: 7px;
  border-right: 1px solid #E0E0E0;
}



@media only screen and (max-width: 450px) {
  #title-ILIS {
    font-size: 14px !important;
  }

  .cardHemberger {
    margin-top: 0px !important;
  }

  .cardTextTitle {
    margin-top: 0px;
    margin-left: 10px;
  }

  .TabUserMobile {
    margin-right: -10px;
  }
}

@media only screen and (max-width: 230px) {
  #title-ILIS {
    display: none;
  }
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 62px;
}

.navbarv .menu-items {
  display: flex;
}

.navbarv .nav-container li {
  list-style: none;
}

.navbarv .nav-container a {
  text-decoration: none;
  color: #0078d4;
  font-weight: 500;
  font-size: 1.2rem;
  padding: 0.7rem;
}

.navbarv .nav-container a:hover {
  font-weight: bolder;
  color: #0078d4;
}

.nav-container {
  display: block;
  position: relative;
  height: 60px;
}

.nav-container .checkbox {
  height: 27px;
  width: 45px;
  z-index: 1001;
  display: flex;
  left: 19px;
  position: absolute;
  top: 20px;
  display: block;
  opacity: 10;

  /* position: absolute;
    display: block;
    height: 32px;
    width: 32px;
    top: 15px;
    left: 10px;
    z-index: 1001;
    opacity: 0;
    cursor: pointer; */
}

.nav-container .hamburger-lines {
  height: 20px;
  width: 28px;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1000;
  display: flex;
  left: 20px;
  position: absolute;
  top: 13px;


  /* height: 30px;
    width: 35px;
    position: absolute;
    top: 15px;
    left: 10px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: white;
    padding: 5px;
    border-radius: 3px; */
}

.nav-container .hamburger-lines .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: #575757;
}

.nav-container .hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.nav-container .hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

.nav-container .hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

.navbarv .menu-items {
  padding-top: 10px;
  height: 100vh;
  width: 100vw;
  transform: translate(-150%);
  display: flex;
  flex-direction: column;
  /* padding-left: 50px; */
  transition: transform 0.5s ease-in-out;
  text-align: center;
  background: #ffffffd4;
  align-items: center;

}

.navbarv .menu-items li {
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
}

.nav-container input[type="checkbox"]:checked~.menu-items {
  transform: translateX(0);
}

.nav-container input[type="checkbox"]:checked~.hamburger-lines {
  background: none;
}

.nav-container input[type="checkbox"]:checked~.hamburger-lines .line1 {
  transform: rotate(45deg);
}

.nav-container input[type="checkbox"]:checked~.hamburger-lines .line2 {
  transform: scaleY(0);
}

.nav-container input[type="checkbox"]:checked~.hamburger-lines .line3 {
  transform: rotate(-45deg);
}

.nav-container input[type="checkbox"]:checked~.logo {
  display: none;
}


.nav-container input[type="checkbox"]:checked~.MenuBarMobile {
  background: none;
  display: none !important;
}

/* .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
  }
  
  .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }
  
  .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
  } */