body{
    -webkit-appearance: none;
}
select.form-control:not([size]):not([multiple]) {
    height: calc(2.25rem + 3px) !important;
    -webkit-appearance: none;
}
.table tbody tr td{
    font-size: 14px !important;
}
.card-box {
    border-radius: 4px !important;
    box-shadow: 0px 0px 35px rgba(154, 161, 171, 0.15);
    margin-bottom: 1em;
}
.overflow-scroll{
    overflow: scroll;
}
.flip-list-move {
    transition: transform 0.4s;
}

.list-move, /* apply transition to moving elements */
.list-enter-active,
.list-leave-active {
    transition: all 0.5s ease;
}

.list-enter-from,
.list-leave-to {
    opacity: 0;
    transform: translateX(30px);
}

.d-grid {
    display: grid;
}
.d-grid-td-2-items{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40px, 1fr));
    grid-gap: 0;
}
.d-grid-td-1-items{
    display: inline-grid;
    grid-gap: 3px;
    width: 100%;
}
/* ensure leaving items are taken out of layout flow so that moving
   animations can be calculated correctly. */

.list-leave-active {
    position: absolute;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    margin-right: 7px;
}

.switch .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 17px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.switch input:checked + .slider {
    background-color: #02c0ce;
}

.switch input:focus + .slider {
    box-shadow: 0 0 1px #02c0ce;
}

.switch input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.switch .slider.round {
    border-radius: 34px;
}

.switch .slider.round:before {
    border-radius: 50%;
}

.switcher .title {
    position: relative;
    top: 2px;
}
.badge-admin {
    background: var(--my-red);
    color: white;
    width: 86px;
    height: 18px;
    border-radius: 42px;
    text-transform: uppercase;
}
.badge-clinic_admin {
    background: var(--my-green);
    color: white;
    width: 74px;
    height: 18px;
    border-radius: 42px;
    text-transform: uppercase;
}
.badge-doctor {
    background: var(--my-primary);
    color: white;
    width: 74px;
    height: 18px;
    border-radius: 42px;
    text-transform: uppercase;
}
.badge-nurse {
    background: var(--my-yellow);
    color: white;
    width: 74px;
    height: 18px;
    border-radius: 42px;
    text-transform: uppercase;
}
.badge-care_coordinator {
    background: var(--my-blue);
    color: white;
    width: 120px;
    height: 18px;
    border-radius: 42px;
    text-transform: uppercase;
}
.badge-manager {
    background: var(--my-gray);
    color: white;
    width: 74px;
    height: 18px;
    border-radius: 42px;
    text-transform: uppercase;
}
.badge-stage-1{
    background: var(--my-yellow);
    color: white;
    width: 35px;
    height: 19px;
    border-radius: 76px;
}
.badge-stage-2 {
    background: var(--my-red);
    color: white;
    width: 35px;
    height: 19px;
    border-radius: 76px;
}
.btn-contacted-0{
    background: var(--my-red-light);
    color: var(--my-red);
}
.btn-contacted-1{
    background: var(--my-green-light);
    color: var(--my-green);
}

.bg-blue {
    background: var(--my-blue);
    border-color: var(--my-blue);
}
.bg-red {
    background: var(--my-red);
    border-color: var(--my-red);
}

#topbarTeleport .form-control{
    height: calc(2.25rem + 6px) !important;
    background: var(--my-gray-extra-light);
    color: var(--my-black);
}
#topbarTeleport .small-text{
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 10px;
    line-height: 12px;
    display: flex;
    align-items: center;
    color: var(--my-green);
    margin-top: 7px;
}
.border-muted{
    border:1px solid #d9e3e9;
}

 .user-profile {
    /*margin: 2em 0 1rem 0;*/
    padding-bottom: 1rem;
    text-align: center;
}

 .user-profile .user-avatar {
    margin: 0 0 1rem 0;
}

 .user-profile .user-avatar img {
    width: 140px;
    height: 140px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
}
.edit-avatar {
    position: absolute;
    font-size: 2.4em;
    color: #789496;
    box-shadow: 0 0 grey;
    right: 2em;
    top: 3em;
}

.edit-avatar:hover {
    font-size: 2.3em;
    transition: all 0.5s;
}

.img-sm{
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 50%;
    padding: 2px;
    /*border: 1px solid #02c0ce;*/
}

.img-md{
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 100%;
    padding: 2px;
    border: 1px solid #02c0ce;
}

.h-11 {
    height: 11em;
}
.h-16 {
    height: 16em;
}
.h-22 {
    height: 22em;
}
.mt-2em{
    margin-top: 2.2em;
}

.badge-mute{
    background: var(--my-gray);
    position: relative;
    top: -4px;
}
.table thead tr th{
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 35px;
    text-transform: capitalize;
    color: var(--my-black)
}
.table tbody tr td{
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 100;
    font-size: 15px;
    /*line-height: 30px;*/
    text-transform: capitalize;
    color: var(--my-black)
}
.apexcharts-tooltip.apexcharts-active,
.apexcharts-tooltip .apexcharts-tooltip-title,
.apexcharts-xaxistooltip, .apexcharts-yaxistooltip{
    border: none !important;
    background: black !important;
    color: white !important;
}
.apexcharts-tooltip-marker,
.apexcharts-legend-marker{
    border-radius: 0px !important;
}
.apexcharts-xaxistooltip-bottom:before,
.apexcharts-xaxistooltip-bottom:after{
    border-bottom-color: black !important;
    border-radius: 20% !important;
}
.apexcharts-tooltip-series-group.apexcharts-active,
.apexcharts-tooltip-series-group:last-child{
    padding-bottom: 0px !important;
}

.btn-outline-blue{
    color: var(--my-blue);
    border-color: var(--my-blue);
}
.btn-outline-blue:hover {
    background-color: var(--my-blue);
    border-color: var(--my-blue);
    color: white;
}
.btn-blue,.btn-blue:hover{
    background-color: var(--my-blue);
    border-color: var(--my-blue);
    color: white;
}
.currency {
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    margin-top: 3px;
}
.month.focused.active, .year.focused.active {
  background: #02c0ce !important;
}
a.router-link-active.router-link-exact-active span,
a.router-link-active.router-link-exact-active i,
a.router-link-active.router-link-exact-active svg path
{
    color: var(--my-orange);
    fill: var(--my-orange);
}

.ghost {
    opacity: 0.5;
    color: #02c0ce;
    border: 3px dashed darkgrey;
    padding: 10px;
    margin: 1em;
}
.ghost-sm {
    opacity: 0.5;
    color: #02c0ce;
    border-color: #02c0ce;
}
.disabled {
    pointer-events: none;
}
.modal-dialog-center {
    margin-top: 25%;
}
.d-flow-root{
    display: flow-root;
}
