.cookie-consent-modal .modal-dialog {
  max-width: 628px;
}

.cookie-consent-modal .modal-content {
  position: relative;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding-top: 50px;
  background: white;
}

.cookie-consent-modal .cc-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #6433f8;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  opacity: 1;
}

.cookie-consent-modal .cc-body {
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #2b2b2b;
  letter-spacing: 0.14px;
}

.cookie-consent-modal .cc-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
  margin: 0;
}

.cookie-consent-modal .cc-text {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}

.cookie-consent-modal .cc-link {
  color: #6433f8;
  text-decoration: underline;
}

.cookie-consent-modal .cc-link:hover {
  color: #6433f8;
}

.cookie-consent-modal .cc-note {
  font-size: 11px;
  font-style: italic;
  line-height: 16px;
  margin: 0;
  color: inherit;
}

.cookie-consent-modal .cc-footer {
  background: #f8f8f8;
  padding: 20px 20px 20px 0;
  display: flex;
  justify-content: flex-end;
}

.cookie-consent-modal .cc-actions {
  display: flex;
  gap: 8px;
}

.cookie-consent-modal .cc-btn {
  height: 40px;
  padding: 8px 20px;
  border-radius: 32px;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.14px;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-consent-modal .cc-btn-reject {
  border: 1px solid #6433f8;
  background: white;
  color: #6433f8;
}

.cookie-consent-modal .cc-btn-reject:hover {
  background: rgba(100, 51, 248, 0.06);
}

.cookie-consent-modal .cc-btn-accept {
  border: none;
  background: #6433f8;
  color: white;
}

.cookie-consent-modal .cc-btn-accept:hover {
  background: #5829e0;
}
