#newCookieModal .modal-content {
  border-radius: 16px;
  animation: zoomIn .4s ease;
}

#newCookieModal .modal-body {
  padding: 30px;
}

.modal-close-btn {
  position: absolute;
  top: 0px;
  right: 4px;
  background: rgb(126 126 127);
  color: #101010;
  border: none;
  width: 40px;
  border-radius: 10px;
  font-size: 20px;
  line-height: 28px;
  cursor: pointer;
  z-index: 10;
  padding: 5px;
  margin: -14px;
  place-content: center;
  text-align: center;
  border: 1px solid #cbcbcb;
  box-shadow: rgb(58 134 197 / 65%) 0px 7px 29px 0px;
  height: 38px;
}


.modal-close-btn:hover {
  background: #000;
}


@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal.fade .modal-dialog {
  max-width: 850px !important;
  margin: 6.75rem auto 0 !important;
}