/* Modal Object code */

.o-modal__overlay {
    z-index: 1000;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.o-modal {
    z-index: 1010;
    position: fixed;
    left: 0;
    right: 0;
    width: 800px;
    max-width: 100%;
    height: 600px;
    max-height: 100%;
    background-color: #FFF;
    padding: 50px;
    display: grid;
    width: calc(100% - 100px);
    max-width: 1250px;
    height: calc(100vh - 100px);
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
    grid:
        ". cbtn" min-content
        "content content" 1fr
        / 1fr min-content;
}
.o-modal__content {
    overflow: auto;
    grid-area: content;
}

.o-modal.o-modal--closed,
.o-modal__overlay.o-modal--closed {
    display: none;
}