.cookies {
    background-color: #fff;
    color: #878490;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    padding: 5px 15%;
    text-align: center;
    -webkit-box-shadow: 0px 0px 17px -11px rgba(66, 68, 90, 1);
    -moz-box-shadow: 0px 0px 17px -11px rgba(66, 68, 90, 1);
    box-shadow: 0px 0px 17px -11px rgba(66, 68, 90, 1);
}

.cookies {
    width: 70%;
    transition: all 1s ease-in-out;
}

.cookies .close {
    color: #878490;
    font-size: 1.5em;
    font-weight: bold;
    position: absolute;
    right: 10px;
    top: calc(50% - 0.75em);
    cursor: pointer;
}
.cookies .close p {
    margin: 0;
    padding: 0;
    background: #dddddd;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: cursive;
}
.cookies .close p:hover {
    background: #878490;
    color: #fff;
}