html{
    background-color:#fafafa;
}
body{
    padding:1em;
}
@font-face{
    font-family: 'muktamahee';
    src: url('css/fonts/MuktaMahee-Regular.ttf');
}
.cursor{
    cursor:pointer;
}
.post-text{
    font-family: 'muktamahee';
    background-color: white;
}
.text-r{
    text-align:right;
}
.text-l{
    text-align:left;
}
.text-c{
    text-align:center;
}
.is-vertical-center {
    display: flex;
    align-items: center;
}
.input-tag-size{
    width:7em;
}
.input-size{
    width:6em;
}
.group_padding{
    width:5.5em;
}
.select-default{
    background-color: #eeeeee;
}
.datetimepicker-clear-button{
    margin-top: .2rem!important;
}
.datetimepicker-dummy-input:first-child{
    text-indent: 1em!important;
}
.login-box{
    max-width:500px;
    margin:auto;
}
.has-background-sent{
    background-color: #dcf7c8!important;
}
.has-background-not-sent{
    background-color: #fdf5c8!important;
}
.has-background-deleted{
    background-color: #ffa9a9!important;
}
.animation-entry {
    -webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 1s; /* Firefox < 16 */
        -ms-animation: fadein 1s; /* Internet Explorer */
         -o-animation: fadein 1s; /* Opera < 12.1 */
            animation: fadein 1s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}