.navbar {
  display: flex;
  width: 100%;
  justify-content: space-between;
  height: 90px;
  align-items: center;
  padding: 0px 25px !important;
  margin-bottom: 0px !important;
}

img {
  vertical-align: middle;
  border-style: none;
}
.navbar-brand {
  font-size: 1.25rem;
  line-height: inherit;
  padding: 0 !important;
  margin: 0;
  white-space: nowrap;
}

.navbar-brand img {
  width: 175px;
}
.right-menu {
  display: flex;
  column-gap: 5px;
  vertical-align: middle;
  align-items: center;
}

.login-btn,.logout-btn {
  box-sizing: border-box;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  width: 90px;
  height: 40px;
  border: 1px solid #ffffff;
  background-color: transparent;
  outline: none !important;
  letter-spacing: 0.1em;
  margin-right: 30px;
  text-transform: uppercase;
  transition: 0.2s ease all;
}

.logout-btn{
  display: none;
}

.sidenav .logout-link{
  display:none;
}

.login-btn:hover,.logout-btn:hover {
  background-color: #ffde33 !important;
  border: none;
  color: #33a1aa !important;
}
.button-burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.button-burger__line {
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.button-burger__line:first-child {
  width: 100%;
}

.button-burger__line:nth-child(2) {
  width: 60%;
  margin-left: 40%;
}

/* Sidenav */
.sidenav {
  max-width: 100%;
  height: 100%;
  width: var(--side-width, 0px);
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  overflow-x: hidden;
  display: -ms-flexbox;
  display: flex;
  transition: 0.5s;
  background: rgba(255, 255, 255, 1);
  box-shadow: -3px 0px 5px rgba(0, 0, 0, 0.2);
}

.sidenav .closebtn {
  position: absolute;
  top: 40px;
  right: 50px;
  font-size: 36px;
  cursor: pointer;
  color: var(--navbar-link);
  line-height: 20px;
  text-decoration: none !important;
}

.navbar-nav {
  max-height: calc(100vh - 100px);
  overflow: auto;
  transform: translateY(5%);
  height: calc(100% - 5%);
  display: block !important;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

.nav-item {
  padding-left: 40px;
  border-left: 5px solid white;
}
.nav-link {
  position: relative;
  font-size: 16px;
  font-weight: 700 !important;
  line-height: 19px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navbar-link) !important;
  margin-bottom: 12px;
  padding-left: 30px;
  padding-right: 30px;
  transition: 0.4s;
  display: inline-block;
}

.active-side-link {
  border-left: 5px solid var(--active-navbar-link);
}

.active-side-link a {
  color: var(--active-navbar-link) !important;
}

.sidenav .login-btn,.sidenav .logout-btn {
  width: 108px;
  height: 50px;
  background-color: #ffde33;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  margin-left: 30px;
  margin-top: 12px;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
  border: none;
  filter: none;
  line-height: 30px;
  transition: all 0.2s;
}

.login {
  padding-left: 8px;
}

.burger-menu-logo {
  position: absolute;
  left: 30px;
  bottom: 50px;
  width: 200px;

}

@media screen and (max-width: 768px) {
  .navbar-brand img {
    width: 150px !important;
  }
  header nav {
    padding: 25px 20px !important;
  }
  .login-btn,.logout-btn {
    font-size: 14px;
    width: 80px;
    height: 37px;
    margin-right: 20px;
  }
  .button-burger {
    width: 26px;
  }
}

@media screen and (max-width: 565px) {
  .logout-btn:not(.logout-link){ 
    display: none !important;
}
.navbar-brand img {
  width: 125px !important;
}
}