@charset "UTF-8";

.global-nav__lang{
    display: flex;
    align-items: center;
    order: 4;
    width: calc(100% + 20px);
    margin: 0 -10px;
    border-top: #ddd 1px solid;
    border-bottom: #ddd 1px solid;
    background: #fff;
}
.global-nav__lang li{
    padding-left: 0;
    margin-top: 0;
    width: 50%;
}
.global-nav__lang li:nth-child(odd){
    border-right: 1px solid #ddd;
}
.global-nav__lang li::before{display: none;}
.global-nav__lang__item a{
    text-decoration: none;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
    padding: 10px;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    line-height: 1.6;
}
.global-nav__lang__item.-current a,
.global-nav__lang__item a:hover{
    color: #1d2088;
}

@media print, screen and (min-width: 1100px){
    .global-nav__lang{
        order: unset;
        background: #e6f0f7;
        border-radius: 3px;
        border: none;
        /* margin: 10px 0 0; */
        margin: 0;
        width: auto;
    }
    .global-nav__lang li{
        width: auto;
    }
    .global-nav__lang__item a{
        min-height: auto;
        padding: 10px;
        line-height: 1;
    }
    .global-nav__lang li:nth-child(odd){
        border-right: none;
        position: relative;
    }
    .global-nav__lang li:nth-child(odd)::after{
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        width: 1px;
        height: 22px;
        background-color: #999;
        transform: translateY(-50%);
    }
}

@media print, screen and (max-width: 859.8px){
    .md-scroll__outer.eng-version:before{
        content: 'Swipe left or right to view.';
    }
}

@media print, screen and (min-width: 768px){
    .unclickable{
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}