.modal {
    position: fixed;
    top: 0;
    left: 0;
    height: 0;
    width: 100%;
    z-index: 9999;
    overflow: hidden;   
}
.modal.show {
    height: 100%;
    opacity: 1;
}
.modal .outer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 150ms ease;
}
.modal.show .outer {
    background: rgba(0, 0, 0, .6);
}
.modal .inner {
    width: 100%;
    max-width: 300px;
    background: var(--background);
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    box-sizing: border-box;
    opacity: 0;
    z-index: 2;
    transition: opacity 150ms ease 0ms, transform 0ms ease 150ms;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.modal.show .inner {
    opacity: 1;
    padding: 30px;
    text-align: center;
}
.modal.show .inner .basket {
    margin-bottom: 20px;
}
/*.modal .inner .left {
    width: 60%;
    padding: 30px;
    box-sizing: border-box;
}
.modal .inner .right {
    width: 40%;
    padding: 30px;
    box-sizing: border-box;
    background: var(--accents);
}*/
.modal .inner .full /* used @ besteltraject for notices, zoals adres not found */ {
    width: 100%;
    padding: 30px;
    text-align: center;
    box-sizing: border-box;
}
.modal .inner .title {
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1.2;
    display: block;
    margin-bottom: 1em;
    text-transform: lowercase;
}
.modal .inner .left .product {
    display: block;
}
.modal.show .inner .close.txt {
    margin-top: 20px;
    cursor: pointer;
    display: block;
    text-transform: lowercase;
}
.modal .button-row {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
@media screen and (max-width: 1000px) {
    /* SHOP NOTIFICATION */
    .modal .inner {
        flex-direction: column;
    }
    .modal .inner .left,
    .modal .inner .right {
        width: 100%;
    }
    .modal.show .inner .close.txt {
        position: static;
        margin-top: 20px;
    }
    .modal .inner .right .shopbtn {
        margin-top: 20px;
    }
}
