
/***************** CONSENT POPUP STYLES ***********************/

#consent_overlay 
{
    display:none;
    position: fixed;
    top: 0;
    bottom: 0;
    background: #EEE;
    width: 100%;
    height: 100%;
    z-index: 1000;

    opacity: 0.6;
}

.consent_popup 
{
    display:none;
    position: fixed;
    top: 45%;
    left: 45%;
    background-color:#EAEAEA;
    background-color:#F7F7F7;

    width: 550px;
    height: 550px;
    margin-left: -200px; /*Half the value of width to center div*/
    margin-top: -250px; /*Half the value of height to center div*/
    z-index: 2000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.45);
    border-radius:6px;

    font-family: Helvetica, Arial;
    font-size:15px;
    font-weight:bold;
    
    opacity:0.1;
    
}
.consent_popup_show
{
    opacity:1;
    transition: opacity 1s;
}


#consentContent
{
    position:relative;
    width:88%;
    margin:auto;
    margin-top:30px;
    font-weight:normal;
}

#consentLogo
{
    margin-bottom:40px;
    height:40px;
}
.consentTitle
{
    font-size:18px;
    font-weight:bold;
    margin-bottom:30px;
}

.consentInfo
{
    margin-top:20px;
    color:#333;
    position:relative;
    margin-bottom:40px;
}

.consentButtons
{
    width:100%;
    margin:auto;
}
.consentButton
{
    display:block;
    height:20px;
    padding:2%;
    padding-top:10px;
    padding-bottom:10px;
    border-radius:3px;
    font-family: Helvetica, Arial;
    font-size:15px;
    font-weight:bold;
    color:white;
    text-align:center;
    margin-right:2%;
    float:left;
    cursor:pointer;
}
#consentSettingsDiv
{
    display:none;
    position:relative;
}
#consentInfoDiv
{
    position:relative;
}

#backToConsentInfo
{
    display:block;
    float:left;
    width:20px;
    cursor:pointer;
}

.cookieTypeDiv
{
    margin-bottom:12px;
}

.cookieTypeInfo
{
    float:left;
    width:82%;
    margin-left:12px;
}

/*** toggle button */

.switch 
{
  position: relative;
  display: inline-block;
  float:left;
  width: 48px;
  height: 26px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #9DC209;
}

input:focus + .slider {
  box-shadow: 0 0 1px #9DC209;
}

input:checked + .slider:before {
  -webkit-transform: translateX(22px);
  -ms-transform: translateX(22px);
  transform: translateX(22px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 26px;
}

.slider.round:before {
  border-radius: 50%;
}