#cookie-info-wrapper {
  display: none;
  position: fixed;
  min-height: 100px;
  background-color: #fff;
  z-index: 10000000000;
  box-sizing: border-box;
  font-size: 11px;
}
#cookie-info-wrapper #cookie-info .cookie-heading {
  font-family: "Arima Madurai", serif;
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 8px;
  display: inline-block;
}
#cookie-info-wrapper #cookie-info p {
  line-height: 14px;
}
#cookie-info-wrapper #cookie-info .full {
  height: 0px;
  overflow-y: hidden;
  transition: height 0.7s ease-out;
}
#cookie-info-wrapper #cookie-info .full label {
  margin: 8px 0 4px;
  display: flex;
  align-items: center;
  font-weight: bold;
}
#cookie-info-wrapper #cookie-info .full label .cookieswitch {
  margin-right: 8px;
  display: inline-block;
  border: 1px solid #7ec676;
  background-color: #7ec676;
  width: 30px;
  height: 14px;
  border-radius: 7px;
  cursor: pointer;
  position: relative;
  transition: all 0.4s ease;
}
#cookie-info-wrapper #cookie-info .full label .cookieswitch::after {
  position: absolute;
  top: 0px;
  right: 0px;
  content: "";
  display: block;
  height: 10px;
  width: 10px;
  margin: 2px;
  background-color: #fff;
  border-radius: 5px;
  transition: all 0.4s ease;
}
#cookie-info-wrapper #cookie-info .full label .cookieswitch.disabled {
  cursor: default;
  border: 1px solid #b8dfb3;
  background-color: #b8dfb3;
}
#cookie-info-wrapper #cookie-info .full label .cookieswitch.off {
  background-color: #fff;
}
#cookie-info-wrapper #cookie-info .full label .cookieswitch.off::after {
  background-color: #7ec676;
  right: 15px;
}
#cookie-info-wrapper #cookie-info .full .cookieDescription {
  display: inline-block;
  padding-left: 40px;
}
#cookie-info-wrapper #cookie-info #more {
  color: #4e9746;
  transition: height 0.4s ease;
  display: block;
  cursor: pointer;
  text-decoration: underline;
}

@media (max-width: 1159px) {
  #cookie-info-wrapper {
    bottom: 0;
    width: calc(100vw - (100vw - 100%));
    box-shadow: 0 -3px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  #cookie-info-wrapper .button-wrapper {
    text-align: right;
  }
  #cookie-info-wrapper #more {
    text-align: left;
  }
  #cookie-info-wrapper #decline {
    padding-bottom: 12px;
  }
}
@media (min-width: 1160px) {
  #cookie-info-wrapper {
    border-radius: 25px;
    bottom: 20px;
    right: 20px;
    width: calc((100vw - (100vw - 100%)) / 3);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    padding: 30px;
  }
  #cookie-info-wrapper .button-wrapper {
    text-align: left;
  }
  #cookie-info-wrapper #more {
    text-align: right;
  }
  #cookie-info-wrapper #decline {
    padding-bottom: 8px;
  }
}
#cookie-info-wrapper.show {
  display: block;
}

#cookie-info-wrapper.extended .full {
  height: auto !important;
  padding-top: 8px;
  padding-bottom: 8px;
}
#cookie-info-wrapper.extended #more {
  height: 0;
  overflow-y: hidden;
}

#cookie-buttons {
  padding-top: 4px;
  display: flex;
  flex-wrap: wrap;
}
#cookie-buttons .button-wrapper {
  width: -moz-fit-content;
  width: fit-content;
}
#cookie-buttons #accept {
  font-family: "Arima Madurai", serif;
  font-size: 14px;
  letter-spacing: 1px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  background-color: #7ec676;
  color: #fff;
  display: inline-block;
  padding: 7px 24px 4px;
  text-align: center;
  border: 2px solid #7fc678;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  margin-right: 10px;
  margin-bottom: 10px;
}
#cookie-buttons #onlyRequired {
  font-family: "Arima Madurai", serif;
  font-size: 14px;
  letter-spacing: 1px;
  background-color: white;
  color: #7fc678;
  display: inline-block;
  padding: 8px 14px 5px;
  text-align: center;
  border: 1px solid #7fc678;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
}
#cookie-buttons #decline {
  line-height: 14px;
}/*# sourceMappingURL=style.css.map */