#financial-table{
  text-align: center;
}

.max-width-card{
  max-width: 1366px;
  margin: 1em auto 0 auto;
}

.dataTable{
  padding-top: 0.6em;
  width: 100% !important;
}

#financial-table-head-tr{
  color: #fff;
  background-color: #455a64;
}

.dataTables_scrollHeadInner{
  width: 100% !important;
}
/* page loading spinner begin */
#app_loading_indicator_fade {
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: #ababab;
    background-size: cover;
    z-index: 1003;
    -moz-opacity: 0.8;
    opacity: .70;
    filter: alpha(opacity=80);
}

#app_loading_indicator {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 1004;
    width: 100px;
    height: 100px;
    margin: -65px 0 0 -65px;
    border: 15px solid #ccc;
    border-radius: 50%;
    border-top: 15px solid #455a64;
    /*border-bottom: 16px solid #455a64;*/
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

#chunk_app_loading_indicator_fade {
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: #ababab;
    background-size: cover;
    z-index: 999999;
    -moz-opacity: 0.8;
    opacity: .70;
    filter: alpha(opacity=80);
}

#chunk_app_loading_indicator {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 9999999;
    width: 100px;
    height: 100px;
    margin: -65px 0 0 -65px;
    border: 15px solid #ccc;
    border-radius: 50%;
    border-top: 15px solid #455a64;
    /*border-bottom: 16px solid #455a64;*/
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0;
    }
    to {
        bottom: 0px;
        opacity: 1;
    }
}

@keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0;
    }
    to {
        bottom: 0;
        opacity: 1;
    }
}
/* page loading spinner end */

.selectize-control {
  position: inherit !important;
}

.selectize-dropdown {
    margin-top: 0px;
}

.uk-button-primary {
  background-color:#455a64;
}

.uk-button-primary:focus, .uk-button-primary:hover {
  background-color: #455a64;
  color: #fff;
  box-shadow: 0 3px 6px rgba(0,0,0,.16), 0 3px 6px rgba(0,0,0,.23);
}

.uk-button-primary:active {
  background-color: #455a64;
  color: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,.19), 0 6px 6px rgba(0,0,0,.23);
}

.uk-table tbody tr {
    color: #333333;
}

.uk-table thead tr th {
    color: black;
}

.dataTables_wrapper .uk-table tbody tr {
  color: #333333;
}

.dataTables_wrapper .uk-table thead tr th {
  color: black;
}

/* datatables loading overlay */
div[class="dataTables_processing"] {
    font-size: 25px !important;
    background: #f4f7f8 !important;
}

h3 {
  font-weight: 550;
}

/*
#receive-single-order-table td {
  vertical-align: middle;
}
*/

.button-link {
  color: #fff;
}

.button-link:hover{
  color: #fff;
}


.notify-undo-btn {
    padding: 5px 5px;
}

.notify-undo-btn:hover {
    background-color: #0277bd !important;
    border-radius: 4px;
    opacity: 0.9;
}

/* date picker bg color */
.uk-datepicker-nav {
    background-color: #004e7d  !important;
}

.uk-datepicker-table a.uk-active {
    background-color: #004e7d  !important;
}

/* from layout.html start */
.md-card {
    /* border-radius: 3px; */
    padding: 0 0 2em 0;
}

.md-card-toolbar {
    border-top: 4px solid #39f;
}

.onoffswitch {
    float: right;
    position: relative;
    width: 94px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.onoffswitch-checkbox {
    display: none;
}

.onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #fff;
    border-radius: 20px;
}

.onoffswitch-inner {
    display: block;
    width: 200%;
    margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}

.onoffswitch-inner:before,
.onoffswitch-inner:after {
    display: block;
    float: left;
    width: 50%;
    height: 30px;
    padding: 0;
    line-height: 30px;
    font-size: 14px;
    color: white;
    font-family: "Roboto", Arial, sans-serif;
    box-sizing: border-box;
}

.onoffswitch-inner:before {
    content: "Months";
    padding-left: 10px;
    background-color: #3399FF;
    color: #EFEFEF;
}

.onoffswitch-inner:after {
    content: "Days";
    padding-right: 10px;
    background-color: #EFEFEF;
    color: #777;
    text-align: right;
}

.onoffswitch-switch {
    display: block;
    width: 18px;
    margin: 6px;
    background: #FFFFFF;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 60px;
    border: 2px solid #fff;
    border-radius: 20px;
    transition: all 0.3s ease-in 0s;
}

.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}

.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-switch {
    right: 0px;
}

.copyWrapper {
    padding: 2em;
}

.underline {
    margin-top: -12px;
    border-top: solid #ddd 1px;
}


/* Customize the label (the container) */
.container {
    display: inline-block;
    color: #777;
    width: 10em;
    position: relative;
    padding-left: 1.5em;
    margin: 10px 15px 7px 0;
    cursor: pointer;
    font-size: 0.9em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser"s default checkbox */
.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.2em;
    width: 1.2em;
    background-color: #efefef;
    border-radius: 3px;
}

/* On mouse-over, add a grey background color */
.container:hover input~.checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked~.checkmark {
    background-color: #39f;

}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
    left: 3.5px;
    top: -1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#lastCard {
    margin-bottom: 5em;
}

#subDay,
#addDay {
    display: inline-block;
    color: #1270cc;
    cursor: pointer;
    font-size: 1.5em;
    vertical-align: super;
}

#todayDate {
    display: inline-block;
    color: #1270cc;
    border: 6px inset #84C3FF;
    width: 6.5em;
    /* padding: 0.1em 0.2em; */
    background-color: #F8F8FF;
    overflow: hidden;
    margin: 0 1em;
    text-align: center;
    height: 1.45em;
}

#date {
    position: relative;
    text-align: center;
    box-sizing: border-box;
    width: 90%;
    margin: 0 auto;
    padding: 1em;
}

.dateWrapper {
    text-align: center;
    padding: 1em 0 0 0;
    color: #39f;
    font-size: 2em;
    /* background-color: #fff; */
    position: relative;
    vertical-align: middle;
}

/* menu item overflow marker - change left arrow to right arrow */
.uk-nav-parent-icon > .uk-parent > a:after {
    content: "\f105";
}

.checkboxLabel {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 22px;
    background-color: #ccc;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  /* Hide the browser's default checkbox */
  .checkboxLabel input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }

  /* Create a custom checkbox */
  .checkmark {
    background-color: #7c97a4;
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
  }

  /* On mouse-over, add a grey background color */
  .checkboxLabel:hover input ~ .checkmark {
    background-color: #7c97a4;
  }

  /* When the checkbox is checked, add a blue background */
  .checkboxLabel input:checked ~ .checkmark {
    background-color: #7c97a4;
  }

  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }

  /* Show the checkmark when checked */
  .checkboxLabel input:checked ~ .checkmark:after {
    display: block;
  }

  /* Style the checkmark/indicator */
  .checkboxLabel .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

/*
.wizard>.steps>ul>li {
    width: 16%;
}
*/
/* from layout.html end */

#popup-box {
  background: #7c97a4;
}

#popup-msg{
  color: #ffff;
  text-align: center;
}

/* appointment book edit patient row color */
.appointment-edit-patient-row,.appointment-edit-patient-row:hover {
    background-color: #006ab4 !important;
    color: #eee !important;
}

.appointment-edit-patient-row a{
    color:#FFFFFF;
}
.appointment-edit-patient-row a:hover{
    color:#0991f2;
}



/* appointment book edit patient btn */
.appointment-edit-patient-btn {
    background-color: #f05709 !important;
    color: #fff !important;
    text-transform: capitalize !important;
}

/* appointment book view patient btn */
.appointment-view-patient-btn {
    background-color: #0990f0 !important;
    color: #fff !important;
    text-transform: capitalize !important;
}

/* appointment book treat patient row color */
.appointment-treat-patient-row {
}

/* appointment book treat patient btn */
.appointment-treat-patient-btn {
    background-color: #014576 !important;
    color: #fff !important;
    text-transform: capitalize !important;
}

.admin-location-center-stylying {
    text-align: left !important;
}

.admin-physician-center-stylying {
    text-align: left !important;
}

/* toggle switch bg color */
.switchery {
    background-color: #ccc !important;
}

.switchery > small {
    background-color: #004e7d !important;
}           

#add-new-pass {
    float: right;
    padding-right: 15px;
    font-size: 20px;
}
.header-dropdown .selectize-input{
    width: 65px;
    margin-right: 15px;
    min-height: 20px;
    height: 29px;
    padding: 3px 1px 1px 9px !important;
    margin-top: 4px;
}