#cookie-notification {
  padding: 0;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 2px 10px rgba(49, 60, 96, 0.3215686275);
  display: none;
  z-index: 1000;
}
#cookie-notification .cookie-title-wrapper {
  display: flex;
  width: 100%;
  margin: 0 auto 1.5rem auto;
  background-color: #212a47;
  justify-content: flex-start;
  padding: 0 1.5rem;
  height: 4rem;
}
#cookie-notification .cookie-title-wrapper .cookie-title-inner {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
  height: 4rem;
}
#cookie-notification .cookie-title-wrapper .cookie-title-inner h5 {
  color: #fff;
  font-size: 28px;
  font-size: clamp(1.5rem, 1.2692rem + 0.641vw, 1.75rem);
  text-transform: uppercase;
  font-family: "GothamBold", sans-serif;
  line-height: 4rem;
}
#cookie-notification .cookie-inner-wrapper {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 2rem;
}
#cookie-notification .cookie-inner-wrapper .cookie-text-wrapper {
  display: flex;
  flex-direction: column;
}
#cookie-notification .cookie-inner-wrapper .cookie-text-wrapper p {
  color: #262626;
  font-size: 16px;
  font-size: clamp(1rem, 0.8846rem + 0.3205vw, 1.125rem);
  font-family: "GothamLight", sans-serif;
  line-height: 1.65;
  letter-spacing: 0.1px;
  text-wrap: pretty;
}
#cookie-notification .cookie-inner-wrapper .cookie-button-wrapper {
  display: flex;
}
#cookie-notification .cookie-inner-wrapper .cookie-button-wrapper .container {
  width: 60px;
  height: 60px;
  background-color: #5bb1e3;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
#cookie-notification .cookie-inner-wrapper .cookie-button-wrapper .container:hover {
  box-shadow: 0px 8px 11px 0px rgba(0, 0, 0, 0.1);
  background-color: #509cc9 !important;
}
#cookie-notification .cookie-inner-wrapper .cookie-button-wrapper .container .text {
  color: #fff;
  font-family: "GothamBold";
  color: #FFF !important;
  position: absolute;
  font-size: 26px;
  font-size: clamp(1.375rem, 1.1442rem + 0.641vw, 1.625rem);
  transition: opacity 0.3s ease;
}
#cookie-notification .cookie-inner-wrapper .cookie-button-wrapper .container .checkmark {
  position: absolute;
  width: 50px;
  height: 50px;
}
#cookie-notification .cookie-inner-wrapper .cookie-button-wrapper .container .checkmark svg {
  width: 100%;
  height: 100%;
  fill: white;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}
#cookie-notification .cookie-inner-wrapper .cookie-button-wrapper .container.checked .text {
  opacity: 0;
}
#cookie-notification .cookie-inner-wrapper .cookie-button-wrapper .container.checked .checkmark svg {
  transform: scale(1);
  opacity: 1;
}

/*# sourceMappingURL=cookie-banner.css.map */
