@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 .btn {
    border: 0;
    cursor: pointer;
    padding: 2px;
    color: #000;
}

#tx_cookies .btn-primary {
    background: #DD0000;
}

#tx_cookies .btn-secondary {
    background: #DD8888;
}

#tx_cookies .btn-dark {
    background: #AAAAAA;
}

#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 .collapse:not(.show) {
    display: none;
}

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

#tx_cookies #tx_cookies_close {
    float: left;
    margin-left: 0rem;
    margin-right: 1rem;
}

#tx_cookies #tx_cookies_accept {
    float: right;
}