.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;
}

.temp-message-popup {
    background-color: rgba(0, 0, 0, .6);
    height: 100vh;
    left: 0;
    opacity: 1;
    position: fixed;
    top: 0;
    transition: all .8s linear;
    width: 100%;
}

.temp-message-popup.show {
    opacity: 1;
}

.temp-message-popup.hide {
    opacity: 0;
}

.temp-message-container {
    background-color: white;
    border-radius: .5rem;
    box-shadow: 0 0 12px rgba(255, 44, 44, 0.8);
    padding: 3rem 2rem;
    margin: 10% auto 0;
    max-width: 520px;
    width: 90%;
}

.temp-message-popup .temp-title:after {
    animation-direction: initial;
    animation-duration: 5s;
    animation-iteration-count: 1;
    animation-name: width-out;
    border-top: 3px solid #ff0000;
    content: "";
    display: block;
    margin: 1rem auto -2px;
    width: 0;
}

.temp-message-popup .temp-title {
    border-bottom: 1px solid red;
    font-size: 18pt;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
}

.temp-message-popup .temp-content {
    font-size: 13pt;
    text-align: center;
}

@keyframes width-out {

    from {
        width: 100%;
    }

    to {
        width: 1%;
    }
}


/* 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;
}
