.navigation__checkbox{
    display: none;
}
.navigation__button{
    background-color: transparent;
    height: 4rem;
    width: 4rem; 
    position: absolute; /* Fixed */
    top: 5rem;
    right: 44%;
    z-index: 2000;
    box-shadow: 0 1rem 3rem rgba(black, .1);
    text-align: center;
    cursor: pointer;
}
.navigation__background{
    height: 5rem;
    width: 5rem; 
    position: fixed;
    top:6rem;
    right: 6rem;
    z-index: 1000;
    transition: transform .8s cubic-bezier(0.86,0,0.07,1);
}
.navigation__nav-small{
    height: 50vh;
    /* position: fixed; */
    top: 0;
    left: 0;
    z-index: 1500;

    opacity: 0;
    width: 0;
    transform: all 1s;
}
.navigation__nav-small .navigation__list{
    position: absolute;
    top: 56%;
    left: 50%;
    transform: translate(-50%, -50%);
    list-style: none;
    text-align: center;
    width: 100%; 
    z-index: 999 !important;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}
.navigation__nav-small .navigation__list .icons img{
    width: 8%;
}
.navigation__nav-small .navigation__list .icons{
    padding-top: 50px;
}
.navigation__nav-small .navigation__list .icons a:focus{
    outline: none !important;
}
.navigation__nav-small .navigation__list img{
    width: 25%;
}
.navigation__nav-small .navigation__list .textUnderIcons{
    display: flex;
}
.navigation__nav-small .navigation__list .textUnderIcons p a{
    color: #f26c4f !important;
}
.navigation__nav-small .navigation__list .textUnderIcons p #paddingR{
    padding-right: 20px;
}
.navigation__nav-small .navigation__list li{
    font-family: proxima-nova;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 12px;
    margin-bottom: -2px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    background-color: #B35A51;
    width: 92%;
    z-index: 9999;
}
.navigation__nav-small .navigation__item{
    margin: 0.5rem; /* 1rem */
}
.navigation__nav-small .navigation__item a:focus{
    outline: none !important;
}
.navigation__nav-small .navigation__link:link,
.navigation__nav-small .navigation__link:visited{
    display: inline-block;
    font-size: 12px;
    font-weight: 300;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    background-size: 1000%;
    transition: all 1s;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
}
.navigation__nav-small .navigation__link:hover,
.navigation__nav-small .navigation__link:active{
    background-position: 100%;
    transform: translateX(1rem);
}
.navigation__checkbox:checked ~ .navigation__background {
    transform: scale(80);
}
.navigation__checkbox:checked ~ .navigation__nav {
    opacity: 1;
    width: 100%;
}
.navigation__icon{
    position: relative;
    margin-top: 2rem; /*3.5rem*/
}
.navigation__icon,
.navigation__icon:before,
.navigation__icon:after{
    width: 2rem;
    height: 4px; /*2px*/
    /* background-color: #fff; */
    background-color: #B35A51;
    display: inline-block;
}
.navigation__icon:before,
.navigation__icon:after{
    content: "";
    position: absolute;
    left: 0;
    transition: all .2s;
}
.navigation__icon:before{top: -.6rem; } /*-.8rem*/
.navigation__icon:after{top: .55rem;} /*.8rem*/

.navigation__button:hover .navigation__icon::before{
    top: -0.5rem;
}

.navigation__button:hover .navigation__icon::after{
    top: 0.5rem;
}
.navigation__checkbox:checked + .navigation__button .navigation__icon{
    background-color: transparent;
}
.navigation__checkbox:checked + .navigation__button .navigation__icon::before{
    top:0;
    transform: rotate(135deg);
}
.navigation__checkbox:checked + .navigation__button .navigation__icon::after{
    top:0;
    transform: rotate(-135deg);
}
.main-header-bar {
    line-height: 1 !important;
}