

.GDPRConsentContainerOverlay {
  position: fixed;
  width: 100%;
  z-index: 99999;
  background: rgba(0,0,0,.7);
  height: 100vh;
  display: none;
}

.GDPRConsentContainerOverlay.show {
  display: block;
}

.GDPRConsentContainer {
  background: black;
  width: 100%;
  padding: 16px 0 16px 0;
}

.GDPRMessageContainer {
  width: 80%;
  max-width: 1950px;
  margin: 0 auto;
  display: flex;
}

@media (max-width: 950px) {
  .GDPRMessageContainer {
    flex-direction: column;
  }
}

.GDPRAcceptButtonContainer {
  justify-content: center;
  display: flex;
  flex-direction: column;
}

@media (max-width: 950px) {
  .GDPRAcceptButtonContainer {
    flex-direction: row;
  }
}

.GDPRAcceptButton {
  display: block;
  text-decoration: none;
  line-height: 61px;
  height: 63px;
  color: #fff;
  background-color: #09517a;
  padding: 0 21px;
  box-sizing: border-box;
  text-align: center;
  border-radius: 0;
  cursor: pointer;
  border-color: #fff;
  border-width: 1px;
  border-style: solid;
  text-transform: uppercase;
  margin: 21px auto;
  width: 15%;
  min-width: 11em;
  font-size: 28px;
  font-family: 'Roboto',sans-serif;
  font-weight: 700;
}

.GDPRMessage {
  width: 88%;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.1em;
  line-height: 1.5;
}

@media (max-width: 950px) {
  .GDPRMessage {
    text-align: center;
    width: 100%;
    padding-bottom: 10px;
    padding-right: 0;
  }
}

.GDPRMessageLink {
  color: #b32b15;
}
