.popup {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;
}
.popup h2 {
  font: 2.125rem/2.4375rem "AvenirLTPro-Heavy", Helvetica, Arial, sans-serif;
  margin-bottom: 1rem;
}
.popup-inner {
  position: relative;
  background-color: #fb0;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 80%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  animation-name: animate;
  animation-duration: 0.9s;
  max-width: 80%;
  max-height: 80%;
  padding: 20px 17px;
  border-radius: 17px;
}
@media screen and (min-width: 768px) {
  .popup-inner {
    width: 45%;
  }
}
.popup-checkbox {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.popup-checkbox label {
  margin-right: 25px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.popup input[type=checkbox] {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}
.popup input[type=checkbox]:checked {
  background-color: yellow !important;
  opacity: 1;
  filter: grayscale(1);
}
.popup .cookies-copy {
  margin-bottom: 2rem;
}
.popup .cookies-btns {
  display: flex;
  justify-content: flex-end;
}
.popup span.link-button {
  margin-right: 20px;
  width: 226px;
  margin-top: 0.5rem;
  display: block;
}
.popup span.link-button a {
  font-size: 1rem;
  line-height: 1em;
  height: auto;
  padding: 0.5em 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 0;
  border-radius: 0;
  max-width: 226px;
}
@media screen and (max-width: 484px) {
  .popup span.link-button a {
    height: 42px;
    margin-top: 15px;
  }
}
.popup span.link-button a.necessary-style {
  background: #fb0;
  color: #00202a;
  border-bottom: 1px solid #00202a !important;
}
.body--ultracarbon .popup span.link-button a.necessary-style {
  background: #f5713e;
  color: #00202a;
  border-bottom: none !important;
}
.popup span.link-button:nth-child(2) {
  margin-right: 0;
}

@keyframes animate {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.overlay.js-overlay.overlay--double {
  display: none;
}

.isDisabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.5;
}

.isDisabled > input {
  cursor: not-allowed;
  color: currentColor;
  display: inline-block;
  /* For IE11/ MS Edge bug */
  pointer-events: none;
  text-decoration: none;
}
/*# sourceMappingURL=popup.css.map */
