@font-face {
    font-family: vazir;
    src: url(../fonts/Vazir-Medium-FD-WOL.woff);
  }
*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: vazir;
}

.customFormSection h2{
    background: #cecece;
    margin-bottom: 0;
    border-radius: 10px 10px 0 0;
    padding: 13px 0;
    text-align: center;
    font-size: 20px;
}
.customFormSection form{
    background: #f6f6f6;
    border-radius: 0 0 10px 10px;
    padding: 30px 15px;
    border: 1px solid #d9d9d9;
    text-align: right;
}
.rtl{
    float: right;
}
.customFormSection form label{
    direction: rtl;
}
header{
    text-align: center;
    background-color: black;
    height: 80px;
    padding: 10px 0;
}
footer{
    text-align: center;
    background-color: black;
    height: 50px;
    padding: 15px 0 0 0;
    direction: rtl;
}
footer a{
    color: goldenrod;
}
main {
    text-align: center;
    height: calc(100vh - 130px);
    overflow-y: auto;
    padding: 30px 0;
}
.mContainer{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}
.btnRemoveStyle{
    color: white;
    font-size: 16px;
    background: #d9534f;
    border-radius: 5px;
    padding: 6px 8px;
    cursor: pointer;
    transition: all 0.3s;
}
.btnRemoveStyle:hover{
  transition: all 0.3s;
  opacity: 0.7;
}
.ItemStatus-true i , .ItemStatus-false i{
  cursor: pointer;
}
.ItemStatus-true i:before{
    content: "\f14a";
    color: green;
}