
.cookie-popup {
    transition: 0.3s;
    z-index: -999;
    pointer-events: none;
    opacity: 0;
    position: fixed;
    bottom: 0;
    width: 100vw;
    left: 0;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .cookie-popup.active {
    z-index: 999;
    pointer-events: auto;
    opacity: 1;
  }
  .cookie-popup_container {
    width: 90%;
    margin: auto;
    padding: 8px 25px;
    background: #fff;
    margin-bottom: 10px;
    border-radius: 15px;
    box-shadow: 3px 3px 6px #ccc;
  }
  .cookie-popup_container_text {
    color: #666;
    margin-bottom: 22px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
  }
  .cookie-popup_container_btn {
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 45px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    line-height: 22px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    letter-spacing: 0.4px;
    float: right;
    background: #06631c;
    color: #fff;
    border: 1px solid #06631c;
  }
  .cookie-popup_container_btn:nth-child(2) {
    background: #06631c;
    color: #fff;
    border: 1px solid #06631c;
  }
  .cookie-popup_container_btn:nth-child(3) {
    background: #828282;
    color: #333;
    border: 1px solid #828282;
  }
  .cookie-popup_container_link {
    color: #fff;
    text-decoration: none;
    float: right;
    height: 45px;
    display: flex;
    align-items: center;
    margin-right: 15px;
    text-transform: uppercase;
  }
  
  @media (min-width: 120px) and (max-width: 600px) {
    .cookie-popup_container_btn,
  .cookie-popup_container_link {
      float: left;
      margin-bottom: 12px;
      margin-right: 12px;
    }
  }
  .cookie-configurador {
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
    z-index: -1000;
    max-width: 600px;
    position: absolute;
    top: 10vh;
    left: 0;
    right: 0;
    margin: auto;
    background: #fff;
    max-height: auto;
    overflow-y: auto;
  }
  .cookie-configurador.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1000;
  }
  .cookie-configurador_container {
    width: 100%;
    padding: 25px;
  }
  .cookie-configurador_container .ccc {
    margin-bottom: 22px;
  }
  .cookie-configurador_container .ccc_maintitle {
    font-size: 15px;
    font-weight: 700;
    color: #06631c;
    text-transform: uppercase;
  }
  .cookie-configurador_container .ccc_text {
    font-size: 14px;
  }
  .cookie-configurador_container .ccc_text:nth-child(3) {
    font-size: 13px;
  }
  .cookie-configurador_container .ccc_line {
    width: 100%;
    height: 1px;
    background: #e9e9e9;
  }
  .cookie-configurador_container .ccc_title {
    font-size: 20px;
    margin-bottom: 18x;
  }
  .cookie-configurador_container .ccc_option_input {
    font-size: 16px;
    color: #06631c;
    margin-bottom: 8px;
  }
  .cookie-configurador_container .ccc_option_input input {
    vertical-align: text-top;
  }
  .cookie-configurador_container .ccc_option_text {
    font-size: 14px;
  }
  .cookie-configurador_container .ccc_btn {
    background: #06631c;
    border: 1px solid #06631c;
    color: #fff;
  }
  .cookie-configurador_container .ccc_newfuncs {
    font-size: 14px;
    margin-top: 30px;
    color: #666;
  }
  .cookie-configurador_container .ccc_minimalbtn {
    border: none;
    background: transparent;
    font-size: 14px;
    padding: 0;
    color: #0074FF;
    text-decoration: underline;
    cursor: pointer;
    margin-bottom: 0;
  }
  .cookie-configurador_container .ccc_breaker {
    display: inline-block;
    height: 4px;
    width: 4px;
    background: #0074FF;
    margin: 0 12px;
    vertical-align: middle;
    border-radius: 50%;
  }
  .cookie-configurador_container .ccc_policies {
    margin-bottom: 0;
  }
  .cookie-configurador_container .ccc a {
    color: #0074FF;
    text-decoration: none;
  }
  .cookie-configurador_container .ccc_btn-back {
    background: #828282;
    border: 1px solid #828282;
    color: #fff;
    width: auto;
    padding: 0 35px;
    height: 45px;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 2px;
    margin: 8px 0 28px 0;
    cursor: pointer;
  }