@media screen and (min-width: 1025px) {
  .barrier-configurator .bc__header-menu--mobile, .barrier-configurator .bc__header-mobile-control {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .barrier-configurator .bc__header {
    z-index: 2;
    position: relative;
  }
  .barrier-configurator .bc__header-menu--mobile {
    background-color: #ffffff;
    overflow: visible;
    min-height: auto;
  }
  .barrier-configurator .bc__header-menu--mobile-wrapper {
    position: relative;
    overflow: visible;
  }
  .barrier-configurator .bc__header-menu--mobile-container {
    background-color: #ffffff;
    position: absolute;
    top: 0;
    width: 100%;
    padding: 0 2rem;
    display: none;
    flex-direction: column;
    z-index: 100;
    list-style: none;
  }
  .barrier-configurator .bc__header-menu--mobile-item {
    padding: 1rem 0;
    margin: 0;
    border-bottom: 0.0625rem solid var(--gray-400);
  }
  .barrier-configurator .bc__header-menu--mobile-item a {
    color: var(--text-black);
    font-size: 1rem;
    font-size: clamp(1rem, 3vw, 1.5rem);
    line-height: 1rem;
    font-weight: 600;
    text-decoration: none;
    position: relative;
  }
  .barrier-configurator .bc__header-menu--mobile-item a::after {
    content: "";
    position: absolute;
    bottom: -0.1875rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0.125rem;
    background: var(--color-black);
    transition: width 0.3s ease-out;
  }
  .barrier-configurator .bc__header-menu--mobile-item a:hover::after {
    width: 100%;
  }
  .barrier-configurator .bc__header-menu--mobile-item:last-child {
    border-bottom: none;
  }
  .barrier-configurator .bc__header-mobile-control {
    display: flex;
    align-items: center;
  }
  .barrier-configurator .bc__header .bc__control-mobile-wrapper {
    padding: 0 0.5rem;
    cursor: pointer;
  }
  .barrier-configurator .bc__header .bc__burger {
    padding: 0;
    position: relative;
    width: 1.5rem;
    height: 1rem;
    background: none;
    border: none;
    cursor: pointer;
  }
  .barrier-configurator .bc__header .bc__button__phone {
    display: flex;
    font-size: 2rem;
    color: #ffffff;
  }
  .barrier-configurator .bc__header .bc__button__phone span::before {
    color: #ffffff;
  }
  .barrier-configurator .bc__header .bc__button__phone:hover {
    color: var(--color-black);
  }
  .barrier-configurator .bc__header .line {
    position: absolute;
    width: 100%;
    height: 0.125rem;
    left: 0;
    background: #ffffff;
    transition: none;
  }
  .barrier-configurator .bc__header .line-1 {
    top: 0;
  }
  .barrier-configurator .bc__header .line-2 {
    top: 50%;
    transform: translateY(-50%);
  }
  .barrier-configurator .bc__header .line-3 {
    bottom: 0;
  }
}
@media screen and (max-width: 600px) {
  .barrier-configurator .bc__header-menu--mobile-container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
