
.cookie-consent-container {
    position: fixed;
    z-index: 999999;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0;
    margin:0;
    background-color: rgba(0, 0, 0, .5);
    font-family: var(--bs-body-font-family,Helvetica Light,sans-serif);
    font-weight: var(--bs-body-font-weight,300);
    font-size: var(--bs-body-font-size, 1rem);
    color: var(--bs-body-color, #4d4d4d);
    line-height: var(--bs-body-line-height,1.5);
    border: none;
}
dialog.cookie-consent-container {
    max-width: 100vw;
    max-height: 100vw;
}

.cookie-consent-container .detail {
    visibility: hidden;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
    transition: all .5s ease-in-out
}

.cookie-consent-container .detail.open {
    height: auto;
    width: 100%;
    visibility: visible;
    opacity: 1;
    overflow: auto;
    display: block;
    margin-bottom: 15px;
    transition: all .5s ease-in-out
}

.cookie-consent-container .text-center {
    text-align: center
}

.cookie-consent-container p {
    margin: 0 0 15px 0
}

.cookie-consent-container a, .cookie-consent-container a:visited, .cookie-consent-container a:active, .cookie-consent-container a:focus, .cookie-consent-container a:focus:active {
    color: #999;
    text-decoration: none
}

.cookie-consent-container a:hover, .cookie-consent-container a:visited:hover, .cookie-consent-container a:active:hover, .cookie-consent-container a:focus:hover, .cookie-consent-container a:focus:active:hover {
    color: #000;
    transition: all .5s ease-in-out
}

.cookie-consent-container a.show-details, .cookie-consent-container a:visited.show-details, .cookie-consent-container a:active.show-details, .cookie-consent-container a:focus.show-details, .cookie-consent-container a:focus:active.show-details {
    display: block;
    position: relative;
    padding-right: 20px;
    margin-bottom: 25px
}

@media all and (min-width: 660px) {
    .cookie-consent-container a.show-details, .cookie-consent-container a:visited.show-details, .cookie-consent-container a:active.show-details, .cookie-consent-container a:focus.show-details, .cookie-consent-container a:focus:active.show-details {
        margin-bottom: 15px
    }
}

.cookie-consent-container a.show-details:after, .cookie-consent-container a:visited.show-details:after, .cookie-consent-container a:active.show-details:after, .cookie-consent-container a:focus.show-details:after, .cookie-consent-container a:focus:active.show-details:after {
    content: "";
    width: 0;
    height: 0;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
    border-style: solid;
    border-width: 4px 4px 0 4px;
    border-color: #999 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
    margin: 7px 0 0 5px;
    position: absolute;
    top: 0
}

.cookie-consent-container a.show-details:hover:after, .cookie-consent-container a:visited.show-details:hover:after, .cookie-consent-container a:active.show-details:hover:after, .cookie-consent-container a:focus.show-details:hover:after, .cookie-consent-container a:focus:active.show-details:hover:after {
    transition: all .5s ease-in-out;
    border-color: #000 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0)
}

.cookie-consent-container a.show-details .less, .cookie-consent-container a:visited.show-details .less, .cookie-consent-container a:active.show-details .less, .cookie-consent-container a:focus.show-details .less, .cookie-consent-container a:focus:active.show-details .less {
    display: none
}

.cookie-consent-container a.show-details.open .more, .cookie-consent-container a:visited.show-details.open .more, .cookie-consent-container a:active.show-details.open .more, .cookie-consent-container a:focus.show-details.open .more, .cookie-consent-container a:focus:active.show-details.open .more {
    display: none
}

.cookie-consent-container a.show-details.open .less, .cookie-consent-container a:visited.show-details.open .less, .cookie-consent-container a:active.show-details.open .less, .cookie-consent-container a:focus.show-details.open .less, .cookie-consent-container a:focus:active.show-details.open .less {
    display: inline-block
}

.cookie-consent-container a.show-details.open:after, .cookie-consent-container a:visited.show-details.open:after, .cookie-consent-container a:active.show-details.open:after, .cookie-consent-container a:focus.show-details.open:after, .cookie-consent-container a:focus:active.show-details.open:after {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(1800deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg)
}

.cookie-consent-container .label {
    color: #4d4d4d;
    font-size: 1rem;
    font-weight: 300;
    display: inline-block;
    margin: 0 0 12px 0;
    position: relative;
    padding: 0 0 0 30px;
    line-height: 1.5;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.cookie-consent-container .label.partially-checked .checkmark {
    background-color: #6f9322
}

.cookie-consent-container .label.partially-checked .checkmark:after {
    display: none
}

.cookie-consent-container .label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}

.cookie-consent-container .label input:checked ~ .checkmark {
    background-color: var(--bs-primary,#6f9322);
}

.cookie-consent-container .label input:checked ~ .checkmark:after {
    display: block
}

.cookie-consent-container .label input:disabled:checked ~ .checkmark {
    opacity: .6
}

.cookie-consent-container .label .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background: #eee;
    border: 1px solid #bfbfbf
}

.cookie-consent-container .label .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 0;
    width: 7px;
    height: 15px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.cookie-consent-container .consent-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 500px;
    width: 90%;
    height: 590px;
    max-height: calc(100vh - 50px);
    min-height: 295px;
    margin: auto;
    padding: 1em;
    background-color: #fff;
    overflow-y: auto;
    box-shadow: 0 0 5px #000;
    border-radius: 5px;
    transition: all .5s ease-in-out
}

@media all and (min-width: 500px) {
    .cookie-consent-container .consent-modal {
        height: 470px
    }
}

@media all and (min-width: 900px) {
    .cookie-consent-container .consent-modal {
        height: 450px;
        max-height: calc(100vh - 100px)
    }
}

.cookie-consent-container .consent-modal .option-wrapper {
    background: #eee;
    padding: 15px;
    margin-bottom: 15px
}

.cookie-consent-container .consent-modal .option-wrapper:last-child {
    margin-bottom: 0
}

.cookie-consent-container .consent-modal .option-wrapper p:last-child {
    margin-bottom: 0
}

.cookie-consent-container .consent-modal .option-wrapper .option-detail-wrapper {
    margin-bottom: 10px;
    border-bottom: 2px solid #afafaf
}

.cookie-consent-container .consent-modal .option-wrapper .option-detail-wrapper:last-child {
    margin-bottom: 0
}

.cookie-consent-container .consent-modal .option-wrapper .option-detail-wrapper .option-detail {
    border-bottom: 1px solid #ddd;
    padding: 7px 10px 3px;
    font-size: .875rem
}

.cookie-consent-container .consent-modal .option-wrapper .option-detail-wrapper .option-detail:last-child {
    border-bottom: none;
    padding-bottom: 6px
}

.cookie-consent-container .consent-modal .option-wrapper .option-detail-wrapper .option-detail.cookie-option {
    background: #dedede;
    font-size: 1rem;
    font-weight: 400;
    transition: all ease-in-out .5s
}

.cookie-consent-container .consent-modal .option-wrapper .option-detail-wrapper .option-detail.cookie-option:hover {
    background: #d4d0d0;
    transition: all ease-in-out .5s
}

.cookie-consent-container .consent-modal .option-wrapper .option-detail-wrapper .option-detail.cookie-option:hover ~ .option-detail {
    background: #f3f3f3;
    transition: all ease-in-out .5s
}

.cookie-consent-container .consent-modal .option-wrapper .option-detail-wrapper .option-detail.cookie-option .label {
    color: #4d4d4d;
    text-align: left;
    font-weight: 400
}

.cookie-consent-container .consent-modal .option-wrapper .option-detail-wrapper .option-detail .option-title {
    font-weight: 400;
    width: 100%;
    text-align: left;
    display: inline-block;
    vertical-align: top
}

@media all and (min-width: 500px) {
    .cookie-consent-container .consent-modal .option-wrapper .option-detail-wrapper .option-detail .option-title {
        width: 30%
    }
}

.cookie-consent-container .consent-modal .option-wrapper .option-detail-wrapper .option-detail .option-value {
    width: 100%;
    display: inline-block;
    vertical-align: top
}

@media all and (min-width: 500px) {
    .cookie-consent-container .consent-modal .option-wrapper .option-detail-wrapper .option-detail .option-value {
        width: 69%
    }
}

.cookie-consent-container .consent-modal .option-wrapper .label {
    margin-bottom: 0;
    padding: 0 20px 0 0;
    width: 100%
}

.cookie-consent-container .consent-modal .option-wrapper .label .checkmark {
    right: 0;
    left: inherit;
    background: #eee;
    border: 1px solid #bfbfbf
}

.cookie-consent-container .consent-modal .option-wrapper .label input:checked ~ .checkmark {
    background-color: #6f9322
}

.cookie-consent-container .consent-modal .cookie-headline {
    line-height: 1.5;
    margin: 0 0 15px 0;
    color: #4d4d4d;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.4rem;
    font-weight: 500
}

.cookie-consent-container .consent-modal.open {
    max-width: 750px;
    height: calc(100vh - 50px)
}

.cookie-consent-container .consent-modal .options {
    list-style: none;
    margin: 0 0 15px 0;
    padding: 0
}

.cookie-consent-container .consent-modal .options li {
    margin-bottom: 5px
}

@media all and (min-width: 500px) {
    .cookie-consent-container .consent-modal .options li {
        width: 49%;
        display: inline-block
    }
}

.cookie-consent-container .consent-modal .footer-links {
    display: block;
    width: 100%;
    line-height: 90%
}

.cookie-consent-container .buttons {
    margin-bottom: 25px
}

@media all and (min-width: 660px) {
    .cookie-consent-container .buttons {
        margin-bottom: 15px
    }
}

.cookie-consent-container .buttons .btn {
    --bs-btn-hover-bg-primary: var(--bs-primary, #4d4d4d);
    color: var(--bs-primary, #4d4d4d);
    --bs-btn-color: var(--bs-primary, #4d4d4d);
    --bs-btn-hover-color: var(--bs-white, #fff);
    font-size: var(--bs-btn-font-size,1rem);
    font-weight: var(--bs-btn-font-weight, normal);
    padding: 11px 10px;
    cursor: pointer;
    border: var(--bs-btn-border-width, 2px) solid var(--bs-btn-border-color, #4d4d4d);
    border-radius: var(--bs-btn-border-radius, 0.25rem);
    width: 100%;
    max-width: 370px;
    text-align: center;
    clear: both;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: var(--bs-btn-line-height, inherit);
}
.cookie-consent-container .buttons .btn:hover{
    color: var(--bs-white, #fff);
}
.cookie-consent-settings {
    margin-bottom: 10px
}

.cookie-consent-settings .detail {
    visibility: hidden;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
    transition: all .5s ease-in-out
}

.cookie-consent-settings .detail.open {
    height: auto;
    width: 100%;
    visibility: visible;
    opacity: 1;
    overflow: auto;
    display: block;
    margin-bottom: 15px;
    font-size: 1rem;
    transition: all .5s ease-in-out
}


/* modified */
.cookie-consent-container .consent-modal .cookie-headline{
    color: var(--plateconsent-modal-title-color, var(--bs-primary, darkgreen));
}

.cookie-consent-container .consent-modal{
    position: absolute;
    overflow-y: auto;
    transition: all .5s ease-in-out;
    border-radius: var(--plateconsent-modal-border-radius, .5em);
    box-shadow: var(--plateconsent-modal-shadow, 0 0 5px #000);
    top: var(--plateconsent-modal-top, auto);
    left: var(--plateconsent-modal-left, 50%);
    bottom: 0;
    margin: var(--plateconsent-modal-margin, 0 auto);
    transform: var(--plateconsent-modal-transform, translate(-50%,0%)) ;
    height: var(--plateconsent-modal-height, auto);
    min-height: var(--plateconsent-modal-min-height, auto);
    max-width: var(--plateconsent-modal-max-width, 1450px);
    width: var(--plateconsent-modal-width, 100%);
    background: var(--plateconsent-modal-background,rgba(255,255,255,0.8));
    border:solid 5px var(--bs-primary, darkgreen);
    padding: var(--plateconsent-modal-padding, 45px);
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}
.cookie-consent-container .consent-modal .btn-outline-primary{
    border: solid 2px var(--plateconsent-modal-bt-bordercolor, var(--bs-primary, darkgreen)) !important;
}
.cookie-consent-container .consent-modal .btn-outline-primary:not(:hover){
    background: var(--plateconsent-modal-bt-bg, white);
}
.cookie-consent-container .consent-modal a{
    color: var(--plateconsent-modal-link-color, var(--bs-primary, black)) !important;
}