:root {
   /* --color-primary: #0346c9;
    --color-primary-light: #2266e7;
    --color-secondary: #24ffff;*/
    --color-primary: #002F4D;
    --color-primary-rgb: 0,47,77;
    --color-primary-light: #11537B;
    --color-secondary: #5BD6F8;
    --color-black: #171123;
    --color-white: #f8feff;
   /* --color-white: #fff;*/
    --color-grey-dark: #777;
    --color-grey-light: #f7f7f7;
    --red-color: #C20000FF;
    --orange-color: #c26700;
    --green-color: #009138;
    --background-color: #f1f1f1;
}

.footer-menu{
    position: sticky!important;
    bottom: 0px!important;
}

.filepond--credits{
    display: none!important;
}
.filepond--root,
.filepond--root .filepond--drop-label {
    height: 60px;
}
.leaflet-control-attribution{
    display: none;
}

.text-warning{
    color: var(--orange-color) !important;
}

.bg-warning{
    background-color: var(--orange-color) !important;
}

html:not(.riopreto) .showRioPreto{
    display: none!important;
}
.riopreto .hideRioPreto{
    display: none!important;
}


.hueA90{filter: hue-rotate(60deg);}
.hueK52{filter: hue-rotate(120deg);}
.hueJ06{filter: hue-rotate(180deg);}

.barGraphPeakParent{
    -moz-box-flex: 1;
    flex: 1 1 auto;
    position: relative;
    width: 0;
    height: 71px;
    display: flex;
    justify-content: center;
    /*width: 12px;*/
    /*text-align: center;*/
}

.barGraphPeak{
    position: absolute;
    background-color: #1b6ef3;
    opacity: .8;
    border-radius: 3px 3px 0 0;
    width: 12px;
    bottom: 0;
}
.textGraphPeak{

    color: #70757a;
    font-size: 11px;
    /*left: -5px;*/
    margin-top: 80px;
    position: absolute;
    white-space: nowrap;

}

.filepond--root { font-size: 1.1rem !important; }

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%; /*10px*/
}


html, body {
    min-height: 100vh;
    min-height: 100dvh;
}
.isPwaL body {
    height: 100vh !important;
    overflow-y:auto ;
}

body {
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-black);
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    overflow-x: hidden;
}

header, main, footer {
    width: 100%;
}

header .navbar-top {
    background-color: var(--color-primary);
    min-height: 6rem;
}

header .navbar-bottom {
    background-color: transparent;
}

header .navbar-top .navbar-brand img {
    height: 3.8rem;
}

header .navbar-top .user-info {
    transform: translateY(1.5px);
}

header .navbar-top .user-info h2 {
    font-size: 1.1rem;
}

header .navbar-top .user-info h3 {
    font-size: 1.05rem;
}

main {
    flex: 1 1 auto;
}

footer {
    width: 100%;
    min-height: 5rem;
    text-align: center;
}

.footer-menu {
    font-size: 1rem;
    min-height: unset;
    box-shadow: rgba(17, 17, 26, 0.1) 0px -1px 0px;
    background-color: #fff;
}

.footer-menu .footer-menu-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.footer-menu .footer-menu-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background-color .2s ease;
    width: 100%;
    height: 100%;
    flex: 1 1 auto;
}

.footer-menu .footer-menu-item a {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    padding: 1em;
    flex: 1 1 auto;
    transition: all .2s ease;
    position: relative;
}

.footer-menu .footer-menu-item a.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 66%;
    height: .4rem;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    background-color: var(--color-primary-light);
}

.footer-menu .footer-menu-item a:not(.active):focus,
.footer-menu .footer-menu-item a:not(.active):hover {
    background-color: rgba(0, 0, 0, 0.05) !important;
}

.footer-menu .footer-menu-item .footer-menu-icon {
    width: 2.3em;
    height: auto;
    margin-bottom: .4rem !important;
}

.footer-menu .footer-menu-item .footer-menu-text {
    font-size: 1.2em;
    line-height: 1;
    font-weight: bolder;
    text-align: center;
}

a {
    text-decoration: none;
}

.container {
    width: 550px;
    max-width: 85vw;
}

.text-primary {
    color: var(--color-primary) !important;
}

.text-primary-light {
    color: var(--color-primary-light) !important;
}

.bg-primary {
    background: linear-gradient(to right, var(--color-primary), var(--color-primary-light)) !important;
}

.bg-primary-light {
    background-color: var(--color-primary-light) !important;
}

.btn.bg-primary-light:focus {
    background-color: var(--color-primary) !important;
}

.bg-black {
    background-color: var(--color-black);
}

.text-danger {
    color: var(--red-color) !important;
}

.text-success {
    color: var(--green-color) !important;
}

.text-secondary {
    color: var(--color-secondary) !important;
}

.bg-secondary {
    background-color: var(--color-secondary) !important;
}

.text-muted {
    color: var(--color-grey-dark) !important;
}

.bg-gray {
    background-color: #343434;
}

.border-bottom {
    border-bottom: 1px solid #ccd1d2 !important;
}

.fw-extra-bold {
    font-weight: 900;
}

.bf {
    font-family: 'Beatrice', sans-serif;
}

.cP {
    cursor: pointer;
}

.overflow-y-auto {
    overflow-y: auto;
}

.opacity-75 {
    opacity: .75;
}

.card,
.card-header,
.card-body,
.card-footer {
    background-color: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: unset;
}

.btn:hover {
    filter: brightness(.95);
}

.btn-call {
    width: 100%;
    font-size: 1.6rem;
    font-weight: 800;
    height: 6rem;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    border-radius: 10rem !important;
    border: .2rem solid #fff;
    color: #fff !important;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    transition: background-color .15s ease;
}

.btn-call span {
    transform: translateY(10%);
}

.btn-call:focus {
    background: linear-gradient(to right, #043ead, #1d57c9);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.min-w-0 {
    min-width: 0 !important;
}

.bg-return{
    background: linear-gradient(to right, #098b00, #0cc100) !important;
}
.bg-agendamentos{
    background: linear-gradient(to right, #199b9b, #0a8585)  !important;
}

.bg-return img {
    filter: brightness(0) invert(1);
}
.bg-agendamentos img {
    filter: brightness(0) invert(1);
}

.btn-call img {
    width: 2.6rem;
    margin-right: 1.1rem;
}

.btn-close:focus {
    outline: none !important;
    box-shadow: unset !important;
}

.last-documents-list,
.my-queries-list {
    font-size: 1rem;
}

.last-documents-list .document-item,
.my-queries-list .query-item {
    width: 100%;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    padding: 1rem 1.2em;
    border-radius: .5rem;
}

.last-documents-list .document-item h4 {
    font-size: 1.4em;
    margin-bottom: .45rem;
}

.last-documents-list .document-item h5,
.my-queries-list .query-item h4 {
    font-size: 1.2em !important;
}

.last-documents-list .document-item .icon {
    width: 1.15em;
    height: auto;
    transition: filter .15s ease;
}

.last-documents-list .document-item .icon:not(.no-hoverable):hover {
    filter: invert(68%) sepia(28%) saturate(2681%) hue-rotate(142deg) brightness(103%) contrast(112%);
}

.my-queries-list {

}

.text-ellipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ellipsis-2-lines {
    -webkit-line-clamp: 2;
}

.alert-message-list {
    position: fixed;
    bottom: 3.5%;
    right: 3.5%;
    width: 100%;
    max-width: 350px;
    height: auto;
    z-index: 9999;
    visibility: hidden;
}

.mx-w-250 {
    max-width: 250px;
}

.mx-w-350 {
    max-width: 350px;
}

.min-h-50 {
    min-height: 50px;
}

.add-range-btn {
    min-width: unset !important;
}

.add-range-btn:hover {
    filter: unset!important;
    border: 1px solid var(--color-primary) !important;
}

.disabled-all > * {
    opacity: .5;
    pointer-events: none !important;
}

.time-input {
  border: 1px solid #1a1e21 !important;
  color:  #1a1e21 !important;
}

.time-input::placeholder {
   color:  #1a1e21 !important;
}


.alert-message-list .alert-message-item {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 1.2rem 1.5em;
    background-color: var(--background-color);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    color: #fff !important;
    border-radius: .25rem;
    cursor: pointer;
    opacity: 0;
    transform: scale(.7);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.alert-message-list .alert-message-item.show {
    animation: alert-fade-in .3s ease forwards;
}

.alert-message-list .alert-message-item p {
    font-size: 1.35rem;
}

.aspect-ratio-1 {
    aspect-ratio: 1;
}

@keyframes alert-fade-in {
    0% {
        opacity: 0;
        transform: scale(.7);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.alert-message-list .alert-message-item.hidden {
    animation: alert-fade-out .3s ease forwards;
}

@keyframes alert-fade-out {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}

.alert-message-list .alert-message-item:not(:last-child) {
    margin-bottom: 1.25rem;
}

.alert-message-list .alert-message-item .alert-msg-icon,
.alert-message-list .alert-message-item .alert-close-icon {
   width: 2.6rem;
}

.alert-message-list .alert-message-item.success-alert {
    background-color: rgba(43,220,114,1);
}

.alert-message-list .alert-message-item.warning-alert {
    background-color: rgba(248, 110, 26, 1);
}

.alert-message-list .alert-message-item.error-alert {
    background-color: rgba(232, 57, 57, 1);
}

.btn-sm {
    /*padding: .25rem .5rem;*/
    font-size: 1rem;
    /*border-radius: .2rem;*/
}
.noShadowBoxPlz .btn{
    box-shadow: unset !important;
}

.disabled{
    opacity: 0.4 !important;
    pointer-events: none;
    cursor: default;
}

.stream-test img {
    cursor: pointer;
    max-width: 200px;
    filter: grayscale(.85);
    transition: filter .25s ease;
    backface-visibility: hidden;
    position: relative;
    background-color: rgba(34, 102, 231, 0.7);
    border-radius: 10%;
    padding: 30px;
    max-height: 200px;
}

.stream-test.sound-test.active img {
    filter: unset;
    animation: scaleAnimation .5s ease infinite;
}

@keyframes scaleAnimation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

.stream-test.microphone-test {
    position: relative;
    border-radius: 50%;
}

.stream-test.microphone-test.active img {
    filter: unset;
}

.stream-test.microphone-test.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    z-index: 1;
    animation: pulseAnimation 1.25s ease infinite;
    animation-delay: .25s;
}

@keyframes pulseAnimation {
    0% {
        transform: scale(1);
        box-shadow: 0 0 12px 0px rgba(3, 70, 201, 0.1);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 0 24px 0px rgba(3, 70, 201, 0.7);
    }
    75% {
        transform: scale(1);
        box-shadow: 0 0 12px 0px rgba(3, 70, 201, 0.1);
    }
}

.stream-test.cam-test.active img {
    filter: unset;
}

.default-container {
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.fw-500 {
    font-weight: 500!important;
}

.lh-1 {
    line-height: 1 !important;
}

.lh-125 {
    line-height: 1.25!important;
}

.text-white-75 {
    color: rgba(255,255,255,.75);
}

.modal .modal-content {
    max-width: 92.5vw;
    margin: auto;
}

.bg-light-gray {
    background-color: rgba(221, 221, 221, 0.25) !important;
}

.modal .modal-header .btn-close {
    padding: 0.3rem;
    border-radius: 0.357rem;
    opacity: 1;
    width: 2rem;
    height: 2rem;
    transition: all 0.23s ease 0.1s;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cg%20clip-path%3D%22url(%23a)%22%3E%3Cpath%20stroke%3D%22%23292929%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222.5%22%20d%3D%22m7%207%2010%2010M7%2017%2017%207%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22a%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%200h24v24H0z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
    background-size: 100%;
}

.modal .modal-header .btn-close:hover {
    filter: brightness(-50%);
}

.btn-primary.btn-outline {
    background-color: transparent !important;
    border: 1px solid var(--color-primary) !important;
    color: var(--color-primary) !important;
}

.btn-primary.btn-outline:hover {
    background-color: var(--color-primary) !important;
    color: #fff !important;
}

.btn-danger.btn-outline {
    background-color: transparent !important;
    border: 1px solid var(--bs-danger) !important;
    color: var(--bs-danger) !important;
}

.btn-danger.btn-outline:hover {
    background-color: var(--bs-danger) !important;
    color: #fff !important;
}

.min-h-6rem {
    min-height: 6rem;
}

@keyframes rotatingTrans {
    from {
        -ms-transform: translateY(-50%) rotate(0deg);
        -moz-transform:  translateY(-50%) rotate(0deg);
        -webkit-transform: translateY(-50%)  rotate(0deg);
        -o-transform: translateY(-50%)  rotate(0deg);
        transform:  translateY(-50%) rotate(0deg);
    }
    to {
        -ms-transform: translateY(-50%)  rotate(360deg);
        -moz-transform: translateY(-50%)  rotate(360deg);
        -webkit-transform: translateY(-50%)  rotate(360deg);
        -o-transform: translateY(-50%)  rotate(360deg);
        transform: translateY(-50%)  rotate(360deg);
    }
}

.rotatingTrans {
    -webkit-animation: rotatingTrans 2s linear infinite;
    -moz-animation: rotatingTrans 2s linear infinite;
    -ms-animation: rotatingTrans 2s linear infinite;
    -o-animation: rotatingTrans 2s linear infinite;
    animation: rotatingTrans 2s linear infinite;
}

#loadingCep {
    width: 2.5rem;
    right: 1rem;
}

.pid {
    width: 10%;
    height: 1.3rem;
    margin: 5px;
}

.pid:not(:last-child) {
    margin-right: 5px;
}

.skeleton {
    background: linear-gradient(to right, #e5e5e5 8%, #f0f0f0 18%, #e5e5e5 33%);
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite;
}

.skeleton-text {
    height: 1.4rem;
    border-radius: .25rem;
}

.skeleton-100 {
    width: 100%;
}

.skeleton-75 {
    width: 75%;
}

.skeleton-50 {
    width: 50%;
}

.skeleton-25 {
    width: 25%;
}

.datatable-footer {
    margin-bottom: .5rem;
}

.paginate_button {
    margin: 0 .5rem;
    padding: .6rem .8rem;
    border-radius: .5rem;
    cursor: pointer;
}

.paginate_button.current {
    background-color: var(--color-primary-light);
}


.toggle-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
    margin: 10px;
}

.toggle-switch .toggle-input {
    display: none;
}

.toggle-switch .toggle-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 24px;
    background-color: #cacaca;
    border-radius: 34px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.toggle-switch .toggle-label::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    background-color: #fff;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.rounded-file-input {
    width: 8rem;
    height: 8rem;
    min-width: 8rem;
    min-height: 8rem;
    position: relative;
    background-color: #FAF7FF;
}

input[type="color"]::-moz-color-swatch {
    border-radius: 0.357rem;
    border: none;
}

input[type="color"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: auto;
    height: 5rem;
    background-color: transparent;
    border: none;
    cursor: pointer;
}
.toggle-switch .toggle-input:checked + .toggle-label {
    background-color: var(--color-primary);
}

.toggle-switch .toggle-input:checked + .toggle-label::before {
    transform: translateX(26px);
}

.toggle-switch.light .toggle-label {
    background-color: #BEBEBE;
}

.toggle-switch.light .toggle-input:checked + .toggle-label {
    background-color: #9B9B9B;
}

.toggle-switch.light .toggle-input:checked + .toggle-label::before {
    transform: translateX(6px);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    border: 0;
}

.schedule-table th,
.schedule-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    vertical-align: middle;
    font-size: 1.35rem;
}

.schedule-table .dots {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-align: center;
    position: relative;
    vertical-align: center;
}

.schedule-table .dots::before {
    content: '.......................................................................................................................................................................';
    color: #a4a4a4;
    letter-spacing: 3px;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}


.schedule-button:hover {
    background-color: rgba(var(--color-primary-rgb), .1);
    transition: background-color .2s ease;
}

.dataTables_paginate.paging_simple_numbers a.current, .dataTables_paginate.paging_simple_numbers span {
    color: #fff !important;
}

.nav-tabs .nav-link.active {
    color: var(--color-primary);
}

.nav-tabs .nav-link {
    font-size: 1.5rem;
    color: #8c8c8c;
}
@keyframes shine {
    to {
        background-position-x: -200%
    }
}

@media (min-width: 1200px) {
    .footer-menu {
        font-size: 1.3rem;
    }

    .last-documents-list {
        font-size: 1.2rem;
    }
}

@media (max-width: 991px) {
    .alert-message-list {
        max-width: unset;
        top: 0;
        right: 0;
        bottom: unset;
        font-size: 1.5rem;
        min-height: 60px;
    }

    .alert-message-list .alert-message-item {
        min-height: 60px;
    }
}

@media (max-width: 360px) {
    html {
        font-size: 50%; /*8px*/
    }
}
.dataTables_wrapper select{
    font-size: 1.45rem;
    padding: .5rem 1.25rem;
    margin-left: 1rem;
    margin-right: 1rem;
    background-color: transparent;
    border-radius: 5px;
    border: 1px solid rgb(0, 47, 77);
}

.specialSelect span.select2-selection{
    min-height: 46px!important;
}
.specialSelect .select2-search__field{
    padding-left: 10px !important;
}
.specialSelect .select2-selection__choice{
    margin-left: 10px !important;
}

.btn-error {
    animation: shake 1s cubic-bezier(.36, .07, .19, .97) both;
    backface-visibility: hidden;
}
@keyframes shake {
    0% {
        background-color: rgb(255, 0, 0);
        transform: translateX(0);
    }
    100%{
        transform: translateX(0);
        background-color: var(--color-primary-light);
    }
    10%{
        background-color: rgb(255, 0, 0);
        transform: translateX(-10px);
    }
    30%, 50%, 70%, 90% {transform: translateX(-10px);}
    20%, 40%, 60%, 80% {transform: translateX(0px);}
}

.radioForm{
    display: flex;
    align-items: center;
}

.radioForm .form-check-input{
    padding: 1rem!important;
    margin: 0 !important;
}

.radioForm .form-check-label{
    margin-left: 10px!important;
}

.chat-container {
    width: auto;
    position:fixed;
    bottom: 0;
    right: 0;
    z-index: 2999;
    border-top-right-radius: 1.4rem;
    border-top-left-radius: 1.4rem;
}

@media (max-width: 992px) {
    .chat-container {
        right: 50%;
        transform: translateX(50%);
    }
}

.chat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    border-radius: 50% !important;
    background-color: #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.chat-box {
    transform: scale(.8) translateY(70px);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    width: 0;
    height: 0;
    border-radius: inherit;
    overflow: hidden;
}

.chat-box.active {
    width: auto;
    height: auto;
    transform: scale(1) translateY(0px);
    opacity: 1;
    visibility: visible;
}

.chat {
    width: 92.5vw;
    max-width: 330px;
    height: 450px;
    border-radius: .5rem;
    background-color: #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.chat-header,
.chat-footer {
    height: 100%;
    max-height: 58px;
}

.chat-header,
.chat-body {
    padding: 0 1.5rem;
}

.chat-scrollable {
    max-height: 334px;
    height: 100%;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.chat-scrollable::-webkit-scrollbar {
    display: none;
}

.chat-doctor-name {
    font-size: calc(1.25rem + .25vw);
    font-weight: 800;
    color: var(--color-white);
}

.chat-footer {
    background-color: #e1e1e1 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
}

.chat-input {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border: 0;
    box-shadow: unset;
    font-size: calc(1.15rem + .25vw);
    padding: 1rem 1.5rem !important;
    width: calc(100% - 5rem) !important;
    background-color: transparent !important;
    margin-right: auto;
}

.chat-input:focus {
    box-shadow: unset;
}

.btn-send-message {
    width: 4rem;
    height: 4rem;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    border-radius: 50% !important;
    background-color: #ffffff !important;
    transition: all .25s ease;
}

.btn-send-message svg {
    width: 70%;
    height: 70%;
    transition: all .25s ease;
    stroke: var(--color-primary);
    transform: translateX(1px);

}

.btn-send-message:hover {
    background-color: var(--color-primary) !important;
}

.btn-send-message:hover svg path {
    stroke: #fff;
}

.btn-send-message.active {
    background-color: var(--color-primary) !important;
}

.btn-send-message.active svg path {
    stroke: #fff;
}

.chat-message + .chat-message {
    margin-top: 2rem;
}

.chat-message-name {
    font-size: calc(1.1rem + .1vw);
    font-weight: 700;
}

.chat-message-text {
    display: inline-block;
    background-color: #F6F6F6;
    border: 1px solid #c0c0c0;
    border-top-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
    border-top-left-radius: 1rem;
    padding: 1.4rem;
    font-size: calc(1.1rem + .1vw);
}

.chat-message.message-received .chat-message-box {
    margin-right: auto;
}

.chat-message:not(.message-received) .chat-message-text {
    background-color: var(--color-primary-light);
    color: var(--color-white);
}

.chat-message-time {
    font-size: calc(.9rem + .1vw);
}

.btn-close-chat {
    width: 3.5rem;
    height: 3.5rem;
}

.btn-close-chat svg {
    width: 100%;
    height: 100%;
}

.btn-close-chat svg path {
    stroke: #b7b7b7;
    transition: all .1s ease;
}

.btn-close-chat:hover svg path {
    stroke: #fff;
}

.new-message-balloon {
    width: 200px;
    height: 70px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
    --webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
    --moz-clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
    position: absolute;
    top: -35%;
    left: 0;
    /*background-color: #002b45;*/
    background-color: #009cfa;
    opacity: 0;
    visibility: hidden;
    transform: scale(.8) translateY(-4rem);;
    padding: .75rem 1rem;
    color: #fff;
}

.new-message-balloon.active {
    animation: balloon 6s ease both;
}

.chat-new-message {
    font-size: calc(1.1rem + .1vw);
}

.loader {
    width: 4.4rem;
    height: 4.4rem;
    border: 5px solid var(--color-primary-light);
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.flex-auto {
    flex: 1 1 auto;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes balloon {
    0%,100% {
        opacity: 0;
        visibility: hidden;
        transform: scale(.1) translateX(-75%) translateY(-5rem);
    }
    5% {
        opacity: 1;
        visibility: visible;
        transform: scale(1) translateX(-75%) translateY(-5rem);
    }
    90% {
        opacity: 1;
        visibility: visible;
        transform: scale(1) translateX(-75%) translateY(-5rem);
    }
}

#userStatusThing {
    position: absolute;
    padding: 8%;
    border-radius: 50%;
    top: 24%;
    left: 58%;
    border: 2px solid rgb(217, 217, 217, 1);
}

.font-family-poppins {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600;
    letter-spacing: .05rem;
}

.font-family-mont {
    font-family: 'Montserrat', sans-serif !important;
    letter-spacing: .05rem;
}


.content-section {
    padding: 5rem 2rem;
}

.logo-img {
    width: calc(5rem + 1vw);
    aspect-ratio: 1;
    object-fit: cover;
}

.no-times {
    background-color: rgba(22, 22, 22, 0.25);
    color: #d1d1d1;
    pointer-events: none;
}

.month-arrow {
    width: 4.4rem;
    height: 4.4rem;
    color: #fff;
    padding: .75rem;
    border-radius: 50%;
    background-color: rgba(255,255,255,.075);
    transition: background-color .1s ease;
}

.month-arrow:hover  {
    background-color: rgba(255,255,255,.12);
}

.border-primary {
    border-color: var(--color-primary);
}

.fc .fc-col-header-cell-cushion {
    font-size: 1.5rem !important;
    color: rgb(110, 107, 123) !important;
}

.fc .fc-daygrid-day-number{
    font-size: 1.4rem !important;
    padding: .7rem 1.2rem !important;
    color: var(--color-primary) !important;
}

.fc .fc-toolbar .fc-toolbar-title {
    font-weight: 600;
    text-transform: capitalize;
    color: var(--color-primary) !important;
    margin-left: 1.5rem;
}

.fc .fc-toolbar .fc-button-group .fc-dayGridMonth-button,
.fc .fc-toolbar .fc-button-group .fc-timeGridWeek-button,
.fc .fc-toolbar .fc-button-group .fc-timeGridDay-button,
.fc .fc-toolbar .fc-button-group .fc-listMonth-button {
    font-size: 1.4rem;
}

.fc .fc-daygrid-day.fc-day-today {
    background-color: rgba(var(--color-primary-rgb), .1) !important;
}

.fc .fc-toolbar .fc-button-group .fc-button.fc-next-button,
.fc .fc-toolbar .fc-button-group .fc-button.fc-prev-button {
    font-size: 1.35rem;
    padding: .7rem 2rem !important;
    background-color: var(--color-primary) !important;
    color: #fff !important;
}

.fc-direction-ltr .fc-timegrid-slot-label-frame {
    font-size: 1.35rem !important;
}

.fc .fc-toolbar .fc-button-group .fc-button.fc-next-button {
    border-radius: 0 .35rem .35rem 0 !important;
}

.fc .fc-toolbar .fc-button-group .fc-button.fc-prev-button {
    border-radius: .35rem 0 0 .35rem !important;
}

.fc .fc-toolbar.fc-header-toolbar,
.fc .fc-toolbar .fc-toolbar-chunk {
    gap: 1rem;
}


.date-arrow {
    min-width: calc(4rem + .4vw);
    min-height: calc(4rem + .4vw);
    color: rgba(var(--color-primary-rgb), .8);
    border-radius: 50%;
    background-color:  rgba(var(--color-primary-rgb), .2);
    transition: background-color .1s ease;
    box-shadow: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.date-arrow:not(.disabled):hover {
    background-color: rgba(var(--color-primary-rgb), .3);
}

.date-arrow.disabled {
    filter: grayscale(1);
    cursor: default;
    pointer-events: none;
}

.schedule-picker {
    max-width: 550px;
}


#daysPicker.loading {
    opacity: .4;
    pointer-events: none;
    animation: dayLoading .4s ease infinite alternate-reverse;
}

@keyframes dayLoading {
    0%, 100% {
        opacity: .4;
    }
    50% {
        opacity: .7;
    }
}

.picker-label {
    min-width: calc(16rem + 1vw);
}

.picker-label > * {
    text-align: center;
}

.user-select-none {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

.month-label,
.year-label{
    font-size: 2rem;
}

.picker-row-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 14.2%);
}

.picker-row-grid .picker-item {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.day-label {
    font-size: calc(1.3rem + .15vw);
    color: #fff !important;
    font-weight: bolder;
}

.day-number {
    font-size: calc(1.2rem + .15vw);
    font-weight: bold;
}

.day-number.faded {
    color: #d1d1d1 !important;
    text-decoration: line-through;
}

.day-number.selectable {
    position: relative;
    z-index: 2;
    color: #fff;
    cursor: pointer;
    transition: background-color .2s ease;
}

#daysPicker:not(.loading) .day-number.faded:not(.selectable, .no-times) {
    opacity: 0;
}

.day-number.selectable:hover {
    background-color: rgba(255,255,255,.1);
}

.day-number.selectable.selected {
    color: #131313;
}

.day-number.selectable.selected::before {
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
    position: absolute;
    width: 4rem;
    height: 4rem;
    transition: all .1s ease;
    background-color: #fff;
}

.section-title {
    font-size: calc(1.7rem + 1.2vw);
    line-height: 1.6;
    color: #343434;
}

.section-subtitle {
    font-size: calc(1.6rem + .3vw);
    line-height: 1.6;
    color: #373737;
}

.text-primary {
    color: var(--color-primary) !important;
}

.spacer {
    min-height: 7vh;
}

.inp {
    position: relative;
    margin: auto;
    width: 100%;
    height: 53px;
}

.inp .border {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 18px;
    fill: none;
    pointer-events: none;
}

.inp .border path {
    stroke: #c8ccd4;
    stroke-width: 2;
}

.inp .border path d {
    transition: all 0.2s ease;
}

.inp .check {
    position: absolute;
    top: 20px;
    right: 20px;
    fill: none;
    transform: translate(0, 9px) scale(0);
    transition: all 0.3s cubic-bezier(0.5, 0.9, 0.25, 1.3);
    transition-delay: 0.15s;
}

.inp .check path {
    stroke: var(--color-primary);
    stroke-width: 2;
}

.inp input {
    -webkit-appearance: none;
    width: 100%;
    border: 0;
    font-family: inherit;
    padding: 0;
    height: 48px;
    font-size: 16px;
    font-weight: 500;
    background: none;
    border-radius: 0;
    color: #223254;
    transition: all 0.15s ease;
}

.inp input:focus {
    outline: none;
}

.inp input:focus + .border path {
    stroke: var(--color-primary);
}

.inp input:valid + .border path {
    animation: elasticInput 0.8s ease forwards;
}

.inp input:valid + .border + .check {
    transform: translate(0, 0) scale(1);
}

::placeholder {
    color: #9098a9;
}

.schedule-times-item .box {
    width: calc(6rem + .2vw);
    height: calc(6rem + .2vw);
    color: #000;
    transition: all .15s ease;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.schedule-times-item:not(.selected):hover .box  {
    transition: background .15s ease;
    background-color: rgba(var(--color-primary-rgb), .1) !important;
}

.schedule-times-item.selected .box  {
    background-color: var(--color-primary);
}

.schedule-times-item.selected .box  > * {
    color: #fff !important
}

.schedule-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.bg-primary {
    background-color: var(--color-primary) !important;
}

.border-primary {
    border-color: var(--color-primary) !important;
}

.doctor-card-box {
    margin-bottom: 3rem;
}

.btn-time {
    width: 100%;
    min-height: 5.2rem;
}


.btn-time:hover,
.btn-time.selected {
    transition: all .15s ease;
    background-color: var(--color-primary) !important;
    color: #fff !important;
}

.modal .btn {
    border-radius: 50px;
    min-width: 12rem;
    background-color: transparent;
    font-weight: bolder;
    font-size: calc(1.3rem + .1vw);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.45rem 4rem;
    transition: all .15s ease;
}

.btn-outline-primary:hover {
    background-color: var(--color-primary) !important;
}

.btn-cancel {
    border-color: #767676 !important;
    color: #767676;
}

.btn-cancel:hover {
    background-color: #767676;
    color: #fff;
}

.btn-reserve {
    border-color: var(--color-primary) !important;
    color: var(--color-primary);
}

.btn-reserve:hover {
    background-color: var(--color-primary);
    color: #fff !important;
}

.form-check-input {
    border-color: var(--color-primary) !important;
}

.form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.skeleton-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    animation: 1.5s shine linear infinite;
    background: linear-gradient(110deg, #e5e5e5 8%, #f0f0f0 18%, #e5e5e5 33%);
    background-size: 200% 100%;
}

.company-logo {
    max-width: 25vw;
}

.profile-header {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 2rem 0;
}

.doctor-photo {
    max-width: calc(9rem + 2vw);
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.doctor-name {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
}

.specialty {
    color: #666666;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.badge-custom {
    background-color:  rgba(var(--color-primary-rgb), .15);
    color: rgba(var(--color-primary-rgb), 1);
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
}

.rating-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.stars {
    color: #ffc107;
    font-size: 1.1rem;
}

.nav-tabs {
    border-bottom: 2px solid #e8e8e8;
    margin-top: 2rem;
}

.breadcrumb .breadcrumb-scroll {
    overflow-x: auto;
    width: 100%;
    max-width: 100%;
}

.breadcrumb a {
    transition: all .15s ease;
    border-bottom: 2px solid transparent;
}

.breadcrumb a,
.breadcrumb span {
    font-size: 1.35rem !important;
    color: rgba(105, 102, 123, 0.8);
    line-height: 1.4;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;

}

.breadcrumb a:hover,
.breadcrumb a:focus {
    border-bottom: 2px solid rgba(105, 102, 123, 0.4);
}
.fc-direction-ltr .fc-daygrid-event .fc-event-time {
    white-space: nowrap;
    text-wrap: nowrap;
}
.fc-timegrid-event .fc-event-main {
    font-size: 1.25rem;
    color: #fff !important;
    font-weight: bolder;
}
.app-calendar .fc-list-event {
    cursor: pointer;
}
.fc-v-event {
    min-height: 20px;
    cursor: pointer;
}

.fc .fc-daygrid-event-harness .fc-event {
    cursor: pointer;
    padding: .5rem !important;
}
.fc-daygrid-dot-event .fc-event-title,
.fc-direction-ltr .fc-daygrid-event .fc-event-time,
.fc-list-event-time,
.fc-list-event-title{
    font-size: 1.25rem;
    color: #303030;
}

.fc-list-day-text {
    font-size: 1.45rem;
    font-weight: bolder;
}
.fc-list-day-side-text {
    font-size: 1.25rem;
}

.fc-daygrid-event-dot {
    border-width: 1rem;
}
.fc-daygrid-day-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-calendar .fc-daygrid-more-link {
    font-size: 1.2rem !important;
    border-radius: 20px;
    background-color: var(--color-primary) !important;
    color: #fff !important;
    padding: 1rem 2.4rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 1.2rem;
}

.section-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333333;
}

.office-card {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    background: #ffffff;
    transition: box-shadow 0.2s;
}

.office-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #e8e8e8;
}

.service-item:last-child {
    border-bottom: none;
}

.service-price {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.review-card {
    border-left: 3px solid var(--color-primary);
    padding: 1.25rem;
    margin-bottom: 1rem;
    background: #f8f9fa;
    border-radius: 4px;
}

.review-author {
    font-weight: 600;
    color: #333333;
}

.review-meta {
    font-size: 0.875rem;
    color: #666666;
    margin-bottom: 0.75rem;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #333333;
}

.calendar-section {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.date-button {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: #ffffff;
}

.date-button:hover {
    border-color: var(--color-primary);
    background-color: #e8f5f4;
}

.date-button.selected {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: #ffffff;
}

.cta-button {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    background: #ffffff;
    padding: 1.5rem 0;
    z-index: 999;
    border-top: 1px solid #e8e8e8;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    transition: all .55s ease;
}

.cta-button.show {
    transform: translateY(0);
}

.schedule-picker-wrapper {
    max-width: 140rem;
    width: 100%;
    background-color: #fff;
    margin: auto;
    transition: all .6s ease;
}

.schedule-times {
    height: 100%;
    overflow-y: auto;
}

.schedule-times-header p {
    font-size: 2rem;
}

.schedule-picker-box {
    min-height: 46rem;
}

.schedule-picker-iframe {
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    transition: opacity .4s ease, transform .6s ease;
    transform: translateY(100%);
}

.schedule-picker-iframe.show {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 991px) {
    .schedule-times-header {
        border-bottom: 1px solid #ebe9f1 !important;
    }

    .schedule-picker-wrapper {
        border: 1px solid #f6f6f6;
        border-radius: 1rem;
        box-shadow: rgba(0, 0, 0, 0.05) 0 6px 24px 0, rgba(0, 0, 0, 0.08) 0 0 0 1px;
        height: auto !important;
    }

    .schedule-picker-wrapper.confirmeSchedule {
        max-width: 130rem;
    }

    .schedule-times-body {
        max-height: 57rem;
    }

    .schedule-picker-box {
        min-height: 67em;
    }
}

@-moz-keyframes elasticInput {
    33% {
        d: path("M0,12 L226,12 C220,12 220.666667,12 228,12 C239,12 245,1 253,1 C261,1 268,12 278,12 C284.666667,12 285.333333,12 280,12");
    }
    66% {
        d: path("M0,12 L226,12 C220,12 220.666667,12 228,12 C239,12 245,17 253,17 C261,17 268,12 278,12 C284.666667,12 285.333333,12 280,12");
    }
}

@-webkit-keyframes elasticInput {
    33% {
        d: path("M0,12 L226,12 C220,12 220.666667,12 228,12 C239,12 245,1 253,1 C261,1 268,12 278,12 C284.666667,12 285.333333,12 280,12");
    }
    66% {
        d: path("M0,12 L226,12 C220,12 220.666667,12 228,12 C239,12 245,17 253,17 C261,17 268,12 278,12 C284.666667,12 285.333333,12 280,12");
    }
}

@-o-keyframes elasticInput {
    33% {
        d: path("M0,12 L226,12 C220,12 220.666667,12 228,12 C239,12 245,1 253,1 C261,1 268,12 278,12 C284.666667,12 285.333333,12 280,12");
    }
    66% {
        d: path("M0,12 L226,12 C220,12 220.666667,12 228,12 C239,12 245,17 253,17 C261,17 268,12 278,12 C284.666667,12 285.333333,12 280,12");
    }
}
@keyframes elasticInput {
    33% {
        d: path("M0,12 L226,12 C220,12 220.666667,12 228,12 C239,12 245,1 253,1 C261,1 268,12 278,12 C284.666667,12 285.333333,12 280,12");
    }
    66% {
        d: path("M0,12 L226,12 C220,12 220.666667,12 228,12 C239,12 245,17 253,17 C261,17 268,12 278,12 C284.666667,12 285.333333,12 280,12");
    }
}
