.bdf-header-basic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
}

.bdf-hidden-placeholder {
  position: absolute;
  top: 0;
  z-index: 810;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(1px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.bdf-hidden-placeholder span {
  font-size: 22px;
  color: #fdfcfe;
  font-family: 'Inter', sans-serif;
}

.bdf-hidden-placeholder img {
  width: 36px;
}

.bdf-nav-items-container {
  width: 100%;
  transition: all 0.1s ease-out;
}

.bdf-header-basic-logo-container {
  display: flex;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}

.bdf-header-basic .bdf-nav-items {
  display: flex;
}

.bdf-logo-element {
  display: block;
  text-decoration: none;
}

.bdf-logo-element::after {
  font-size: 16px;
}

.bdf-nav-item {
  position: relative;
  z-index: 70;
}

.bdf-nav-item-link {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  flex: 1;
}

.bdf-header-basic-container {
  width: 100%;
  display: flex;
  padding: 12px 0;
}

.bdf-nav-item-children {
  width: 100%;
  overflow: hidden;
  transition: all 0.15s ease-out;
  flex-direction: column;
}

.bdf-header-basic-navline-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

@media screen and (min-width: 1024px) {
  .bdf-header-basic-navline-container {
    flex-direction: row;
  }
}

@media screen and (max-width: 768px) {
  .bdf-nav-item {
    margin-bottom: 12px;
  }

  .bdf-nav-item-children {
    padding-left: 12px;
  }
  .bdf-nav-items-container {
    overflow: hidden;
  }

  .bdf-header-basic-container {
    flex-direction: column;
  }

  .js-header-basic-nav-with-children--opened .bdf-nav-item-children {
    transition: height 0.15s ease-in;
  }

  .bdf-nav-items-burger-cross {
    display: none;
  }

  .js-header-basic--opened .bdf-nav-items-burger-cross {
    display: block;
  }

  .js-header-basic--opened .bdf-nav-items-burger-lines {
    display: none;
  }

  .bdf-nav-items-burger-lines {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    width: 32px;
    height: 32px;
  }

  .bdf-nav-items-burger-line:last-child {
    margin-bottom: 0;
  }

  .bdf-nav-items-burger {
    display: flex;
    height: 42px;
    align-items: center;
    justify-content: center;
    background: #ededed;
    border: #cecece 1px solid;
    border-radius: 4px;
  }

  .bdf-nav-item-wrapper {
    display: flex;
    align-items: stretch;
    width: 100%;
  }

  .bdf-nav-items-burger:hover {
    background: #e0e0e0;
    border: #cecece 1px solid;
  }

  .bdf-nav-items-parent-arrow-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    backdrop-filter: invert(8%);
    cursor: pointer;
  }

  .bdf-nav-items-parent-arrow {
    width: 0;
    height: 0;
    border-width: 10px 5px 0 5px;
    border-color: #636363 transparent transparent transparent;
    border-style: solid;
    transition: all 0.15s ease-out;
  }

  .js-header-basic-nav-with-children--opened .bdf-nav-items-parent-arrow {
    transform: rotate(180deg);
  }

  .bdf-nav-items-container {
    height: 0;
  }

  .bdf-nav-item-children {
    height: 0;
  }
  .js-header-basic--opened .bdf-nav-items-container {
    transition: height 0.15s ease-in;
  }

  .bdf-header-basic-menu-container {
    visibility: hidden;
  }

  .js-header-basic--opened .bdf-header-basic-menu-container {
    visibility: visible;
  }

  .bdf-nav-items-burger-line {
    display: block;
    width: 32px;
    height: 4px;
    background-color: #636363;
    border-radius: 2px;
  }
  .bdf-nav-items-burger-cross {
    width: 32px;
    height: 32px;
    position: relative;
  }

  .bdf-nav-items-burger-cross:before,
  .bdf-nav-items-burger-cross:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 33px;
    width: 2px;
    background-color: #636363;
  }
  .bdf-nav-items-burger-cross:before {
    transform: rotate(45deg);
  }
  .bdf-nav-items-burger-cross:after {
    transform: rotate(-45deg);
  }

  .bdf-header-basic .bdf-nav-items {
    flex-direction: column;
  }
}

@media screen and (min-width: 769px) {
  .bdf-nav-items-burger-wrapper {
    display: none;
  }

  .bdf-header-basic-container {
    justify-content: space-between;
  }

  .bdf-nav-item:hover .bdf-nav-item-children {
    display: flex;
  }

  .bdf-nav-item-children {
    display: none;
    left: 0;
    position: absolute;
    width: 200px;
    border-radius: 2px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
}

.bdf-header-logo-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}

.bdf-header-basic-menu-container {
  display: flex;
  align-items: center;
}
