.cookie-background {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-color: black;
    opacity: 50%;
    z-index: 1;
}

.cookie-popup {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 15px;
    position: absolute;
    width: 1000px;
    height: 100px;
    left: 50%;
    bottom: 0%;
    transform: translate(-50%, -20%);
    background-color: var(--color-background);
    border:5px solid var(--color-background-light);
    z-index: 2;
}

.cookie-info, .cookie-alert, .cookie-buttons{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.cookie-buttons:hover {
    cursor: pointer;
}

.cookie-alert {
    width: 25%;
    height: 100%;
}

.cookie-info {
    width: 75%;
    height: 100%;
}

.cookie-title {
    text-shadow: none;
    font-size: 17px;
}

.cookie-info-text {
    width: 450px;
    overflow: hidden;
}

.cookie-divider{
    border-left: 2px solid white;
    height: 100%;
    border-radius: 0%;
}

@media screen and (max-width: 1140px) {
    .cookie-popup {
        width: 900px;
    }
}

@media screen and (max-width: 978px) {
    .cookie-popup {
        height: 150px;
        width: 700px;
    }

    .cookie-info {
        width: 100%;
    }

    .cookie-alert {
        width: 50%;
    }

    .cookie-popup, .cookie-alert {
        flex-direction: column;
    }
    .cookie-divider {
        border-left: none;
        border-bottom: 2px solid white;
        width: 100%;
    }
}

@media screen and (max-width: 788px) {
    .cookie-popup {
        height: 200px;
        width: 600px;
    }
    .cookie-info {
        flex-direction: column;
    }
}

@media screen and (max-width: 665px) {
    .cookie-alert {
        height: auto;
        width: 100%;
    }
    .cookie-popup {
        height: 250px;
        width: auto;
    }
    .cookie-info-text {
        height: 50%;
        width: 100%;
    }
}
