#chat-lightbox .lightbox-card {
    min-height: auto;
    max-width: 900px;
    margin: 0 auto;
}
#chat-lightbox  .lightbox-card h4 {
	font-size: 22px;
}
.lightbox-card__footer {
	justify-content: center;
}
#chat-lightbox  .lightbox-card .small {
    width: 100%;
}
/* Chat checkbox */
.lightbox-checkbox {
    align-self: flex-start;
    margin: 10px 0;
}
.custom-checkbox {
    display: none;
}

.custom-label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    color: var(--s5);
    font-family: var(--texto);
}

.custom-box {
    width: 15px;
    height: 15px;
    border: 1px solid var(--s5);
    margin-right: 8px;
    background-color: white;
    transition: background-color 0.2s, border-color 0.2s;
}

.custom-checkbox:checked + .custom-label .custom-box {
    background-color: var(--s5);
}
@media only screen and (max-width: 800px) {
    .lightbox-card__content {
        height: calc(100% - 210px);
    }
    .lightbox-card__footer {
        padding-top: 20px;
    }
}