﻿:root {
    --blue-grey: #657e8b;
    --gold: #988f56;
}
/*body{
    width: 1024px;
    margin: auto;
}*/
.bg-gold-with-child,
.bg-gold-with-child * {
    background: var(--gold) !important;
}
.bg-blue-grey-with-child,
.bg-blue-grey-with-child * {
    background: var(--blue-grey) !important;
}
.text-gold {
    color: var(--gold) !important;
}
.text-blue-grey {
    color: var(--blue-grey) !important;
}
input[type="checkbox"] {
    position: relative;
    width: 40px;
    height: 20px;
    visibility: hidden;
}

    input[type="checkbox"]:before {
        visibility: visible;
        position: absolute;
        display: block;
        width: 100%;
        height: 20px;
        top: 0;
        background: var(--gold);
        content: '';
        border-radius: 10px;
        border: solid 1px #ddd;
        transition: all 0.5s;
    }

    input[type="checkbox"]:after {
        visibility: visible;
        top: 0;
        display: block;
        content: '';
        width: 20px;
        height: 20px;
        background: var(--gold);
        position: absolute;
        border-radius: 50%;
        border: solid 10px #fff;
        transition: all 0.5s;
        left: 0;
    }

    input[type="checkbox"]:checked:after {
        left: 100%;
        margin-left: -20px;
    }

    input[type="checkbox"]:checked:before {
        background: var(--gold);
    }

    input[type="checkbox"].square {
        width: 60px;
    }

        input[type="checkbox"].square:before {
            border-radius: 2px;
        }

        input[type="checkbox"].square:after {
            border-radius: 2px;
            width: 30px;
        }

        input[type="checkbox"].square:checked:after {
            left: 100%;
            margin-left: -30px;
        }

        input[type="checkbox"].square:checked:before {
            background: #3498db;
        }

.vital-signs-row button:not(.not-vital-signs) {
    width: 90px;
}

.absolute-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.bg-blue-grey {
    background: var(--blue-grey) !important;
}

.card .body,
.card .card-body {
    position: relative;
}
.card .card-header {
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    background: var(--blue-grey) !important;
    color: white !important;
    padding: 0.5rem 0.75rem !important;
}
.card-header,
.top-cards .card .card-header,
.below-top-card .card .card-header {
    font-size: 0.7rem !important;
}
.below-top-card .card > .body {
    min-height: 12rem !important;
    height: 12rem !important;
}
.body-box {
    width: fit-content;
    margin: auto;
    zoom: 92%;
    position: relative;
}

.top-cards .card .body dt,
.top-cards .card .body dd {
    display: inline-block;
    font-size: 10px;
}
.top-cards .card .body dt {
    margin-right: 8px;
}
.top-cards .card .body dl,
.top-cards .card .body dt,
.top-cards .card .body dd {
    margin-bottom: 0;
}
.top-cards .card .body {
    padding: 5px 10px;
}



.card .body .card-toolbar,
.card .card-body .card-toolbar{
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1000;
}

.card .card-header .card-toolbar {
    position: absolute;
    right: 10px;
    top: 50%;
    z-index: 1000;
    transform: translate(0, -50%);
}
    .btn-gold,
    .card .card-header .card-toolbar .btn {
        color: white !important;
        background: var(--gold) !important;
        font-weight: 900 !important;
    }
        .btn.btn-blue-grey,
        .card .card-header .card-toolbar .btn.btn-blue-grey {
            color: white !important;
            background: var(--blue-grey) !important;
            font-weight: 900 !important;
        }
.vital-signs-row .card .card-toolbar .btn {
    min-width: 100px;
    width: fit-content;
}
.btn-blue-grey{
    color: white !important;
    background: var(--blue-grey) !important;
    font-weight: 900 !important;
}
.bg-gold,
.badge-gold {
    background: var(--gold) !important;
}
.blinking {
  -webkit-animation: 1s blink ease infinite;
  -moz-animation: 1s blink ease infinite;
  -ms-animation: 1s blink ease infinite;
  -o-animation: 1s blink ease infinite;
  animation: 1s blink ease infinite;
  
}

@keyframes blink {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@-moz-keyframes blink {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@-webkit-keyframes blink {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@-ms-keyframes blink {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@-o-keyframes blink {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@keyframes up-right {
    0% { <!--
        from w w w . j a va 2 s. c o m--> transform: scale(1);
        opacity: .25
    }

    50% {
        transform: scale (1, 5);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: .25;
    }
}
#mic-doctor{

}

.circle {
    border-radius: 50%;
    width: 18px;
    height: 18px;
    opacity: .25;
    display: inline-block;
}

.red {
    background-color: red;
    -webkit-animation: up-right 1s infinite;
    -moz-animation: up-right 1s infinite;
    -o-animation: up-right 1s infinite;
    animation: up-right 1s infinite;
}
.badge.badge-info {
    background: #333;
    font-size: 12px;
    padding: 6px;
    text-align: center;
    line-height: 12px;
    border-radius: 40px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.last-calendar-box {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.5rem 1rem;
    background: var(--blue-grey);
    border-bottom-left-radius: 8px;
    color: white;
}
.patient-id-box {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0.5rem 1rem;
    background: var(--blue-grey);
    border-bottom-right-radius: 8px;
    color: white;
}
    .last-calendar-box .form-group,
    .last-calendar-box label {
        margin: 0;
    }
.dates-calendar-box {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    min-width: 600px;
}

    .dates-calendar-box .data-box {
        padding: 0.5rem;
        background: var(--blue-grey);
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        color: white;
        width: fit-content;
    }
.d-block-print-only {
    display: none;
}
body {
    margin: 12px;
}
.body.chart-body {
    padding: 10px 40px;
    height: 280px;

}

.dotted-line-chart .c3-chart-lines .c3-chart-line.c3-target:nth-child(1),
.dotted-line-chart .c3-chart-lines .c3-chart-line.c3-target:nth-child(3),
.dotted-line-chart .c3-chart-lines .c3-chart-line.c3-target:nth-child(4),
.dotted-line-chart .c3-chart-lines .c3-chart-line.c3-target:nth-child(6),
.dotted-line-chart .c3-chart-lines .c3-chart-line.c3-target.c3-defocused{
    stroke-dasharray: 5,5;
    opacity: 0 !important;
}

.dotted-line-chart .c3-chart-lines .c3-chart-line.c3-focused.c3-target:nth-child(1),
.dotted-line-chart .c3-chart-lines .c3-chart-line.c3-focused.c3-target:nth-child(3),
.dotted-line-chart .c3-chart-lines .c3-chart-line.c3-focused.c3-target:nth-child(4),
.dotted-line-chart .c3-chart-lines .c3-chart-line.c3-focused.c3-target:nth-child(6) {
    stroke-dasharray: 0;
    opacity: 1 !important;
}
/*.vital-signs-row :not(.bp) .dotted-line-chart .c3-chart-lines .c3-chart-line.c3-target:nth-child(1) path {
    stroke: #509F041B !important;
}*/
.body.chart-body,
.c3_chart {
    height: 460px !important;
}
.modal-dialog {
    margin-top: calc(1.75rem + 56px);
}
.card .card-header .nav.nav-tabs{
    padding: 0;
}
    .card .card-header .nav.nav-tabs > .nav-item > .nav-link {
        color: #fff;
        font-weight: 700;
    }
    .card .card-header .nav.nav-tabs .nav-link.active {
        border: 0px;
        border-radius: 8px;
        background: var(--gold);
    }

.card .card-header.bg-gold {
    background: var(--gold) !important;
}
.card .card-header.bg-gold .nav.nav-tabs .nav-link.active {
    background: var(--blue-grey);
}
.line-divider{
    width: 20px;
    height: 100%;
    background: #ececec;

}
.btn.btn-action {    
    padding: 0;
    font-size: .9375rem;
    overflow: hidden;
    position: relative;
    background: var(--blue-grey);
    font-size: 12px;
    border-radius: 0.2875rem;
    padding: 5px 8px;
    margin: 0;
}
.btn i {
    font-size: 24px;
    vertical-align: -3px;
}
.btn.btn-action i {
    font-size: 18px;
    vertical-align: -3px;
}
.btn.btn-icon.btn-sm, .navbar .navbar-nav > a.btn.btn-icon.btn-sm {
    line-height: 1.875rem;
}
.btn.btn-icon.btn-sm i, 
.navbar .navbar-nav > a.btn.btn-icon.btn-sm i {
    font-size: 18px;
    vertical-align: 2px;
}
.card .card-header.modal-header {
    padding: 1rem !important;
}
.notes-modal {
    z-index: 9999999 !important;
    height: 100vh !important;
    max-height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
}
    .notes-modal .modal-dialog {
        max-width: 100vw !important;
        height: 100vh !important;
        max-height: 100vh !important;
        margin: 0 !important;
        padding: 0 !important;
        z-index: 9999999 !important;
    }
.telehealth-doctor .video-box {
    width: 100%;
    /*height: 480px;*/
    display: inline-block;
    position: relative;
}

    .telehealth-doctor .video-box > video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }

    .telehealth-doctor .video-box > .participent-name {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 18px;
        font-weight: bold;
        text-shadow: 1px 1px 1px #333;
        color: white;
    }

.telehealth-doctor #local-media,
.telehealth-doctor #remote-media-div,
.telehealth-doctor .report-box {
    position: relative;
    border-radius: 8px;
    background: #888;
}
    .telehealth-doctor #local-media .controls,
    .telehealth-doctor #remote-media-div .controls,
    .telehealth-doctor .report-box .controls {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translate(-50%,0);
        z-index: 1000;
    }

/*.telehealth-doctor .patient-main,
.telehealth-doctor .doctor-main,
.telehealth-doctor .report-main {
    display: grid;
    grid-template-columns: 7fr 3fr;
    grid-template-rows: 1fr 1fr;
    grid-column-gap: 10px;*/
    /*grid-row-gap: 5px;*/
    /*width: 98%;
    margin-right: 2%;
}*/

    .telehealth-doctor .doctor-main #local-media .focus-btn,
    .telehealth-doctor .patient-main #remote-media-div .focus-btn,
    .telehealth-doctor .report-main .report-box .focus-btn {
        display: none;
    }
    .telehealth-doctor .doctor-main > *,
    .telehealth-doctor .patient-main > *,
    .telehealth-doctor .report-main > * {
        background: #777;
        /*margin: 5px 10px;
        border-radius: 8px;*/
        width: 100%;
    }
    .telehealth-doctor .doctor-main #local-media {
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    .telehealth-doctor .report-main #remote-media-div,
    .telehealth-doctor .doctor-main #remote-media-div {
        grid-column: 2;
        grid-row: 1;
    }

    .telehealth-doctor .patient-main .report-box,
    .telehealth-doctor .doctor-main .report-box {
        grid-column: 2;
        grid-row: 2;
    }



.telehealth-doctor .patient-main #local-media {
    grid-column: 2;
    grid-row: 1;
}

.telehealth-doctor .patient-main #remote-media-div {
    
    grid-column: 1;
    grid-row: 1 / span 2;
}

.telehealth-doctor .report-main .report-box {
    /*grid-column: 1;
    grid-row: 1 / span 2;*/
    height: auto !important;
}
    .telehealth-doctor .report-main #local-media {
        grid-column: 2;
        grid-row: 2;
    }
    .telehealth-doctor .report-main .report-box h5,
    .telehealth-doctor .report-detail {
        display: none;
    }

.telehealth-doctor .report-main .report-box h5,
.telehealth-doctor .report-detail {
    display: none;
}
.telehealth-doctor .report-box h5,
.telehealth-doctor .report-main .report-detail {
    display: block;
}

    .telehealth-doctor .report-main .report-detail {
        width: 100%;
        height: 100%;
    }
        .telehealth-doctor .report-main .report-detail .report-detail-inner {
            padding: 5px 10px;
            height: 95vh;
            position: relative;
            overflow-y: scroll;
            overflow-x: hidden;
            width: 100%;
        }
        .telehealth-doctor .report-main .report-detail .report-detail-inner > *{
            width: 100%;
        }


            .telehealth-doctor .report-main .report-detail .report-detail-inner > :first-child {
                margin-top: 64px !important;
            }
            .report-box {
                position: relative;
            }

    .report-box h5 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

.telehealth-doctor .report-main .report-detail .report-header {
    background: var(--blue-grey);
    color: white;
    zoom: 71%;
    display: grid;
    align-items: center;
    padding: 0 12px;
    position: absolute;
    width: 100%;
    z-index: 10000;
}
.telehealth-doctor .report-main .report-detail .report-header > * {
    padding: 6px 0;
}
    .telehealth-doctor .report-main .report-detail .report-header .header-patient-name {
        grid-column: 1 / span 2;
    }
        .telehealth-doctor .report-main .report-detail .report-header .header-patient-name > span {
            font-weight: 800;
            font-size: 24px;
        }
    .telehealth-doctor .report-main .report-detail .report-header .header-patient-id {
        grid-column: 3;
        text-align: center;
        padding: 12px 10px;
        background: var(--gold);
        width: fit-content;
        margin: auto;
    }
    .telehealth-doctor .report-main .report-detail .report-header .header-patient-report-period {
        grid-column: 4 / span 3;
        text-align: center;
        padding: 12px 10px;
        background: var(--gold);
        width: fit-content;
        margin: auto;
    }
    .telehealth-doctor .report-main .report-detail .report-header .header-last-rpm {
        grid-column: 8 / span 2;
        text-align: center;
        padding: 12px 10px;
        background: var(--gold);
        width: fit-content;
        margin: auto;
    }
    .telehealth-doctor .report-main .report-detail .report-header .header-patient-report-period-switch {
        grid-column: 10;
        min-height: 25px;
        text-align: right;
    }
        .telehealth-doctor .report-main .report-detail .report-header .header-patient-report-period-switch #lastCalendarMonth {
            vertical-align: -5px
        }

/* width */
.telehealth-doctor ::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.telehealth-doctor ::-webkit-scrollbar-track {
    background: var(--blue-grey);
}

/* Handle */
.telehealth-doctor ::-webkit-scrollbar-thumb {
    background: var(--gold);
}

    /* Handle on hover */
    .telehealth-doctor ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

.last30days [lastmonth] {
    display: none;
}
.lastmonth [last30days] {
    display: none;
}


.top-cards table {
    width: 100%;
}

    .top-cards table th,
    .top-cards table td {
        font-size: 10px;
    }

.p-0-3px {
    padding: 0 3px;
}

.dotted-line-chart .c3-chart-line.c3-target.c3-target-data1,
.dotted-line-chart .c3-chart-line.c3-target.c3-target-data3,
.dotted-line-chart .c3-chart-line.c3-target.c3-target-data4,
.dotted-line-chart .c3-chart-line.c3-target.c3-target-data6 {
    stroke-dasharray: 5,5;
    opacity: .15 !important;
}



[chart-card-type="bar"] [chart-type="bar"] {
    display: block;
}

[chart-card-type="bar"] [chart-type="spline"],
[chart-card-type="bar"] [chart-type="time"] {
    display: none;
}

[chart-card-type="time"] [chart-type="bar"] {
    display: none;
}

[chart-card-type="time"] [chart-type="spline"],
[chart-card-type="time"] [chart-type="time"] {
    display: block;
}

.top-cards .card .body {
    min-height: 100px;
    padding-bottom: 15px;
    /*height: 150px;*/
    /*overflow-y: scroll;*/
}

.below-top-card .card .body {
    min-height: 300px;
    height: 300px;
    zoom: 85%;
    overflow-y: scroll;
}
.btn-white, .card .card-header .card-toolbar .btn-white 
{
    color: #000 !important;
    font-size: 12px;
    background: white !important;
}
.font-weight-800 {
    font-weight: 800;
}
.fz-16px {
    font-size: 16px;
}
.fz-24px {
    font-size: 24px;
}
.fz-28px {
    font-size: 28px;
}
.font-weight-100 {
    font-weight: 100;
}
.z-100000 {
    z-index: 100000;
}
.w-100-percent {
    width: 100%;
}
.h-100vh {
    height: 100vh;
}
.h-100-percent {
    height: 100%;
}
.h-100px {
    height: 100px;
}
.h-80px {
    height: 80px;
}

.centeralize {
    position: absolute;
    left: 50%;
    top: 50%;
    width: fit-content; 
    transform: translate(-50%, -50%);
}
.user_time {
    width: fit-content;
    position: fixed;
    bottom: 0;
    padding: 0.25rem 1rem;
    border-radius: 8px;
    margin: 10px;
    font-weight: 800;
    color: white;
}

.card.patient-card .body img {
    width: 3.5rem;
    position: absolute;
    right: 10px;
    padding: 0.5rem;
    border-radius: 50%;
}
.card.patient-card.card-gold {
    border: 3px solid var(--gold) !important;
    box-shadow: 0 0.5rem 1rem var(--gold) !important;
}
    .card.patient-card.card-gold .body img {
        background: var(--gold) !important;
    }
.card.patient-card.card-blue-grey {
    border: 3px solid var(--blue-grey) !important;
    box-shadow: 0 0.5rem 1rem var(--blue-grey) !important;
}
    .card.patient-card.card-blue-grey .body img {
        background: var(--blue-grey) !important;
    }

[radio-group] {
    background: #ccc;
    justify-content: space-between !important;
    display: flex !important;
    padding: 4px;
    border-radius: 8px;
}
    [radio-group] label.form-check-label {
        padding: 2px 4px;
        text-align: center;
        width: 100%;
        border-radius: 8px;
        cursor: pointer;
    }
        [radio-group] label.form-check-label[selected] {
            background: var(--gold);
            color: #fff;
        }
        [radio-group] label.form-check-label .form-check-input {
            display: none;
        }
.caregiver-box {
    font-size: 11.2px;
    text-align: left;
    padding: 3px 4px;
    margin: 0;
    /* background: var(--blue-grey); */
    /* color: white; */
    width: fit-content;
    line-height: 12px;
    border-radius: 4px;
    border: 1px solid;
}
.br-8{
    border-radius: 8px;
}
.btn.btn-white {
    margin: 0;
    padding: 8px 8px !important;
}
.btn-sm.btn {
    padding: 4px 8px !important;
}

.btn.btn-custom-icon {
    padding: 4px 8px !important;
}

    .btn.btn-custom-icon > i.zmdi {
        font-size: 22px;
    }


.iti.iti--allow-dropdown {
    width: 100%;
}

select.form-control {
    height: 35px;
}

.my-icon-btn.with-text {
    width: fit-content;
    line-height: inherit !important;
}

    .my-icon-btn.with-text span {
        vertical-align: 3px;
        font-size: 11px;
    }

.my-icon-btn.btn-danger {
    box-shadow: 4px 4px 5px 0px #dc354557 !important;
    border: 2px solid var(--danger);
    padding: 2px !important;
}

.my-icon-btn.btn-success {
    box-shadow: 4px 4px 5px 0px #0C4E3357 !important;
    border: 2px solid #0C4E33;
    padding: 2px !important;
}

.my-icon-btn.btn-warning {
    box-shadow: 4px 4px 5px 0px #ffc10757 !important;
    border: 2px solid #ffc107;
    padding: 2px !important;
}

.my-icon-btn > img {
    height: 100%;
}

.btn.my-icon-btn.btn-sm {
    min-width: 26px !important;
    width: 26px !important;
    height: 26px !important;
    min-height: 26px !important;
}

.my-icon-btn {
    background-color: #fcfcfc;
    border: 1px solid #ccc;
    padding: 3px !important;
    line-height: 3px !important;
    font-weight: 900 !important;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
    color: #343a40;
    border-radius: 0.2875rem;
    font-size: .9375rem;
    overflow: hidden;
    position: relative;
    height: 30px;
    min-width: 30px;
    width: 30px;
    margin: 0;
}

.btn.my-icon-btn.btn-sm > i {
    font-size: 18px !important;
}

.btn.my-icon-btn > i {
    font-size: 23px !important;
}

.badge.badge-filter {
    width: fit-content;
    position: relative;
    padding-right: 27px;
}
    .badge.badge-filter > .btn {
        position: absolute;
        zoom: 78%;
        border-radius: 40px;
        top: 50%;
        right: 0;
        transform: translate(0, -50%);
    }

#filter_patients_dob {
    background: rgba(0,0,0,0);
    height: auto;
    padding: 0.275rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 400;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.top-cards table {
    width: 100%;
}

    .top-cards table th,
    .top-cards table td {
        font-size: 10px;
    }
.rotate90 {
    transform: rotate(90deg);
}
.zoom-80-percent {
    zoom: 80% !important;
}
.zoom-90-percent {
    zoom: 90% !important;
}
.pl-50px {
    padding-left: 50px !important;
}
.pl-51px {
    padding-left: 51px !important;
}
.ml--6px{
    margin-left: -6px !important;
}
.ml-52px {
    margin-left: 52px !important;
}
.ml-53px {
    margin-left: 53px !important;
}
.ml-54px {
    margin-left: 54px !important;
}
.mr-3px{
    margin-right: 3px !important;
}
.mr-54px {
    margin-right: 54px !important;
}
.top-87px {
    top: 87px !important;
}
.top-88px {
    top: 88px !important;
}
.top-84px {
    top: 84px !important;
}
.left-0 {
    left: 0 !important;
}
.left-132px {
    left: 132px !important;
}
.data-import-ajax-loading-wrapper {
    height: 250px;
    width: 100%;
    position: relative;
}
.data-import-ajax-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.fz-42px {
    font-size: 42px;
}
td.control-col {
    padding: 0.35rem 0.75rem;
}