<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.cookies-bar .more-info &gt; p {
    /* display: none; */
    max-height: 0;
    opacity: 0;
    transition: all 0.35s ease-out;
    cursor: default;
    margin-bottom: 0;
}

.cookies-bar.more-info .more-info &gt; p {
    /* display: block; */
    max-height: 500px;
    opacity: 1;
    cursor: auto;
    margin-bottom: 0;
}

.cookies-bar {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 999999999;
    width: 400px;
    max-width: calc(100% - 30px);
    max-height: calc(100vh - 30px);
    overflow-y: auto;
    background-color: #f5f5f5;
    -webkit-box-shadow: 0px 0px 10px 0px #555555;
    box-shadow: 0px 0px 10px 0px #555555;
    border-radius: 4px;
    border: 1px solid rgb(38,109,73);
    color: #212121;
    font-family: Arial;
}

.cookies-bar__header,
.cookies-bar__body,
.cookies-bar__buttons,
.cookies-bar__footer {
    padding: 15px;
    position: relative;
}

.cookies-bar__header {
    font-size: 1.15rem;
    border-bottom: 1px solid #555;
    padding-right: 40px;
}

.cookies-bar__body {
    padding-bottom: 0;
}

.cookies-bar__buttons {
    padding-top: 0;
}

.cookies-bar.more-info .more-info,
.cookies-bar label,
.cookies-bar p {
    margin-bottom: .75rem;
}

.text-center {
    text-align: center;
}

.cookies-bar__body p,
.cookies-bar__body label {
    font-size: .85rem;
}

.cookies-bar__body .more-info &gt; p {
    font-size: .75rem;
}

.cookies-bar__buttons + .cookies-bar__footer {
    padding-top: 0;
}

.cookies-bar__buttons a,
.cookies-bar__footer a {
    text-decoration: underline;
    color: #999;
}

.cookies-bar__buttons a:hover,
.cookies-bar__footer a:hover {
    color: #212121;
}

.cookies-bar__header .close-trigger {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
    padding: 5px 10px;
}

.cookies-bar__header .close-trigger:hover {
    color: #212121;
}

.btn-theme {
    color: #fff;
    background-color: rgba(38,109,73, .8);
    border-color: rgb(38,109,73);
}

.btn-theme:hover {
    background-color: rgb(38,109,73);
    color: #fff;
}

.cookies-bar.customized .accept-all-cookies-trigger {
    display: none;
}

.cookies-bar:not(.customized) .accept-selected-cookies-trigger {
    display: none;
}

.cookies-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    min-width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    background: rgb(124,67,47);
    border-radius: 20px;
    z-index: 999999999;
    border: 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px 0 12px;
}

.cookies-btn span {
    display: none;
}

.cookies-btn:hover span {
    display: block;
    margin-left: 10px;
}

#cookiesModal a {
    color: #000;
}

/* Switch common */
.checkbox.checbox-switch {
    padding-left: 0;
}

.checkbox.checbox-switch label,
.checkbox-inline.checbox-switch {
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.checkbox.checbox-switch label input,
.checkbox-inline.checbox-switch input {
    display: none;
}

.checkbox.checbox-switch label span,
.checkbox-inline.checbox-switch span {
    width: 35px;
    border-radius: 20px;
    height: 18px;
    border: 1px solid #dbdbdb;
    background-color: rgb(255, 255, 255);
    border-color: rgb(223, 223, 223);
    box-shadow: rgb(223, 223, 223) 0px 0px 0px 0px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.checkbox.checbox-switch label span:before,
.checkbox-inline.checbox-switch span:before {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgb(255,255,255);
    content: " ";
    top: 0;
    position: relative;
    left: 0;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.checkbox.checbox-switch label &gt; input:checked + span:before,
.checkbox-inline.checbox-switch &gt; input:checked + span:before {
    left: 17px;
}

/* Switch Primary */
.checkbox.checbox-switch.switch-primary label &gt; input:checked + span,
.checkbox-inline.checbox-switch.switch-primary &gt; input:checked + span {
    background-color: rgb(38,109,73);
    border-color: rgb(38,109,73);
    box-shadow: rgb(38,109,73) 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}

.checkbox.checbox-switch.switch-primary label &gt; input:checked:disabled + span,
.checkbox-inline.checbox-switch.switch-primary &gt; input:checked:disabled + span {
    background-color: rgba(38,109,73,.35);
    border-color: rgba(38,109,73,.35);
    box-shadow: rgba(38,109,73,.35) 0px 0px 0px 8px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}

.pb-1 {
    padding-bottom: .5rem;
}

.pb-2 {
    padding-bottom: 1rem;
}

.text-underline {
    text-decoration: underline;
}
</pre></body></html>