#cookieConsent {
  display: none;
  text-align: justify;
  color: #252525;
  position: fixed;
  top: auto;
  background: #fff;
  margin: 0 auto;
  z-index: 500;
  pointer-events: auto;
  -webkit-box-shadow: 0 -10px 20px 0 rgba(34, 60, 80, .2);
  -moz-box-shadow: 0 -10px 20px 0 rgba(34, 60, 80, .2);
  box-shadow: 0 -10px 20px 0 rgba(34, 60, 80, .2);
  border-radius: 8px !important;
  bottom: 24px !important;
  left: auto !important;
  max-width: 480px;
  padding: 1px 24px 24px 24px;
  right: 24px !important;
  width: calc(100% - 48px);
}

.cross-iconCookie {
  width: 41px !important;
  height: 41px !important;
  position: relative !important;
  top: -15px !important;
  cursor: pointer !important;
  right: -98%;
}

.cookie_span {
  font-weight: 600;
}

.cookie_p {
  font-size: 14px;
}

.cookie-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}


.accept-all {
  background: #33B0CA;
  color: #FFFF;
  border-radius: 6px;
  border: transparent;
  font-weight: bold;
  font-size: 15px;
  display: block;
  padding: 15px 32px;
  text-align: center;
  transition: .15s !important;
  line-height: normal;
  overflow: visible;
  height: fit-content;
  width: 160px;
}

.cookiebuttoncontainer {
  display: flex;
  gap: 10px;
}

.accept-necessary {
  color: #666;
  font-weight: bold !important;
  padding: 8px 5px;
  text-decoration: underline !important;
  transition: .15s !important;
  background: none;
  border: 0;
  border-radius: 0;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  cursor: pointer;
  width: 200px;
}

.reject-all {
  background: #fff;
  color: #333;
  border-radius: 6px;
  border: 1px solid #333;
  font-weight: bold;
  font-size: 15px;
  display: block;
  padding: 15px 32px;
  text-align: center;
  transition: .15s !important;
  line-height: normal;
  overflow: visible;
  height: fit-content;
  width: 140px;
}

#readMoreBtn {
  background: none;
  border: none;
  color: #007BFF;
  text-decoration: underline;
  cursor: pointer;
  font-size: 1em;
  padding: 0;
}

.accept-all:hover,
.reject-all:hover {
  box-shadow: 0 2px 2px 0 rgba(34, 60, 80, .2);
}

.accept-necessary:hover {
  font-weight: 700;
  color: #252525;
}

@media (max-width: 768px) {
  #cookieConsent {
    padding: 1px 20px 20px 20px;
  }

  .cross-iconCookie {
    width: 41px !important;
    height: 41px !important;
    position: relative !important;
    top: -15px !important;
    cursor: pointer !important;
    right: -98%;
  }
}

@media (max-width: 560px) {
  .cookie-buttons {
    flex-direction: column;
  }

  .cookiebuttoncontainer {
    display: flex;
    gap: 10px;
    flex-direction: column;
  }

  .accept-necessary,
  .accept-all,
  .reject-all {
    width: 190px;
    padding: 5px 12px;
    font-size: 12px;
  }

  .cookie_p {
    font-size: 12px;
  }

  #cookieConsent {
    padding: 1px 20px 20px 20px;
    transform: translateX(-50%);
    left: 50% !important;
  }

  /* .cross-iconCookie {
    top: -55px !important;
    right: 0;
    left: 50%;
    transform: translateX(-50%);
  } */
}