@font-face {
    font-family: 'Display';
    font-style: normal;
    font-weight: 400;
    src: local('Display'), local('Display'), url('../fonts/Display.ttf') format('ttf');
    unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
} 

.btn-default,
.btn-default:active,
.btn-default:focus,
.btn-default:hover {
  color: #3C8DBC;
  background:#E0F7FF;
}
 
.carousel-indicators li,
.popover-title,
.popover,
.tooltip-inner,
.modal-content,
.well-lg,
.well-sm,
.well-xs,
.well,
.panel-group .panel,
.panel,
.progress,
.alert,
.thumbnail,
.container .jumbotron,
.container-fluid .jumbotron,
.badge,
.label,
.pager li > a,
.pager li > span,
.pagination,
.breadcrumb,
.navbar-toggle,
.nav-tabs-justified > li > a,
.nav-pills > li > a,
.nav-tabs.nav-justified > li > a,
.nav-tabs > li > a,
.input-group-addon.input-lg, 
.input-group-addon.input-sm,
.input-group-addon.input-xs,
.input-group-addon,
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn,
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn,
.dropdown-menu,
.btn-xs,
.btn-group-xs > .btn,
.btn-sm,
.btn-group-sm > .btn,
.btn-lg,
.btn-group-lg > .btn,
.btn-link,
.btn,
.form-group-lg .form-control,
.input-lg,
.form-group-sm .form-control,
.form-control,
.input-sm,
pre, 
kbd,
code,
.img-circle,
.img-thumbnail,
.img-rounded {
  border-radius: 0px;
}
 
#lang-select {
    width: 90px;
    height: 28px;
    padding: 1px 0px 1px 20px;
    margin-right: 15px;
    background: white url(../img/icons/locale.svg) no-repeat 0px center;
    background-size: 20px 20px;
    border: 0;
    box-shadow: none;
    color: #3C8DBC;
}

.p-0{padding:0!important}
.pl-0{padding-left:0!important}
.pr-0{padding-right:0!important}
.pt-0{padding-top:0!important}
.pb-0{padding-bottom:0!important}
.p-1{padding:.3em !important}
.pl-1{padding-left:.3em !important}
.pr-1{padding-right:.3em !important}
.pt-1{padding-top:.3em !important}
.pb-1{padding-bottom:.3em !important}
.m-0{margin:0!important}
.ml-0{margin-left:0!important}
.mr-0{margin-right:0!important}
.mt-0{margin-top:0!important}
.mb-0{margin-bottom:0!important}
.m-1{margin:.3em !important}
.ml-1{margin-left:.3em !important}
.mr-1{margin-right:.3em !important}
.mt-1{margin-top:.3em !important}
.mb-1{margin-bottom:.3em !important}

.table {
    min-width: 100%;
}
.table th,
.table thead td {
    vertical-align: bottom;
}
table thead {
    background: #e0f7ff!important; 
    color:#3C8DBC;
}


/*MATERIAL FORM DESIGN*/
.panel-body form{margin:20px auto; }
.form-group, 
.form-radio { 
  position:sticky; 
  padding-bottom:25px; 
}
.form-radio { 
  border-bottom:1px solid #EEEEEE;
}

.form-group input,
.form-group select,
.select2-container,
.form-group textarea { 
  font-size:14px;
  display:block;
  width:100%;
  border:none;
  background: transparent;
  border-bottom:1px solid #EEEEEE;
}
.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus { outline:none; }

/* LABEL ======================================= */
.form-group label {          
  color:#3498DB; 
  font-size:14px;
  font-weight:normal;
  position:absolute;
  pointer-events:none;
  left:0px;
  top:10px;
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}
.form-radio span{color:#3498DB; }

/* active state */
.form-group textarea:focus ~ label,  
.form-group textarea:valid ~ label,
.form-group select:focus ~ label, 
.form-group select:valid ~ label, 
.form-group input:focus ~ label, 
.form-group input:valid ~ label {
  top:-20px;
  font-size:14px;
  color:#3498DB;
}


/* BOTTOM BARS ================================= */
.form-group .bar { position:relative; display:block; width:100%; }
.form-group .bar:before, .bar:after     {
  content:'';
  height:1px; 
  width:0;
  bottom:1px; 
  position:absolute;
  background:#3498DB; 
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}
.form-group .bar:before {
  left:50%;
}
.form-group .bar:after {
  right:50%; 
}

/* active state */
.form-group input:focus ~ .bar:before, 
.form-group input:focus ~ .bar:after, 
.form-group select:focus ~ .bar:before, 
.form-group select:focus ~ .bar:after, 
.form-group textarea:focus ~ .bar:before, 
.form-group textarea:focus ~ .bar:after {
  width:50%;
}

/* HIGHLIGHTER ================================== */
.form-group .highlight {
  position:absolute;
  height:60%; 
  width:100px; 
  top:25%; 
  left:0;
  pointer-events:none;
  opacity:0.5;
}

/* active state */
.form-group input:focus ~ .highlight {
  -webkit-animation:inputHighlighter 0.3s ease;
  -moz-animation:inputHighlighter 0.3s ease;
  animation:inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
    from { background:#5264AE; }
  to    { width:0; background:transparent; }
}
@-moz-keyframes inputHighlighter {
    from { background:#5264AE; }
  to    { width:0; background:transparent; }
}
@keyframes inputHighlighter {
    from { background:#5264AE; }
  to    { width:0; background:transparent; }
}

.checkbox label,
.form-radio label {
    position: relative;
    cursor: pointer;
    padding-left: 2rem;
    text-align: left;
    color: #333;
    display: block;
}
.checkbox input,
.form-radio input {
    width: auto;
    opacity: 0.00000001;
    position: absolute;
    left: 0;
}
.radio {
    margin-bottom: 1rem;
}
.radio .helper {
    position: absolute;
    top: 0.15rem;
    left: -0.25rem;
    cursor: pointer;
    display: block;
    font-size: 1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #999;
}
.radio .helper::before,
.radio .helper::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    margin: 0.25rem;
    width: 1rem;
    height: 1rem;
    -webkit-transition: -webkit-transform 0.28s ease;
    transition: -webkit-transform 0.28s ease;
    transition: transform 0.28s ease;
    transition: transform 0.28s ease, -webkit-transform 0.28s ease;
    border-radius: 50%;
    border: 0.125rem solid currentColor;
}
.radio .helper::after {
    -webkit-transform: scale(0);
    transform: scale(0);
    background-color: #337ab7;
    border-color: #337ab7;
}
.radio label:hover .helper {
    color: #337ab7;
}
.radio input:checked ~ .helper::after {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
}
.radio input:checked ~ .helper::before {
    color: #337ab7;
}
.checkbox {
    margin-top: 3rem;
    margin-bottom: 1rem;
}
.checkbox .helper {
    color: #999;
    position: absolute;
    top: 0;
    left: 0;
    width: 1rem;
    height: 1rem;
    z-index: 0;
    border: 0.125rem solid currentColor;
    border-radius: 0.0625rem;
    -webkit-transition: border-color 0.28s ease;
    transition: border-color 0.28s ease;
}
.checkbox .helper::before,
.checkbox .helper::after {
    position: absolute;
    height: 0;
    width: 0.2rem;
    background-color: #337ab7;
    display: block;
    -webkit-transform-origin: left top;
    transform-origin: left top;
    border-radius: 0.25rem;
    content: '';
    -webkit-transition: opacity 0.28s ease, height 0s linear 0.28s;
    transition: opacity 0.28s ease, height 0s linear 0.28s;
    opacity: 0;
}
.checkbox .helper::before {
    top: 0.65rem;
    left: 0.38rem;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    box-shadow: 0 0 0 0.0625rem #fff;
}
.checkbox .helper::after {
    top: 0.3rem;
    left: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.checkbox label:hover .helper {
    color: #337ab7;
}
.checkbox input:checked ~ .helper {
    color: #337ab7;
}
.checkbox input:checked ~ .helper::after,
.checkbox input:checked ~ .helper::before {
    opacity: 1;
    -webkit-transition: height 0.28s ease;
    transition: height 0.28s ease;
}
.checkbox input:checked ~ .helper::after {
    height: 0.5rem;
}
.checkbox input:checked ~ .helper::before {
    height: 1.2rem;
    -webkit-transition-delay: 0.28s;
    transition-delay: 0.28s;
}
.radio + .radio,
.checkbox + .checkbox {
    margin-top: 1rem;
}
.has-error .legend.legend,
.has-error.form-group .control-label.control-label {
    color: #d9534f;
}
.has-error.form-group .form-help,
.has-error.form-group .helper,
.has-error.checkbox .form-help,
.has-error.checkbox .helper,
.has-error.radio .form-help,
.has-error.radio .helper,
.has-error.form-radio .form-help,
.has-error.form-radio .helper {
    color: #d9534f;
}
.has-error .bar::before {
    background: #d9534f;
    left: 0;
    width: 100%;
}






/*PANEL SYTLE*/
.panel{border:0;}
.panel-heading {
    border-radius:0;
    background: #ffffff !important;
    color: #3498db !important;
}
.panel-heading h3,
.modal-header h3 {
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    font-weight: 400;
}



/*--- back to top ---*/
#toTop {
    position: fixed;
    bottom: 40px;
    right: 20px;
    cursor: pointer;
    display: none;
    z-index: 10;
}
.back-top {
    background-color: #3C8DBC;
    border: 1px solid #eee;
    padding: 7px 9px;
    height: 34px;
    width: 34px;
    border-radius: 0% !important;
    color: #fff;
}
.back-top:hover {
    background-color: #333;
    color: #fff;
}
@media (min-width: 768px) {
    #toTop {
        right: 30px;
    }
}


/*Display Style*/
#fullscreen {
    width: 100%;
    height: 100%;
}
.queue {
    font-family: 'Display';
    position: relative;
    height: 120px;
    z-index: 1;
    background: #e3e3e3;
}
.queue .token {
    padding: 0px;
    margin: 0px;
}
.queue.active {
    background: #222222!important;
    color: white!important;
}
.queue.active:after {
    display: none;
}
.queue-box {
    float: left;
    margin: 0 2px;
    font-family: 'Display';
}
.queue-box-status {
    width: 120px !important;
}
.queue-box-element {
    width: 11% !important;
}
.queue-box .deprt {
    color: white;
    padding: 0px;
    margin: 0px;
    text-align: center;
    background-color: #222222;
}
.queue-box-status .item {
    margin: 0px;
    height: 115px;
    font-size:16px;
    font-weight:bolder;
}
.queue2 {
    width: 100%;
    height: 110px;
    padding:10px 0;
    float: left;
    z-index: 1;
    position: relative;
    background: #3C8DBC;
    color: #fff;
    border: 1px solid #222222;
}
.queue2 .title {
    padding: 0px;
    margin: -5px
}
.queue2.active {
    background: #222222!important;
    color: white!important;
}
.queue2.active:after {
    display: none;
}


/*select2 custom*/
.select2-container--default .select2-selection--single {
    border: none!important;
    height: 26px!important;
}
.select2-container--open .select2-dropdown--below {
    border-top: 1px solid #aaa;
}
.select2-container--open .select2-dropdown--above {
    border-bottom: 1px solid #aaa;
}


/*LOGIN */
@media screen and (max-width: 768px) 
{
    .position-center{margin:10px auto!important}
    .panel-heading .text-right{text-align:center!important;padding:10px 0;}
    .xs-view{padding-top:.8em;text-align:center}
}
.position-center{margin:40px auto; float:none;}
.form-signin {  
    background-color: #f7f7f7;
    -moz-box-shadow: 0 0 3px 3px #888;
    -webkit-box-shadow: 0 0 3px 3px #888;
    box-shadow: 0 0 3px 3px #888;
    border-radius: 0px;
}
.main {
    padding:50px 20px 0px 20px
}
.social-box {
    margin: 0 auto;
    padding: 20px;
    border-bottom: 1px #ccc solid;
}
.social-box a {
    font-weight: bold;
    font-size: 18px;
    padding: 8px;
}
.social-box a i {
    font-weight: bold;
    font-size: 20px;
}
.heading-desc {
    font-size: 20px;
    font-weight: bold;
    padding: 20px 20px 0px 20px;
}

/*Form Style*/
/*.form-signin .form-signin-heading,
.form-signin .checkbox {
    margin-bottom: 10px;
}
.form-signin .checkbox {
    font-weight: normal;
}
.form-signin .form-control {
    position: relative;
    font-size: 16px;
    height: 20px;
    padding: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.form-signin .form-control:focus {
    z-index: 2;
}
.form-signin input[type="text"] {
    margin-bottom: 10px;
    border-radius: 5px;
}
.form-signin input[type="password"] {
    margin-bottom: 10px;
    border-radius: 5px;
}*/
.login-footer {
    background: #ffffff;
    border-top: 1px solid #dadada;
    padding: 20px;
}
.login-footer .left-section a {
    font-weight: bold;
    color: #8a8a8a;
    line-height: 19px;
}
.mg-btm {
    margin-bottom: 20px;
}
@media print {
    .no-print {
        display: none;
    }
    body.modalprinter * {
        visibility: hidden;
    }
    body.modalprinter .modal-dialog.focused {
        position: absolute;
        padding: 0;
        margin: 0;
        left: 0;
        top: 0;
    }
    body.modalprinter .modal-dialog.focused .modal-content {
        border-width: 0;
    }
    body.modalprinter .modal-dialog.focused .modal-content .modal-header .modal-title,
    body.modalprinter .modal-dialog.focused .modal-content .modal-body,
    body.modalprinter .modal-dialog.focused .modal-content .modal-body * {
        visibility: visible;
        width: 100%;
    }
    body.modalprinter .modal-dialog.focused .modal-content .modal-header,
    body.modalprinter .modal-dialog.focused .modal-content .modal-body {
        padding: 0;
        width: 100%;
    }
    body.modalprinter .modal-dialog.focused .modal-content .modal-header .modal-title {
        margin-bottom: 20px;
    }
    .dl-horizontal dt {
        float: left;
        width: 280px;
        clear: left;
        text-align: right;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .dl-horizontal dd {
        margin-left: 300px;
    }
}

/*loader*/
.loader {z-index:99999;font-size: 20px;text-align: center;line-height: 30px;color: #fff;position: fixed;width: 400px;height: 45px;top:50%;left:50%;margin:-64px 0 0 -175px;}
.loader span{display: inline-block;position: absolute;left: 6px;width:30px;background: #3498DB;box-shadow:0px 0px 10px; animation: loader 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;border:1px solid;}
.loader span:nth-child(1) {left: 0px;animation-delay: -0.48s;}
.loader span:nth-child(2) {left: 35px;animation-delay: -0.36s;}
.loader span:nth-child(3) {left: 70px;animation-delay: -0.24s;}
.loader span:nth-child(4) {left: 105px;animation-delay: -0.12s;}
.loader span:nth-child(5) {left: 140px;animation-delay: -0.48s;}
.loader span:nth-child(6) {left: 175px;animation-delay: 0}
.loader span:nth-child(7) {left: 210px;animation-delay: -0.36s;}
.loader span:nth-child(8) {left: 245px;animation-delay: -0.24s;}
.loader span:nth-child(9) {left: 280px;animation-delay: -0.12s;}
.loader span:nth-child(10) {left: 315px;animation-delay: -0.48s;}
.loader span:nth-child(11) {left: 350px;animation-delay: 0;}
@keyframes loader {0% {top: 6px;height: 64px;}50%, 100% {top: 30px;height: 30px;}}


/*header title*/
.cm-navbar h1{font-size:24px}
/* customize menu */
#cm-menu li.cm-submenu ul {display:none;position:relative;}
#cm-menu li.open ul {display:block;}