.header_lang_top {
    position: fixed;
    bottom: 0px;
    left: 0px;
    z-index: 99999;
}

.languagepicker {
    background-color: #FFF;
    display: inline-block;
    padding: 0;
    height: 32px;
    overflow: hidden;
    transition: all .3s ease;
    margin: 0 0px 10px 10px;
    vertical-align: top;
    float: left;
    width:210px;
}

.languagepicker a {
    color: #000;
    text-decoration: none;
}

.languagepicker li {
    display: block;
    padding: 0px 20px;
    line-height: 32px;
    border-top: 1px solid #EEE;
}
.languagepicker li.active {
    font-weight: 700;
}

.languagepicker li:hover {
    color: #fe6050;
    background-color: #d4d3db;
}

.languagepicker a:first-child li {
    border: none;
    background: #FFF !important;
}

.languagepicker li img {
    margin-right: 5px;
    vertical-align: middle;
}

.roundborders {
    border-radius: 5px;
}



/* popup captcha */
.pop_ca {
    background-color: rgba(0,0,0,.5);
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}
.pop_ca__content {
    background-color: #fff;
    border-radius: 2em;
    font-family: 'Open Sans', sans-serif;
    margin: 10% auto 0;
    max-width: 480px;
    padding: 2em 5em;
    position: relative;
    text-align: center;
    width: 100%;
}
.pop_ca__close {
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 600;
    padding: 10px 15px;
    position: absolute;
    right: -25px;
    text-transform: uppercase;
    top: -25px;
}
.pop_ca__title {
    color: #000;
    font-size: 14pt;
    margin-bottom: 2em;
}
.pop_ca__form > div:not(:last-child) {
    margin-bottom: 1.5em;
}
.pop_ca__form canvas {
    border: 2px solid #eee;
    border-radius: 1em;
}
.pop_ca__form input,
.pop_ca__form button {
    border: 2px solid #eee;
    border-radius: 1em;
    color: #000;
    height: 50px;
    width: 100%;
}
.pop_ca__form input {
    font-size: 14pt;
    padding: 0.5em 1em;
}
.pop_ca__form button {
    font-weight: 600;
    text-transform: uppercase;
}
.pop_ca__form button.disabled {
    cursor: not-allowed;
}
.pop_ca_hide {
    display: none;
}
