.gdpr-cookie-pop, .gdpr-cookie-pop * {
    font-family: Arial, Helvetica, "sans-serif"!important;
    text-transform: unset!important;
}

/* THE POP-UP */
.gdpr-cookie-pop {
    z-index: 999;
    position: fixed;
    right: 30px;
    bottom: 30px;
    max-width: 320px;
    width: calc(100% - 60px);
    background: #1b1b1b;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 5px 8px 10px rgba(0,0,0,0.4);
    font-family: Arial, Helvetica, "sans-serif";
}

.gdpr-cookie-pop h1 {
    font-family: Arial, Helvetica, "sans-serif";
    color: #fff;
    font-weight: 600;
    font-size: 26px;
    margin: 0 0 20px 0;
    line-height: 26px;
    padding: 0;
}

.gdpr-cookie-pop p {
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding: 0;
}

.gdpr-cookie-pop ul {
    margin: 0;
    padding: 0;
}

.gdpr-cookie-pop .gdpr-accept {
    margin: 30px 0 0 0;
}

.gdpr-accept {
    font-size: 0;
}

.gdpr-accept li {
    display: inline-block;
    width: calc(50% - 5px);
    margin-right: 10px;
}

.gdpr-accept li:last-child {
    margin-right: 0;
}

.gdpr-accept li button {
    display: block;
    width: 100%;
    border: none;
    outline: 0;
    font-size: 14px;
    padding: 10px 0;
    border-radius: 25px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease-in;
}

#gdpr-cookie-accept {
    background: #e63737;
    color: #fff;
}

#gdpr-cookie-advanced {
    background: #fff;
    color: #333333;
}

.gdpr-cookie-pop button:hover {
    background: #fff;
    color: #e63737;
    transition: all 0.3s ease-in;
}

.gdpr-cookie-pop a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    padding-bottom: 1px;
    border-bottom: 1px solid #fff;
    transition: all 0.3s ease-in;
}

.gdpr-cookie-pop a:hover {
    opacity: 0.7;
    transition: all 0.3s ease-in;
}

.gdpr-cookie-pop button:disabled {
    opacity: 0.3;
}

.gdpr-cookie-pop h2 {
    font-family: Arial, Helvetica, "sans-serif";
    color: #fff;
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    margin: 30px 0 15px 0;
}

.gdpr-types {
    color: #fff;
    font-size: 0;
    line-height: 15px;
}

.gdpr-controller {
  position: relative;
    width: 100%;
    display: block;
    font-size: 15px;
    margin-bottom: 10px;
}

.gdpr-controller-input {
  display: none;
}

.gdpr-controller-label {
  display: block;
  width: 100%;
  height: 24px;
  text-indent: 60px;
  line-height: 24px;
  outline: 0;
}

.gdpr-controller-label::before,
.gdpr-controller-label::after {
  content: "";
  display: block;
  position: absolute;
  cursor: pointer;
}

.gdpr-controller-label::before {
  width: 48px;
  height: 100%;
  background-color: #dedede;
  border-radius: 9999em;
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}

.gdpr-controller-label::after {
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.45);
  -webkit-transition: left 0.25s ease;
  transition: left 0.25s ease;
}

.gdpr-controller-input:checked + .gdpr-controller-label::before {
  background-color: #38b305;
}

.gdpr-controller-input:checked + .gdpr-controller-label::after {
  left: 24px;
}


/* ======================= -------- 7.0  Media Queries -------- ========================== */
@media (max-width: 550px) {
  .gdpr-cookie-pop {
      right: 20px;
      bottom: 20px;
      width: calc(100% - 40px);
      padding: 20px 15px;
  }

  .gdpr-cookie-pop h1 {
      font-size: 22px;
      line-height: 22px;
      margin: 0 0 15px 0;
  }

  .gdpr-cookie-pop p {
      font-size: 13px;
      line-height: 18px;
  }

  .gdpr-cookie-pop h2 {
      font-size: 18px;
      line-height: 18px;
      margin: 20px 0 10px 0;
  }

  .gdpr-controller {
      font-size: 14px;
      margin-bottom: 5px;
  }

  .gdpr-cookie-pop .gdpr-accept {
      margin: 20px 0 0 0;
  }

  .gdpr-accept li button {
      font-size: 10px;
  }

}