﻿
.cookie-wrapper {
    width: 100%;
    position: fixed;
    z-index: 10000;
    height: 100vh;
    top: 0;
}

    .cookie-wrapper .back-for-click {
        background-color: rgba(0, 0, 0, 0.7);
        width: 100%;
        height: 100vh;
    }

    .cookie-wrapper .cookie-body {
        background-color: #f4f4f4;
        color: #000000;
        padding: 2rem;
        position: absolute;
        z-index: 90000;
        bottom: 0;
    }
@media screen and (max-width: 660px) {
    .cookie-wrapper .cookie-body {
        bottom:unset;
        top:0;
    }
    }
    .cookie-wrapper .cookie-body a {
        color: rgb(186, 147, 62);
    }

    .cookie-wrapper .cookie-body .cookie-text {
        width: calc(100% - 300px);
        float: left;
    }

    @media screen and (max-width: 660px) {
        .cookie-wrapper .cookie-body .cookie-text {
            width: 100%;
            float: none;
        }
    }

    .cookie-wrapper .cookie-body .cookie-text p {
        padding: 0 20px;
        font-size: 1rem;
    }

    .cookie-wrapper .cookie-body .cookie-button {
        margin: 1.3125rem 0;
        padding: 10px 20px;
        /*background-color: #006aa7;*/
        display: block;
        /*width: 200px;*/
        text-align: center;
        text-transform: uppercase;
        float: left;
    }

    @media screen and (max-width: 660px) {
        .cookie-wrapper .cookie-body .cookie-button {
            margin: 10px auto;
            float: none;
        }
    }
