.laravel-cookies-consent {
    background-color: #fff;
    position: fixed;
    left: 0;
    color: #FFFFFF;
    z-index: 99;
    box-shadow: 0 30px 70px rgba(0,0,0,.3);
    height: auto;
    max-height: 100vh;
    height: 100vh;
    max-width: 25vw;
    padding: 34px 24px;
    width: 100vw;
    box-sizing: border-box;
    transition: all ease 0.5s;
    top: 0;
    overflow: auto;
}
.popup-temp .laravel-cookies-consent {
    padding: 0;
    border: 0;
    overflow: auto;
}
.popup-temp .laravel-cookies-consent .outer-wrapper {
}
.laravel-cookies-consent.slide_down {
    transform: translate(0,0);
}
body.cookies-overlay {
    height: 100%;
    overflow: hidden;
}

body.cookies-overlay:after {
    content: "";
    background: rgb(139 139 139 / 57%);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;
}
@-webkit-keyframes slide_to_top {
    0% {
        bottom: -800px;
    }
    100% {
        bottom: 0;
    }
}

@-webkit-keyframes slide_to_bottom {
    0% {
        bottom: 25px;
    }
    100% {
        bottom: -800px;
        display: none;
    }
}

.laravel-cookies-consent .outer-wrapper {
}
.laravel-cookies-consent .inner-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}


.laravel-cookies-consent .cookies-title {
    margin-top: 0;
    color: #000;
    font: bold 25px/normal Open Sans Condensed, helvetica, arial, sans-serif;
}

.laravel-cookies-consent .cookies-text {
    color: #000;
    font-size: 14px;
    display: block;
}

.laravel-cookies-consent .cookies-text a {
    color: #000;
    font-weight: bold;
    text-decoration: underline;
}

.laravel-cookies-consent .cookies-close {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 40px;
    height: 40px;
    font-size: 0;
    /* declare the background-color as bootstrap seems to reset it to default body's color:*/
    background-color: #2d2d2d;
}

.laravel-cookies-consent .cookies-close:before,
.laravel-cookies-consent .cookies-close:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 20px;
    background-color: #F0F0F0;
    transform: rotate(45deg) translate(-50%, -50%);
    transform-origin: top left;
    content: '';
}

.laravel-cookies-consent .cookies-close:after {
    transform: rotate(-45deg) translate(-50%, -50%);
}

.laravel-cookies-consent .consent-form-container {
    /* margin: 20px 0 0; */
}

.laravel-cookies-consent .consent-form-container .consent-checkboxes {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-top: 30px;
}

.laravel-cookies-consent .consent-form-container .consent-checkboxes .form-group{
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}
.laravel-cookies-consent .consent-form-container .consent-checkboxes .form-group .consent-checkbox-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.laravel-cookies-consent .consent-form-container .consent-checkboxes .form-group label {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 30px;
}

.laravel-cookies-consent .consent-form-container .consent-checkboxes .form-group label .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 20px;
}
.laravel-cookies-consent .consent-form-container .consent-checkboxes .form-group label .slider:before {
    position: absolute;
    content: "";
    height: 23px;
    width: 23px;
    right: 22px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

.laravel-cookies-consent .consent-form-container .consent-checkboxes .form-group input:checked + .slider {
  background-color: #2196F3;
}

.laravel-cookies-consent .consent-form-container .consent-checkboxes .form-group input:checked + .slider:before {
  right: 4px
}

.laravel-cookies-consent .consent-form-container .consent-checkboxes .form-group [for="cookies_consent_strictly_necessary"] .slider {
    opacity: 0.4;
}

.laravel-cookies-consent .consent-form-container .consent-checkboxes .form-group input:hover {
    cursor: pointer;
}
.laravel-cookies-consent .consent-form-container .consent-checkboxes .form-group span {
    color: #000;
    font: bold 20px/normal Open Sans Condensed, helvetica, arial, sans-serif;
}

.laravel-cookies-consent .consent-form-container .consent-checkboxes .form-group input {
    opacity: 0;
    width: 0;
    height: 0;
}

.laravel-cookies-consent .consent-form-container .consent-checkboxes .form-group p {
    color: #000;
    font-size: 14px;
}

.laravel-cookies-consent .consent-buttons {
    display: flex;
    width: 100%;
    gap: 10px;
    flex-shrink: 1;
    margin-top: 30px;
}

.laravel-cookies-consent .consent-buttons.last {
    margin: 0;
}

.laravel-cookies-consent .consent-buttons .button {
    font-weight: bold;
    font-size: 20px;
    padding: 8px 20px;
    width: 50%;
}
.laravel-cookies-consent .consent-buttons a {
    color: #fff;
}



.laravel-cookies-consent .consent-form-container .consent-buttons .consent-submit {color: #fff;display: flex;align-items: center;padding: 18px 40px;font-size: 18px;line-height: normal;justify-content: center;}

.laravel-cookies-consent .consent-form-container .consent-buttons .consent-submit.hidden {
    display: none;
}

.laravel-cookies-consent .consent-form-container .consent-buttons .consent-submit:hover {
}

.laravel-cookies-consent .consent-form-container .consent-buttons .consent-submit {
}

.laravel-cookies-consent .consent-form-container .consent-buttons .consent-submit.consent-accept {
}

.laravel-cookies-consent .consent-form-container .consent-buttons .consent-submit.consent-decline-all {
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .laravel-cookies-consent {
        max-width: 90vw !important;
        max-height: 100% !important;
        overflow: auto;
    }
    .laravel-cookies-consent .cookies-title {
        font-size: 20px;
    }
    .laravel-cookies-consent .cookies-text {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .laravel-cookies-consent .outer-wrapper {
        padding: 20px 0 0;
    }
    .laravel-cookies-consent .consent-form-container .consent-buttons {
        position: static;
        flex-direction: row;
    }

    .laravel-cookies-consent .consent-buttons .button {
        font-size: 12px;
    }
    
    .laravel-cookies-consent .consent-form-container .consent-checkboxes {
        margin-top: 15px;
        flex-wrap: wrap;
    }
    
    .laravel-cookies-consent .consent-form-container .consent-buttons .consent-submit {
        padding: 8px 10px;
        font-size: 16px;
    }    
    .laravel-cookies-consent .inner-wrapper {
        max-width: 100%;
        flex-direction: column;
    }
    .consent-buttons {
        flex-direction: row !important;
        width: 100%;
    }
    .consent-buttons .button {
        font-size: 15px;
        padding: 10px 10px;
    }    
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .laravel-cookies-consent {
    }
    /* .laravel-cookies-consent .inner-wrapper .col-left {
        padding-right: 40px;
    } */
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 992px) {
    .laravel-cookies-consent {
            max-width: 50vw;
    }
    .laravel-cookies-consent .outer-wrapper {
    }    
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .laravel-cookies-consent {
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .laravel-cookies-consent {
    }
}
.dialog-hidden {
    display: none;
}

.dialog-visible {
    display: block;
    /* Additional styling for positioning, background, etc. */
}

.dialog-tabs {
    list-style-type: none;
    padding: 0;
}

.tab-item {
    display: inline-block;
    margin-right: 10px;
    cursor: pointer;
    padding: 5px;
    background-color: #f0f0f0;
}

.tab-item:hover {
    background-color: #ddd;
}
#consentDetailsDialog .ui-dialog-titlebar-close {
    display: none;
}
.consent-details-link {
    font-size: 15px;
    line-height: normal;
    font-weight: bold;
}

.cookies-consent-form ul.ui-tabs-nav {
    padding: 0 !important;
}

.laravel-cookies-consent .ui-tabs .ui-tabs-nav {
    padding: 0;
    border-width: 0 0 1px 0;
}

.laravel-cookies-consent  .ui-tabs .ui-tabs-nav li {
    margin: 0;
    border: 0;
    padding: 0;
    width: 50%;
    border-radius: 0;
    background: #eee;
}

.laravel-cookies-consent #dialog-tabs {
    border: 0;
    background: #f2fafe;
}

.laravel-cookies-consent .ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    border: 0;
    width: 100%;
    display: block;
    border-radius: 0;
    box-sizing: border-box;
    text-align: center;
    padding: 20px;
    font-size: 16px;
    font-weight: bold;
}

.laravel-cookies-consent .ui-tabs-nav .ui-tabs-anchor {
    line-height: normal;
    border: 0;
}

.laravel-cookies-consent .ui-tabs .ui-tabs-nav li.ui-state-active {
    background: #57afe6;
}

.popup-temp .laravel-cookies-consent .outer-wrapper .cookies-title {
    display: none;
}

.popup-temp .laravel-cookies-consent .outer-wrapper .cookies-text {
    display: none;
}

.popup-temp .laravel-cookies-consent .outer-wrapper .inner-wrapper {
    flex-direction: column;
    border-top: 1px solid #ccc;
    gap: 0;
}

.popup-temp .laravel-cookies-consent .outer-wrapper .inner-wrapper .col-left {
    padding: 15px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.popup-temp .laravel-cookies-consent .outer-wrapper .inner-wrapper .col-left .consent-checkboxes {
    margin: 0;
}

.popup-temp .laravel-cookies-consent .outer-wrapper .inner-wrapper .consent-buttons {
    flex-direction: row;
    padding: 0 20px 20px;
    width: 100%;
    box-sizing: border-box;
}

.popup-temp .laravel-cookies-consent .outer-wrapper .inner-wrapper .consent-buttons .button {
    width: 100%;
}

.laravel-cookies-consent #dialog-tabs .ui-tabs-panel {
    height: 100%;
    overflow: auto;
}

.popup-temp .laravel-cookies-consent .outer-wrapper .inner-wrapper #consent_details_link {
    display: none;
}


.content-details table th {
    white-space: nowrap;
    padding: 10px 10px;
}

.content-details table td {
    padding: 10px 10px;
}
.content-details table td:last-child {
    min-width: 450px;
}
.content-details > label {
    margin-bottom: 15px;
    font-size: 22px;
}
#cookieSettingsButton {
    width: 40px;
    height: 40px;
    position: fixed;
    bottom: 20px;
    left: 30px;
    border-radius: 50%;
    border: 0;
    background: #57afe6;
    padding: 9px;
    cursor: pointer;
}

#cookieSettingsButton svg {
    fill: #fff;
}