
#esg-cookie-banner {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 33%;
    background: #000;
    color: #fff;
    padding: 25px;
    z-index: 9999;
}

#esg-cookie-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.esg-cookie-modal-content {
    background: #fff;
    padding: 20px;
    max-width: 600px;
}

button.esg-cookie-btn.esg-cookie-btn-info {
    background: #3ea3ba;
    border: none;
    padding: 8px;
    font-size: 12px;
    color: #fff;
    font-weight: 700;
    width: 33%;
}

button.esg-cookie-btn.esg-cookie-btn-all {
    background: #3ea3ba;
    border: none;
    padding: 8px;
    font-size: 12px;
    margin-right: 8px;
    color: #fff;
    font-weight: 700;
    width: 33%;
}

button.esg-cookie-btn.esg-cookie-btn-nec {
    background: #3ea3ba;
    border: none;
    padding: 8px;
    font-size: 12px;
    margin-right: 8px;
    color: #fff;
    font-weight: 700;
    width: 33%;
}

button.esg-cookie-btn.esg-cookie-btn-cancel {
    background: #3ea3ba;
    border: none;
    padding: 8px;
    font-size: 12px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    width: 33%;
}

.esg-cookie-buttons {
    display: flex;
    justify-content: space-between;
}

.esg-cookie-modal-text {
    margin-bottom: 30px;
}

/**MEDIA QUERIES MOVIL**/

@media (max-width: 640px) {
  #esg-cookie-modal .esg-cookie-modal-content {
    width: 90%;
    max-height: 90vh;
    margin: 0 auto;
  }

  .esg-cookie-modal-text {
    max-height: 55vh;
  }

  #esg-cookie-banner {
    flex-direction: column;
    text-align: center;
    width: 100%;
  }

  .esg-cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

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

  button.esg-cookie-btn.esg-cookie-btn-nec {
    margin-bottom: 10px;
    width: 100%;
  }

  button.esg-cookie-btn.esg-cookie-btn-all {
    margin-bottom: 10px;
    width: 100%;
  }

  button.esg-cookie-btn.esg-cookie-btn-info {
    width: 100%;
  }
}


/**MEDIA QUERIES TABLET**/

@media (max-width: 992px) {
  #esg-cookie-banner {
    width: 100%;
  }
}


/**MEDIA QUERIES IPAD PRO**/

@media (max-width: 1024px) {
  #esg-cookie-banner {
    width: 100%;
  }
}





