*{
    border: 0;
    margin: 0;
    padding: 0;
    direction: rtl;
    font-family: Vazir;
}
.write{
    position: fixed;
    bottom: 20px;
    width: calc(100% - 30px);
    left: 15px;
    /* border: 1px dashed blue; */
    height: 80px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: stretch;
}
textarea{
    border: 1px rgb(190, 190, 190) dashed;
    border-radius: 10px;
    padding: 0 10px;
    width: calc(100% - 20px);
    font-size: 14px;
}
.send{
    width: 100%;
    text-align: center;
    background-color: #ff6318;
    color: #ffffffe1;
    border-radius: 10px;
    height: 30px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    transition: 1s;
}
.deactive{
    background-color: lightgray;
    box-shadow: rgba(50, 50, 93, 0) 0px 6px 12px -2px, rgba(0, 0, 0, 0) 0px 3px 7px -3px;
    transition: 1s;
}

.wrapper{
    /* border: 1px solid pink; */
    overflow-y: auto;
    position: fixed;
    width: calc(100% - 30px);
    left: 15px;
    top: 15px;
    height: calc(100% - 140px);
}
.cmbox{
    /* border: 1px dashed blue; */
    /* height: 90px; */
    padding-bottom: 20px;
    margin-bottom: 10px;
    box-shadow: rgb(50 50 93 / 2%) 0px 6px 12px -2px, rgb(0 0 0 / 13%) 0px 3px 7px -3px;
    position: relative;
}
.cm-top{
    background-color: #ff611821;
    display: flex;
    justify-content: space-between;
}
.user{
    font-size:  14px;
}
.rate{
    font-size: 13px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    width: 130px;
    justify-content: space-between;
}
.cm-content{
    font-size: 13px;
}
.reply{
    font-size: 13px;
    background-color: rgb(230, 238, 255);
    color: darkblue;
    width: calc(100% - 10px);
    margin-right: 10px;
}
.like{
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 11px;
    /* border: 1px dotted red; */
    background-color: #1884ff2a;
    width: 60px;
    text-align: center;
    border-radius: 3px;
    box-shadow: rgb(50 50 93 / 2%) 0px 6px 12px -2px, rgb(0 0 0 / 13%) 0px 3px 7px -3px;
}
.like:hover{
    background-color: #1884ff56;
}

.star{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background-color: rgba(10, 28, 51, 0.842);
    display: flex;
    justify-content: center;
    align-items: center;
}
.star-wrapper{
    /* position: fixed; */
    width: calc(100% - 80px);
    height: 150px;
    background-color: rgb(200, 222, 247);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: darkblue;
    
}
.just-star{
    
}

button{
    padding: 10px 20px;
}

.submit{
    background-color: #ff6318;
    color: white;
    border-radius: 10px;
    cursor: pointer;
}
