/* CONTENT STYLE */
.content {
  max-width: 1200px;
  margin: 0 auto;
}

/* ROUND SWITCH CHECKBOX */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.checkboxSlider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.checkboxSlider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .checkboxSlider {
  background-color: #b88e3c;
}

input:focus + .checkboxSlider {
  box-shadow: 0 0 1px #b88e3c;
}

input:checked + .checkboxSlider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* round sliders */
.checkboxSlider.round {
  border-radius: 34px;
}

.checkboxSlider.round:before {
  border-radius: 50%;
}

/* COOKIE PAGE */
.cookieClose {
  text-decoration: none;
  float: right;
}

.cookieDialog {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1010;
  width: 100%;
  height: 100%;
  display: none;
}

.cookieOverlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1009;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: none;
}

.cookieIn {
  width: 100%;
  height: 100%;
  display: table-cell;
  vertical-align: bottom;
  text-align: center;
}

.cookieBox h2 {
  margin: 10px 40px 15px 0;
  font-size: 1em;
}

p , div, table{
  font-size: 1em;
}

.cookieBox {
  background: #0b0b0b;
  border-radius: 10px;
  margin: 30px;
  padding: 30px;
  margin: 0 10%;
  max-width: 100%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  text-align: left;
  position: relative;
}

.cookieDialog td {
  padding-right: 20px;
}

.cookieOverlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1009;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: none;
}

/* cookie page - buttons */
.cookieNoticeButton.gray {
  color: #000;
  background: #fff;
}

.cookieNoticeButton.gray:hover {
  color: #000;
  background: #f0f0f0;
}

.cookieNoticeButton.green {
  color: #fff;
  background: #b88e3c;
}

.cookieNoticeButton.green:hover {
  background: #b88e3c;
}
/* Default: show cookieBox for larger screens */
.cookieBoxResponsive {
  display: none;
}

/* Responsive adjustments for mobile */
@media only screen and (max-width: 600px) {

  p, div ,table{
    font-size: 1em;
  }

  .cookieDialog {
    top:2%;
  }
  

.cookieBoxResponsive {
    display: block;
}

.cookieBoxResponsive table {
  margin:0 auto;
}

.cookieBoxResponsive table tbody {
  margin:0 5%;
}

.cookieBox {
    display: none;
}

.content {
    max-width: 100%;
    padding: 0 10px;
}

.cookieIn {
    vertical-align: top;
}

.cookieBoxResponsive {
    background: #0b0b0b;
    border-radius: 10px;
    margin: 20px;
    padding: 20px;
    margin: 0 5%;
    max-height: 70vh; /* Set a smaller max-height */
    overflow-y: auto; /* Enable scrolling if content overflows */
}

.cookieBoxResponsive h2 {
    margin: 10px 20px 15px 0;
    font-size: 1em;
}

.cookieBoxResponsive p, .cookieBoxResponsive b, .cookieBoxResponsive a {
    font-size: 1em;
}

.switch {
    width: 50px;
    height: 28px;
}

.checkboxSlider:before {
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
}

input:checked + .checkboxSlider:before {
    -webkit-transform: translateX(22px);
    -ms-transform: translateX(22px);
    transform: translateX(22px);
}

.cookieNoticeButton {
    font-size: 14px;
    padding: 10px 15px;
}

}
