#notification {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 25;
}
#notification-main {
    position: fixed;
    border-radius: 10px;
    display: none;
    top: 64px;
    right: 0;
    width: 320px;
    height: 456px;
    padding: 0 !important;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    margin-top: 5px;
    margin-right: 15px;
    translate: 320px;
    opacity: 0;
    transition: all 0.2s;
}

#notification-cover {
    position: fixed;
    display: none;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
#notification-header {
    display: flex;
    padding: 8px;
    transition: all 0.2s;
}
#notification-header > span {
    font-size: 20px;
    margin-block: auto;
    margin-right: 8px;
    display: none;
    cursor: pointer;
    border-radius: 50px;
    padding: 8px !important;
    
}
#notification-header > p {
    font-size: 16px;
    font-weight: 500;
    margin-block: auto;
}
#notification-header button {
    display: block;
    border-radius: 5px;
    height: min-content;
    width: min-content;
    margin-block: auto;
    padding: 0;
    margin-left: auto;
}

#notification-header button > span {
    font-size: 18px;
    font-weight: 500;
    padding: 5px;
    margin: 0;
    display: block;
}

@media only screen and (max-width: 600px) {
    #notification-main {
        margin: 0 !important;
        top: 0;
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 0;
    }
    #notification-header {

        padding: 10px;
    }
    #notification-header > span {
        display: block;
        padding: 5px;
    }
    #notification-header > button {
        display: none;
    }

}

#notification-body {
    width: 100%;
    height: calc(100% - 46px);
    padding: 8px;
    font-size: 14px;
    position: relative;
}