.ip-cookies {
  font-family: var(--ip-font-family, "Helvetica");
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  font-size: 12px;
  background-color: var(--ip-cookies-background-color, #b3b3b3);
  color: var(--ip-cookies-text-color, #333333);
  z-index: 1000;
  padding-top: 3px;
  padding-bottom: 3px;
  animation: cookies-fadein 2s 1;

  &__wrapper {
    width: 100%;
    max-width: 1390px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 5px auto;
    text-align: center;
  }

  &__col {
    margin-bottom: 5px;

    &:not(:last-child) {
      margin-right: 0;
    }
  }

  svg {
    width: 24px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    fill: currentColor;
  }

  &__link {
    color: var(--ip-cookies-link-color, #333333);
    border-bottom: 1px solid var(--ip-cookies-link-color, #333333);
    transition: 0.3s;

    &:hover {
      opacity: 0.75;
    }
  }

  &__button {
    text-decoration: none;
    letter-spacing: 0.2px;
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    line-height: 1;
    color: var(--ip-cookies-button-color, #666666);
    border: 1px solid var(--ip-cookies-button-color, #666666);
    border-radius: 5px;
    background-color: transparent;
    padding: 0.7em 3.2em;
    transition: 0.3s;

    &:hover {
      border-color: var(--ip-cookies-button-hover-color, #ffffff);
      background-color: var(--ip-cookies-button-hover-color, #ffffff);
    }
  }

  @media screen and (min-width: 767px) {
    font-size: 14px;

    &__wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    &__col {
      margin-bottom: 0;

      &:not(:last-child) {
        margin-right: 30px;
      }
    }
  }
}

@keyframes cookies-fadein {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
