.dm-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    overflow-y: scroll;

    &__close-button {
        cursor: pointer;
    }

    .page {
        background-color: white;
    }
}
