@media all {
  .UI__header_top-bar .slide-overflow {
    top: 0;
    left: 0;
    z-index: 1001;
    overflow-y: scroll;
    border-top: solid #D9E9F3;
    transition: cubic-bezier(0.2, 0.01, 0.45, 1) 0.4s all;
    box-shadow: 0px 6px 21px rgba(0, 0, 0, 0.16);
  }
  .UI__header_top-bar .slide-container {
    width: 100vw;
    min-height: 100vh;
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    background-color: #D9E9F3;
  }
  .UI__header_top-bar #burger-menu-input:checked ~ .slide-overflow {
    width: 100vw;
  }
  .UI__header_top-bar #burger-menu-input:checked ~ .container .burger-button {
    color: #100D4B;
  }
  .UI__header_top-bar #burger-menu-input:checked ~ .container .burger-button:before {
    animation: hamburger_1 cubic-bezier(1, -0.5, 0, 1.5) 0.4s forwards;
  }
  .UI__header_top-bar #burger-menu-input:checked ~ .container .burger-button:after {
    animation: hamburger_2 cubic-bezier(1, -0.5, 0, 1.5) 0.4s forwards;
  }
  .UI__header_top-bar #burger-menu-input:checked ~ .container .brand .main-logo {
    filter: invert(7%) sepia(84%) saturate(3541%) hue-rotate(242deg) brightness(82%) contrast(105%);
  }
  .UI__header_top-bar #burger-menu-input:checked ~ .container .corner-buttons .color-swaps {
    filter: invert(7%) sepia(84%) saturate(3541%) hue-rotate(242deg) brightness(82%) contrast(105%);
  }
}
@media (min-width: 1025px) {
  .UI__header_top-bar .slide-overflow {
    border-top-width: 90px;
  }
  .UI__header_top-bar #burger-menu-input:checked ~ .container .brand {
    left: 50%;
    margin-left: -83px;
  }
  .UI__header_top-bar #burger-menu-input:checked ~ .container .punchline {
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 1024px) {
  .UI__header_top-bar .punchline {
    left: 50%;
    top: 25px;
    transform: translateX(-50%);
    z-index: 10001;
    text-align: center;
    font-weight: 600;
    white-space: nowrap;
  }
  .UI__header_top-bar .punchline br {
    display: none;
  }
  .UI__header_top-bar .icons-container {
    width: calc(100% - 2 * 30px);
    position: absolute;
    left: 30px;
    bottom: 30px;
    display: flex;
    justify-content: center;
  }
  .UI__header_top-bar .slide-overflow {
    border-top-width: 52px;
  }
}
