.fmf-cookie-notification-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: var(--background-color-two);
  border-top: 3px solid var(--primary-accent-color);
  overflow-y: auto;
  display: none;
  animation-name: cookie-banner-slide-in;
  animation-duration: 1s;
}

@keyframes cookie-banner-slide-in {
  from {
    transform: translateY( 1500px );
  }
  to {
    transform: translateY( 0px );
  }
}

@keyframes cookie-banner-slide-out {
  from {
    transform: translateY( 0px );
  }
  to {
    transform: translateY( 1000px );
  }
}

.fmf-cookie-notification-content {
  width: calc( 100% - 50px );
  max-width: var(--page-content-width);
  margin: 0 auto;
  padding: 50px 25px;
}

.fmf-cookie-notification-section > h2,
.fmf-cookie-notification-section > p,
.fmf-cookie-notification-policies-box {
  color: var(--color-white);
}

.fmf-cookie-notification-section > h2 {
  margin: 0 0 20px 0;
  font-family: 'Lato', sans-serif;
  font-size: 28px;
}

.fmf-cookie-notification-section > p {

}

.fmf-cookie-notification-button-section {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
}

.fmf-cookie-notification-button-box {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

.fmf-cookie-notification-policies-box {
  display: flex;
  flex-grow: 1;
  gap: 15px;
}

.fmf-cookie-notification-checkbox-section {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.fmf-cookie-notification-checkbox-section {
  margin: 50px 0 30px 0;
}

.fmf-cookie-notification-checkbox-section > .fmf-checkbox-box {
  margin: 0;
}

.fmf-cookie-notification-button {
  width: auto;
  margin: 25px 0 0 0;
}

.spinner-box {
  display: none;
  justify-content: center;
}

@media( max-width:920px ) {
  .fmf-cookie-notification-button-section {
      flex-direction: column;
      align-items: center;
  }
  .fmf-cookie-notification-button-box {
    display: flex;
    gap: 30px;
    flex-grow: 1;
    width: 100%;
  }
  .fmf-cookie-notification-policies-box {
    margin: 40px 0 0 0;
    width: 100%;
  }
}

@media( max-width:800px ) {
  .fmf-cookie-notification-button  {
    flex-grow: 1;
    width: 100%;
    justify-content: center;
  }
  .fmf-cookie-notification-policies-box {
    justify-content: center;
  }
}

@media( max-width:640px ) {
  .fmf-cookie-notification-wrapper {
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    overflow-y: auto;
    border: none;
  }
  .fmf-cookie-notification-button-box {
    flex-direction: column;
    justify-content: center;
    gap: 0px;
  }
  .fmf-cookie-notification-checkbox-section {
    margin: 30px 0 20px 0;
  }
}
