/*--------------------------
  COOKIE DISCLAIMER
--------------------------*/

#cookieDisclaimer{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5px;
  background: #3f88d2;
  background: -moz-linear-gradient(top,  #3f88d2 0%, #2a68a7 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3f88d2), color-stop(100%,#2a68a7));
  background: -webkit-linear-gradient(top,  #3f88d2 0%,#2a68a7 100%);
  background: -o-linear-gradient(top,  #3f88d2 0%,#2a68a7 100%);
  background: -ms-linear-gradient(top,  #3f88d2 0%,#2a68a7 100%);
  background: linear-gradient(to bottom,  #3f88d2 0%,#2a68a7 100%);
  border-top: 1px solid #1D4875;
  color: white;
  text-align: center;
  min-height: 80px;
  font-size: 16px;
}

.cookieDisclaimerLink,
#cookieDisclaimer a{
  color: white!important;
  text-decoration-line: underline!important;
  cursor: pointer;
}
#cookieDisclaimer .cookieDisclaimerButton {
  position: relative;
  display: inline-block;
  padding: .8em;
  border: 1px solid #7aa7c7;
  border-radius: 3px;
  outline: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.15384615;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  margin: 4px;
  color: #39739d;
  background-color: #e1ecf4;
  box-shadow: inset 0 1px 0 0 rgb(255 255 255 / 70%);
}

#cookieDisclaimer .cookieDisclaimerButton:hover,
#cookieDisclaimer .cookieDisclaimerButton:focus,
#cookieDisclaimer .cookieDisclaimerButton:active {
  color: #2c5777;
  background-color: #b3d3ea;
}

.cookieDisclaimerModal {
  width: 100%;
  height: 100%;
}

.cookieDisclaimerModal h1 {
  font-size: 24px;
  margin-bottom: 30px;
}

.cookieDisclaimerModal ul {
  list-style-type: disc;
  margin: 1em 0;
  padding: 0 0 0 40px;
}
