﻿



ul.langs{
    list-style: none;
    margin: 0;
    padding: 0;
}
ul.langs li{
   float: left;
   margin-left: 10px;
   line-height:80px;
}

ul.langs li a{
   color:#fff;
   font-weight:bold;
   font-size:18px;
   padding:5px;
   
}
ul.langs li a.active, ul.langs li a:hover{
   background-color:rgba(255,255,255,.2);
}
/* GLOBALS */


@media (max-width: 767px) {
    #navigation .navbar-brand {
        width: 70%;
    }

    ul.langs li a{
       font-weight:300;
       font-size:12px;
       padding:5px;
   
    }
}



::selection {
    background: transparent;
}

::-moz-selection {
    background: transparent;
}


.wrapper-dropdown {
    /* Size and position */
    position: relative;  
   display:inline-block;
    /* Styles */
    
    cursor: pointer;
    outline: none;
    /* Font settings */
    font-weight: bold;
    color: #fff;
    width:50px;
}

    
    .wrapper-dropdown .ddl {
        /* Size & position */
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        /* Styles */
        background: #fff;
	    -webkit-box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2);
	    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2);
        
        list-style: none;
        /* Hiding */
        display: none;
        pointer-events: none;
        padding: 0;
    }
    .wrapper-dropdown .ddl:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 100%;
    right: 19px;
    border-width: 0 6px 6px 6px;
    border-style: solid;
    border-color: #fff transparent;    
}

.wrapper-dropdown .ddl:before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 100%;
    right: 17px;
    border-width: 0 8px 8px 8px;
    border-style: solid;
    border-color: rgba(0,0,0,0.1) transparent;    
}
        
        .wrapper-dropdown .ddl li{
            line-height:initial;
            display:initial;
            padding:0;
        }
        .wrapper-dropdown .ddl li a {
            display: block;
            padding: 10px 0;
            text-decoration: none;
            color: #a0a0a0;
            border-bottom: 1px solid #e6e8ea;
            box-shadow: inset 0 1px 0 rgba(255,255,255,1);
            -webkit-transition: all 0.3s ease-out;
            -moz-transition: all 0.3s ease-out;
            -ms-transition: all 0.3s ease-out;
            -o-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
            text-align: center;
        }

       
        

        /* Hover state */

        .wrapper-dropdown .ddl li:hover a {
            color: #3da2fd;
        }

    /* Active state */

    .wrapper-dropdown.active .ddl {
        display: block;
        pointer-events: auto;
    }

/* No CSS3 support */

.no-opacity .wrapper-dropdown .ddl,
.no-pointerevents .wrapper-dropdown .ddl {
    
    display: block;
    opacity: 1; /* If opacity support but no pointer-events support */
    pointer-events: auto; /* If pointer-events support but no pointer-events support */
}

.no-opacity .wrapper-dropdown.active .ddl,
.no-pointerevents .wrapper-dropdown.active .ddl {
    display: block;
}


.wrapper-dropdown:focus .ddl {
    opacity: 1;
    pointer-events: auto;
}
