
/* Some boilerplating */
* {
    box-sizing: border-box;
}
/* My dropdown */
.my-dropdown {
    min-width: 120px;
    height: 40px;
    max-width: 180px;
}

/* Selected */
.selected {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 30px;
    padding: 0 10px;
    background: #fff;
    border-radius: 10px;
 font-family: 'Roboto', sans-serif;
    color: #000;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 0;
}
.language-toggler {
    display: flex;
    align-items: center;
}
.language-toggler img {
        width: 18px;
        margin-right: 5px;
}

/* Arrow */
.selected:after {
    display: inline-block;
    /* content: "\27A4";*/
    content: "\1F893";
    position: absolute;
    right: 10px;
    vertical-align: .255em;
}

/* Hover state */
.selected:hover:after {
    opacity: 1;
}

/* Options wrapper (toggled by isOpen) */
.options {
    position: relative;
    z-index: 9999;
    background-color: #fff;
    border-radius: 0;
    box-shadow: 1px 5px 5px #525252;
}

/* Option */
.option {
 font-family: 'Roboto', sans-serif;
    padding: 5px 11px;
    border-bottom: 1px solid #dedede;
    font-size: 14px;
}
.option img {
        margin-right: 5px;
        width: 18px;
}

    /* Hover state */
.option:hover {
        background-color: rgba(0, 0, 0, 0.05);
}

    /* Reset last child for a nice layout */
.option:last-child {
        border-bottom: none;
}

/* Transition */
.fade-enter-active,
.fade-leave-active {
    transition: all 0.25s ease-out;
}
.fade-enter,
.fade-leave-active {
    opacity: 0;
    transform: translateY(-30px);
}


/*# sourceMappingURL=languageDropDown.css.map*/