cookies[show] {
    display: flex;
    bottom: 0px;
}

cookies {
    display: flex;
    position: fixed;
    box-sizing: border-box;
    flex-direction: column;
    bottom: -100%;
    left: 0px;
    width: 100%;
    height: auto;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    padding: 10px var(--content-padding) ;
    user-select: none;
    transition: bottom 2s linear;
}

cookies > header {
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    color: white;
    padding: 5px var(--responsity-padding);
}

cookies text {
    display: block;
    width: 100%;
    box-sizing: border-box;
    color: white;
    font-size: 14px;
    padding: 5px var(--responsity-padding); 
    margin-bottom: 10px; 
    word-break: normal;
    word-spacing: normal;
    text-align: justify;
    margin-bottom: 10px;
}

cookies button {
    display: flex;
    position: relative;
    left: 0px;
    padding: 8px 12px;
    width: auto;
    border: 1px solid white;
    color: white;
    background-color: transparent;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.15s ease;
}

cookies button:hover {
    background-color: white;
    color: black;
}

cookies > column {
    display: flex; 
    flex-direction: row; 
    padding: 5px var(--responsity-padding);
    gap: 10px;
}