.header {
  padding-top: 11px;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 10px;


  @media (max-height: $h-media-x) {
    padding: 0;
    padding-bottom: 20px;
  }
  
  &::before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    content: '';
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.25) 49.48%, rgba(255, 255, 255, 0.00) 100%);
    height: 2px;
  }

  &__container {
    display: flex;
    justify-content: center;
    position: relative;
    padding-top: 20px;
  }

  &__danger {
    position: absolute;
    right: 0;
    top: 0;
  }
}