#cookie-wrapper {
    line-height: 1.5;
    letter-spacing: 0rem !important;
    position: fixed;
    bottom: 0;
    background: white;
    padding: 16px;
    width: 90%;
    box-sizing: border-box;
    justify-content: space-between;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid #dbdbdb;
    box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.08);
    display: none;
    flex-direction: column;
    gap: 16px;
    z-index: 2500;
}

#cookie-wrapper.show {
    display: flex;
}

#cookie-wrapper p {
    margin: 0 !important;
    color: #6a6a6a;
    line-height: 1.8;
    font-size: 14px;
    display: inline;
}

.cookie-icon {
    font-size: 14px;
    width: 15px;
    height: 15px;
    vertical-align: sub;
}

#cookie-wrapper #cookie-title {
    font-size: 15px;
    font-weight: bold;
}

#cookie-title::first-letter {
    text-transform: capitalize;
}

#cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

#cookie-buttons button {
    line-height: normal !important;
    flex: 1;
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border: 1px solid black;
    width: 100%;
    min-width: 100%;
    height: fit-content;
}

#cookie-buttons #cookie-nope {
    background-color: white;
    color: black;
    margin-top: auto;
}

#cookie-buttons #cookie-ok {
    background-color: #222222;
    color: white;

}

#cookie-buttons #cookie-ok:hover {
    background-color: black;
}

@media (min-width: 768px) {
    #cookie-wrapper {
        flex-direction: row;
    }
}


.cookie-icon {
    width: 15px;
    height: 15px;
    vertical-align: sub;
}

.cookie-policy-link {
    font-weight: bold;
    color: black !important;
}