.wrapper {
    padding: 32px;
}

.cookie-container {
    position: fixed;
    bottom: -100%;
    width: 75%;
    margin: 0 auto;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(215, 215, 215, 1) 25%, rgba(254, 254, 254, 1) 76%);
    color: #00364F;
    padding: 1%;
    box-shadow: 0 -2px 16px rgba(47, 54, 64, 0.39);
    transition: 400ms;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    font-family: 'Montserrat-Medium';
    font-size: 2vh;
}

.cookie-container p {
    margin: 1vh;
    line-height: 2;
    text-align: center;
}

.cookie-container.active {
    bottom: 0;
}

.cookie-container a {
    text-decoration: none;
    color: #00364F;
}

.cookie-btn-container {
    width: 65%;
    text-align: center;
    margin-bottom: 1vh;
}

.cookie-btn-container button {
    background: #CADCB9;
    border: 0;
    color: white;
    padding: 2% 1%;
    font-size: 1.6vh;
    width: 25%;
    cursor: pointer;
    float: right;
}

#cookiebtnok {
    background: #00364F;
    float: left;
}