.lan_switch {
    width: 70px;
    height: 40px;
    margin: 0 auto;
    display: none;
    align-items: center;
    justify-content: center;
}

.lan_switch .flag {
    height: 26px;
    width: 26px;
    margin: 2px;
    color: rgb(110, 110, 110);
    border: 1px solid rgb(110, 110, 110);
}

.lan_switch .flag:hover {
    cursor: pointer;
}

.lan_switch .flag_active {
    color: rgb(255, 255, 255);
    border: 1px solid rgb(255, 255, 255);
}


@media only screen and (max-width: 1024px){
    .lan_switch {
        width: 85px;
        height: 80px;
        margin: auto 0;
        display: none;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .lan_switch .flag {
        color: rgb(110, 110, 110);
        border: 1px solid rgb(110, 110, 110);
    }

    .lan_switch .flag_active {
        color: rgb(255, 255, 255);
        border: 1px solid rgb(255, 255, 255);
    }
}



@media only screen and (max-width: 480px) {
    .lan_switch {
        width: 75px;
        height: 80px;
        margin: auto 0;
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .lan_switch .flag {
        color: rgb(110, 110, 110);
        border: 1px solid rgb(110, 110, 110);
    }

    .lan_switch .flag_active {
        color: rgb(255, 255, 255);
        border: 1px solid rgb(255, 255, 255);
    }
}