#nav-toggle {
    position: fixed;
    clip: rect(0, 0, 0, 0);
}

#nav-toggle:checked + .menu {
    visibility: visible;
    opacity: 1;
}

#nav-toggle-label {
    position: fixed;
    right: 3em;
    top: 3em;
    z-index: 11;
    cursor: pointer;
}

#nav-toggle-label span, #nav-toggle-label:before, #nav-toggle-label:after {
    display: block;
    height: 3px;
    background: rgb(73, 7, 0);
    width: 2em;
    margin-bottom: .4em;
    -webkit-transition: .2s all linear;
    transition: .2s all linear;
}

#nav-toggle-label:before, #nav-toggle-label:after {
    content: "";
}

.menu {
    visibility: hidden;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    position: fixed;
    background: rgb(132, 35, 26);
    opacity: 0;
    transition: .2s all linear;
    z-index: 10;
}

.logo_menu {
    display: block;
    margin-top: 3.5em;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 20em;
    background: rgb(132, 35, 26);
}

.menu-text {
    margin-top: 2.1em;
    list-style: none;
    padding-left: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 1em;
}

.menu li {
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0.7em;
}

.menu li a {
    text-decoration: none;
    font-size: 1em;
    color: rgb(255, 255, 255);
}

.icon_arrow {
    width: 2ex;
    height: 2ex;
    display: inline-block;
    /*background: url('/images/icn_arrow_white.png') no-repeat;*/
    background-image: url('/images/icn_arrow_white.png');
    background-repeat: no-repeat;
    margin-right: 5px;
    vertical-align: middle;
    visibility: hidden;

}

.menu ul li:hover i {
    visibility: visible;
}

.nav-toggle-label--active span {
    opacity: 0;
}

.nav-toggle-label--active:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
}

.nav-toggle-label--active:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
}

.language {
    width: 108px;
    height: 45px;
    margin: 2.1em auto 0;
    padding-bottom: 200px;
}

.btn_len {
    display: block;
    width: 45px;
    height: 45px;
    padding-left: 10px;
    border-width: 3px;
    border-style: solid;
    border-radius: 3px;
    background-color: rgba(222, 222, 222, 0);
    font-family: 'Museo Sans';
    font-size: 0.875em;
    font-weight: 700;
    text-align: left;
    padding-top: 11px;
    cursor: pointer;
}

.language .btn_pl {
    float: left;
    border-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
}

.language .btn_en {
    float: right;
    margin-right: 1.34549%;
    border-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
}

.btn_len:hover {
    border-color: rgb(73, 7, 0);
    color: rgb(73, 7, 0);
}

.btn_len:active {
    border-color: rgb(73, 7, 0);
    color: rgb(73, 7, 0);
}