.bookmark {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translate3d(85px, 50%, 0) rotate(-90deg);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brown);
    z-index: 1000;
    text-transform: uppercase;
    color: #fff;
    font-size: 24px;
    transition: .4s;
}

.bookmark:hover {
    background: var(--lightbrown);
}

@media (max-width: 768px) {
    .bookmark {
        display: none;
    }
}

.errpage {
    padding: 210px 15px 250px;
    width: 100%;
    background: url(/images/404-map.jpg) center / auto 100% repeat-x;
}

.errpage__content {
    max-width: 1160px;
    margin: 0 auto;
    text-align: center;
    
}

.errpage__num {
    font-size: 130px;
    margin: 0 0 22px 0;
    color: #A2835D;
    font-weight: bold;
    text-stroke: 1px #000;
    -webkit-text-stroke: 1px #000;
}

.errpage__text {
    font-size: 40px;
    text-transform: uppercase;
    margin: 0 0 40px 0;
    font-weight: bold;
}

.errpage__link {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #A2835D;
    display: block;
    width: 100%;
    max-width: 350px;
    padding: 16px 0;
    margin: auto;
    transition: .4s;
}

.errpage__link:hover {
    background: var(--lightbrown);
}

.mod-languages {

}

.mod-languages .visually-hidden {
    display: none;
}

.mod-languages__list {
    display: flex;
}

.mod-languages__list li:first-child:after {
    content: '/';
    margin: 0 4px 0 0;
}

.mod-languages__list li a{
    color: #A2835D;
}

.mod-languages__list li.lang-active a{
    color: #222;
}

.cookiespol {
    position: fixed;
    bottom: 10px;
    right: 0;
    left: 0;
    margin: auto;
    width: 100%;
    max-width: 900px;
    background: rgba(0,0,0,.7);
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 10px;
    z-index: 999;
}

.cookiespol__text {
    color: #fff;
    margin: 0 20px 0 0;
    font-size: 14px;
}

.cookiespol__text a {
    color: #fff;
    text-decoration: underline;
}

.cookiespol__close {
    flex: 0 0 70px;
    cursor: pointer;
    background: #fff;
    color: #333;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 10px;
}

@media (max-width: 575px) {
    .cookiespol__text {
        font-size: 12px;
    }
    .cookiespol__close {
        font-size: 12px;
        flex: 0 0 50px;
    }
}