/*-----------------
	Fonts
-----------------------*/

@font-face {
    font-family: 'Circular Air';
    src: url('../fonts/Circular Air.ttf');
}
@font-face {
	font-family: 'Circular Std Book';
	font-style: normal;
	font-weight: normal;
	src: local('../fonts/Circular Std Book'), url('../fonts/CircularStd-Book.woff') format('woff');
}
@font-face {
	font-family: 'Circular Std Book Italic';
	font-style: normal;
	font-weight: normal;
	src: local('../fonts/Circular Std Book Italic'), url('../fonts/CircularStd-BookItalic.woff') format('woff');
}
@font-face {
	font-family: 'Circular Std Medium';
	font-style: normal;
	font-weight: normal;
	src: local('../fonts/Circular Std Medium'), url('../fonts/CircularStd-Medium.woff') format('woff');
}
@font-face {
	font-family: 'Circular Std Medium Italic';
	font-style: normal;
	font-weight: normal;
	src: local('../fonts/Circular Std Medium Italic'), url('../fonts/CircularStd-MediumItalic.woff') format('woff');
}
@font-face {
	font-family: 'Circular Std Bold';
	font-style: normal;
	font-weight: normal;
	src: local('../fonts/Circular Std Bold'), url('../fonts/CircularStd-Bold.woff') format('woff');
}
@font-face {
	font-family: 'Circular Std Bold Italic';
	font-style: normal;
	font-weight: normal;
	src: local('../fonts/Circular Std Bold Italic'), url('../fonts/CircularStd-BoldItalic.woff') format('woff');
}
@font-face {
	font-family: 'Circular Std Black';
	font-style: normal;
	font-weight: normal;
	src: local('../fonts/Circular Std Black'), url('../fonts/CircularStd-Black.woff') format('woff');
}
@font-face {
	font-family: 'Circular Std Black Italic';
	font-style: normal;
	font-weight: normal;
	src: local('../fonts/Circular Std Black Italic'), url('../fonts/CircularStd-BlackItalic.woff') format('woff');
}

/*-----------------
	General
-----------------------*/

html {
    min-height: 100%;
    position: relative;
}
body {
    background-color: #f6f6f6;
    color: #3f4040;
    font-family: "Circular Std Book",sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;
    overflow-x: hidden;
}
a {
	color: #3f4040;
}
a:hover {
	color: #3f4040;
	outline: none;
	text-decoration: none;
}
a:focus, button:focus {
	outline: none;
}
.btn, a {
	transition: all 0.35s ease-in-out 0s;
	-moz-transition: all 0.35s ease-in-out 0s;
	-o-transition: all 0.35s ease-in-out 0s;
	-ms-transition: all 0.35s ease-in-out 0s;
	-webkit-transition: all 0.35s ease-in-out 0s;
}
.btn.focus, .btn:focus {
    box-shadow: unset;
}
button, input {
  outline: none !important;
}
[type=button]:focus,
a:active,
a:focus,
a:visited,
button::-moz-focus-inner,
input[type=button]::-moz-focus-inner,
input[type=file] > input[type=button]::-moz-focus-inner,
input[type=reset]::-moz-focus-inner,
input[type=submit]::-moz-focus-inner,
select::-moz-focus-inner {
  outline: 0;
}
.form-control {
    background-color: #fbfbfb;
    border-color: #ccc;
    border-radius: 3px;
    color: #6d6e70;
    font-size: 15px;
    line-height: 25px;
    min-height: 45px;
    padding: 9px 20px;
}
.form-control:focus {
    border-color: #cfcfcf;
    box-shadow: inherit;
    color: #6d6e70;
}
.form-control::-webkit-input-placeholder {
	color: #6d6e70;
	opacity: 1;
}
.form-control::-moz-placeholder {
	color: #6d6e70;
	opacity: 1;
}
.form-control:-ms-input-placeholder {
	color: #6d6e70;
	opacity: 1;
}
.form-control::-ms-input-placeholder {
	color: #6d6e70;
	opacity: 1;
}
.form-control::placeholder {
	color: #6d6e70;
	opacity: 1;
}
.text-success {
    color: #00c469 !important;
}
a.text-success:focus, a.text-success:hover {
    color: #00b35f !important;
}
.text-danger {
    color: #fe7167 !important;
}
a.text-danger:focus, a.text-danger:hover {
    color: #fe4134 !important;
}

/*-----------------
	Bootstrap Buttons
-----------------------*/

.btn-primary {
    background-color: #00c469;
    border-color: #00c469;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.active,
.btn-primary:active,
.open > .dropdown-toggle.btn-primary {
	background-color: #00b35f;
	border: 1px solid #00b35f;
	color: #fff;
}
.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary.focus:active,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open > .dropdown-toggle.btn-primary.focus,
.open > .dropdown-toggle.btn-primary:focus,
.open > .dropdown-toggle.btn-primary:hover {
	background-color: #00b35f;
	border: 1px solid #00b35f;
	color: #fff;
}
.btn-primary.active:not(:disabled):not(.disabled), .btn-primary:active:not(:disabled):not(.disabled), .show > .btn-primary.dropdown-toggle {
    background-color: #00b35f;
    border-color: #00b35f;
    color: #fff;
}
.btn-primary.disabled, .btn-primary:disabled {
    background-color: #00c469;
    border-color: #00c469;
    color: #fff;
}

/*-----------------
	Nice Select
-----------------------*/

.nice-select {
    background-color: #fbfbfb;
    border: 1px solid #ccc;
    border-radius: 3px;
    color: #6d6e70;
    float: none;
    font-size: 15px;
    font-weight: normal;
    height: 60px;
    line-height: 40px;
    padding: 10px 40px 10px 20px;
    width: 100%;
}
.nice-select:focus {
	background-color: #fff;
}
.nice-select:after {
    border-bottom: 2px solid rgba(0, 0, 0, 0.25);
    border-right: 2px solid rgba(0, 0, 0, 0.25);
    height: 8px;
    right: 20px;
    width: 8px;
}
.nice-select .list {
    border: 1px solid #b5b5b5;
    border-radius: 3px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16) !important;
    margin-top: 6px !important;
    right: 0 !important;
}
.nice-select .option.selected {
    font-family: Circular Std Bold;
    font-weight: normal;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
    background-color: #f6f6f6;
    font-family: Circular Std Bold;
    font-weight: normal;
}
.nice-select > .current {
    color: #6d6e70;
}
.nice-select.form-control:focus {
    color: #3f4040;
}
.nice-select:active, .nice-select.open, .nice-select:focus {
    border-color: #ccc;
}
.nice-select.open .list {
	margin-top: 0;
}
.nice-select .option {
    line-height: 45px;
    min-height: 45px;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}
.nice-select .option:last-child:after {
	display: none;
}

/*-----------------
	Focus Label
-----------------------*/

.form-focus {
	position: relative;
}
.form-focus .focus-label {
	font-family: Circular Std Medium;
	font-size: 24px;
	font-weight: normal;
	opacity: 1;
	pointer-events: none;
	position: absolute;
	-webkit-transform: translate3d(0, 35px, 0) scale(1);
	-ms-transform: translate3d(0, 35px, 0) scale(1);
	-o-transform: translate3d(0, 35px, 0) scale(1);
	transform: translate3d(0, 35px, 0) scale(1);
	transform-origin: left top;
	transition: 240ms;
	left: 24px;
	top: 0;
	z-index: 1;
	color: #ccc;
	margin: 0;
}
.form-focus.focused .focus-label {
	font-family: Circular Std Medium;
    font-size: 18px;
    font-weight: normal;
    line-height: 22px;
    opacity: 1;
    top: -24px;
    z-index: 1;
}
.form-focus .form-control:focus ~ .focus-label, 
.form-focus .form-control:-webkit-autofill ~ .focus-label {
	font-family: Circular Std Medium;
    font-size: 18px;
    font-weight: normal;
    line-height: 22px;
    opacity: 1;
    top: -24px;
    z-index: 1;
}
.form-focus .form-control {
    height: 92px;
    padding: 23px;
}
.form-focus .form-control::-webkit-input-placeholder {
	color: transparent;
	transition: 240ms;
}
.form-focus .form-control:focus::-webkit-input-placeholder {
	transition: none;
}
.form-focus.focused .form-control::-webkit-input-placeholder {
	color: #bbb;
}

/*-----------------
	Radio & Checkbox
-----------------------*/

.custom-checkbox {
    padding-left: 0;
}
.custom-checkbox label {
	color: #3F4040;
	cursor: pointer;
    display: inline-block;
	font-family: Circular Std Medium;
    font-size: 18px;
    line-height: 22px;
    margin: 0;
    padding-left: 17px;
    position: relative;
}
.custom-checkbox label:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 21px;
    height: 21px;
    left: 0;
    margin-left: -13px;
    border: 1px solid #3f4040;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}
.custom-checkbox label:after {
    color: #565656;
    display: inline-block;
    font-size: 13px;
    height: 21px;
    left: 0;
    margin-left: -13px;
    padding-left: 4px;
    padding-top: 1px;
    position: absolute;
    top: -2px;
    width: 21px;
}
.custom-checkbox input[type="checkbox"] {
    opacity: 0;
}
.custom-checkbox input[type="checkbox"]:checked + label:after {
    color: #565656;
    font-family: 'FontAwesome';
    content: "\f00c";
}
.custom-checkbox input[type="checkbox"]:disabled + label {
    opacity: 0.65;
}
.custom-checkbox input[type="checkbox"]:disabled + label:before {
    background-color: #eee;
    cursor: not-allowed;
}
.custom-checkbox input[type="checkbox"]:checked + label:before {
    background-color: #fff;
    border-color: #595959;
}

/*-----------------
	Loader
-----------------------*/

.loader-wrapper {
    background-color: rgba(255, 255, 255, 0.8);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999999;
}
.app-loader {
    background: #e5f9f0;
    border-radius: 50%;
    bottom: 10px;
    height: 50px;
    left: 50%;
    padding: 10px;
    position: absolute;
    top: 50%;
    width: 50px;
}
.app-loader .loading {
    width: 30px;
    height: 30px;
    border-radius:50%;
    border: 2px solid #00c469;
    border-top-color: #fff;
    animation: spin 1s infinite linear;
    -webkit-animation: spin 1s infinite linear;
    display: inline-block;
}
@keyframes spin {
    100% { transform: rotate(360deg); }
}
@-webkit-keyframes spin { 
    100% { 
        -webkit-transform: rotate(360deg); 
    } 
}

/*-----------------
	Login
-----------------------*/

.login-page {
	background-color: #fff;
}
.login-page .page-content {
    padding: 50px 0;
}
.login-box {
    margin: 0 auto;
    max-width: 545px;
    position: relative;
}
.login-header {
    margin-bottom: 60px;
}
.login-header > h2 {
    color: #3f4040;
    font-family: Circular Std Black;
    font-size: 48px;
    font-weight: normal;
    line-height: 55px;
    margin-bottom: 14px;
}
.login-header > p {
    color: #6d6e70;
    font-family: Circular Std Medium;
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 0;
}
.account-input {
    margin-bottom: 24px;
}
.login-input .form-group:first-child .form-control {
    border-radius: 4px 4px 0 0;
}
.login-input .form-group:last-child .form-control {
    border-radius: 0 0 4px 4px;
}
.login-footer > p {
    color: #3f4040;
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 0;
    text-align: center;
}
.remember-me {
    color: #6d6e70;
    float: left;
    font-size: 18px;
    padding-left: 24px;
}
.forgot-pwd {
    float: right;
	text-align: right;
}
.forgot-link {
    color: #fe7167;
    float: right;
    height: 23px;
    line-height: 22px;
	font-size: 18px;
}
.forgot-link:hover {
    color: #fe4134;
}
.login-btn .btn {
    border-radius: 4px;
    font-family: Circular Std Bold;
    font-size: 24px;
    height: 74px;
    line-height: 25px;
    min-width: 246px;
}
.login-form .form-control {
    background-color: #fff;
    border: 1px solid #f6f6f6;
    border-radius: 4px;
    box-shadow: unset;
    color: #6d6e70;
    font-family: Circular Std Medium;
    font-size: 24px;
    min-height: 92px;
}
.login-form .form-control:-webkit-autofill {
	-webkit-box-shadow: 0 0 0px 1000px white inset;
}
.login-footer img {
    height: 28px;
    margin-left: 3px;
    width: auto;
}
.account-link {
	margin-bottom: 46px;
}
.login-footer {
    margin-top: 60px;
}
.pass-show {
	display: none;
    position: absolute;
    right: 20px;
    top: 33px;
}
.pass-show.show-icon {
	display: block;
}
.login-form .form-control[type="password"] {
	padding-right: 70px;
}
.account-input  .form-group {
	margin-bottom: 0;
}
.forgot-wrap {
    padding: 10px 0;
}

/*-----------------
	Header
-----------------------*/

.header {
    height: 83px;
}
.header .navbar {
    background-color: #fff;
    min-height: 83px;
    padding: 0;
}
.header.fixed-header .navbar {
	border-bottom: 1px solid #ccc;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}
.logo-wrap {
	border-right: 1px solid #ccc;
	float: left;
	width: 155px;
}
.header-logo {
    height: 83px;
    line-height: 83px;
    padding: 0 22px;
    text-align: center;
    width: 155px;
}
.header-logo a {
	display: inline-block;
}
.header-logo img {
    height: 50px;
}
.nav-title {
    margin-left: 42px;
    margin-right: auto;
	display: none;
}
.nav-title h3 {
    color: #3f4040;
    font-family: "Circular Std Black";
    font-size: 18px;
    font-weight: normal;
    line-height: 22px;
    margin-bottom: 0;
}
.header-nav {
    padding-right: 15px;
}
.header-menu > a {
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #6d6e70;
    display: flex;
    font-size: 16px;
    line-height: 19px;
    min-height: 54px;
    min-width: 170px;
    padding: 13px 36px 13px 20px;
}
.header-menu > a > i {
    font-size: 24px;
    margin-right: 10px;
}
.header-menu > a:after {
	border-top: 0;
	border-left: 0;
	border-bottom: 2px solid #999;
	border-right: 2px solid #999;
	content: '';
	display: block;
	height: 8px;
	margin-top: -4px;
	pointer-events: none;
	position: absolute;
	right: 16px;
	top: 50%;
	-webkit-transform-origin: 66% 66%;
	-ms-transform-origin: 66% 66%;
	transform-origin: 66% 66%;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
	width: 8px;
}
.header-menu > a[aria-expanded="true"]:after {
	-webkit-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
.header-menu > .dropdown-menu {
    border: 1px solid #cfcfcf;
    border-radius: 3px;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
    left: 0;
    padding: 0;
}
.header-menu > .dropdown-menu > a {
	border-bottom: 1px solid #dfdfdf;
    clear: both;
    color: #3f4040;
    display: block;
    font-size: 15px;
    font-weight: normal;
    line-height: 50px;
    min-height: 50px;
    padding: 0 20px;
    white-space: nowrap;
}
.header-menu > .dropdown-menu > a:hover {
	font-family: Circular Std Bold;
}
.header-menu .mobile-icon {
    display: none;
	font-size: 24px;
}
.header-menu .nice-select .option {
    line-height: 50px;
    min-height: 50px;
}
.header-menu > .dropdown-item.active, .header-menu > .dropdown-item:active {
	background-color: #f6f6f6;
}

/*-----------------
	Search
-----------------------*/

.page-content {
    padding: 45px 0 50px;
}
.page-title {
    color: #3f4040;
    font-family: "Circular Std Book";
    font-size: 36px;
    font-weight: normal;
    line-height: 50px;
    margin-bottom: 0;
}
.page-header {
    margin-bottom: 34px;
}
.page-title {
	color: #3F4040;
    font-family: "Circular Std Book";
    font-size: 36px;
    line-height: 43px;
	font-weight: normal;
}

.nav-tabs > li > a {
	margin-right: 0;
	color: #888;
	border-radius: 0;
}
.nav-tabs > li > a:hover, 
.nav-tabs > li > a:focus {
	border-color: transparent;
	color: #333;
}
.nav-tabs .nav-link:focus, 
.nav-tabs .nav-link:hover {
    background-color: #eee;
    border-color: transparent;
}
.support-menu .nav-tabs > li > a {
    border-left: 0;
    border-radius: 0;
    border-right: 0;
    border-top: 0;
	border-width: 2px;
    color: #777;
    font-size: 14px;
    line-height: 20px;
    padding: 4px 2px;
    text-transform: uppercase;
}
.support-menu .nav-tabs.nav-tabs-bottom > li {
	margin-right: 30px;
}
.nav-tabs.nav-tabs-bottom > li > a.active, 
.nav-tabs.nav-tabs-bottom > li > a.active:hover, 
.nav-tabs.nav-tabs-bottom > li > a.active:focus {
	border-bottom-width: 2px;
	border-color: transparent;
	border-bottom-color: #00c484;
	background-color: transparent;
	transition: none 0s ease 0s; 
	-moz-transition: none 0s ease 0s; 
	-o-transition: none 0s ease 0s;
	-ms-transition: none 0s ease 0s;
	-webkit-transition: none 0s ease 0s;
}
.nav-tabs.nav-tabs-bottom > li > a:hover, 
.nav-tabs.nav-tabs-bottom > li > a:focus,
.nav-tabs.nav-tabs-bottom > li > a.active, 
.nav-tabs.nav-tabs-bottom > li > a.active:hover, 
.nav-tabs.nav-tabs-bottom > li > a.active:focus {
	border-bottom-width: 2px;
	border-color: transparent;
	border-bottom-color: #00c484;
	background-color: transparent;
	transition: all 0.35s ease-in-out 0s; 
	-moz-transition: all 0.35s ease-in-out 0s; 
	-o-transition: all 0.35s ease-in-out 0s; 
	-ms-transition: all 0.35s ease-in-out 0s; 
	-webkit-transition: all 0.35s ease-in-out 0s;
}
.support-menu {
    margin-bottom: 40px;
}
.support-menu .nav-tabs {
    border-bottom: 0 solid #fff;
}
.search-widget label {
    color: #6d6e70;
    font-size: 21px;
    line-height: 25px;
    margin: 40px auto auto;
	padding-right: 0;
}
.search-widget label.col-sm-3 {
    flex: 0 0 27%;
    max-width: 27%;
}
.search-widget .col-sm-9 {
    flex: 0 0 73%;
    max-width: 73%;
}
#search_by_input {
    margin-top: 10px;
}
#search_by_input1 {
    margin-top: 10px;
}	
.search-btn .btn {
    background-color: #00c469;
    border: 1px solid #00c469;
    color: #fff;
    display: block;
    min-height: 45px;
    padding: 8px 15px;
    width: 100%;
}
.search-btn .btn:hover {
	background-color: #00b35f;
	border-color: #00b35f;
	color: #fff;
}
.search-widget .form-control {
	min-height: 45px;
}
.search-widget .nice-select {
    height: 45px;
    line-height: 25px;
}
.search-widget .req-text {
    color: #8e8f93;
    display: block;
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 3px;
    text-align: right;
	height: 25px;
}
.search-widget .search-btn {
    margin-top: 28px;
}
.search-widget .search-by {
    color: #6d6e70;
    display: inline-block;
    font-size: 15px;
    line-height: 25px;
    margin-top: 3px;
    text-decoration: underline;
}
.search-widget .search-by:hover {
	color: #3f4040;
}
.search-widget .form-group {
	margin-bottom: 30px;
}
.info-list {
    color: #3f4040;
    font-size: 15px;
    line-height: 21px;
	display: table-row;
}
.info-list:last-child {
	margin-bottom: 0;
}
.info-list-item {
    background-color: #fff;
    border-radius: 10px;
    display: table;
    padding: 20px;
    width: 100%;
}
.info-list-row {
    display: table-row;
}
.info-list-row > * {
    display: table-cell;
    padding: 0 10px;
}
.info-list-row > div:first-child {
	padding-left: 0;
}
.info-list-row > div:last-child {
	padding-right: 0;
}
.info-list-wrapper {
    display: table;
	border-collapse: separate;
	border-spacing: 0px 30px;
    margin-top: -29px;
    width: 100%;
}
/*.info-list {
}*/
.info-list > * {
	display: table-cell;
    padding: 20px 10px;
	background-color: #fff;
	border: 0;
}
.info-list-wrapper tr td {
    padding: 20px 10px;
    vertical-align: top;
}
.info-list-wrapper tr > td:first-child {
	border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
	padding-left: 20px;
}
.info-list-wrapper tr > td:last-child {
	border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
	padding-right: 20px;
}
.info-patient-details {
    width: 13%;
}
.info-registration {
    width: 9%;
}
.info-practice-id {
    min-width: 100px;
    width: 9%;
}
.info-workflow {
    width: 12%;
}
.info-device {
    width: 10%;
}
.info-timestamp {
    width: 10%;
}
.info-appt-date {
    width: 10%;
}
.info-emr-checkin {
    width: 15%;
}
.info-view-logs {
    width: 12%;
}
.info-header {
    color: #8e8f93;
    font-family: Circular Std Bold;
    margin-bottom: 5px;
}
.encounter-id {
    display: block;
    font-size: 13px;
    line-height: 19px;
}
.reg-notstarted {
    color: #9c9c9c;
}
.workflow-lists {
    font-size: 13px;
    line-height: 19px;
}
.info-content .time-stamp {
	display: block;
}
.workflow-title {
    font-family: Circular Std Bold;
    margin-bottom: 3px;
}
.info-list p {
    margin-bottom: 0;
}
.pat-info-num > span {
    display: block;
    font-size: 13px;
    line-height: 19px;
}
.log-link {
    line-height: 22px;
    list-style: none;
    margin: 0;
	min-width: 95px;
    padding: 0;
}
.log-link a:hover {
	color: #00c469;
}
.patient-name {
    min-width: 170px;
}
.tooltip-info {
    color: #8e8f93;
    font-size: 14px;
    margin-left: 4px;
}
.patient-name > a:hover {
	color: #00c469;
}
.popover h5 {
	font-family: Circular Std Book;
    font-size: 24px;
    font-weight: normal;
    line-height: 34px;
    margin-bottom: 2px;
}
.pat-info-list {
    color: #3f4040;
    font-family: Circular Std Book;
    font-size: 15px;
    line-height: 21px;
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
.popover {
    border-color: #cfcfcf;
    border-radius: 10px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}
.popover-body {
    padding: 25px 30px;
}

/*-----------------
	Registration Activity
-----------------------*/

.page-sub-title {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 15px;
}
.filter-widget {
    margin-bottom: 30px;
}
.filter-widget .nice-select {
    height: 45px;
    line-height: 25px;
}
.date-search {
    position: relative;
}
.date-search-input {
    border-radius: 4px;
    padding: 0 20px;
    text-align: center;
}
.date-arrow-left {
    align-items: center;
    background-color: #afafaf;
    border-radius: 4px 0 0 4px;
    color: #fff;
    display: flex;
    font-size: 14px;
    height: 45px;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    width: 20px;
}
.date-arrow-right {
    align-items: center;
    background-color: #afafaf;
    border-radius: 0 4px 4px 0;
    color: #fff;
    display: flex;
    font-size: 14px;
    height: 45px;
    justify-content: center;
    right: 0;
    position: absolute;
    top: 0;
    width: 20px;
}
.date-search > a:hover {
	background-color: #999;
	color: #fff;
}
.filter-widget .filter-row {
	display: flex;
    flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
}
.filter-widget .filter-row > div {
	padding-left: 10px;
	padding-right: 10px;
}
.filter-label {
    color: #3f4040;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 0;
}
.filter-row > .filter-pra-id {
    flex: 0 0 25%;
    max-width: 25%;
}
.filter-row > .filter-emr {
    flex: 0 0 25%;
    max-width: 25%;
}
.filter-row > .filter-search {
    flex: 0 0 25%;
    max-width: 25%;
}
.filter-row > .filter-date-search {
    flex: 0 0 25%;
    max-width: 25%;
}
.search-input {
    position: relative;
}
.search-input .form-control {
    padding-right: 46px;
}
.search-input > label {
    color: #bcbcbc;
    font-size: 18px;
    position: absolute;
    right: 20px;
    top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.filter-widget {
    margin-bottom: 30px;
    position: relative;
}
.filter-text {
    left: 0;
    position: absolute;
    top: 8px;
}
.filter-wrap {
    padding-left: 57px;
}

/*-----------------
	Emr Activity
-----------------------*/

.info-emr {
    width: 8%;
}
.info-location-id {
    width: 9%;
}
.info-appt-status {
    width: 19%;
}
.filter-widget.emr-filter {
    margin-bottom: 10px;
}
.filter-widget.emr-filter .filter-row > div {
	margin-bottom: 20px;
}
.emr-filter .filter-row > .filter-pra-id {
    flex: 0 0 183px;
    max-width: 183px;
}
.emr-filter .filter-row > .filter-emr {
    flex: 0 0 170px;
    max-width: 170px;
}
.emr-filter .filter-row > .filter-status {
    flex: 0 0 185px;
    max-width: 185px;
}
.emr-filter .filter-row > .filter-appt-id {
    flex: 0 0 160px;
    max-width: 160px;
}
.emr-filter .filter-row > .filter-search {
    flex: 0 0 255px;
    max-width: 255px;
}
.emr-filter .filter-row > .filter-date-search {
    flex: 0 0 230px;
    max-width: 230px;
}
.view-json {
    font-size: 13px;
    line-height: 19px;
}
.view-json a:hover {
    color: #00c469;
}

/*-----------------
	Registration log modal
-----------------------*/

.modal-backdrop {
    background-color: #7a7a7a;
}
.modal-backdrop.show {
    opacity: 0.6;
}
.custom-modal .modal-content {
    border: 0;
    padding: 30px 50px;
}
.custom-modal .modal-content {
    border: 0;
    border-radius: 10px;
    padding: 40px;
}
.custom-modal .modal-header, .custom-modal .modal-body, .custom-modal .modal-footer {
    border: 0;
    padding: 0;
}
.custom-modal button.close {
    color: #8b8b8b;
    line-height: 12px;
    opacity: 1;
    position: absolute;
    right: 15px;
    top: 15px;
}
.modal-xl {
    margin: 0.5rem auto;
	max-width: 1220px;
}
.return-back > a {
    text-decoration: underline;
}
.return-back > a:hover {
	color: #00c469;
    text-decoration: none;
}
.search-det-info > ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.search-det-info > ul > li {
    display: inline-block;
    margin-right: 30px;
}
.info-modal-header {
    margin-bottom: 30px;
}
.title-section {
    margin-bottom: 20px;
}
.view-btns {
    text-align: right;
}
.view-btns .btn {
    background-color: #00c469;
    border: 1px solid #00c469;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    font-size: 15px;
    line-height: 21px;
    min-height: 40px;
    min-width: 150px;
    padding: 8px 14px;
    text-align: center;
}
.view-btns .btn:hover {
	background-color: #00b35f;
	border-color: #00b35f;
	color: #fff;
}
.view-btns .btn + .btn {
    margin-left: 11px;
}
.table.border-less th, .table.border-less td {
	border: 0;
}
.table.border-less tr th:first-child {
	padding-left: 0;
}
.table.border-less tr th:last-child {
	padding-right: 0;
}
.table.border-less tr td:first-child {
	padding-left: 0;
}
.table.border-less tr td:last-child {
	padding-right: 0;
}
.table.custom-table thead th {
    color: #8e8f93;
    font-family: Circular Std Bold;
    font-size: 18px;
    font-weight: normal;
    line-height: 26px;
}
.custom-table {
    margin-bottom: 0;
}
.title-section h4 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 0;
}
.reg-log-table {
    max-height: 400px;
    overflow-y: auto;
}

/*-----------------
	Messaging log modal
-----------------------*/

.info-msg {
    width: 8%;
}
.msg-log-list .info-list-wrapper tr td {
    padding: 20px 10px;
    vertical-align: top;
	border-bottom: 1px solid #dadada;
	border-top: 1px solid #dadada;
}
.msg-log-list .info-list-wrapper tr > td:first-child {
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
	padding-left: 20px;
	border-left: 1px solid #dadada;
}
.msg-log-list .info-list-wrapper tr > td:last-child {
    border-right: 1px solid #dadada;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    padding-right: 20px;
}
.msg-log-list .info-list-item {
    border: 1px solid #dadada;
}
.msg-log-list .info-timestamp {
    width: 8%;
}
.msg-log-list .info-workflow {
    width: 18%;
}
.msg-log-list .msg-log-scroll {
    max-height: 400px;
    overflow-y: auto;
}
.info-status {
    width: 9%;
}
.view-siu {
    font-size: 13px;
    line-height: 19px;
}
.view-siu a:hover {
    color: #00c469;
}

/*-----------------
	Patient details modal
-----------------------*/

.patient-info-cont .card {
	border: 1px solid #dadada;
    border-radius: 0;
}
.patient-info-cont .card-header {
    background-color: #fbfbfb;
    border-bottom: 1px solid #dadada;
    padding: 9px 20px;
}
.patient-info-cont .card-header h6 {
    font-family: Circular Std Bold;
    font-size: 15px;
    line-height: 21px;
    margin-bottom: 0;
}
.patient-info-cont .card-body {
	padding: 15px 20px;
}
.demo-wrap {
    max-height: 176px;
    min-height: 176px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}
.demographics-info {
    display: table;
    width: 100%;
}
.demo-info-header {
    display: table-row;
    font-family: Circular Std Bold;
}
.demo-info-header > * {
    display: table-cell;
	padding: 0 5px 5px;
}
.demo-info-list {
    display: table-row;
}
.demo-info-list > * {
    display: table-cell;
    padding: 5px;
}
.demo-field {
    padding-left: 0;
    width: 35%;
}
.demo-response {
    width: 65%;
	padding-right: 0;
}
.card.demographics-card {
    margin-bottom: 20px;
}

.card.health-card {
    margin-bottom: 20px;
}

.demographics-card .demo-info-list:last-child div {
	padding-bottom: 0;
}
.policy-wrap {
    max-height: 83px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}
.policy-info {
    display: table;
    width: 100%;
}
.policy-info-header {
    display: table-row;
    font-family: Circular Std Bold;
}
.policy-info-header > * {
    display: table-cell;
	padding: 0 5px 5px;
}
.policy-info-list {
    display: table-row;
}
.policy-info-list > * {
    display: table-cell;
    padding: 5px;
}
.policy-field {
    padding-left: 0;
    width: 55%;
}
.policy-response {
    width: 45%;
	padding-right: 0;
}
.policy-card .policy-info-list:last-child div {
	padding-bottom: 0;
}
.health-wrap {
    max-height: 351px;
    min-height: 351px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}
.health-info {
    display: table;
    width: 100%;
}
.health-info-header {
    display: table-row;
    font-family: Circular Std Bold;
}
.health-info-header > * {
    display: table-cell;
	padding: 0 5px 5px;
}
.health-info-list {
    display: table-row;
}
.health-info-list > * {
    display: table-cell;
    padding: 5px;
}
.health-field {
    padding-left: 0;
    width: 35%;
}
.health-response {
    width: 65%;
	padding-right: 0;
}
.health-card .health-info-list:last-child div {
	padding-bottom: 0;
}
.question-card .policy-wrap {
	min-height: 160px;
    max-height: 160px;
    overflow-y: auto;
}

/*-----------------
	Infinite Loader
-----------------------*/

.infinite-section {
    margin-top: 15px;
    display: none;
    margin-bottom: 15px;
}
.loader-wrap {
    height: 15px;
    margin: 0 auto;
    position: relative;
    width: 60px;
}
.loader-circle {
	display: block;
	width: 15px;
	height: 15px;
	border-radius: 0.5em;
	background: #999;
	position: absolute;
	animation-duration: 0.5s;
	animation-timing-function: ease;
	animation-iteration-count: infinite;
}
.loader-circle:nth-child(1),
.loader-circle:nth-child(2) {
	left: 0;
}
.loader-circle:nth-child(3) {
	left: 1.5em;
}
@keyframes reveal {
	from { transform: scale(0.001); }
	to { transform: scale(1); }
}
@keyframes slide {
	to { transform: translateX(1.5em) }
}
.loader-circle:nth-child(1) {
	animation-name: reveal;
}
.loader-circle:nth-child(2),
.loader-circle:nth-child(3) {
	animation-name: slide;
}
.loader-circle:nth-child(4) {
	animation-name: reveal;
	animation-direction: reverse;
}

/*-----------------
	Date Range Picker
-----------------------*/

.daterangepicker .ranges li.active {
    background-color: #00c484;
    color: #fff;
}
.daterangepicker td.active, .daterangepicker td.active:hover {
    background-color: #00c484;
}
.daterangepicker td.in-range {
    background-color: #f2f6f8;
}
.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
    height: 28px;
    line-height: 28px;
    min-width: 28px;
    width: 28px;
}

/*-----------------
	Multiple Modal
-----------------------*/

/*.modal + .modal {
    z-index: 1052 !important;
}
.modal-backdrop.show + .modal-backdrop.show {
    z-index: 1051 !important;
}*/

/*-----------------
	Form Validation
-----------------------*/

form label.error {
    color: #ff1200;
    font-family: Circular Air;
    font-size: 15px;
    line-height: 19px;
    margin: 0;
}
.dynamicpage-wrap {
	margin-top: 20px;
}
.curfunc, .curfunc:hover {
   cursor: default !important;
   color: #3f4040 !important;
}
.modal_highlight{
	-moz-box-shadow: 0 0 15px #999;
	-webkit-box-shadow: 0 0 15px #999;
	box-shadow: 0 0 15px #999;
}
.ok-btns .btn {
   background-color: #00c469;
   border: 1px solid #00c469;
   border-radius: 3px;
   color: #fff;
   display: inline-block;
   font-size: 15px;
   line-height: 21px;
   min-height: 40px;
   min-width: 120px;
   padding: 8px 10px;
   text-align: center;
   margin-top:20px;
}
.ok-btns .btn:hover {
   background-color: #00b35f;
   border-color: #00b35f;
   color: #fff;
}

/*-----------------
	Responsive
-----------------------*/

@media (min-width: 992px) {
	.modal-xl {
		margin: 0.5rem auto;
		max-width: 930px;
	}
}
@media (min-width: 1024px) {
	.container {
		max-width: 1024px;
	}
	.modal-xl {
		margin: 0.5rem auto;
		max-width: 994px;
	}
}
@media (min-width: 1200px) {
	.container {
		max-width: 1200px;
	}
	.modal-xl {
		margin: 0.5rem auto;
		max-width: 1170px;
	}
}
@media (min-width: 1250px) {
	.container {
		max-width: 1250px;
	}
	.modal-xl {
		margin: 0.5rem auto;
		max-width: 1220px;
	}
}
@media (max-width: 1249.98px) {
	.search-widget label.col-sm-3 {
		flex: 0 0 28%;
		max-width: 28%;
	}
	.search-widget .col-sm-9 {
		flex: 0 0 72%;
		max-width: 72%;
	}
}
@media (max-width: 1199.98px) {
	.search-widget label.col-sm-3 {
		flex: 0 0 33%;
		max-width: 33%;
	}
	.search-widget .col-sm-9 {
		flex: 0 0 67%;
		max-width: 67%;
	}
}
@media (max-width: 1023.98px) {
	.filter-text {
		position: unset;
	}
	.filter-wrap {
		padding-left: 0;
	}
	.search-widget label {
		font-size: 16px;
	}
}
@media (max-width: 991.98px) {
	.container {
		max-width: 100%;
	}
	.search-widget label.col-sm-3 {
		flex: 0 0 35%;
		max-width: 35%;
	}
	.search-widget .col-sm-9 {
		flex: 0 0 65%;
		max-width: 65%;
	}
	.modal-xl {
		margin: 15px;
		max-width: 100%;
	}
	/*.info-resp {
		overflow-x: auto;
		width: 100%;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: -ms-autohiding-scrollbar;
	}
	.info-device, .info-timestamp, .info-appt-date, .info-workflow, .info-location-id, .info-registration, .info-emr {
		min-width: 120px;
	}
	.info-view-logs {
		min-width: 130px;
	}
	.info-emr-checkin, .info-appt-status {
		min-width: 165px;
	}*/
}
@media (max-width: 767.98px) {
	.page-content {
		padding: 15px 0;
	}
	.page-header {
		margin-bottom: 15px;
	}
	.logo-wrap {
		border: 0;
		left: 0;
		padding: 0 80px;
		position: absolute;
		right: 0;
		text-align: center;
		top: 0;
		width: 100%;
	}
	.header-logo {
		margin: 0 auto;
		padding: 0;
		text-align: center;
		width: 155px;
	}
	.header-menu > a {
		justify-content: center;
		min-width: 54px;
		padding: 10px;
	}
	.header-menu > a > i {
		margin-right: 0;
	}
	.header-menu .mobile-icon {
		display: block;
	}
	.menu-text {
		display: none;
	}
	.header-menu > a:after {
		display: none;
	}
	.header-menu > .dropdown-menu  {
		left: auto;
	}
	.header-nav {
		margin-top: 15px;
		position: absolute;
		right: 0;
		top: 0;
	}
	.nav-title {
		bottom: 10px;
		left: 0;
		margin: 0;
		padding: 0 80px;
		position: absolute;
		right: 0;
		text-align: center;
	}
	.page-title {
		font-size: 30px;
		line-height: 32px;
		margin-bottom: 10px;
	}
	.page-header p {
		margin-bottom: 15px;
	}
	.search-widget label.col-sm-3 {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.search-widget .col-sm-9 {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.search-widget label {
		margin: 0;
	}
	.search-widget .req-text {
		position: absolute;
		right: 15px;
		top: -25px;
	}
	.search-widget .search-btn {
		margin-bottom: 30px;
		margin-top: 0;
	}
	.filter-text {
		margin-bottom: 5px;
		position: unset;
	}
	.filter-wrap {
		padding-left: 0;
	}
	.emr-filter .filter-row > .filter-pra-id {
		flex: 0 0 50%;
		margin-bottom: 20px;
		max-width: 50%;
	}
	.emr-filter .filter-row > .filter-emr {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.emr-filter .filter-row > .filter-status {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.emr-filter .filter-row > .filter-appt-id {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.emr-filter .filter-row > .filter-search {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.emr-filter .filter-row > .filter-date-search {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.filter-row > .filter-pra-id {
		flex: 0 0 50%;
		margin-bottom: 20px;
		max-width: 50%;
	}
	.filter-row > .filter-emr {
		flex: 0 0 50%;
		margin-bottom: 20px;
		max-width: 50%;
	}
	.filter-row > .filter-search {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.filter-row > .filter-date-search {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.return-back {
		margin-bottom: 20px;
	}
	.title-section h4 {
		margin-bottom: 20px;
	}
	.view-btns {
		text-align: left;
	}
	.custom-modal .modal-content {
		padding: 30px;
	}
	.card.policy-card {
		margin-bottom: 20px;
	}
	.msg-log-list .info-list-wrapper {
		max-height: inherit;
	}
	.demo-wrap {
		max-height: inherit;
		min-height: inherit;
		overflow-y: auto;
	}
	.policy-wrap {
		max-height: inherit;
		min-height: inherit;
		overflow-y: auto;
	}
	.health-wrap {
		max-height: inherit;
		min-height: inherit;
		overflow-y: auto;
	}
	#search_by_input {
		margin-top: 30px;
	}
	#search_by_input1 {
		margin-top: 30px;
	}
}
@media (max-width: 575.98px) {
	.nav-title {
		display: none;
	}
	.header-logo {
		height: 83px;
		line-height: 83px;
		margin: 0 auto;
	}
	.filter-text {
		margin-bottom: 5px;
		position: unset;
	}
	.filter-wrap {
		padding-left: 0;
	}
	.emr-filter .filter-row > .filter-pra-id {
		flex: 0 0 100%;
		margin-bottom: 20px;
		max-width: 100%;
	}
	.emr-filter .filter-row > .filter-emr {
		flex: 0 0 100%;
		margin-bottom: 20px;
		max-width: 100%;
	}
	.emr-filter .filter-row > .filter-status {
		flex: 0 0 100%;
		margin-bottom: 20px;
		max-width: 100%;
	}
	.emr-filter .filter-row > .filter-appt-id {
		flex: 0 0 100%;
		margin-bottom: 20px;
		max-width: 100%;
	}
	.emr-filter .filter-row > .filter-search {
		flex: 0 0 100%;
		margin-bottom: 20px;
		max-width: 100%;
	}
	.emr-filter .filter-row > .filter-date-search {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.filter-row > .filter-pra-id {
		flex: 0 0 100%;
		margin-bottom: 20px;
		max-width: 100%;
	}
	.filter-row > .filter-emr {
		flex: 0 0 100%;
		margin-bottom: 20px;
		max-width: 100%;
	}
	.filter-row > .filter-search {
		flex: 0 0 100%;
		margin-bottom: 20px;
		max-width: 100%;
	}
	.filter-row > .filter-date-search {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.view-btns .btn {
		width: 100%;
	}
	.view-btns .btn + .btn {
		margin: 15px 0 0;
	}
	.demo-field, .demo-response, .policy-field, .policy-response, .health-field, .health-response {
		width: 50%;
	}
	.login-box {
		max-width: 100%;
		padding: 0 15px;
		width: 100%;
	}
}
.custom-modal.scrollable-modal .modal-content {
	padding: 40px 20px;
}
.scrollable-modal .modal-body {
	max-height: calc(100vh - 120px);
	overflow-y: auto;
	padding: 0 20px;
}
#viewiframetag embed {
    height: 470px;
    width: 100%;
}

.tooltip-info {
    color: #8e8f93;
    display: inline-block;
    font-size: 14px;
    margin-left: 10px;
}
.pat-name {
    display: inline-block;
    max-width: 152px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.patient-name {
    display: inline-flex;
    min-width: inherit;
}
.adv_container_wrap {
    background-color: #fff;
    padding: 10px;
    min-height: 72px;
    border-radius:5px;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    margin-bottom: 30px !important;
}
.adv_container_wrap:before {
    content: "";
    position: absolute;
    right: 52%;
    border-radius: 5px;
    top: -14px;
    transform: rotate(63deg);
    width: 0;
    height: 0;
    border-right: 12px solid transparent;
    border-top: 20px solid #fff;
    border-left: 11px solid transparent;
  }
.adv_container_wrap .flex-wrap .pat_advanced_sec .form-control {
    width:188px;
}
.search_button_icon {
    min-height: 45px;
    min-width: 45px;
    background-color: #00c469;
    border: 1px solid #00c469;
    color: #fff;
    display: block;
}
.info-listwalkin td {
    background-color: #e6ffe6;
    
}

.modal ul{list-style: none;text-align:left;}

pre {
    white-space: pre-wrap;       /* Since CSS 2.1 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
    font-size:14px;
}
#summary_log_result .container .list .row{
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}
#summary_log_result .container ol{
    list-style-type:decimal;
    color: #4040f1;
    margin:0px !important;
    padding:0px 0px 0px 25px !important;
}
#summary_log_result .container ol li{
    margin-bottom:10px !important;
}

.showfile{
    color: #262699;
} 
.showfile:hover{
    color: #262699;
    text-decoration:underline;
} 
.btn-error {
    background-color: #c708089e;
    border-color: #c708089e;
    color: #fff;
}
.btn-error:hover,
.btn-error:focus,
.btn-error.active,
.btn-error:active,
.open > .dropdown-toggle.btn-error {
	background-color: #e50707;
	border: 1px solid #e50707;
	color: #fff;
}
.regenerateBtn {
   color: #007BFF;
   margin-top:5px !important;
   font-size: 14px;

}
#generate_pdf_modal .modal-header{
    border-bottom: 0px !important;
}
#generate_pdf_modal .modal-footer{
    border-top: 0px !important;
}

.generate_pdf_modal_btn{ margin-top:30px;}
.btn-close{background-color: #00c469;
    color: #fff;
    display: inline-block;
    font-weight: 400;
    text-align: center;
   
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    width:150px;
    float: none;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}
.sch-table-padding-left-one {
    padding-left: 350px !important;
}
.sch-table-padding-left-two {
    padding-left: 207px  !important;
}
