.footer__container {
    flex-wrap: wrap;
}

.footer__policy {
    flex: 0 0 100%;
    margin-top: 1em;
    font-size: 1.2rem;
}

.navigation-menu__policy {
    padding: 1.5rem 4rem;
    font-size: 1.2rem;
    margin-top: 5rem;
}

.form-agreement {
    margin-bottom: 2rem;
}

.link {
    color: currentColor;
}

.link--dashed {
    text-decoration: underline;
    text-underline-offset: .25em;
}

input[type="checkbox"] {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
}

.checkbox-label {
    display: inline-flex;
    margin: 1rem 3rem 0 0;
    font-size: 1.4rem;
    padding-left: 3rem;
    position: relative;
    cursor: pointer;
    line-height: 1.2;
}

.checkbox-label::before {
    content: '';
    position: absolute;
    width: 1.4em;
    height: 1.4em;
    border-radius: .4rem;
    border: 1px solid #838383;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.checkbox-label::after {
    content: '';
    position: absolute;
    width: 1em;
    height: .6em;
    border: 3px solid #838383;
    border-top: 0;
    border-right: 0;
    top: 45%;
    transform-origin: 50% 50%;
    transform: translateY(-50%) rotate(-45deg);
    left: .2em;
    opacity: 0;
    transition: opacity .5s ease;
}

input[type="checkbox"]:checked+label.checkbox-label::after {
    opacity: 1;
}

.notification {
    position: fixed;
    z-index: 10;
    width: 100%;
    max-width: 50rem;
    border-radius: 1.3rem;
    background: rgba(0, 0, 0, .75);
    bottom: 15px;
    left: 50%;
    -webkit-transform: translate(-50%, 25%);
    transform: translate(-50%, 25%);
    -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, opacity 0.5s ease;
    transition: transform 0.5s ease, opacity 0.5s ease,
        -webkit-transform 0.5s ease;
    padding: 1.6rem 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.25;
    font-family: PT Sans, Arial, Helvetica, sans-serif;
    text-align: center;
    will-change: transform;
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 575px) {
    .notification {
        bottom: 15vw;
    }
}

@media (max-width: 767px) {
    .notification {
        padding: 1.6rem 2rem;
        width: 90%;
    }
}

.notification--active {
    opacity: 1;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    -webkit-animation: slide-up 0.5s ease;
    animation: slide-up 0.5s ease;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    pointer-events: all;
}

.notification--deactive {
    opacity: 0;
    -webkit-transform: translate(-50%, 25%);
    transform: translate(-50%, 25%);
    -webkit-animation: slide-up-inverse 0.5s ease;
    animation: slide-up-inverse 0.5s ease;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.notification__h5 {
    font-size: 1.5rem;
}

.notification__btn {
    padding: .5em 1em;
    border: none;
    outline: none;
    background-color: transparent;
    border-radius: 4px;
    color: #000;
    margin-top: .5em;
    background: #fff;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.notification__close:after,
.notification__close:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 3rem;
    height: 2px;
    background-color: #d9d9d9;
}

.notification__close:before {
    -webkit-transform: translateY(-1px) rotate(45deg);
    transform: translateY(-1px) rotate(45deg);
}

.notification__close:after {
    -webkit-transform: translateY(-1px) rotate(-45deg);
    transform: translateY(-1px) rotate(-45deg);
}

.notification a {
    color: currentColor;
    text-decoration: underline;
    text-underline-offset: .25em;
}

@-webkit-keyframes slide-up {
    0% {
        display: none;
        -webkit-transform: translate(-50%, 25%);
        transform: translate(-50%, 25%);
    }

    1% {
        display: block;
        opacity: 0;
    }

    to {
        -webkit-transform: translate(-50%);
        transform: translate(-50%);
        opacity: 1;
    }
}

@keyframes slide-up {
    0% {
        display: none;
        -webkit-transform: translate(-50%, 25%);
        transform: translate(-50%, 25%);
    }

    1% {
        display: block;
        opacity: 0;
    }

    to {
        -webkit-transform: translate(-50%);
        transform: translate(-50%);
        opacity: 1;
    }
}

@-webkit-keyframes slide-up-inverse {
    0% {
        -webkit-transform: translate(-50%);
        transform: translate(-50%);
        opacity: 1;
    }

    99% {
        display: block;
        opacity: 0;
    }

    to {
        display: none;
        -webkit-transform: translate(-50%, 25%);
        transform: translate(-50%, 25%);
    }
}

@keyframes slide-up-inverse {
    0% {
        -webkit-transform: translate(-50%);
        transform: translate(-50%);
        opacity: 1;
    }

    99% {
        display: block;
        opacity: 0;
    }

    to {
        display: none;
        -webkit-transform: translate(-50%, 25%);
        transform: translate(-50%, 25%);
    }
}