.messbox {
    flex-direction: column;
    justify-content: center;
    height: 80px;
    width: 300px;
    background: rgba(255, 0, 0, 0.7);
    position: fixed;
    top: 25px;
    right: calc(50vw - 160px);
    text-align: right;
    padding-right: 10px;
    color: #ff0000;
    border-radius: 5px;
    display: none;
    transition: .3s;


    border: 1px solid #ff0000;
    box-shadow: 0px 0px 15px 0px #ff0000;
}
.messbox.sucs {
    flex-direction: column;
    justify-content: center;
    height: 80px;
    width: 300px;
    background: #1eff00b3;
    position: fixed;
    top: 25px;
    right: calc(50vw - 160px);
    text-align: right;
    padding-right: 10px;
    color: #1eff00b3;
    border-radius: 5px;
    display: none;
    transition: .3s;


    border: 1px solid #1eff00b3;
    box-shadow: 0px 0px 15px 0px #1eff00b3;
}

.messbox p.mess {
    padding-right: 15px;
}



img.closemess {
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    left: 8px;
    top: 8px;
}