.laravel-cookies-consent {
    border: 1px solid #2D2D2D;
    border-radius: 10px;
    background-color: #2D2D2D;
    position: fixed;
    left: 25px;
    z-index: 1;
    color: #FFFFFF;
    animation-name: slide_to_top;
    animation-duration: 1.5s;
    animation-timing-function: ease;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-delay: 0s;
    animation-play-state: running;
    animation-fill-mode: forwards;
    max-height: 90vh;
    overflow-y: auto;
    filter: drop-shadow(0px 0px 4px #F0F0F0);
}

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

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

@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: lightgrey;
}

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

.laravel-cookies-consent .cookies-close {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 30px;
    height: 30px;
    font-size: 0;
}

.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 {
    margin-bottom: 0;
}


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

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

.laravel-cookies-consent .consent-form-container .consent-checkboxes .form-group input:checked + label {
    position: relative;
}

.laravel-cookies-consent .consent-form-container .consent-checkboxes .cookies {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    padding-left: 20px;
    margin-bottom: 10px;
}

.category-label, .cookie-label, .category-description{
    margin: 0;
}

.cookies .cookie-property-key {
    font-weight: bold;
    vertical-align: top;
    width: 140px;
    font-size: small;
}

.cookies .cookie-property-value {
    font-size: small;
}

.category-description {
    font-size: small;
    margin-bottom: 10px;
}

.category-description.hidden{
    display: none;
}

.laravel-cookies-consent .consent-form-container .consent-checkboxes .show_details {
    border: none;
    background: none;
    position: absolute;
    right: 20px;
}

.laravel-cookies-consent .consent-form-container .consent-checkboxes .show_details.active svg {
    transform: rotate(180deg);
}

.laravel-cookies-consent .consent-form-container .consent-buttons {
    display: inline-block;
    width: 100%;
}

.laravel-cookies-consent .consent-form-container .consent-buttons .consent-submit {
    height: 35px;
    color: #FFFFFF;
    border-radius: 35px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    border: 1px solid;
    width: 48%;
    font-size: small;
}

.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.consent-accept {
    background-color: transparent;
    border-color: #FFFFFF;
    float: left;
}

.laravel-cookies-consent .consent-form-container .consent-buttons .consent-submit.consent-decline-all {
    background-color: transparent;
    border-color: #FFFFFF;
    float: right;
}

/* 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: 620px;
    }
}

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