/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 2022-12-10, 20:20:50
    Author     : Admin
*/

.popup_geoip {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 2001;
    width: 500px;
    padding: 30px;
    text-align: center;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 25px 0 rgb(0 0 0 / 24%);
    box-shadow: 0 0 25px 0 rgb(0 0 0 / 24%);
    display: block;
    margin-top: -100px;
    margin-left: -250px;
}

.popup_geoip > span{
    font-size: 20px !important;
    line-height: 1em;
    padding-bottom: 8px;
    font-weight: 400;
    font-family: 'Roboto Condensed', sans-serif;
    margin-bottom: 15px;
    display: block;
}

.Polcoder_GeoIP_buttons_container{
    display: flex;
    justify-content: space-between;
}

.Polcoder_GeoIP_buttons_container button,
.Polcoder_GeoIP_buttons_container a{
    display: inline-block;
    position: relative;
    background-color: #ffffff;
    color: #717172;
    padding: 2px 8px 0px 8px;
    width: 100%;
    font-size: 11px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    border: 1px solid #717172;
    text-transform: uppercase;
    outline: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    text-align: center;
    line-height: 20px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    border-radius: 30px !important;
    position: relative;
    cursor: pointer;
    width: 45%;
}

#Polcoder_GeoIP_YES{
    background: #dce4bb;
    border: 1px solid #91a16d;
    color: #484848;
}

#Polcoder_GeoIP_YES:hover{
    background: #91a16d;
    border: 1px solid #75866d;
    color: #fff;
}

#Polcoder_GeoIP_NO{

}

#Polcoder_GeoIP_NO:hover{
    background-color: #818181;
    color: #FFFFFF !important;
    width: 45%;
}

.popup_geoip_mask{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: rgb(255 255 255 / 0.9);
    display: none;
}

.remember_container{
    margin-top: 15px;
    margin-bottom: -10px;
    display: flex;
}

.remember_container input{
    width: 15px;
    height: 15px;
    position: relative;
    top: -1px;
}

.remember_container label{
    height: 15px;
    line-height: 15px;
    color: #898989;
}