/* GDPR Banner Styles */
.gdpr-wrapper {
  position: fixed;
  bottom: -100%;
  z-index: 9999;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 20px 30px;
  transition: all .3s;
}

/* Bootstrap replacement classes*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-fluid {
  width: 100%;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.gdpr-wrapper .gdpr-content {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  flex-direction: column;
  justify-content: space-around;
  align-content: center;
  align-items: center;
}

/* Two-column layout modifier */
.gdpr-wrapper .gdpr-content.two-cols {
  flex-direction: row;
  align-items: flex-start;
}
.col {
  flex: 1 1 0;
  max-width: 100%;
}
/* Custom GDPR column classes replacing Bootstrap grid */
.gdpr-text-col {
  flex: 2 1 0;
  max-width: 70%;
  margin-right: 30px;
}

.gdpr-text-col-full {
  flex: 1 1 0;
  max-width: 100%;
  margin-right: 0;
}

.gdpr-btn-col {
  flex: 1 1 0;
  max-width: 30%;
  margin-right: 0;
}

.gdpr-btn-col-full {
  flex: 1 1 0;
  max-width: 100%;
  margin-right: 0;
}

.gdpr-content h2 {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
.gdpr-wrapper .gdpr-content,
  .gdpr-wrapper .gdpr-content.two-cols {
    flex-direction: column !important;
    flex-wrap: wrap;
    align-items: center;
  }
  
  .gdpr-text-col,
  .gdpr-btn-col,
  .gdpr-text-col-full,
  .gdpr-btn-col-full {
    max-width: 100%;
    margin-right: 0;
  }
}

.gdpr-initial-text {
  font-size: 18px;
  line-height: 1.4em;
  margin: 0 30px 0 0;
  flex-grow: 1;
}

.gdpr-initial-text p {
  margin-bottom: 1rem;
  line-height: 1.25;
}

.gdpr-container-button {
  text-align: center;
  width: 100%;
  gap: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
}

@media screen and (min-width: 768px) {
  .gdpr-container-button:not(.on-side) {
    top: 10%;
    transform: translateY(20%);
    right: 0;
  }
}

.on-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.btn {
  text-decoration: none;
  font-size: 1.25rem;
  line-height: 1.5;
  padding: .5rem 1.5rem;
  border-radius: 4px;
  width: auto;
}

.on-side .btn {
  /* Make the buttons full width */
  width: 100%;
  flex-grow: 1;
}

.btn-default {
  background-color: #ffff;
  color: #000;
  border: 1px solid #fff;
}

.btn-close {
  background-color: transparent;
  color: #027cb5;
  border: none;
  padding: 0;
  font-size: 1.25rem;
  line-height: 1.5;
  width: auto;
  height: auto;
  cursor: pointer;
  flex-grow: 0;
}

.btn-default:hover {
  background-color: #f0f0f0;
  color: #000;
}

.gdpr-accept svg {
  margin-top: -2px;
  vertical-align: middle;
  width: 24px;
  height: 24px;
}

.gdpr-container-close-button {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 8px 20px 8px 0;
}

.gdpr-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  padding: 0;
  flex-grow: 0;
  cursor: pointer;
}

.gdpr-close svg {
  width: 24px;
  height: 24px;
}

.gdpr-close svg path {
  fill: #027cb5;
}

.gdpr-close:hover svg path {
  fill: #005f7f;
}

.gdpr-close:focus {
  outline: none;
}