﻿

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "popppins",sans-serif;
}

body {
    min-height: 10vh;
    /*background-color: #4070f4;*/
}





.cookieWrapper {
    font-family: tahoma;
    font-size: 14px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: fixed;
    max-width: 545px;
    width: 100%;
    bottom: 50px;
    right: 20px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    padding: 15px 25px 22px;
    transition: all 0.3s ease;
    background-color: rgba(25, 27, 35, .95);
}


    .cookieWrapper.show {
        right: 20px;
    }


    .cookieWrapper header {
        display: flex;
        align-items: center;
        column-gap: 15px;
    }

header i {
    color: #4070f4;
    font-size: 32px;
}

header h2 {
    color: #4070f4;
    font-weight: 500;
}


.cookieWrapper .data {
    margin-top: 16px;
}

    .cookieWrapper .data p {
        color: #fff;
        margin-top: 16px;
    }

.data p a {
    color: #4070f4;
    text-decoration: none;
}

    .data p a:hover {
        text-decoration: underline;
    }

.cookieWrapper .buttons {
    margin-top: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.buttons .button {
    border: none;
    color: #fff;
    padding: 8px 0;
    border-radius: 4px;
    background: #4070f4;
    cursor: pointer;
    width: calc(100% /2 - 10px);
    transition: all 0.2s ease;
}

    .buttons .button:hover {
        background-color: #034bf1;
    }
