.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.9);
    color: #fff;
    padding: 1rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent.hiding {
    transform: translateY(100%);
}

.cookie-settings {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.cookie-settings.show {
    max-height: 300px;
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.cookieTitle{
    font-size: 1.65rem;
}
.necOnly{
    cursor: pointer;
}

@media (max-width: 768px) {
  .cookie-consent .col-lg-4.text-lg-center {
    display: flex;
    justify-content: left;
    align-items: left;
    gap: 0.75rem; 
    flex-wrap: nowrap;
  }

  .cookie-consent .col-lg-4.text-lg-center .allCookie {
    width: auto;
    margin-bottom: 0;
  }

  .cookie-consent .col-lg-4.text-lg-center .necOnly {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.8rem;
    cursor: pointer;
    margin-bottom: 0;
    background: transparent;
    font-size: 1rem;
    text-decoration: underline;
    color: gray;
  }
}