#cookieConsentBar {
  position: fixed;
  z-index: 1000;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #f4f4f4;
  text-align: center;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

#cookieOverlay{
  z-index: 21;
}

.cookie-consent-banner {
  width: 100%;
  display: flex;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  padding: 1rem;
  box-sizing: border-box;
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cookie-consent-banner p {
  margin-bottom: 1rem;
  width: 100%;
  font-size: 16px;
  line-height: 21px;
  text-align: left;
  padding: 0 10px;
}

.cookie-buttons {
  display: flex;
  flex-flow: column;
  width: 100%;
}

.cookie-button {
  margin-bottom: 10px;
}

.cookie-button {
  width: 100%;
}

`.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked+.slider {
  background-color: #2196F3;
}

input:checked+.slider:before {
  transform: translateX(26px);
}

.manageOption {
  display: flex;
  justify-content: space-between;
  margin: 10px 10px;
}

.manageOption-content {
  flex: 3;
  text-align: left;
}

.manageOption-switch {
  display: flex;
  justify-content: right;
  padding: 20px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  top: 20%;
}

.switch input:checked:disabled+.slider {
  background-color: #2196F3;
  opacity: 0.5;
  cursor: not-allowed;
}

.switch input {
  opacity: 1;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}

input:checked+.slider {
  background-color: #2196F3;
}

input:focus+.slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.cookieTableContainer {
  margin-top: 10px;
}

ul.cookieTable {
  list-style-type: none;
  padding: 5px;
  background: #e6e6e6;
  border-bottom: #666666 1px solid;
  margin: 0 5px;
}


ul.cookieTable li:last-child {
  border-bottom: none;
}


ul.cookieTable li div {
  flex: 1;
  text-align: left;
  font-weight: bold;
}

ul.cookieTable li div+div {
  text-align: right;
  font-weight: normal;
}

#manageOptions {
  font-family: Arial, sans-serif;
  color: #333;
  background-color: #f4f4f4;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: 310px;
  overflow: scroll;
}

.manageOption-content {
  padding: 20px 10px;
  background: #e6e6e6;
  border-radius: 8px;
}


.manageOption-content p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.cookieTableContainer {
  background: #e9ecef;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
}

.cookieTable li {
  list-style: none;
  padding: 5px;
}

.cookieTable li strong {
  min-width: 100px;
  display: inline-block;
  color: #000;
}

button:hover {
  background-color: #0056b3;
}

.showMoreCookie {
  padding: 5px !important;
}

.titleSwitchCon {
  display: flex;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .cookie-consent-banner {
    flex-direction: row;
  }

  .cookie-buttons {
    display: flex;
    flex-wrap: nowrap;
    flex-flow: row;
    justify-content: right;
    gap: 0.5rem;
    margin: 0 30px;
  }

  .cookie-button {
    margin-bottom: 0;
    width: 200px;
  }

  .manageOption-content {
    padding: 15px 20px;
  }

  .manageOption-switch {
    padding: 10px;
  }

  #manageOptions {
    max-height: 450px;
    overflow: scroll;
  }
}