[data-omcookie-panel-show] {
  cursor: pointer;
}

.cookie-manage__button {
  display: inline-block;
  position: fixed;
  right: 9rem;
  bottom: 1.3rem;
  z-index: 1040;
  background: #666;
  color: #fff;
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 1rem;
}
@media (max-width: 1024px) {
  .cookie-manage__button {
    right: 10rem;
    bottom: 3.7rem;
  }
}

.om-cookie-panel {
  display: inline-flex;
  padding: 2.5rem;
  padding-bottom: 2rem;
  z-index: 9999;
  background: black;
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  opacity: 0;
  box-sizing: border-box;
  border-top: 1px solid #666;
  font-size: 16px;
  transform: translateY(100%) translateX(0);
  transition: transform 0.5s ease, opacity 0.3s;
  text-align: center;
}
.om-cookie-panel * {
  color: white;
}
@media (min-width: 1024px) {
  .om-cookie-panel {
    width: 96vw;
    left: 50%;
    transform: translateY(100%) translateX(-50%);
    border-left: 1px solid #666;
    border-right: 1px solid #666;
  }
}
@media (max-width: 1023px) {
  .om-cookie-panel {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
}
.om-cookie-panel.active {
  transform: translateY(0) translateX(0);
  opacity: 1;
}
@media (min-width: 1024px) {
  .om-cookie-panel.active {
    transform: translateY(0) translateX(-50%);
  }
}
.om-cookie-panel h3 {
  margin: 0;
  padding: 0 0 1em;
  text-align: left;
}
.om-cookie-panel p {
  margin: 0;
  padding: 0.5em 0;
}
.om-cookie-panel .cookie-panel__primary {
  width: 50%;
  text-align: left;
  padding-right: 1rem;
}
@media (max-width: 1023px) {
  .om-cookie-panel .cookie-panel__primary {
    width: 100%;
  }
}
.om-cookie-panel .cookie-panel__secondary {
  width: 50%;
  padding-left: 1rem;
}
@media (max-width: 1023px) {
  .om-cookie-panel .cookie-panel__secondary {
    width: 100%;
  }
}
.om-cookie-panel .cookie-panel__selection form {
  display: flex;
  flex-direction: column;
}
.om-cookie-panel .cookie-panel__checkbox {
  display: none;
}
.om-cookie-panel .cookie-panel__checkbox + label {
  cursor: pointer;
  line-height: 1.1;
  font-weight: 400;
  display: block;
  margin-bottom: 0;
}
.om-cookie-panel .cookie-panel__checkbox + label::before {
  width: 15px;
  height: 15px;
  border-radius: 5px;
  border: 2px solid #e5231b;
  background-color: #fff;
  display: block;
  content: "";
  float: left;
  margin-right: 5px;
}
.om-cookie-panel .cookie-panel__checkbox:checked + label::before {
  box-shadow: inset 0 0 0 3px #fff;
  background-color: #e5231b;
}
.om-cookie-panel .cookie-panel__checkbox--state-inactiv + label::before {
  border-color: #666;
}
.om-cookie-panel .cookie-panel__checkbox--state-inactiv:checked + label::before {
  background-color: #666;
}
.om-cookie-panel .cookie-panel__checkbox-wrap {
  display: inline-block;
  line-height: 1.1;
}
.om-cookie-panel .cookie-panel__checkbox-wrap .label-description {
  font-size: 0.9rem;
  font-weight: 300;
  margin-left: 1.5rem;
}
.om-cookie-panel .cookie-panel__checkbox-wrap + .cookie-panel__checkbox-wrap {
  margin-left: 0px;
}
.om-cookie-panel .cookie-panel__description {
  clear: both;
  font-weight: 300;
  text-align: left;
}
@media (max-width: 1023px) {
  .om-cookie-panel .cookie-panel__description {
    font-size: 1.6rem;
  }
}
.om-cookie-panel .cookie-panel__link {
  padding-top: 0.5em;
  font-weight: 300;
  text-align: left;
}
.om-cookie-panel .cookie-panel__link a {
  color: white;
  font-weight: bold;
}
.om-cookie-panel .cookie-panel__button {
  background: #666;
  color: #fff;
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  display: block;
  width: 100%;
  cursor: pointer;
  font-size: 0.8em;
  text-transform: uppercase;
}
.om-cookie-panel .cookie-panel__button + .cookie-panel__button {
  margin-top: 15px;
}
@media (min-width: 1024px) {
  .om-cookie-panel .cookie-panel__button {
    width: auto;
    display: inline-block;
  }
  .om-cookie-panel .cookie-panel__button + .cookie-panel__button {
    margin-top: 0;
  }
}
.om-cookie-panel .cookie-panel__control {
  margin-top: 1em;
  font-size: 1.3rem;
}
.om-cookie-panel .cookie-panel__button--color--green {
  background-color: #e5231b;
}
.om-cookie-panel .cookie-panel__attribution {
  display: none;
}

.om-cookie-info table {
  border: 1px solid black;
  border-collapse: collapse;
}
.om-cookie-info table th,
.om-cookie-info table td {
  padding: 10px 5px;
  border: 1px solid black;
}
.om-cookie-info table p {
  margin-top: 0;
}
.om-cookie-info table p:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}