@charset "UTF-8";

#tx_cookies {
    padding: 0;
}

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

#tx_cookies .p-3 {
    padding: 1rem;
}

#tx_cookies .bg-light {
    background: #EEEEEE;
}

#tx_cookies .form-text {
    display: block;
}

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

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

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

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

#tx_cookies h3, #tx_cookies p {
    margin-bottom: 1em;
}