#cookiebanner {
    position: fixed;
    top: calc(100vh - 300px);
    left: 0;
    right: 0;
    margin: auto;
    width: fit-content;
    max-width: 90vw;
    background-color: #113260de;
    color: white;
    border-radius: 18px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.header-cookiebanner {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    margin-bottom: 16px;
}

.text-content{
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 18px 18px 0px 18px;
}

.title-content-cookiebanner {
    font-size: 15px;
    margin-left: 12px;
}

.text-content-cookiebanner {
    font-size: 13px;
    margin-bottom: 16px;
}

.btn-group-cookiebanner {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.btn-cookiebanner {
    width: 50%;
    padding: 6px 12px;
    background-color: transparent;
    font-size: 13px;
    border: none;
    border-top: 1px solid #e0e0e0c0;
    color: white;
}

.btn-cookiebanner:first-child {
    border-radius: 0px 0px 0px 18px;
    color: white;
    border-right: 1px solid #e0e0e0c0;
}

.btn-cookiebanner:first-child:hover {
    background-color: #2a4163;
}

.btn-cookiebanner:last-child {
    border-radius: 0px 0px 18px 0px;
    color: #113260;
}

.btn-cookiebanner:last-child:hover {
    background-color: rgb(204, 204, 204);
}

.accept-btn {
    background-color: white;
    color: #113260;
}