#cookie-banner {
    position: fixed;
    bottom: 0;
    background: #222;
    color: #fff;
    padding: 1em;
    width: 100%;
    text-align: center;
    z-index: 10000;
}

#med-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-content {
    position: relative;
    /*top: 50%;*/
    padding: 100px;
    width: 100%;
    /*transform: translateY(-50%);*/
    background-color: #fff;
}

.modal-content p {
    margin-bottom: 30px;
    text-align: center;
}

.btn-wrap {

    display: flex;
    justify-content: center;
}

.medi-btn {

    display: block;
    text-decoration: none;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 20px 40px;
    width: 200px;
    margin: 0 auto;
    transition: 0.3s;
    cursor: pointer;
}

.btn-yes {
    background-color: #60cfff;
    color: #fff;
    border: none;
}

.btn-yes:hover {
    border: none;
    opacity: 0.8;
}

.btn-no {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
}

.btn-no:hover {
    border: 1px solid #000;
    opacity: 0.8;
}



.no-anime {
    animation-name: reshow;
    animation-duration: 0.5s;
    animation-fill-mode: both;
}

@keyframes reshow {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#cookie-banner {
    padding: 0;
}

.cookie-wrap {
    background-color: rgba(239, 239, 239, 1);
    padding: 15px 30px;
    text-align: left;
    width: 100%;
    color: #000;
    font-size: 0.9em;
    box-sizing: border-box;
}

.cookie-btn {
    background-color: #001f58;
    color: #fff;
    padding: 10px 30px;
    transition: 0.3s;
}

.cookie-btn:hover {
    opacity: 0.8;
}

.cookie-btn-wrap {
    margin-top: 20px;
}

@media all and (max-width:750px) {
    .modal-content {
        padding: 20px;
    }

    .medi-btn {
        margin: 10px;
    }
}
