html{
    background-color:#fafafa;
}
body{
    padding:1em;
}
@font-face{
    font-family: 'muktamahee';
    src: url('css/fonts/MuktaMahee-Regular.ttf');
}
a:hover{
    text-decoration: none!important;
}
.section{
    padding-top: .5em!important;
    padding-bottom: .5em!important;
}
.logo{
    margin:auto;
    display:block;
    max-height:5em;
}
.cursor{
    cursor:pointer;
}
.cursor-drag{
    cursor: move;
}
#messageStatus div.message{
    z-index: 2000;
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
}
#messageStatus div.message div.message-header{
    border-radius: 4px!important;
}
.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;
}
.file-label{
    margin:auto;
}
.group_padding{
    width:5.5em;
}
.select-default{
    background-color: #eeeeee;
}
.datetimepicker{
    margin:auto;
}
.datetimepicker-clear-button{
    margin-top: .2rem!important;
}
.datetimepicker-dummy-input:first-child{
    text-indent: 1em!important;
}
.login-box{
    max-width:500px;
    margin:auto;
    margin-top: 5em;
}
#codeReader
{
    text-align: center;
    margin: auto;
    /* width: 100%; */
    max-height: 800px;
    overflow: clip;
}
.has-background-sent{
    background-color: #dcf7c8!important;
}
.has-background-not-sent{
    background-color: #fdf5c8!important;
}
.has-background-deleted{
    background-color: #ffa9a9!important;
}
.has-background-entry{
    background-color: #3fb7ff!important;
}
.has-background-exit{
    background-color: #ff903f!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; }
}
.fade-in {
    animation: fadeIn ease 1s;
    -webkit-animation: fadeIn ease 1s;
    -moz-animation: fadeIn ease 1s;
    -o-animation: fadeIn ease 1s;
    -ms-animation: fadeIn ease 1s;
}
@keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@-moz-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@-webkit-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@-o-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@-ms-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

.fade-out {
    animation: fadeOut ease 1s;
    -webkit-animation: fadeOut ease 1s;
    -moz-animation: fadeOut ease 1s;
    -o-animation: fadeOut ease 1s;
    -ms-animation: fadeOut ease 1s;
}
@keyframes fadeOut {
    0% {opacity:1;}
    100% {opacity:0;}
}

@-moz-keyframes fadeOut {
    0% {opacity:1;}
    100% {opacity:0;}
}

@-webkit-keyframes fadeOut {
    0% {opacity:1;}
    100% {opacity:0;}
}

@-o-keyframes fadeOut {
    0% {opacity:1;}
    100% {opacity:0;}
}

@-ms-keyframes fadeOut {
    0% {opacity:1;}
    100% {opacity:0;}
}