/* GDPR Cookie dialog */

.gdprcookie {
    position: fixed;
    max-width: 35em;
    padding: 2.0rem;
    z-index: 2199 !important;
    min-height: 225px;
    opacity: 0.90;
    filter: alpha(opacity=90);
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.55);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.55);
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.55);
    -webkit-filter: blur(0px);
    filter: blur(0px);
    border-radius: 10px;
    -moz-border-radius: 10px;
    transition: height .1s linear;
    font-family: Open sans,Arial,sans-serif !important;
    font-size: 15px;
    line-height: 1.42857;
}
.gdprcookie h1,
.gdprcookie h2 {
    font-size: 1.2em;
    margin-bottom: .5rem;
    margin-top: .5rem;
}
.gdprcookie h2 {
    font-size: 1.2em;
}

.gdprcookie h4 {
    font-size: 1.0em;
    font-family: Open sans,Arial,sans-serif !important;
}
.gdprcookie a {
    text-decoration: none;
    font-weight: bold;
    color: inherit;
}

/* GDPR Cookie buttons */

.gdprcookie-buttons {
    text-align: center;
    margin-top: 1em;
}
.gdprcookie-buttons button {
    font-family: Open sans,Arial,sans-serif !important;
    font-size: 1em;
    padding: .8rem;
    border: solid .05rem currentColor;
    border-radius: .15rem;
    margin: 0 .5rem;
    background: none;
    cursor: pointer;
    border-radius: 10px !important;
    -moz-border-radius: 10px !important;
}
.gdprcookie-buttons button:disabled {
    color: rgba(255,255,255,.5);
}

.cookieCustomizeButton
{
    border: 0px solid !important;
    background: none !important;
    font-size: 0.8em !important;
}

/* GDPR Cookie types */

.gdprcookie-types ul {
    overflow: hidden;
    padding: 0;
    margin: 0 0 1rem;
}
.gdprcookie-types li {
    display: block;
    list-style: none;
    float: left;
    width: 50%;
    padding: 0;
    margin: 0;
}
.gdprcookie-types input[type=checkbox] {
    margin-right: .25rem;
}

.cookie-center {
    top : 50%;
    left : 50%;
    transform : translate(-50%, -50%);
}

.cookie-bottom-right {
    bottom : 1.5rem;
    right : 1.5rem;
}

.cookie-bottom-left {
    bottom : 1.5rem;
    left : 1.5rem;
}

.cookie-bottom-center {
    bottom : 1.5rem;
    left : 50%;
    transform : translate(-50%, 0%);
}

#cookiewall {
    z-index: 2198 !important;
    position:fixed;
    padding:0;
    margin:0;
    top:0;
    left:0;
    width: 100% !important;
    height: 100% !important;
    -webkit-filter: blur(10px);
    filter: blur(10px);
    background:rgba(0,0,0,0.8);
    webkit-touch-callout: none;
    pointer-events:none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.cookieSelectorDescription {
  padding: 5px;
  font-size: 0.9em !important;
  width: 85% !important;
}

.cookieSelectorDescription h6
{
  margin: 0px !important;
  font-weight: bold;
  font-size: 1.1em !important;
  margin-top: 0px !important;
}

@media only screen and (max-width: 500px) {
    .gdprcookie
    {
        font-size: 1.0rem;
        line-height: 1.0rem;
        width: 90%;
    }
    .cookieSelectorDescription {
      padding: 5px;
      font-size: 0.85em !important;
      width: 85% !important;
    }
    .cookieSelectorDescription h6
    {
      margin: 0px !important;
      font-size: 1.2em !important;
      margin-top: 0px !important;
    }
    .gdprcookie h2 {
        font-size: 1.1em;
        margin-bottom: .5rem;
        margin-top: .5rem;
    }
}


/* switches */
.gdprcookie .switch input {
    display:none;
}
.gdprcookie .switch {

    display:inline-block;
    width:30px;
    height:15px;
    margin:8px;
    /* transform:translateY(50%); */
    position:relative;
}

.gdprcookie .slider {
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    border-radius:30px;
    box-shadow:0 0 0 2px #777, 0 0 4px #777;
    cursor:pointer;
    border:4px solid transparent;
    overflow:hidden;
     transition:.4s;
}
.gdprcookie .slider:before {
    position:absolute;
    content:"";
    width:100%;
    height:100%;
    background:#777;
    border-radius:30px;
    transform:translateX(-15px);
    transition:.4s;
}

.gdprcookie input:checked + .slider:before {
    transform:translateX(15px);
    background:limeGreen;
}
.gdprcookie input:checked + .slider {
    box-shadow:0 0 0 2px limeGreen,0 0 2px limeGreen;
}
