﻿@charset "utf-8";

#polyglotLanguageSwitcher, #polyglotLanguageSwitcher * {
    margin: 0;
    padding: 0px 0px 0px 0px;
    outline: none;
    background: #104587;
    color: #fff;
    border-style: none;
    font-size: 16px;
    text-transform: uppercase;
}

    #polyglotLanguageSwitcher ul {
        list-style: none;
    }

#polyglotLanguageSwitcher {
    color: #fff;
    line-height: normal;
    position: relative; /* sets the initial position for the drop-down menu */
}

    #polyglotLanguageSwitcher form {
        display: none;
    }

    /* ---------------------------------------------------------------------- */
    /* JS-created Code
/* ---------------------------------------------------------------------- */
    #polyglotLanguageSwitcher a {
        text-decoration: none;
        display: block;
        padding: 5px 0px 5px 32px;
        background-repeat: no-repeat;
        background-position: 1px center;
    }


        #polyglotLanguageSwitcher a.current:link, #polyglotLanguageSwitcher a.current:visited, #polyglotLanguageSwitcher a.current:active {
            position: relative; /* sets the initial position for the trigger arrow */
        }



        #polyglotLanguageSwitcher a.active { /* This style is applied as long as the drop-down menu is visible. */
            border-bottom: none !important;
            border-radius: 3px 3px 0 0 !important;
        }

    #polyglotLanguageSwitcher span.trigger {
        display: block;
        position: absolute;
        top: 0;
        right: 15px;
    }


    #polyglotLanguageSwitcher a.current:hover span.trigger, #polyglotLanguageSwitcher a.current:active span.trigger, #polyglotLanguageSwitcher a.active span.trigger {
        background-position: left bottom !important;
    }
    /* Drop-Down Menu */

    #polyglotLanguageSwitcher ul.dropdown {
        background: #104587;
        display: none;
        position: absolute;
        top: auto;
        left: 0;
        border-top: none !important;
        border-radius: 0 0 3px 3px;
        z-index: 99999999999999999999999;
    }

        #polyglotLanguageSwitcher ul.dropdown li {
            width: 100px;
            border-top: 1px solid rgba(255,255,255,0.15);
            -webkit-transition: all 0.2s ease-in-out;
            -o-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
        }

            #polyglotLanguageSwitcher ul.dropdown li a {
                width: 100%;
            }

            #polyglotLanguageSwitcher ul.dropdown li:first-child {
                border: none;
            }

            #polyglotLanguageSwitcher ul.dropdown li:last-child {
                border-radius: 0 0 3px 3px;
            }
/* Flags */


#ind {
    background-image: url("../vendor/language-switcher/de.png");
    content: "/";
}


#fr {
    background-image: url(fr.png);
}

#de {
    background-image: url(de.png);
}

#it {
    background-image: url(it.png);
}

#es {
    background-image: url(es.png);
}
