.policy {
}

.cookie-button {
    font-size: 1rem;
    color: #fff;
    background-color: #5b5b5b;
    bottom: 0;
  right: 3em;
  border-top-left-radius: .5em;
  border-top-right-radius: .5em;
    transition: transform 1s ease;
    transform: translateY(1.7em);
    padding: .5em;
    position: fixed;
    overflow: hidden;
    box-sizing: border-box;
    line-height: 1.5em;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
  margin: 0;
    flex-wrap: nowrap;
    border: none;
    cursor: pointer;
    z-index: 9999;
}
.cookie-button:hover {
    text-decoration: underline;
    transform: translateY(0);
}
@media screen and (max-width: 568px) {
    .cookie-button {
        transform: translateY(0);
    }
}
.popup {
    display: none;
    position: fixed;
  right: 1em;
  bottom: 1em;
    z-index: 9999;
}

.cookie-popup {
  overflow: hidden;
  box-sizing: border-box;
  line-height: 1.5em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding: 2em;
  max-width: 24em;
  color: #fff;
  flex-direction: column;
  background-color: #5b5b5b;
}
  .cookie-popup span {
    display: block;
  }
  .cookie-popup .cc-compliance .Actions{
        display: flex;
        justify-content: space-between;
  }

  .cookie-popup a {
    color:  #ff3700;
    text-decoration: underline;
  }
  .cookie-popup a:hover {
    text-decoration: none;
    color: #ff3700;
  }

  .cookie-popup .btt {
    display: inline-block;
    vertical-align: middle;
    font-size: .875rem;
    line-height: 1.375rem;
    cursor: pointer;
    font-weight: 900;
    text-transform: uppercase;
    user-select: none;
    letter-spacing: 1px;
    padding: 10px 18px;
    border: solid 1px transparent;
    flex: 1;
    border-radius: 3px;
    cursor: pointer;
    transform: translate3d(0, 0, 0);
    transition: color 0.2s cubic-bezier(0.5, 0, 0.1, 1),background-color 0.2s cubic-bezier(0.5, 0, 0.1, 1),border-color 0.2s cubic-bezier(0.5, 0, 0.1, 1),transform 0.2s cubic-bezier(0.5, 0, 0.1, 1);
}
.cookie-popup .btt:hover {
    transform: translate3d(0, -.25rem, 0);
    outline: none;
    text-decoration: underline;
}
.cookie-popup .btt--inverse {
    color: #5b5b5b;
    background-color: #fff;
}
.cookie-popup .btt--inverse-dark {
    color: #fff;
    margin-left: .5em;
    background-color: #ff3700;
}
