#tnc-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255 255 255 / 90%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#tnc-popup-content {
  background: #fff;
  padding: 40px;
  border-radius: 5px;
  text-align: center;
  width: 50%;
  max-height: 90%;
  overflow: scroll;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15),
    /* Soft, larger shadow */ 0 1px 3px rgba(0, 0, 0, 0.1); /* Subtle, smaller shadow */
}

@media (max-width: 600px) {
  #tnc-popup-content {
    width: 90%; /* Adjust the width for smaller screens */
  }
}

@media (min-width: 1200px) {
  #tnc-popup-content {
    width: 40%; /* Make the width slightly smaller for very large screens */
  }
}

#tnc-popup-content button {
  margin-top: 20px;
  padding: 5px 10px;
  font-size: 1.3rem;
  border: solid 0px;
  border-radius: 10px;
  font-family: "BrandonText";
  transition: transform 0.3s ease-in-out;
}

#tnc-popup-content button:hover {
  transform: scale(1.1); /* Increase size to 110% on hover */
}

#tnc-agree {
  color: green;
  background-color: #0080001c;
}

#tnc-deny {
  background-color: #bc15151f;
  color: #bc1515;
}

.tnc-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cookie-header {
  font-size: 23px;
  background-color: #eefbf4;
  padding: 4px;
  border-radius: 9px;
}

.cookie-text {
  text-align: left;
  font-size: 1.1rem;
}

.do-you-agree {
  text-align: center;
  font-family: "BrandonText" !important;
  color: green;
}

.accordion-header {
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-body {
  padding: 10px;
  background-color: #eefbf4;
  color: #f28969;
  border-radius: 5px;
}

.accordion-icon {
  font-size: 1.5rem;
  cursor: pointer;
}

.accordion-arrow {
  transition: transform 0.3s ease;
}

.rotated {
  transform: rotate(180deg);
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}

/* Container for checkbox */
.checkbox-container {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
  margin-top: 15px;
}

/* Hide the default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Custom checkbox */
.checkmark {
  position: absolute;
  top: 6px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 4px;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
  background-color: #4ac494;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
  left: 7.5px;
  top: 4px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

/* Style the text and position it next to the checkbox */
.checkbox-container .cookie-text {
  margin-left: 0px;
  margin-top: 0px;
}

#tnc-popup-content > div:nth-child(4) > div.accordion-body > p > a {
  color: #3b3b61;
  font-size: 18px;
  font-family: "BrandonText";
}
