/* BEGIN POPUP */
.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    z-index: 9999;
    /*visibility: hidden;
    opacity: 0;*/
}
/*
.overlay:target {
	visibility: visible;
	opacity: 1;
}
*/
.popup {
    margin: auto;
    padding: 10px;
    background: #fff;
    border-radius: 5px;
    width: 300px;
    position: relative;
    /*transition: all 2s ease-in-out;*/
    top:40%;
    left:0;
}

.popup h2 {
    margin-top: 0;
    color: #333;
    font-family: Bold;
    font-size: 14px;
}
.popup .close {
    position: absolute;
    top: 10px;
    right: 10px;
    transition: all 50ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}
.popup .close:hover {
    color: #CE0000;
}
.popup .content {
    max-height: 30%;
    overflow: auto;
}


.chooseLang {}
.chooseLang a.chooseLangItem {
    float: left;
    width: 100px;
    height: auto;
    margin: 0 10px;
    text-decoration: none;
    color: #000;
    padding: 10px 10px;
    border-radius:10px;
    font-family: Bold;
}
.chooseLang a.chooseLangItem span {
    text-align: center;
    width: 100%;
    display: block;
    padding: 0 0 5px 0
}
.chooseLang a.chooseLangItem:hover{  background-color: #CE0000; color:#fff;}
/* END POPUP */