/* logo */
body::before {
    content: "";
    display: block;
    background-image: url("../media/logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 50px;
    margin-bottom: 20px;
}

/* body */
body {
    font-family: "Serif", serif !important;
    color: black !important;
}

a {
    color: black;
}

a:after {
    content: " (" attr(href) ")";
}

img {
    max-height: 180px;
    height: auto;
}

nav,
footer,
video,
figcaption,
details,
summary,
.no-print {
    display: none;
}

/* table */
table {
    width: 50%;
    border-collapse: collapse;
    margin: 20px 0;
}

th {
    text-align: left;
    padding: 8px;
    font-weight: bold;
    border: 1px solid #ddd;
}

td {
    padding: 8px;
    border: 1px solid #ddd;
    text-align: left;
}

/* accordion */
.accordion,
.accordion-item,
.accordion-header,
.accordion-button,
.collapse {
    font-family: "Serif", serif !important;
    background: #fff !important;
    background-color: #fff !important;
    display: block !important;
    height: auto !important;
    visibility: visible !important;
    opacity: 1 !important;

}

.accordion-button::after {
    display: none !important;
}

.accordion-body::before {
    content: " - ";
}

.accordion-button {
    font-size: medium;
    font-weight: bold;
    pointer-events: none !important;
    border: none !important;
}

/* form */
form {
    margin: 20px 0;
    padding: 10px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
fieldset {
    width: 50%;
    padding: 8px;
    margin: 5px 0;
    box-sizing: border-box;
}

label {
    display: block;
    margin-bottom: 5px;
}