.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
    padding: 12px;
    display: block;
}

.modal-open {
    overflow: hidden;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: black;
}

.modal-backdrop.show {
    opacity: 0.5 !important;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-lg {
    max-width: 800px;
}

.modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
    display: flex;
    align-items: center;
}

.modal-dialog {
    margin: 1.75rem auto;
    position: relative;
    width: auto;
    pointer-events: none;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: white;
    background-clip: padding-box;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
}

.modal .text-center {
    text-align: center !important;
}

.modal-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: 0.75rem;
}

.modal-footer > * {
    margin: 0.25rem;
}

.mr-auto {
    margin-right: auto;
}

.modal .btn {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    -webkit-appearance: button;
    cursor: pointer;
}

.modal .btn-primary {
    color: white;
    background-color: #007bff;
    border-color: #007bff;
}

.modal button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    appearance: none;
    cursor: pointer;
}

.fade {
    transition: opacity .15s linear;
}

.privacy-cookie-banner {
    overflow: hidden;
    -webkit-transition: all .5s linear;
    transition: all .5s linear;
    max-height: 0;
    opacity: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
    z-index: 1024;
}

.privacy-cookie-banner--slide-down {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
    max-height: 0;
}

.privacy-cookie-banner--slide-up {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    max-height: 145px;
}

.privacy-cookie-banner__message {
    margin-top: 15px;
}

#privacy-cookie-banner__privacy-accept{
    white-space: nowrap;
}

#cookieModal .modal-body {
    padding: 16px 48px 48px 48px;
}

#cookieModal div.duk8aubm5p {
    color: #333;
    font-weight: 700;
    font-size: larger;
    margin-bottom: 32px;
    margin-top: 32px;
}

#cookieModal button {
    font-weight: 600;
    border-radius: 0;
}

#cookieModal .modal-content {
    border-radius: 0;
}

#cookieModal .close {
    position: absolute;
    top: 0;
    right: 8px;
}