body {
    background-color: #f5f7fa;
}

.notification-container {
    position: fixed;
    /* display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 10px; */
    justify-content: center;
    align-items: center;
    /* min-width: 25vw;
    min-height: 10vh;
    max-width: 25vw;
    max-height: 10vh; */
    width:30rem;
    height:7rem;
    padding: 1em;
    padding-right: 2em;
    right: 5vw;
    bottom: 5vh;
    /* background-color: gray; */
    /* border:1px solid black; */
    z-index: 1111111111111111;
    background-color: rgb(250,250,250);
    border-left: 0.4em solid rgba(0, 255, 0, 0.8);
    /* border-bottom-left-radius:10px;
    border-top-left-radius: 10px; */

    border-radius: 10px;
    transition: 0.2s;
    display: none;

}

.notification-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width:60%;
    word-wrap: break-word;
    gap: 1vh;
    padding: 0 1em 0 1em;
}

#notification-title {
    font-size: 1.5em;
    padding: 0;
    margin: 0;
}

#notification-text {
    line-height: 1.3em;
    font-size: 1em;
    flex: 1;
    color: rgb(100, 100, 100);
    /* align-items: center; */
    padding: 0;
    margin: 0;
}

.notification-exit,
#notification-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    font-size: 2em;
    font-weight: bold;
    color: rgb(100, 100, 100);
}

.notification-exit {
    cursor: pointer;
}

.success, .info, .error {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 100%;
    background-color: rgba(0, 255, 0, 0.8);
    width: 50px;
    height: 50px;
}

.info {
    background-color: rgba(0, 0, 255, 0.8);
}

.error {
    background-color: rgba(255, 0, 0, 0.8);
}

.checkmark {
    width: 25px;
    height: 12.5px;
    border-left: 4px solid white;
    border-bottom: 4px solid white;
    transform: rotate(-45deg);
    position: absolute;
    bottom: 45%;
}