.topbar {
  position: relative;
  display: flex;

  flex-direction: row;

  width: 100%;

  padding: 80px 30px;
  padding-bottom: 30px;
}

.topbar .topbar-menu-closebutton {
  position: absolute;
  display: none;
  z-index: 1;

  top: 0;

  align-items: center;
  justify-content: center;

  width: 60px;
  height: 60px;
}
html[dir="rtl"] .topbar .topbar-menu-closebutton {
  left: 0;
}
html[dir="ltr"] .topbar .topbar-menu-closebutton {
  right: 0;
}

.topbar .topbar-logo {
  position: relative;
  display: flex;

  margin-left: 60px;

  width: 25%;

  text-decoration: none;
}

.topbar .topbar-logo img {
  position: relative;
  display: flex;

  width: 100%;
  min-width: 90px;
  height: auto;

  object-fit: contain;
  object-position: center right;
}

.topbar .topbar-menu {
  position: relative;
  display: flex;

  flex-direction: row;

  align-items: center;
}

.topbar .topbar-menu-item {
  position: relative;
  display: flex;

  margin-left: 15px;

  font-weight: 700;

  color: rgba(170, 170, 170, 1);

  transition: 0.2s all ease-out;
}
.topbar .topbar-menu-item:hover {
  color: rgba(15, 135, 220, 1);
}
.topbar .topbar-menu-item.active {
  color: rgba(17, 17, 17, 1);
}

.topbar .topbar-menu-openbutton-container {
  position: relative;
  display: none;
}
html[dir="ltr"] .topbar .topbar-menu-openbutton-container {
  margin-left: auto;
}
html[dir="rtl"] .topbar .topbar-menu-openbutton-container {
  margin-right: auto;
}
.topbar .topbar-menu-openbutton {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  color: black;
  fill: currentColor;
}



/* [ RESPONSIVE ]. */
@media(max-width: 670px) {
  .topbar .topbar-menu-openbutton-container {
    display: flex;
  }

  .topbar .topbar-menu-closebutton {
    display: flex;
  }

  .topbar .topbar-menu {
    position: fixed;
    display: flex;
    z-index: 1000;

    top: 0;
    right: 0;
    left: 0;
    bottom: 0;

    flex-direction: column;

    height: 0;

    padding: 0 0;

    overflow: hidden;
    overflow-y: auto;

    opacity: 0;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);

    transition: 0.3s opacity ease-out;
  }
  .topbar .topbar-menu.active {
    height: 100vh;
    padding: 40px;
    opacity: 1;
  }

  .topbar .topbar-menu-item {
    align-items: center;
    justify-content: center;

    margin: 0;
    margin-bottom: 15px;

    width: 100%;

    padding: 10px 20px;

    text-align: center;

    font-weight: 600;
    font-size: 24px;
  }
}
