@media screen and (min-width: 1200px) {
    #divModal {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0,0,0,0.75);
        padding-bottom: 10px;
        z-index: 1000;
        overflow: none;
        align-items: center;
        justify-content: center;
    }

    #divReadMore {
        position: relative;
        min-width: 725px;
        max-width: calc(100% - 2em);
        height: fit-content;
        background-color: white;
        padding: 10px;
        border-radius: 10px;
    }

    #divModalContent {
        display: grid;
        grid-template-rows: 64px auto;    
        background-color: #eeebea;
        border-radius: 6px;
        padding: 24px 24px;
    }

    #divModalBody {
        padding-bottom: 16px;
    }    

    #lblModalTitle {
        position: relative;
        font-size: 1.8em;
        font-weight: bold;
        color: gray;
        top: 10px;
        margin-bottom: 10px;
    }

    #iModalClose {
        position: absolute;
        right: 32px;
        top: 32px;
        color: gray;
        font-size: 20px;
        cursor: pointer;
    }
}


@media screen and (max-width: 1200px) {
    #divModal {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0,0,0,0.75);
        padding-bottom: 10px;
        z-index: 1000;
        overflow: none;
        align-items: center;
        justify-content: center;
    }

    #divReadMore {
        position: relative;
        width: 86%;
        height: auto;
        max-height: 75vh;
        background-color: white;
        padding: 10px;
        border-radius: 10px;
    }

    #divModalContent {
        display: grid;
        grid-template-rows: 64px auto;    
        background-color: #eeebea;
        border-radius: 6px;
        padding: 0px 10px;
        overflow-y: auto;
        height: 100%;
    }

    #divModalBody {
        padding-bottom: 16px;
    }

    #lblModalTitle {
        position: relative;
        font-size: 1.8em;
        font-weight: bold;
        color: gray;
        top: 10px;
        margin-bottom: 10px;
    }

    #iModalClose {
        position: absolute;
        right: 32px;
        top: 32px;
        color: gray;
        font-size: 20px;
        cursor: pointer;
    }
}