#mess {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgb(31 31 33 / 41%);
}
#mess > div {
    display: flex;
    width: 300px;
    height: 200px;
    background: var(--ColorThemes0);
    box-shadow: 0px 24px 32px rgb(0 0 0 / 9%), 0px 16px 24px rgb(0 0 0 / 9%), 0px 4px 8px rgb(0 0 0 / 9%), 0px 0px 1px rgb(0 0 0 / 9%);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    z-index: 9999;
    padding: 10px;
    border-radius: 25px;
}
#mess-text {
    color: var(--ColorThemes2);
    font-size: 18px;
    text-align: center;
}
#mess-content{
    width: calc(100% - 20px);
    height: 100%;
    /* background: var(--ColorThemes1); */
    margin: 5px 0;
    border-radius: 20px;
    padding: 10px;
}
#mess-content input{
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    height: 30px;
    color: var(--ColorThemes2);
    padding: 2px 10px;
    background: var(--ColorThemes1);
    cursor: pointer;
    border: 0;
    margin-bottom: 5px;
    margin-left: 0;
    width: calc(100% - 20px);
    border-radius: 20px;
}
#mess-content textarea{
    resize: none;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    height: 215px;
    color: var(--ColorThemes2);
    padding: 10px;
    background: var(--ColorThemes1);
    cursor: pointer;
    border: 0;
    margin-bottom: 5px;
    margin-left: 0;
    width: calc(100% - 20px);
    border-radius: 15px;
}
#mess-content p{
    font-size: 16px;
    color: var(--ColorThemes2);
}
#mess-buttons{
    width: 100%;
    display: flex;
}
#mess-buttons > button{
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    height: 30px;
    color: var(--ColorThemes2);
    padding: 2px 10px;
    background: var(--ColorThemes1);
    cursor: pointer;
    border: 0;
    width: 100%;
    margin: 0 5px 0 0;
    border-radius: 20px;
}
#mess-buttons > button:nth-child(2n){
    background: var(--PrimaryColor);
    color: var(--PrimaryColorText);
    margin: 0 0 0 5px;
}