@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.btn-cookies {
    padding: 10px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.btn-cookies.btn-primary {
    font-family: 'Mulish', Helvetica, Arial, Lucida, sans-serif;
    background-color: #fff;
    color: #49525b;
    font-weight: 900;
    font-size: 14px;
    padding: 7px 15px;
}

.btn-cookies.btn-secondary {
    background-color: #ccc;
    color: #333;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 900px;
    width: 100%;
    background-color: #49525b;
    box-shadow: 0 -2px 5px #49525b6b;
    padding: 20px 20px;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: space-between;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

.cookie-banner p {
    font-family: 'Mulish', Helvetica, Arial, Lucida, sans-serif;
    font-size: 16px;
    color: #fff;
    margin-right: 20px;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
}

.logo {
    max-height: 140px;
    height: auto;
    width: auto;
}

.logo-modal {
    max-height: 80px;
}

.logo-wrapper {
    height: 100%;
}

.cookie-modal {
    display: none; /* Oculto por defecto */
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.4); /* Fondo semitransparente */
    z-index: 11000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    width: 95% !important;
    background-color: #fff !important;
    margin-top: 45px;
    max-width: 900px;
    border-radius: 5px !important;
    position: relative !important;
}

.modal-header {
    background-color: #f0f0f0;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
}

.tabs-content h2 {
    font-family: 'Mulish', Helvetica, Arial, Lucida, sans-serif;
    color: #000;
    font-size: 22px;
    margin-bottom: 15px;
}

.tabs-content p {
    font-family: 'Mulish', Helvetica, Arial, Lucida, sans-serif;
    color: #000;
    font-size: 14px;
}

.tabs-content h3{
    font-family: 'Mulish', Helvetica, Arial, Lucida, sans-serif;
    color: #000;
    font-size: 18px;
    font-weight: 800;
    margin: 0;
}

.tablink {
    font-family: 'Mulish', Helvetica, Arial, Lucida, sans-serif;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 5px 15px;
    text-align: left;
    font-size: 12px;
    margin-bottom: 5px;
    width: 100%;
}

.tablink:hover {
    background-color: #49525b8f;
    color: #fff;
}

.tablink.active {
    background-color: #49525b;
    color: #fff;
}

.tab-content {
    display: none;
    flex: 1;
    padding-right: 10px;
    height: 400px;
}

.tab-content.active {
    display: block;
}

/* Solo si el switch no toma forma visual */
.form-check-input[type="checkbox"] {
    width: 2.5em;
    height: 1.5em;
    background-color: red !important;
    border-radius: 1.5em;
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: background-color .15s ease-in-out;
}

.form-check-input:checked {
    background-color: #2e9935 !important;
}

.form-check-input:checked::before {
    transform: translateX(1em);
}
  
.form-check-input::before {
    content: "";
    position: absolute;
    top: .125em;
    left: .125em;
    width: 1.25em;
    height: 1.25em;
    background-color: #fff;
    border-radius: 50%;
    transition: transform .15s ease-in-out;
}
  
.form-switch{
    margin-top: 20px;
    margin-bottom: 20px;
}
  
.form-switch .form-check-input{
    width: 2.5em !important;
    margin-right: 10px !important;
}

.close-modal {
    position: absolute;
    background-color: #49525b;
    width: 40px;
    height: 40px;
    z-index: 999;
    color: #fff;
    font-size: 30px;
    border-radius: 50%;
    border: 0px;
    right: 0px;
    top: -16px;
    cursor: pointer;
}


@media (min-width: 768px) {
    .border-md-right-white {
      border-right: 2px solid #fff;
    }
}