.laravel-cookies-consent {
    border-radius: 10px;
    box-shadow: 0px 0px 3px #2F363D40;
    background-color: #FFFFFF;
    position: fixed;
    right: 25px;
    z-index: 999999;
    color: #374B5C;
    -webkit-animation-name: slide_to_top;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-timing-function: ease;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-direction: normal;
    -webkit-animation-delay: 0s;
    -webkit-animation-play-state: running;
    -webkit-animation-fill-mode: forwards;
}

.laravel-cookies-consent.slide_down {
    -webkit-animation-name: slide_to_bottom;
}

@-webkit-keyframes slide_to_top {
    0% {
        bottom: -800px;
    }
    100% {
        bottom: 25px;
    }
}

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

/*.laravel-cookies-consent .outer-wrapper {*/
/*    padding: 20px;*/
/*}*/

.laravel-cookies-consent .cookies-title {
    margin-top: 0;
}

.laravel-cookies-consent .cookies-text {
    color: #4C5961;
}

.laravel-cookies-consent .cookies-text a {
    color: #4C5961;
    text-decoration: underline;
}

.laravel-cookies-consent .cookies-close {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 30px;
    height: 30px;
    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: 10px;
    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-top: 15px;
}

.laravel-cookies-consent .consent-form-container .consent-checkboxes {
    margin-bottom: 25px;
}

.laravel-cookies-consent .consent-form-container .consent-checkboxes .form-group label {
    font-size: small;
    letter-spacing: 1px;
}

.laravel-cookies-consent .consent-form-container .consent-checkboxes .form-group input:hover {
    cursor: pointer;
}

.laravel-cookies-consent .consent-form-container .consent-buttons .consent-submit {
    display: block;
    color: #FFFFFF;
    border-radius: 10px;
    text-align: center;
    border: 1px solid;
    width: 48%;
    font-size: small;
    line-height: 35px;
    padding: 0;
    margin: 0;
    text-decoration: none;
}

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

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

.laravel-cookies-consent .consent-form-container .consent-buttons .consent-submit {
    border-color: #FFFFFF;
}

.laravel-cookies-consent .consent-form-container .consent-buttons .consent-submit.consent-accept {
    display: block;
    width: 100%;
    margin-bottom: 8px
}

.laravel-cookies-consent .consent-form-container .consent-buttons .consent-submit.consent-decline-all {
    display: block;
    width: 100%;
    margin-bottom: 8px;
}


.switch {
    cursor: pointer;
}

.switch:has(input:checked) .switch-off {
    display: none;
}

.switch:has(input:checked) .switch-on {
    display: block;
}

.switch .switch-on {
    display: none;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .laravel-cookies-consent {
        bottom: 10px;
        left: 5px;
        width: calc(100% - 10px);
    }

    /*.laravel-cookies-consent .outer-wrapper {*/
    /*    padding: 10px;*/
    /*}*/
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .laravel-cookies-consent {
        width: 75%;
    }

    /*.laravel-cookies-consent .outer-wrapper {*/
    /*    padding: 15px;*/
    /*}*/
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .laravel-cookies-consent {
        width: 55%;
    }
}

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

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