﻿#notificationModal {
    display: none;
    position: fixed;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.25);
}

#notificationModalContent {
    font-size: 16px;
    background-color: white;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%);
    width: 50%;
    padding: 20px;
    border-radius: 5px;
    border: 2px solid black;
    text-align: center;
}

    #notificationModalContent p {
        margin-bottom: 24px;
    }
/*.cmsBtn {
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    border: none;
    outline: none;
    cursor: pointer;
    transition: ease 300ms;
}
.cmsBtnEdit {
    background-color: #2060ae;
    color: white;
}

    .cmsBtnEdit:hover {
        color: white;
        background-color: #0d4487;
    }
*/
@media screen and (max-width: 768px) {
    #notificationModalContent {
        font-size: 14px;
    }
        #notificationModalContent p {
            margin-bottom: 18px;
        }
}
@media screen and (max-width: 550px) {
    #notificationModalContent {
        font-size: 12px;
    }
}