:root {
  --background: white;
  --box-shadow: #00000029;
  --underline: #707070;
  --underline-2: #414141;
  --underline-3: #EBEBEB;
  --border: #C7C7C7;
  --grey: #6B6981;
  --grey-bg: #E2E2E2;
  --grey-bg-2: #EDEDED;
  --grey-bg-3: #EFEFEF;
  --grey-bg-4: #f8f8f8;
  --grey-bg-5: #F6F6F6;
  --green: #87B229;
  --red: #E21313;
  --orange: #F18C00;
  --dark-blue: #0F1531;
  --text-color-main: #2D3643;
}

/* Tenant 1 (KM) theme */
.tenant1 {
  --brandPrimary: #e6007e;
  --brandPrimaryHover: #c00068;
  --brandSecondary: #f6f6f6;
  --brandSecondaryHover: #e5e5e5;
}

.cookie-consent-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
}

.cookie-consent-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.cookie-consent-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
}
.cookie-consent-container .cookie-consent-body {
  position: relative;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px var(--box-shadow);
  max-width: 800px;
  width: 100%;
  padding: 28px 32px;
}
.cookie-consent-container .cookie-consent-body .cookie-consent-texts {
  border-right: 1px solid var(--border);
}
.cookie-consent-container .cookie-consent-body .cookie-consent-texts .cookie-consent-title {
  font-weight: 600;
}
.cookie-consent-container .cookie-consent-body .cookie-consent-texts .cookie-consent-description {
  margin: 0;
  font-size: 14px;
  color: var(--grey);
}
.cookie-consent-container .cookie-consent-body .cookie-consent-buttons {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

@media (max-width: 768px) {
  .cookie-consent-container {
    align-items: center;
    padding: 0;
  }
  .cookie-consent-container .cookie-consent-body {
    width: 80%;
    padding: 24px 12px;
  }
  .cookie-consent-container .cookie-consent-body .cookie-consent-texts {
    border-right: none;
    margin-bottom: 20px;
  }
  .cookie-consent-container .cookie-consent-body .cookie-consent-texts .cookie-consent-title {
    font-size: 18px;
  }
  .cookie-consent-container .cookie-consent-body .cookie-consent-button-group {
    flex-direction: column;
    gap: 10px;
  }
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Black.ttf") format("truetype");
  font-weight: 900;
}
html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px !important;
  font-family: "Poppins", sans-serif !important;
  color: var(--text-color-main) !important;
}

main {
  max-width: 100%;
  overflow: hidden;
}

h1 {
  font-size: 45px;
  letter-spacing: -2.25px;
  font-weight: bold;
}

h2 {
  font-size: 30px;
  letter-spacing: -1.5px;
}

h3 {
  font-size: 25px;
  letter-spacing: -1.25px;
}

h4 {
  font-size: 20px;
  letter-spacing: -1px;
}

.small-text {
  font-size: 14px;
}

a {
  cursor: pointer;
  color: var(--text-color-main);
}
a:hover {
  color: var(--text-color-main);
  text-decoration: underline;
}

input[type=radio] {
  accent-color: var(--brandPrimary);
}

.btn-primary, .btn-outline-primary {
  height: 50px;
  font-weight: 600;
  font-size: 18px;
  border-radius: 5px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1400px !important;
  }
}

/*# sourceMappingURL=common.css.map */
