body {
    margin: 0;
    padding: 0;
}

.mcookies-consent {
    align-items: center;
    background-color: rgba(237, 231, 225,0.5);
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9000;
}

.mcookies-card {
    align-items: center;
    background-clip: border-box;
    background-color: #FFFFFF;
    border-radius: 6px;
    border: 2px solid #C0C0C0;
    box-shadow: 0px 8px 16px 0px rgb(161, 163, 164);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    width: 50%;
    word-wrap: break-word;
}

.mcookies-container {
        align-items: center;
    padding: 20px;
        display: flex;
    flex-direction: column;
    justify-content: center;
        word-wrap: break-word;
}

.mcookies-card button {
    background: #C9C9C9;
    border-radius: 12px;
    border: 3px solid #C0C0C0;
    color: #FFFFFF;
    cursor: pointer;
    flex-direction: column;
    font-size: 13px;
    font-weight: 700;
    justify-content: center;
    margin: 5px 0;
    padding: 10px;
    text-decoration: none;
    transition: background 0.07s, color 0.07s, border-color 0.07s;
    width: 100px;
}

.mcookies-card button:hover {
    background: #00FF00;
    border: 3px solid #00FF09;
    color: #000000;
}

.mcookies-img {
    border-radius: 50%;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    width: 100px;
}

.hidden {
    display: none;
}