/**
* @Project: Cookie Consent
* @Author: Robin Danzinger, Martin Farkas
* @Date:   2020-01-29
* @Email:  info@websites-graphix.com
*/
/* cookie consent banner
--------------------------------------------------------------------------------------------------------- */
button {
  cursor: pointer;
}

.cookieconsent__settings-button {
  position: fixed;
  bottom: 0;
  right: 50px;
  transform: translateY(15px);
  background-color: #5b6e30;
  border: 1px solid #5b6e30;
  padding: 5px 10px;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
}
.cookieconsent__settings-button:hover {
  transform: translateY(0);
  cursor: pointer;
}

.cookieconsent__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(33, 33, 33, 0.75);
  overflow: scroll;
  z-index: 99999999999999;
}

.cookieconsent-banner {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: auto;
  padding: 20px;
  background: #C0C0C0;
  overflow: hidden;
  z-index: 999999999999999;
}
@media (min-width: 600px) {
  .cookieconsent-banner .cookieconsent-banner {
    margin: 30px auto;
  }
}
.cookieconsent-banner .cookieconsent-banner__h3 {
  color: #333;
  line-height: 1.1;
  font-size: 1.6rem;
  margin: 0;
  padding: 0 0 15px;
}
.cookieconsent-banner .cookieconsent-banner__p {
  color: #333;
  line-height: 1.6;
  font-size: 1.3rem;
}
.cookieconsent-banner .cookieconsent-banner__p a {
  color: #333;
  line-height: 1.1;
  font-size: 1.3rem;
  text-decoration: underline;
}
.cookieconsent-banner button.cookieconsent-banner__button--settings {
  display: block;
  color: #333;
  text-transform: inherit;
  letter-spacing: 0.05em;
  line-height: 1.1;
  font-size: 1.3rem;
  font-weight: 300;
  text-decoration: underline;
  margin: -30px 0 0;
  padding: 0;
  background: none;
  border: none;
}
.cookieconsent-banner .cookieconsent-banner__button--accept {
  color: #fff;
  line-height: 1.1;
  font-size: 1rem;
  margin: 30px 0 0;
  padding: 5px 40px;
  background-color: #5b6e30;
  border: 1px solid #5b6e30;
}
@media (max-width: 599px) {
  .cookieconsent-banner .cookieconsent-banner__button--accept {
    margin: 15px 0 0;
    width: 100%;
  }
}

.cookieconsent-banner__button--deny {
  color: #fff;
  line-height: 1.1;
  font-size: 1rem;
  margin: 30px 0 0;
  padding: 5px 40px;
  background-color: #fd3f3f;
  border: 1px solid #fd3f3f;
}
@media (max-width: 599px) {
  .cookieconsent-banner__button--deny {
    margin: 30px 0 0;
    width: 100%;
  }
}

@media (min-width: 600px) {
  .cookieconsent-banner__button--deny {
    float: left;
  }

  .cookieconsent-banner__button--accept {
    float: right;
  }
}
.cookieconsent-banner__settings .cookieconsent-banner__settings-label--required {
  color: #9f9f9f;
}
.cookieconsent-banner__settings .cookieconsent-banner__p {
  margin: 5px 0 0 22px;
  padding: 0 0 10px;
}
.cookieconsent-banner__settings .cookieconsent-banner__p a {
  display: block;
  margin: 0 0 30px 0;
}

.cookieconsent-banner input {
  cursor: pointer;
}

.cookieconsent-banner__settings-label {
  line-height: 1.2;
  font-size: 1.1rem;
  font-weight: 400;
}

.cookieconsent-banner__settings-button {
  color: #fff;
  line-height: 1.1;
  font-size: 1rem;
  margin: 30px 0 0;
  padding: 5px 40px;
  background-color: #5b6e30;
  border: 1px solid #5b6e30;
}
@media (max-width: 599px) {
  .cookieconsent-banner__settings-button {
    margin: 15px 0 0;
    width: 100%;
  }
}

.is-centered {
  display: block;
  float: none;
  margin: 30px auto 0;
}

