@charset "UTF-8";

.lang-switcher {
    position: absolute;
    right: -10px;
    top: 25px;
    width: 103px;
    height: 1px;
    z-index: 20
}

.lang-switcher .selected {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    border-radius: 30px;
    background: #EAEAEA;
}

.lang-switcher .flag {
    border-radius: 4px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.21);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.21);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.21);
}

.lang-switcher .selected .flag {
    position: absolute;
    top: 50%;
    left: calc(50% - 15px);
    transform: translateX(-50%) translateY(-50%);
}

.lang-switcher .selected .arrow {
    position: absolute;
    top: 50%;
    cursor: pointer;
    left: calc(50% + 20px);
    transform: translateX(-50%) translateY(-50%);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.lang-switcher.shown .selected .arrow {
    position: absolute;
    top: 50%;
    left: calc(50% + 20px);
    transform: translateX(-50%) translateY(-50%) rotate(180deg);
}

.lang-switcher .avaliable {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    padding-top: 15px;
    border-radius: 30px;
    background: #f5f5f5;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.lang-switcher.shown .avaliable {
    height: 150px;
    padding-top: 74px;
}

.lang-switcher .avaliable a {
    position: relative;
    padding-left: 22px;
    display: block;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.lang-switcher.shown .avaliable a {
    display: block;
    margin-bottom: 20px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.lang-switcher .avaliable a span {
    font-family: 'teleneoextrabold';
    color: #555;
    display: inline-block;
    margin-left: 8px;
}

/* -------------- MOBILE ------------------------------------------------*/

@media screen and (min-width: 600px) {

    /* ------------------------------ 640 --------------------------------*/
    .lang-switcher {
        right: 20px;
    }
}

@media screen and (min-width: 960px) {
    /* ------------------------------ 960 --------------------------------*/

}

@media screen and (min-width: 1200px) {
    /* ------------------------------ 1200 --------------------------------*/

}

@media screen and (min-width: 1680px) {
    /* ------------------------------ 1560 --------------------------------*/

}