.cookie-banner {
    position: fixed;
    width: 40%;
    right: 50px;
    bottom: 30px;
    height: max-content;
    background-color: #fff;
    padding: 20px 15px; 
    box-shadow: 0 4px 15px 2px rgb(0 0 0 / 20%);
    border-radius: 10px;
    transform: translateY(120%);
    z-index: 99999;
    transition: .2s ease-in;
    font-size: 14px;
}
@media screen and (max-width: 1024px) {
    .cookie-banner {
        width: calc(100% - 30px);
        left: 15px;
        bottom: 65px;
    }
}

.cookie-banner.active {
    transform: translateY(0);
    transition: .2s ease-out;
}

.cookie-main-text p {
    margin: 14px 0
}

.cookie-title {
    font-size: large;
    font-weight: bold;
}

.cookie-btns {
    display: flex;
    justify-content: end;

}

.cookie-btns .cookie-btn {
    margin: 0 10px;
    background-color: #fff;
    border: solid 1px;
    padding: 8px;
    border-radius: 5px;
    cursor: pointer;
}

.cookie-btns .cookie-btn.allow {
    background-color: #08abec;
    color: #fff;
    font-weight: bold;
}

.cookie-modal {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.75);
    visibility: hidden;
    opacity: 0;
    transition: .2s ease-in;
    z-index: 99999999999999;
}
@media screen and (max-width: 1024px) {
    .cookie-modal {
        padding: 15px;
    }
}
.cookie-modal.active {
    visibility: visible;
    opacity: 1;
    transition: .2s ease-out;
}

.cookie-modal .cookie-modal-div {
    width: min(80%, 800px);
    height: fit-content;
    background-color: #fff;
    padding: 30px; 
    box-shadow: 0 4px 15px 2px rgb(0 0 0 / 20%);
    border-radius: 10px;
    transform: scale(0.5);
    transition: .2s ease-in;
}

.cookie-modal.active .cookie-modal-div {
    transform: scale(1);
    transition: .2s ease-out;
}

.cookie-settings-item {
    padding-left: 30px;
    margin-bottom: 15px;
}

.cookie-settings-item-div {
    display: flex;
    align-items: center;
    font-weight: bold;
}

.cookie-settings-item-div input {
    margin-right: 10px;
}