.hidden {
  display: none !important;
}

/* BANNER */

.cb {
  position: fixed;
  display: flex;
  bottom: 0px;
  z-index: 9999;
  width: 100%;
  background: #FCECD7;
  padding: 45px 190px;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.cb__text {
  margin: 0;
  font-size: 1.302vw;
  line-height: 144%;
  width: 55%;
}

.cb__actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
  width: 45%;
  gap: 0 20px;
  font-family: "Baskervville", "Open Sans", sans-serif;
  font-size: 1.458vw;
  line-height: 100%;
  text-transform: uppercase;
  color: #4C0910;
}

.cb__btn {
  border: none;
  background: #FCECD7;
  cursor: pointer;
  font-family: "Baskervville", "Open Sans", sans-serif;
  font-size: 1.458vw;
  line-height: 100%;
  text-transform: uppercase;
  color: #4C0910;
}

.cb__btn--primary {
  border: 1px solid #4C0910;
  padding: 15px;
  border-radius: 10px;
  margin: 0 0 0 25px;
}

/* POPUP (MODAL) */

.cm {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.45);
  display: grid;
  place-items: center;
  padding: 20px;
}

.cm__card {
  width: min(560px, 100%);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  background: #FCECD7;
}

.cm__title {
  margin: 0 0 12px 0;
  font-family: "Baskervville", "Open Sans", sans-serif;
  font-size: 1.979vw;
  line-height: 144%;
  text-transform: uppercase;
}

.cm__desc {
  margin: 0 0 25px 0;
  line-height: 144%;
}

.cm__row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  font-family: "DM Sans", "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1.042vw;
  line-height: 144%;
}

.cm__actions {
  display: flex;
  gap: 8px;
  margin-top: 35px;
  flex-wrap: wrap;
}

#cm-save {
  margin: 0 0 0 0 !important;
}

#cm-close {
  margin: 0 0 0 25px;
}

.cm__row input {
  position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    width: 25px;
    height: 25px;
    background-color: white;
    border-radius: 5px;
    display: inline-block;
    position: relative;
}

.cm__row input:checked + .checkmark::after,
.cm__row input:checked + .checkmark::before  {
    content: "";
    position: absolute;
    top: 20%;
    left: 50%;
    width: 1px;
    height: 15px;
    background-color: #A80517;
}

.cm__row input:checked + .checkmark::before {
    transform: rotate(45deg);
}

.cm__row input:checked + .checkmark::after {
    transform: rotate(-45deg);
}

.cm__row span.span_text_cookies {
  margin: 0 0 0 5px;
}





/* RESPONSIVE 1920 */


@media only screen and (max-width: 1920px) {

  

}



/* RESPONSIVE 1800 */


@media only screen and (max-width: 1800px) {

  

}



/* RESPONSIVE 1600 */


@media only screen and (max-width: 1600px) {

  .cb {
    padding: 45px 100px;
  }

}



/* RESPONSIVE 1200 */


@media only screen and (max-width: 1200px) {

  .cb {
    padding: 25px 80px;
  }

}



/* RESPONSIVE 1000 */


@media only screen and (max-width: 1000px) {

  .cb {
    padding: 25px 48px;
  }

  .cm__card {
    width: min(400px, 100%);
    border-radius: 15px;
    padding: 30px;
  }

  .cm__row {
    margin: 5px 0;
    font-size: 1.3vw;
  }

  .cb__actions {
    gap: 0 10px;
  }

  .cb__btn--primary {
    padding: 10px;
    margin: 0 0 0 15px;
  }

}



/* RESPONSIVE 800 */


@media only screen and (max-width: 800px) {

  .cb {
    flex-direction: column;
  }

  .cb__text {
    width: 100%;
  }

  .cb__actions {
    width: 100%;
    justify-content: flex-start;
    margin: 15px 0 0 0;
  }

  .cb__text {
    font-size: 2.3vw;
  }

  .cm__row {
    margin: 10px 0;
    font-size: 2.3vw;
  }

  .cm__title {
    margin: 0 0 20px 0;
    font-size: 4.5vw;
  }

  .cm__card {
      width: min(500px, 100%);
  }

  .cb__btn {
   font-size: 2.5vw;
  }

}


/* RESPONSIVE 600 */


@media only screen and (max-width: 600px) {

  .cm__card {
      width: min(400px, 100%);
  }

}

