html {
  overflow-y: scroll !important; }

h1, .h1 {
  font-size: 24pt; }

h2, .h2 {
  font-size: 19.5pt; }

h3, .h3 {
  font-size: 17.5pt; }

h4, .h4 {
  font-size: 14.5pt; }

h5, .h5 {
  font-size: 12pt; }

h6, .h6 {
  font-size: 10pt; }

body {
  padding-right: 0 !important;
  background-color: #fcfcfc; }

/*******************************************/
/************* Spinner circular ************/
/*******************************************/
#loader {
  width: 100%;
  min-height: 100%;
  position: fixed;
  overflow: hidden;
  background-color: #fcfcfc;
  z-index: 100;
  bottom: 0;
  margin: 0; }

@keyframes spinner {
  to {
    transform: rotate(360deg); } }
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotate(360deg); } }
.spinner {
  min-width: 124px;
  min-height: 124px; }

.spinner:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  margin-top: -60px;
  margin-left: -60px; }

.spinner:not(:required):before {
  content: '';
  border-radius: 90%;
  border-top: 12px solid #0061a9;
  border-right: 12px solid transparent;
  animation: spinner .6s linear infinite;
  -webkit-animation: spinner .6s linear infinite; }

.centered-spinner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11000;
  color: #0061a9 !important; }

/*******************************************/
/*************** breadcrumb *************/
/*******************************************/
.breadcrumb {
  /* background-color: #f7f7f9; */ }

/*******************************************/
/*************** navbar - menu *************/
/*******************************************/
.navbar {
  padding: 0.1rem 1rem; }

.nav-tabs li.bv-tab-success > a {
  color: #4CAF50; }

.nav-tabs li.bv-tab-error > a {
  color: #e51c23; }

.has-error .fa-times {
  color: #e51c23; }

.has-error label {
  color: #e51c23; }

.has-success .fa-check {
  color: #4CAF50; }

.has-success label {
  color: #4CAF50; }

small {
  font-size: 85%; }

.has-error small {
  color: #e51c23 !important; }

a.btn-primary, a.btn-primary:hover, a.btn-primary:focus, a.btn-primary:active {
  color: #fff; }

/*******************************************/
/***************** forms  ******************/
/*******************************************/
input.form-control {
  width: 95%; }

.input-group-addon {
  border: none !important; }

.input-group-addon:not(:last-child) {
  border: none !important;
  padding: 4px 4px;
  padding-left: 0px;
  font-weight: bolder; }

.col-md-48 .input-group input.form-control {
  width: 10px !important; }

/*
GRID SYSTEM
xs - for the smallest screen widths like smartphones < 768 px
sm - for small screen widths like smartphones and tablets >= 768 px
md - for medium screen widths like tablets and laptops >= 992 px
lg - for large screen widths like desktops >= 1200 px
*/
@media (min-width: 576px) {
  .col-xs-10 input.form-control,
  .col-xs-8 input.form-control {
    width: 85%; } }
@media (min-width: 768px) {
  .col-md-10 input.form-control,
  .col-md-8 input.form-control {
    width: 80%; }

  .col-md-24 input.form-control,
  .col-md-36 input.form-control {
    width: 90%; } }
@media (min-width: 992px) {
  .col-md-10 input.form-control {
    width: 75%; }

  .col-md-16 input.form-control {
    width: 93%; }

  .col-md-24 input.form-control,
  .col-md-36 input.form-control {
    width: 95%; } }
@media (min-width: 1200px) {
  .col-lg-10 input.form-control {
    width: 87%; }

  .col-lg-18 input.form-control {
    width: 87%; }

  .col-lg-24 input.form-control,
  .col-lg-36 input.form-control {
    width: 90%; }

  .col-lg-48 .input-group {
    width: 97%; } }
form .form-group label {
  display: flex; }

form .custom-checkbox label {
  display: block; }

form .form-group input {
  display: inline-block; }

form .form-group .form-control-feedback {
  margin-left: 0px; }

textarea,
textarea.form-control,
input.form-control,
input[type=text],
input[type=password],
input[type=email],
input[type=number],
[type=text].form-control,
[type=password].form-control,
[type=email].form-control,
[type=tel].form-control,
[contenteditable].form-control {
  box-shadow: inset 0 -1px 0 #969696; }

.form-horizontal label {
  padding-top: 6px; }

.form-control {
  display: inline;
  margin-right: 5px; }

.form_date {
  padding-left: 0 !important; }

.bv-form .help-block {
  margin-bottom: 0;
  display: block;
  clear: both; }

.bv-form .tooltip-inner {
  text-align: left; }

/*******************************************/
/**************** nav-tabs *****************/
/*******************************************/
.nav-tabs li.bv-tab-success > a {
  color: #3c763d; }

.nav-tabs li.bv-tab-error > a {
  color: #a94442; }

/*******************************************/
/************** pagination *****************/
/*******************************************/
div.navigation ul.pagination {
  margin-bottom: 0px; }

div.navigation ul.pagination li.active a.page-link {
  background-color: #0061a9;
  color: #fff; }

/******************************************/
/************ form validations ************/
/*******************************************/
.has-error .input-group-addon .fa {
  color: #e51c23; }

.has-success .input-group-addon .fa {
  color: #4CAF50; }

.has-error .fa-times {
  color: #e51c23; }

.has-error label {
  color: #e51c23; }

.has-success .fa-check {
  color: #4CAF50; }

.has-success label {
  color: #4CAF50; }

small {
  font-size: 85%; }

a.btn-primary, a.btn-primary:hover, a.btn-primary:focus, a.btn-primary:active {
  color: #fff; }

.dropdown-menu {
  border-radius: 0.10rem; }

.show-actions-right, .show-actions-left {
  font-size: 16px;
  font-weight: bold; }

.show-actions-right {
  float: right;
  text-align: right;
  padding-right: 25px; }

.center {
  text-align: center; }

.navbar-right {
  float: right; }

.modal-open {
  padding-right: 0px !important; }

.footer {
  position: fixed;
  bottom: 3px;
  left: 1px;
  text-align: left;
  font-size: 9px; }

.footer a, a:hover, a:visited {
  text-decoration: none; }

/*** natodo: quick fix! :( VMNStyle ***/
.modal-content {
  border: none; }

.modal-header {
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem; }

.actions {
  width: 120px; }

table.table-modal {
  margin-bottom: 0; }

table.table-modal td {
  border-top: none;
  border-bottom: 1px solid #eee;
  padding: 0.4rem; }

/*******************************************/
/****************** Card *******************/
/*******************************************/
.card-search {
  margin-bottom: 20px; }

/*******************************************/
/******* select2 to material design ********/
/*******************************************/
.select2 {
  width: 95% !important; }

.col-md-14 .select2 {
  width: 92% !important; }

.select2-container {
  float: left;
  margin-right: 5px; }

.select2 .selection .select2-selection {
  border: none;
  border-bottom: 1px solid #969696;
  border-radius: 0; }

.select2-container--readonly .select2-selection {
  border-bottom: 1px solid #ddd !important; }

.has-success .select2 .selection .select2-selection {
  border-bottom: 2px solid #4CAF50; }

.has-error .select2 .selection .select2-selection {
  border-bottom: 2px solid #e51c23; }

.select2-container *:focus {
  outline: none; }

.select2-dropdown--below {
  margin-top: 10px; }

span.select2-selection--multiple ul.select2-selection__rendered {
  padding: 0 !important; }

span.select2-selection--multiple ::-webkit-input-placeholder {
  font-size: 14px !important; }

span.select2-selection--multiple :-moz-placeholder {
  /* Firefox 18- */
  font-size: 14px !important; }

span.select2-selection--multiple ::-moz-placeholder {
  /* Firefox 19+ */
  font-size: 14px !important; }

span.select2-container--open .select2-results__options .select2-results__option {
  padding: 6px 10px 5px 10px;
  color: black; }

span.select2-container--open .select2-results__options .select2-results__option[aria-selected="true"] {
  background-color: #cecece; }

span.select2-container--open .select2-results__options .select2-results__option--highlighted {
  background-color: Gainsboro; }

span.select2-container--open .select2-dropdown {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.19), 0 8px 17px rgba(0, 0, 0, 0.2);
  border: 1px solid #eee; }

span.select2-container--open .select2-dropdown .select2-search--dropdown {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16), 0 2px 5px rgba(0, 0, 0, 0.26);
  width: 95%;
  margin: 10px auto;
  border-radius: 1px; }

span.select2-container--open .select2-dropdown .select2-search--dropdown input {
  border-radius: 1px; }

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 0px;
  color: #000;
  font-size: 14px; }

input.select2-search__field:focus {
  box-shadow: none !important; }

.select2-selection--multiple .select2-selection__choice {
  margin-top: 2px; }

/*.select2-container .select2-search__field:not([placeholder = '']) {
  width: 100%!important;
}*/
/************************************************/
/*********** Override bootstrapToggle ***********/
/************************************************/
.toggle {
  width: 58px !important;
  height: 28px !important; }

.toggle .toggle-off {
  margin-left: 8px; }

/************************************************/
/***************** toast message ****************/
/************************************************/
.toast-top-right {
  top: 45px !important;
  right: 12px; }

.toast {
  padding-top: 7px !important;
  padding-bottom: 7px !important; }

/************************************************/
/******************* buttons  *******************/
/************************************************/
.btn {
  padding: 0.5rem 1rem; }

.btn-daterangepicker {
  padding: 0.25rem 0.5rem;
  font-size: 0.7109375rem;
  line-height: 1.5;
  border-radius: 0.2rem; }

/************************************************/
/********************* table ********************/
/************************************************/
table tbody tr td.center, table thead th td.center {
  text-align: center; }

table thead tr th.date-time {
  width: 168px; }

/************************************************/
/******************** TinyCME *******************/
/************************************************/
#mceu_10 {
  border-width: 2px !important;
  width: 95%;
  display: inline-block;
  margin-right: 3px; }

/*# sourceMappingURL=site.css.map */
