#cookie-banner {
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: #fff;
    padding: 20px;
    border-radius: 0px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cookie-banner-hidden,
.cookie-modal-hidden {
    display: none !important;
}

#cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.close-button {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 720px;
    line-height: 23px;
}

.modal-title {
    color: #555;
}

.cookie-checkbox-toogle {
    width: 20px;
    height: 20px;
}

.cookie-plus-minus {
    width: 20px;
    height: 20px;
    font-size: 1.5em;
    position: relative;
    display: inline-block;
    margin-right: 5px;
    top: 3px;
    cursor: pointer;
}

.cookie-plus-minus span:first-of-type {
    top: 25%;
    bottom: 25%;
    width: 10%;
    left: 45%;
}

.cookie-plus-minus span:last-of-type {
    left: 25%;
    right: 25%;
    height: 10%;
    top: 45%;
}

.cookie-plus-minus-open span:first-of-type {
    display: none;
}

.essential-cookie-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-plus-minus span {
    position: absolute;
    background: #27455c;
    border-radius: 1px;
}

.cookie-header-text {
    font-size: 14px;
    height: 17px;
    display: flex;
}

.cookies-description-hidden {
    display: none;

}

#cookies-description {
    background: #F8F8F8;
}

.modal-description {
    margin-bottom: 20px;
    color: #555;
    font-size: 14px;
}

.btn-cookie {
    padding: 10px 20px;
    cursor: pointer;
    border: none;
    font-size: 12px;
}

.btn-success {
    background: #094f95;
    color: white;
}

.btn-danger {
    background: #094f95;
    color: white;
    margin: 0 10px;
}

.btn-link {
    background: transparent;
    text-decoration: underline;
    color: #666;
}

.cookie-type {
    margin: 5px 0;
    border: 1px solid #f1f1f1;
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
    padding: 10px;
}

.essential-cookie-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-always-active {
    font-weight: 600;
    color: #3860be;
    font-size: 14px;
}

.cookie-description {
    color: #555;
    font-size: 14px;
    background: #F8F8F8;
}

.cookie-type-description {
    margin: 15px 0;
    color: #555;
    padding: 10px;
    font-size: 14px;
}

.cookies-list {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 20px;
    margin-top: 10px;
    background: #F8F8F8;
    padding: 10px;
    color: #696969;
}

.cookies-list li {
    margin-bottom: 10px;
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 10px;
    font-size: 14px;
}

.cookie-container {
    color: #555;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.modal-footer {
    margin-top: 60px;
    display: flex;
    justify-content: end;
}