.cookie-modal{
    position: fixed;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    height: auto;
    background: none;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.cookie-modal.show{
    display:flex;
}

.cookie-modal-content{
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    background: #fff;
    border-radius: 0;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.cookie-modal-content h3{
    width: 100%;
    margin: 0 0 1rem;
}
.cookie-modal-content p{
    width: calc(100% - 13rem); margin: auto;
}
.cookie-modal-content button{
    width: 12rem; margin: auto;
}