/*------------------------------------------------------------
  Cookie Message
------------------------------------------------------------*/

.cookie {
  z-index: 999;
  background-color: #212322;
  opacity: 0;
  width: 100%;
  padding: var(--14px) 0;
  -webkit-transition: all 800ms ease;
  -o-transition: all 800ms ease;
  transition: all 800ms ease;
  display: block;
  position: fixed;
  inset: auto 0% 0%;
  overflow: hidden;
  -webkit-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  transform: translate(0, 100%);
}

.cookie.active {
  opacity: 1;
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}

.cookie-wrap {
  position: relative;
}

.cookie-container {
  width: 100%;
  /* max-width: 940px; */
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--40px);
  padding-right: var(--80px);
}

.cookie-content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row;
  flex-flow: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #f7f6f5;
}

.cookie-message {
  max-width: 680px;
}

.cookie-message,
.cookie-message p,
.cookie-message a {
  font-family: "articulat-cf", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  font-size: var(--14px);
  font-weight: 500;
  color: #f7f6f5;
  width: 100%;
  margin-bottom: 0;
  margin-right: var(--40px);
}

.cookie-message a {
  text-decoration: underline;
  margin: 0;
}

.cookie-message a:hover {
  color: #a4bac2;
}

.cookie-btn {
  font-family: "articulat-cf", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  font-size: var(--14px);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #f7f6f5;
  color: #212322;
  text-align: center;
  width: 100%;
  max-width: 220px;
  padding: 12px 10px;
  outline: none;
  border: none;
  cursor: pointer;
  -webkit-transition: background-color 200ms ease;
  -o-transition: background-color 200ms ease;
  transition: background-color 200ms ease;
}

.cookie-btn:hover {
  background-color: #a4bac2;
}

.close-cookie {
  color: #f7f6f5;
  cursor: pointer;
  width: var(--20px);
  margin-right: var(--20px);
  -webkit-transition: color 200ms ease;
  -o-transition: color 200ms ease;
  transition: color 200ms ease;
  position: absolute;
  inset: 50% 0% auto auto;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.close-cookie:hover {
  color: #a4bac2;
}

svg {
  width: 100%;
  height: 100%;
}

svg:not(:root) {
  overflow: hidden;
}

/*------------------------------------------------------------
  max-width: 61.938em = 991px
------------------------------------------------------------*/

@media (max-width: 61.938em) {
  .cookie-container {
    padding-right: var(--40px);
  }

  .close-cookie {
    width: var(--18px);
    margin-right: var(--12px);
  }
}

/*------------------------------------------------------------
  max-width: 47.938em = 767px
------------------------------------------------------------*/

@media (max-width: 47.938em) {
  .cookie-container {
    padding-left: var(--20px);
    padding-right: var(--20px);
  }

  .cookie-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .cookie-message,
  .cookie-message p {
    margin-bottom: var(--10px);
    margin-right: 0;
  }
  .cookie-message p {
    padding-right: var(--30px);
  }

  .cookie-btn {
    max-width: 100%;
  }

  .close-cookie {
    top: var(--20px);
  }
}
