#nav-toggle {
    position: absolute;
    clip: rect(0, 0, 0, 0);
}
#nav-toggle:checked + .menu {
    visibility: visible;
    opacity: 1;
}
#nav-toggle-label {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 200;
    cursor: pointer;
}
#nav-toggle-label .nav-toggle-label--active {
    position: fixed;
}
#nav-toggle-label span,
#nav-toggle-label:before,
#nav-toggle-label:after {
    display: block;
    height: 3px;
    background: rgb(237, 51, 51);
    width: 35px;
    margin-bottom: 8.2px;
    border-radius: 25px;
    transition: 0.2s all linear;
}
#nav-toggle-label:before,
#nav-toggle-label:after {
    content: "";
}
.nav-toggle-label--active span {
    opacity: 0;
}
.nav-toggle-label--active:before {
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    background: #fff !important;
}
.nav-toggle-label--active:after {
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    background: #fff !important;
}
.modal-body {
    position: relative;
    display: grid;
    grid-template-columns: 23% 23% 23% 23%;
    grid-gap: 15px 22px;
    min-height: calc(100vh - 213px);
    padding: 0 16px;
    padding-top: 72px;
    background-color: rgb(237, 51, 51);
}
.menu-title {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu-list__item {
    margin-top: 24px;
}
.menu-link {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.045em;
    color: #fff;
}
.menu-list__item li {
    margin-bottom: 13px;
}
.header-fixed {
    position: fixed;
    right: 0;
    left: 0;
}
.arrow-link {
    display: none;
}
/*Fake-Trigger*/
#sized {
    width: 60px;
    height: 50px;
    color: transparent;
    background-color: transparent;
    border: transparent;
}
/*Modal-Box*/
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    background-color: rgb(237, 51, 51);
}

.modal-header {
    position: sticky;
    transform: translate3d(0, 0, 0);
    top: 0;
    padding: 12px 0;
    background-color: rgb(237, 51, 51);
    border-bottom: none;
    height: 72px;
    width: 100%;
    z-index: 100;
}

.modal-footer {
    padding: 2px 16px;
    color: black;
    border-top: none;
    text-align: center;
    display: none;
    height: 117px;
    /* background: linear-gradient(to bottom right, transparent 33%, white 69%); */
}

@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

.animated {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@font-face {
    font-family: Martel;
    src: url(../fonts/martel-v4-latin/martel-v4-latin-regular.woff);
}
@media only screen and (max-width: 959px) {
    .modal-body {
        grid-template-columns: 100%;
        padding: 0 20px;
        padding-top: 52px;
    }
    
    .nav-toggle-label--active:before {
        background: rgb(237, 51, 51) !important;
    }
    .nav-toggle-label--active:after {
        background: rgb(237, 51, 51) !important;
    }
    .arrow-link {
        width: 0;
        height: 0;
        display: inline-block;
        margin-right: 0.2em;
        border: 6px solid transparent;
        border-bottom-width: 0;
        border-top-color: #fff;
        transition: all 0.3s ease-out;
    }
    .arrow-link.open {
        border-top-color: transparent;
        border-top-width: 0;
        border-bottom-color: #fff;
        border-bottom-width: 6px;
    }
    .menu-list__item {
        display: block;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: max-height 400ms, opacity 200ms;
        -webkit-transition: max-height 400ms, opacity 200ms;
    }
    .menu-list__item.open {
        display: flex;
        flex-direction: column;
        max-height: 500px;
        opacity: 1;
        transition: max-height 0, opacity 200ms;
        -webkit-transition: max-height 0, opacity 200ms;
    }
    .modal-header {
        background-color: #fff;
    }
    .modal-footer {
        display: block;
    }
}
@media only screen and (max-width: 480px) {
    .modal-header {
        padding: 7px 0;
        height: 54px;
    }
    .menu-title {
        font-size: 18px;
        line-height: 23px;
    }
}
@media only screen and (min-width: 960px) {
    .menu-title {
        cursor: default;
    }
}