@charset "UTF-8";

*, ::after, ::before {
    box-sizing: border-box;
}

.p-3 {
    padding: 1rem;
}

.bg-light {
    background: #EEEEEE;
}

.form-text {
    display: block;
}

.btn {
    border: 0;
    cursor: pointer;
    padding: 2px;
    color: #000;
}

.btn-primary {
    background: #DD0000;
}

.btn-secondary {
    background: #DD8888;
}

.btn-dark {
    background: #AAAAAA;
}

.form-group {
    margin-bottom: 0.5rem;
}

input[type="checkbox"] {
    margin-right: 3px;
}

.collapse {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s cubic-bezier(0, 1, 0, 1);
}

.collapse.show {
    max-height: 99em;
    transition: max-height .5s ease-in-out;
}

.collapse:not(.show) {
    display: none;
}
