.message{
    max-width: 450px;
    height: 140px;
    border-radius: 35px;
    position: fixed;
    top: 60px;
    left: -460px;
    z-index: 9;
    transition: all 1s ease;
}
.message.active{
    left: 30px;
}
.message_contents_container{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-direction: row-reverse;
    overflow: hidden;
    border-radius: 35px;
    column-gap: 20px;
    direction: rtl;
}
.message_contents_container>div:nth-child(1){
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    width: 80px;
    padding-top: 20px;
}
.message_contents_container>div:nth-child(2){
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: column;
    row-gap: 10px;
    flex-grow: 1;
}
.message_contents_container>div:nth-child(2)>div:nth-child(1){
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
}
.message_contents_container>div:nth-child(2)>div:nth-child(2){
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 10px;
}
.admin_message_ok_btn1{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 50%;
    height: 40px;
    border-radius: 10px;
    border: 1px solid white;
    outline: none;
    background-color: white;
    font-weight: 300;
    cursor: pointer;
}
.admin_message_close_btn1{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 50%;
    height: 40px;
    border-radius: 10px;
    border: 1px solid white;
    outline: none;
    background-color: inherit;
    color: white;
    font-weight: 300;
    cursor: pointer;
}

.message_contents_container>div:nth-child(3){
    width: 100px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.top_icon{
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    top: -50px;
    right: 50px;
    width: 80px;
    height: 80px;
}
.top_icon>img:nth-child(1){
    position: absolute;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    z-index: -1;
}
.top_icon>img:nth-child(2){
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.message.success{
    background-color: #4E8D7C;
}
.message.success .admin_message_ok_btn1{
    color: #4E8D7C;
}
.message.error{
    background-color: #F05454;
}
.message.error .admin_message_ok_btn1{
    color: #F05454;
}
.message.warning{
    background-color: #EF8D32;
}
.message.warning .admin_message_ok_btn1{
    color: #EF8D32;
}