@charset "UTF-8";


#tx_cookies_showPermanent {
    position: fixed;
    left: 1rem;
    top: 1rem;
    z-index: 1040; /* higher than z-index of Bootstrap header */
}
#tx_cookies_inner {
    position: fixed;
    bottom: 0;
    z-index: 1040; /* higher than z-index of Bootstrap header */
    width: 100%;
}
#tx_cookies #tx_cookies_close {
    float: right;
    margin-left: 1rem;
    margin-bottom: 1rem;
}

/* Manual fix for inputs */
#tx_cookies .form-check-input {
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: auto;
}

#tx_cookies_inner.collapse:not(.show) {
    padding: 0 !important;
    border: 0;
    overflow: hidden;
}


/* Cookie banner container */
#tx_cookies_inner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, calc(100% - 40px));

    background: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 10px;

    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);

    z-index: 9999;
}

/* "Cookie settings" button when banner is collapsed */
#tx_cookies_showPermanent {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
}

/* Heading */
#tx_cookies_inner h3 {
    margin: 0 0 10px;
    font-size: 1.6rem;
    font-weight: 600;
}

/* Intro text */
#tx_cookies_hint {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.5;
}

/* Separate the two forms */
#tx_cookies_accept {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

/* Cookie option blocks */
#tx_cookies_types .form-group {
    margin-bottom: 16px;
}

#tx_cookies_types .form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

#tx_cookies_types .form-check-input {
    margin-top: 4px;
    width: 18px;
    height: 18px;
}

#tx_cookies_types .form-check-label {
    font-weight: 600;
}

/* Description under each checkbox */
#tx_cookies_types .form-text {
    display: block;
    margin-top: 4px;
    color: #666;
    font-size: .9rem;
    line-height: 1.4;
}

/* Buttons */
#tx_cookies .btn {
    border-radius: 4px;
    padding: 10px 18px;
    font-weight: 600;
}

#tx_cookies .btn-primary {
    background: #0056b3;
    border-color: #0056b3;
    color: #fff;
}

#tx_cookies .btn-primary:hover {
    background: #004494;
}

#tx_cookies .btn-secondary {
    background: #6c757d;
    border-color: #6c757d;
    color: #fff;
}

/* Close button */
#tx_cookies_close {
    float: right;
    margin-left: 16px;
    color: #fff;
}

