.card-text {
    margin-bottom: 0.25rem;
}
.showSelectedOnly, .showDrawnOnly {
    display: none;
}


:root {
    --primary-color: #c30e2e;
    --secondary-color: #cf3e57;
    --background-light: #fff;
    --background-gray: #f8f8f8;
    --background-highlight: #eee;
    --text-dark-gray: #363636;
    --text-light-gray: #707070;
}

body {
    font-family: MuseoSansRounded, -apple-system, BlinkMacSystemFont, San Francisco, Roboto, Segoe UI, Helvetica Neue, sans-serif;
    color: var(--text-dark-gray);
    background-color: var(--background-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: MuseoSlab, -apple-system, BlinkMacSystemFont, San Francisco, Roboto, Segoe UI, Helvetica Neue, sans-serif;
}

a {
    color: var(--primary-color);
    transition: color 0.25s;
}

a:hover, a:focus {
    color: var(--secondary-color);
}

button {
    background-color: var(--primary-color) !important;
    color: var(--background-light) !important;
    border: 2px solid var(--primary-color) !important;
    font-family: MuseoSansRounded, -apple-system, BlinkMacSystemFont, San Francisco, Roboto, Segoe UI, Helvetica Neue, sans-serif !important;
}

button:hover, button:focus {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}


.cmp-text h2 {
    margin-bottom: 8px;
    margin-top: 1pc;
    color: #c30e2e;
    font-size: 32px;
    font-weight: 700;
}

.cmp-text h3 {
    margin-bottom: 4px;
    margin-top: 1pc;
    font-size: 24px;
    font-weight: 700;
}

.cmp-text h3+h2 {
    margin-top: 24px;
}

.cmp-text h4 {
    font-weight: 700;
    color: #c30e2e;
}

.cmp-text ol,
.cmp-text p,
.cmp-text table,
.cmp-text ul {
    margin-top: 0;
    margin-bottom: 1rem;
}

.cmp-text > :last-child {
    margin-bottom: 0;
}

.cmp-text a {
    color: #c30e2e;
}

.cmp-text a:focus,
.cmp-text a:hover {
    color: #363636;
}

.cmp-text ol,
.cmp-text ul {
    margin-left: 0;
    margin-right: 0;
}

.cmp-text ul {
    position: relative;
    text-align: left;
    list-style: none;
}

.cmp-text ul li {
    position: relative;
    padding-left: 1.25em;
}

.cmp-text ul li:before {
    content: "";
    display: block;
    position: absolute;
    left: 5px;
}

.cmp-text ul > li {
    list-style: none;
    margin-bottom: 8px;
}

.cmp-text ul > li:before {
    width: .375em;
    height: .375em;
    top: .5625em;
    border-radius: 50%;
    background-color: currentColor;
}

.cmp-text ul > li > ul {
    margin-top: 0;
}

.cmp-text ul > li > ul > li:before {
    background: none;
    border: 1px solid;
}

#adresSearch input {
    border: 1px solid black !important;
}


/* For the Ajax loading spinner */
.modalSpinner {
    display:    none;
    position:   fixed;
    z-index:    1000;
    top:        0;
    left:       0;
    height:     100%;
    width:      100%;
    background: rgba( 255, 255, 255, .2 )
    url('images/spinner.gif')
    50% 50%
    no-repeat;
}

/* When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */
body.loading {
    overflow: hidden;
}

/* Anytime the body has the loading class, our
   modal element will be visible */
body.loading .modalSpinner {
    display: block;
}

.select-option {
    border: 1px solid #707070;
    width: 300px;
}

.select-option:not(.active) > button {
    background-color: #707070 !important;
    border-color: #707070 !important;
}

.select-option.active {
    border: 1px solid var(--primary-color);
    width: 300px;
}

.select-option.active > button {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}