.pz-nav__hamburger {
    padding: 0;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: rgba(0, 0, 0, 0);
    border: 0;
    margin: 0;
    overflow: visible;
}

.pz-nav__hamburger:hover {
    opacity: 0.7;
}

.pz-nav__hamburger:focus {
    background-color: #e6e6e6;
}

.pz-nav__hamburger-box {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin: 0 auto;
    position: relative;
}

.pz-nav__hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1.5px;
}

.pz-nav__hamburger-inner,
.pz-nav__hamburger-inner::before,
.pz-nav__hamburger-inner::after {
    width: 20px;
    height: 3px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.pz-nav__hamburger-inner::before,
.pz-nav__hamburger-inner::after {
    content: "";
    display: block;
}

.pz-nav__hamburger-inner::before {
    top: -7px;
}

.pz-nav__hamburger-inner::after {
    bottom: -7px;
}

.pz-nav__hamburger-squeeze .pz-nav__hamburger-inner {
    transition-duration: 0.1s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pz-nav__hamburger-squeeze .pz-nav__hamburger-inner::before {
    transition: top 0.1s 0.14s ease, opacity 0.1s ease;
}

.pz-nav__hamburger-squeeze .pz-nav__hamburger-inner::after {
    transition: bottom 0.1s 0.14s ease,
        transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pz-nav__hamburger-squeeze.active .pz-nav__hamburger-inner {
    transform: rotate(45deg);
    transition-delay: 0.14s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pz-nav__hamburger-squeeze.active .pz-nav__hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease, opacity 0.1s 0.14s ease;
}

.pz-nav__hamburger-squeeze.active .pz-nav__hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease,
        transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pz-nav__hamburger-helper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    height: 56px;
    min-width: 56px;
    z-index: 1;
}

.pz-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    height: 48px;
    position: relative;
    width: 100%;
    background: var(--bg-page);
    padding-right: 16px;
    overflow: hidden;
    box-shadow: 0 1px 0 #dfdfdf;
}

@media (min-width: 992px) {
    .pz-nav {
        height: 56px;
    }
}

.pz-nav__title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex: 3 2 auto;
    transition: all 225ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition-delay: 50ms;
    transform: scale(1),translateY(0);
    opacity: 1;
    height: 100%;
}

.pz-nav__title:focus {
    opacity: 0.6;
    outline: none;
}

@media (max-width: 991.98px) {
    .pz-nav__title {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        margin-left: -1px;
    }
}

.pz-nav__button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    font-family: "nyt-franklin";
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.047em;
    text-transform: uppercase;
    height: 36px;
    border: 1px solid #f4f4f4;
    border-radius: 3px;
    color: #fff;
    border-color: #000;
    background-color: #000;
    margin-left: 8px;
    padding: 1px 33px 0;
    cursor: pointer;
}

.pz-nav__button:hover {
    background-color: #333;
}

.pz-nav__button.white {
    color: #000;
    border-color: #000;
    background-color: #fff;
}

.pz-nav__button.white:hover {
    color: #fff;
    background-color: #000;
}

.pz-nav__button.gray {
    color: #000;
    border-color: #ccc;
    background-color: #fff;
}

.pz-nav__button.gray:hover {
    color: #000;
    background-color: #f4f4f4;
}

.pz-nav-drawer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    position: fixed;
    visibility: hidden;
    top: 56px;
    bottom: 0;
    width: 100%;
    max-width: 350px;
    background: #fff;
    color: #000;
    transition: left 0.1s ease 0.14s;
    box-shadow: 3px 6px 6px rgba(0, 0, 0, 0.25);
    padding-top: 7px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.pz-nav-drawer,
.pz-nav-drawer.closing {
    left: calc(-100% - 9px);
}

.pz-nav-drawer.closing {
    visibility: visible;
}

.pz-nav-drawer.open {
    left: 0;
    visibility: visible;
}

.pz-nav-drawer.logged-out .pz-nav__login {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.pz-nav-drawer nav {
    width: 100%;
    padding-bottom: 16px;
}

.pz-nav-drawer hr {
    width: calc(100% - 32px);
    margin: 8px 16px;
    background-color: #dcdcdc;
    height: 1px;
    border: none;
}

.pz-nav-drawer__heading {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    line-height: 14px;
    display: block;
    width: 100%;
    padding: 9px 16px;
}

.pz-nav-drawer__link {
    display: flex;
    align-items: center;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    letter-spacing: 0.5px;
    border-left: 4px solid rgba(0, 0, 0, 0);
    padding: 0 16px 0 12px;
}

.pz-nav-drawer__link::before {
    content: "";
    height: 20px;
    width: 20px;
    margin-right: 8px;
    display: inline-block;
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
}

.pz-nav-drawer__link:nth-child(2) {
    height: 32px;
    line-height: 32px;
}

.pz-nav-drawer__link:hover,
.pz-nav-drawer__link:focus,
.pz-nav-drawer__link:active,
.pz-nav-drawer__link.selected {
    background-color: #f4f4f4;
    border-color: #000;
    text-decoration: none !important;
    outline: none;
}

.pz-nav-drawer__link:focus {
    outline: none;
}

.pz-nav-drawer__link.hide {
    display: none;
}

.daily-crossword .pz-nav-drawer__link:hover,
.daily-crossword .pz-nav-drawer__link:focus,
.daily-crossword .pz-nav-drawer__link:active,
.daily-crossword .pz-nav-drawer__link.selected {
    border-color: #6493e6;
}

.mini-crossword .pz-nav-drawer__link:hover,
.mini-crossword .pz-nav-drawer__link:focus,
.mini-crossword .pz-nav-drawer__link:active,
.mini-crossword .pz-nav-drawer__link.selected {
    border-color: #95befa;
}

.github .pz-nav-drawer__link:hover,
.github .pz-nav-drawer__link:focus,
.github .pz-nav-drawer__link:active,
.github .pz-nav-drawer__link.selected {
    border-color: #1f2328;
}

.pz-nav-drawer {
    display: block;
    top: 48px;
}

@media (max-width: 375.98px) {
    .pz-nav-drawer {
        max-width: 100%;
    }
}

.pz-h1 {
    font-family: "Noto Serif";
    font-weight: 700;
    font-size: 28px;
}

.pz-header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    flex-wrap: nowrap;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100;
    flex-shrink: 0;
    background: #ffffff;
}

.daily-crossword :first-child::before {
    background-image: url("../icon/daily.svg");
}

.mini-crossword :first-child::before {
    background-image: url("../icon/mini.svg");
}

.github :first-child::before {
    background-image: url("../icon/github.svg");
}