.modal-container ::-webkit-scrollbar {
    width: 15px;
}

.modal-container ::-webkit-scrollbar-track {
    background-color: #fff;
    border-radius: 0 5px 5px 0;
}

#cookie-warning {
    z-index: 998;
    position: fixed;
    bottom: 0;
    width: 100vw;
    min-height: 60px;
    padding: 5px;
    flex-direction: column;
    background-color: #404040;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    text-align: center;
    display: none;
}

#cookie-warning div {
    padding: 0 10px;
}

#cookie-warning button, .modal-container button {
    background-color: orange;
    border: none;
    border-radius: 25px;
    color: #fff;
    font-weight: bold;
    padding: 5px;
    width: 110px;
}

#cookie-warning a {
    color: #fff;
    text-decoration: underline;
}

#cookie-warning button:hover, .modal-container button:hover {
    background-color: #fce927;
}

#cookie-warning button:focus, .modal-container button:focus {
    border: none;
    outline: none;
}

.modal-container {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
    color: #111111;
}

.modal-container .modal-content {
    width: 90vw;
    background-color: #fff;
    border: 5px solid orange;
    padding: 10px;
    border-radius: 10px;
    overflow: auto;
    max-height: 95vh;
}

@media screen and (min-width: 992px) {
    #cookie-warning {
        flex-direction: row;
    }

    .modal-container .modal-content {
        width: 50vw;
        min-height: 50vh;
    }
}
