.cookiealert {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0 !important;
  z-index: 9999;
  opacity: 0;
  border-radius: 0;
  background: #29282d;
  transform: translateY(100%);
  transition: all 500ms ease-out;
  color: #E5E5E5;
  font-family: 'Roboto Flex';
}

.cookiealert.show {
  opacity: 1;
  transform: translateY(0%);
  transition: 1000ms;
}

.cookiealert a {
  text-decoration: underline;
  color: #3f3fcd;
}

.cookiealert .acceptcookies {
  margin-left: 10px;
  border: 1px solid #3f3fcd;
}

@media (max-width: 991.98px) {
  .cookiealert .acceptcookies {
    margin-left: 0px;
  }
}

.cookiealert .rejectcookies {
  margin-left: 10px;
  background: transparent;
  border: 1px solid #3F3FCD;
  color: #3F3FCD;
}

@media (min-width: 992px) {
  .CookiesContainer {
    margin: 0px auto;
    max-width: 1300px;
    display: flex;
    flex-direction: row;
  }
}

@media (max-width: 991.98px) {
  .CookiesContainer {
    margin: 0px auto;
    max-width: 1300px;
    display: flex;
    flex-direction: column;
  }
}

.btnCookiesContainer {
  display: flex;
  flex-direction: row;
}

@media (max-width: 991.98px) {
  .btnCookiesContainer {
    display: flex;
    flex-direction: row;
    margin-top: 15px;
  }
}

