.dropbtn {
    font-family: "Helvetica", "IcoFont", Arial, sans-serif;
    font-weight: 500;
    float: right;
    height: 60px;
    width: 120px;
    background-color: #e14504;
    color: white;
    text-align: center;
    font-size: 14px;
    border: none;
    cursor: pointer;
  }
.langselector {
    float: right;
    position: relative;
    display: inline-block;
}
.langselector-content {
    display: none;
    position: absolute;
    background-color: #e14504;
    width: 120px;
    font-size: 14px;
    z-index: 0;
    box-shadow: 0px 6px 12px 0px rgba(0,0,0,0.5);
}
.langselector-content a {
    color: white;
    font-family: "Helvetica", "IcoFont", Arial, sans-serif;
    font-weight: 500;
    border: none;
    height: 60px;
    text-align: center;
    padding: 20px;
    text-decoration: none;
    display: block;
    background-color: #e14504;
}

.langselector-content a:hover {
    color: white;
    background-color: rgb(255,255,255,0.3);
}

.langselector:hover .langselector-content {
    display: block;
}
