:root {
  --clr-accept-cookie: #458381;
  --clr-accept-cookie-hover: #3a6d6c;
  --clr-accept-cookie-light-hover: #5cd3cf;
  --clr-decline-cookie: #ce2c2c;
  --clr-decline-cookie-border: #a82525;
  --clr-white-255: #fff;
}

.cl-cookie-modal-container {
  width: 1570px;
  padding-inline: 15px;
  margin-inline: auto;
}

.cl-cookie-modal {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, -20%);
  width: 60%;
  background: rgba(255, 255, 255, 0.95);
  z-index: 1000;
}
@media only screen and (min-width: 320px) and (max-width: 600px) {
  .cl-cookie-modal {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    transform: translate(0, 0);
  }
}
@media only screen and (min-width: 601px) and (max-width: 960px) {
  .cl-cookie-modal {
    width: 90%;
  }
}
@media only screen and (min-width: 961px) and (max-width: 1024px) {
  .cl-cookie-modal {
    position: fixed;
    left: 50%;
    bottom: 0;
    width: 80%;
    transform: translate(-50%, -20%);
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1600px) {
  .cl-cookie-modal {
    position: fixed;
    left: 50%;
    bottom: 0;
    width: 70%;
    transform: translate(-50%, -20%);
  }
}

.cl-cookie-modal__container {
  max-width: 960px;
  margin-inline: auto;
}

.cl-cookie-modal__wrapper {
  padding-block: 2em;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 320px) and (max-width: 600px) {
  .cl-cookie-modal__wrapper {
    padding: 1em;
    flex-direction: column;
    gap: 1.5rem;
  }
}
@media only screen and (min-width: 601px) and (max-width: 1024px) {
  .cl-cookie-modal__wrapper {
    flex-direction: column;
    padding: 2em;
    gap: 1.5rem;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1600px) {
  .cl-cookie-modal__wrapper {
    padding: 2em;
    gap: 1.5rem;
  }
}

.cl-cookie-modal__text-container {
  display: flex;
  align-items: center;
  gap: 1em;
}
@media only screen and (min-width: 320px) and (max-width: 600px) {
  .cl-cookie-modal__text-container {
    flex-direction: column;
    gap: 0.7em;
    align-items: center;
  }
}
@media only screen and (min-width: 601px) and (max-width: 1024px) {
  .cl-cookie-modal__text-container {
    align-items: flex-end;
  }
}

.cl-cookie-modal__text {
  margin: 0;
}
@media only screen and (min-width: 320px) and (max-width: 601px) {
  .cl-cookie-modal__text {
    text-align: center;
  }
}

.cl-cookie-modal__btns-container {
  display: flex;
  justify-content: space-between;
  gap: 1em;
}
@media only screen and (min-width: 320px) and (max-width: 600px) {
  .cl-cookie-modal__btns-container {
    width: 100%;
    justify-content: space-between;
  }

  .cl-cookie-modal__btns-container > * {
    flex-basis: 100%;
  }
}

.cl-cookie-modal__btn {
  cursor: pointer;
  border: none;
  padding: 0.5em 1em;
}

.cl-cookie-modal__btn--apply {
  background-color: var(--clr-accept-cookie);
  color: var(--clr-white-255);
  border: thin solid var(--clr-accept-cookie-hover);
}

.cl-cookie-modal__btn--apply:hover {
  background-color: var(--clr-accept-cookie-hover);
}

.cl-cookie-modal__btn--decline {
  background-color: var(--clr-white-255);
  color: var(--clr-decline-cookie);
  border: thin solid var(--clr-decline-cookie-border);
}

.cl-cookie-modal__btn--decline:hover {
  background-color: var(--clr-decline-cookie);
  color: var(--clr-white-255);
}
@media only screen and (min-width: 320px) and (max-width: 600px) {
  .cl-cookie-modal__btn--decline {
    background-color: var(--clr-decline-cookie);
    color: var(--clr-white-255);
    border: thin solid var(--clr-decline-cookie-border);
  }
}

.cl-cookie-modal-shadowbox {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.cl-cookie-modal-animation--ease {
  transition: all 400ms ease;
}

.cl-cookie-modal-round-corner {
  border-radius: 3px;
}
