﻿@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

/*#region GENERAL*/
:root {
    /*       --primary: #FE83C6;
    --secondary: #323232;
    --active: #FA4EAB;
*/
    --primary: var(--purple);
    --bs-primary: var(--purple);
    --bs-primary-rgb: 90 23 132;
    --bs-primary-rgb-com: 90,23,132;
    --bs-active-rgb-com: 244,0,127;
    --secondary: var(--blue);
    --active: var(--pink);
    --menuPanel: var(--purpleGrey);
    --backgroundPanel: var(--pinkWhite);
    --lightPink: #FFF2F9;
    --white: #FFF2F9;
    --ShadowGrey: #afafaf;
    --purpleGrey: rgba(90,23,132, 0.1);
    --pinkWhite: rgba(244,0,127, 0.01);
    --purple: rgb(90,23,132);
    --blue: rgb(0,72,143);
    --orange: rgb(233,75,39);
    --pink: rgb(244,0,127);
    --dx-calendar-header-hover-color: var(--active);
    --dx-calendar-table-selection-color: var(--purpleGrey);
    --dx-calendar-table-active-color: var(--active);
    --dx-calendar-table-hover-color: var(--white);
    --currentcolor: #ffffff;
    --bs-body-color: var(--primary);
    --bs-table-bg: transparent;
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: var(--white);
    --bs-table-striped-bg: rgba(var(--bs-active-rgb-com), 0.05);
    --bs-table-active-color: var(--white);
    --bs-table-active-bg: rgba(var(--bs-active-rgb-com), 0.1);
    --bs-table-hover-color: var(--white);
    --bs-table-hover-bg: rgba(var(--bs-active-rgb-com), 0.075);
    --bs-gutter-y: 1.5rem;
    --bs-body-font-size: 0.875rem;
    /*--loading-start: hsla(277, 70%, 30%, 0.1);*/
    /*--loading-start: hsl(329,153%,80%);
    --loading-end: hsl(329,103%,90%);*/
    --loading-start: hsl(329,4%,79%);
    --loading-end: hsl(329,4%,97%);
}


html, body {
    font-family: 'Noto Sans', Helvetica, Arial, sans-serif;
    background-color: var(--backgroundPanel);
    align-items:stretch;
    display:flex;
    flex-direction:column;
    height:100%;
    align-items:stretch;
    overflow-x:hidden;
   
}
#app{
    display:flex;
    flex-direction:row;
    align-items:stretch;
    flex-grow:1;
}
#app .page{
    flex-grow:1;
}
#app > div.sidebar{
   
}
article.content{
    border-left:solid 2px var(--primary);
}
main{
    display:flex;
}
.sidebar{
    background-color:var(--menuPanel);
    z-index:5;
}
.SideBarVersionWrapper{
    bottom:0;
}

h1:focus {
    outline: none;
}

a, .btn-link {
    color: var(--primary);
}

.btn-primary {
    color: var(--white);
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn {
    background-color: var(--primary);
    color: var(--white) !important;
}
.btn-pink {
    background-color: ;
    color: var(--white);
}

.btn:hover, .btn:active, .btn:focus {
    background-color: var(--active);
    outline: var(--active);
    box-shadow: 0 0 0 0.1rem var(--active);
    border-color: var(--active);
    color: var(--white);
}
/*
.btn-pink:hover, .btn:active, .btn:focus {
    background-color: #dc3545;
    outline: #dc3545;
    box-shadow: 0 0 0 0.1rem #dc3545;
    border-color: #dc3545;
    color: var(--white);
}*/
.btn-check:active + .btn-secondary, 
.btn-check:checked + .btn-secondary, 
.btn-secondary.active, 
.btn-secondary:active, 
.show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: var(--active);
    border-color: var(--active);
}

.btn-check:active + .btn-primary:focus, 
.btn-check:checked + .btn-primary:focus, 
.btn-primary.active:focus, 
.btn-primary:active:focus, 
.show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.1rem var(--active);
}

.btn-primary.disabled, 
.btn-primary:disabled {
    border-color: var(--purpleGrey);
    background-color: var(--purpleGrey);
    color: var(--primary);
}

.page-login.form-group{
    margin:5px;
}
.nav-link text-dark{
    color:var(--primary);
}
#btnLogout{
    color:var(--primary) !important;
    border:none;
    background-color:transparent;
}
#btnLogout:hover, #btnLogout:active, #btnLogout:focus{
    border:none;
    border-color:transparent;
    color:var(--active) !important;
    text-decoration:none;
    outline:none;
    box-shadow:none;
}
.top-row div{
    display:flex;
    justify-content:flex-end;
    align-items:center;
}
#btnLogout i{
    padding-right:10px;
}
.form-control:disabled {
    background-color: var(--purpleGrey);
}

.form-control[readonly] {
    background-color: #fff;
}

.btn-danger {
    border-color: #dc3545;
}

.sidebar a, .sidebar .btn-link, 
.top-row a, .top-row .btn-link {
    color: var(--primary);
}

.sidebar a, .sidebar u {
    text-decoration: none;
}

.logo-container {
    padding: 15px;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: var(--active);
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    color: var(--white);
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: var(--white);
}

.blazor-error-boundary::after {
    content: "An error has occurred."
}

.layout-container {
    display: flex;
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active {
    color: var(--white);
    background-color: var(--active);
    border-color: var(--purpleGrey) var(--purpleGrey) var(--purpleGrey);
}

.nav-tabs {
    border-bottom: 1px solid var(--purpleGrey);
}

.nav-link {
    color: var(--white);
}

.nav-tabs .nav-link {
    background-color: var(--primary);
}

.nav-link:focus, 
.nav-link:hover {
    color: var(--active);
}

.nav-tabs .nav-link:focus, 
.nav-tabs .nav-link:hover {
    border-color: var(--purpleGrey) var(--purpleGrey) var(--purpleGrey);
}

.row {
    --bs-gutter-y: 1.5rem;
}
form .row{
    --bs-gutter-y:0;
}
/*Bordered box*/
.borderedBoxBtn {
    border-radius: 5px;
    padding: 10px;
    border: 1px solid var(--primary);
}

.borderedBox {
    border-radius: 5px;
    border: 1px solid;
    border-color: var(--primary);
    padding: 10px;
}
.borderedBoxAppointments {
    border-radius: 5px;
    border: 1px solid;
    border-color: var(--primary);
    padding: 10px;
}
.title {
    padding-left: 0.75rem;
}

article {
    border-right: 14px solid var(--primary);
}

.grid-option-buttons button {
    /*margin-bottom:5px;*/
}

.grid-option-buttons {
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.headingSpan{
    font-weight:600;
}

.fadeout {
    opacity: 1;
    -webkit-transition: opacity 1000ms linear;
    transition: opacity 1000ms linear;
}

.button-icon{
    background-color:transparent;
    outline:none;
    border:none;
    color:var(--primary);
}
.color-red{
    color:red;
}
.button-icon:hover{
    color:var(--active);
}
.hover-primary:hover{
    color:var(--primary);
}

.panelPatientLookup {
    margin: 0 15px 0 0;
}

textarea{
    resize:none !important;
}

.infoPanel .row{
    --bs-gutter-y:0;
}
/*#endregion*/

/*#region SIDEBAR*/
#sidebar {
    /* don't forget to add all the previously mentioned styles here too */
    transition: all 0.3s;
    max-width: 300px;
    position: sticky;
    top: 0;
    height: 100vh;
    /*transition: max-width ease-in-out 2s;*/
}
#sidebar a{
    /*display:inline-block;*/
}

    #sidebar .ShortTitle {
        display: none;
    }
    #sidebar .menu-item div span:last-child{
        display:none;
    }

    #sidebar .longTitle {
       /*left:15px;*/
    }

    #sidebar.active .longTitle, #sidebar.active .longTitle + i{
        display: none;
    }

    #sidebar.active .ShortTitle, 
    #sidebar.active .menu-item div span:last-child{
        display: flex;
        flex:1;
    }
    #sidebar .menu-item div span:first-child{
        padding-left:15px;
    }

    #sidebar .sidebar-header {
        padding: 20px;
        padding-left:15px;
    }

    #sidebar .sidebar-body{
        display:flex;
        flex-grow:1;
        border-top:2px solid var(--primary);
        border-bottom:2px solid var(--primary);
    }

    .sidebar-body a{
/*        padding:5px;
*/       
    }
    .sidebar-body .active a{
       /*min-width:55px;*/
       /*max-width:55px;*/
    }
    .sidebar-body > *{
        flex:1;
        display:flex;
        flex-direction:column;
    }
  

    #sidebar p {
        color: var(--primary);
        padding: 10px;
    }

    #sidebar a {
        
        /*font-size: 1.2rem;*/
/*        display: inline-block;
*/    }


    #sidebar .menu-section.active .menu-item{
        font-size:1rem;
    }
    #sidebar .menu-item a:hover, #sidebar .menu-item a:active,
    #sidebar .menu-item a:focus{
        background:transparent;
    }
    
    #sidebar .menu-item:hover, 
    #sidebar .menu-item:active, #sidebar .menu-item:focus{
        color:var(--white);
        background:var(--active);
    } 
    
    #sidebar .menu-item:hover span, #sidebar .menu-item:focus, 
    #sidebar .menu-item:active span{
        color: var(--white);
        background: transparent;
    }

    #sidebar .menu-item.active > a, a[aria-expanded="true"] {
        color: var(--white);
        background: var(--active);
    }

    #sidebar.active .menu-item.ps-4 {
        padding-left: 0 !important;
    }
    /* Shrinking the sidebar from 250px to 80px and center aligining its content*/
    #sidebar.active {
     /*   min-width: 55px;
        max-width: 55px;*/
     max-width:55px;
        text-align: center;
     
    }


   
    #sidebar.active .menu-section .menu-item a {
        /*padding: 10px 5px;*/
        text-align: center;
        
    }

    #sidebar .menu-section .menu-item a i {
        margin-right: 0;
      
        font-size: 1.5rem;
        line-height:1.5rem;
        flex:1;
        min-width:30px;
        
    }


.menu-level-first {
    /*border-bottom:2px solid var(--primary);*/
}

.menu-level-second {
}

.menu-section.active .menu-sub-section {
    box-shadow: rgba(var(--bs-primary-rgb-com), 0.9) -1px 5px 16px 0px inset, rgba(255, 255, 255, 0.8) -2px 5px 10px 0px;
}

.menu-section.active .menu-item {
    /* height:30px;*/
    width:100%;
}

.active .menu-section.active .menu-item {
    transition: all ease-in-out 0.2s;
/*    font-size: 1.875rem !important;
*/    

    /*max-height: 50px;*/
}

.active .menu-item {
    transition: font-size ease-in-out 0.1s;
}

.menu-item {
    transition: all ease-in-out 0.2s;
}

.menu-section.active .menu-level-first {
    background-color: var(--active);
    /*border-left:var(--primary) 6px solid;*/
    width: calc(100% - 7px);
}

    .menu-section.active .menu-level-first i {
        color: var(--white);
    }

.active .menu-section.active:before, 
.menu-section.active:before{
    content: ' ';
    background-color: var(--primary);
    width: 7px;
    min-height: 1.7rem;
    max-height:2.75rem;
    height:2.75rem;
    float: left;
    display: block;
    animation: vertical-grow 0.1s ease-in-out;
    transition: height 0.2s ease-out;
}
.menu-section{
  
}
.menu-item{
    padding:10px 5px;
    display:flex;
    flex:1;
    justify-items:stretch;

}
.active .menu-item {
    justify-content:center;
}
.longTitle b{
    display:flex;
    flex:1;
    flex-direction:row;
}

#sidebar .menu-section .menu-item span .longTitle > i{
    flex:0;
    
}
.longTitle{
    margin-left:5px;
    white-space:pre;
}
.menu-item div span{
    flex-direction:row-reverse;
    display:flex;
    align-items:flex-start;
}
.menu-section.active .menu-item{
    justify-content:flex-start;
}
.active .menu-section.active .menu-item{
    justify-content:center;
}



    /* Changing the arrow position to bottom center position, 
   translateX(50%) works with right: 50% 
   to accurately  center the arrow */
    #sidebar.active .dropdown-toggle::after {
        top: auto;
        bottom: 10px;
        right: 50%;
        -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
        transform: translateX(50%);
    }


.sidebar-button {
    width: 100%;
}

    .sidebar-button:hover {
        width: 100%;
    }
.sidebar-header:after {
    content: '';
    background: var(--primary);
    position: absolute;
    top: 55px;
    left:55px;
    width: 2px;
    
    transition: all 0.3s;
    
}

.sidebar:after {
   /* content: '';*/
    background: var(--primary);
    position: absolute;
    top: 55px;
    left: 250px;
    width: 2px;
    height: calc(100% - 55px);
    transition: all 0.3s;
}

main > article:before {
    content: '';
    background: var(--primary);
    position: absolute;
    top: 55px;
    left: 0;
    width: 2px;
    height: calc(100% - 55px);
    transition: all 0.3s;
}
nav:after {
    overflow: hidden;
}

.sidebar.active:after {
    left: 55px;
}
.sidebar.active .fa-angle-right{
    margin-left:-3px;
}


@media (max-width: 768px) {


    /* 80px and its content aligned to centre. Pushing it off the screen with the
       negative left margin
    */
    #sidebar.active {
        min-width: 80px;
        max-width: 80px;
        text-align: center;
    }


    /* Reappearing the sidebar on toggle button click */
    #sidebar {
        margin-left: 0;
    }


        /* Toggling the sidebar header content, 
       hide the big heading [h3] and showing the small heading [strong] and vice versa
    */
        #sidebar .sidebar-header strong {
            display: none;
        }

        #sidebar.active .sidebar-header h3 {
            display: none;
        }

        #sidebar.active .sidebar-header strong {
            display: block;
        }

        /* Downsize the navigation links font size */
        #sidebar.active .menu-section .menu-item a {
            padding: 20px 10px;
            font-size: 0.85em;
        }

            #sidebar.active .menu-section .menu-item a i {
                margin-right: 0;
                display: block;
                font-size: 1.8em;
                margin-bottom: 5px;
            }

        /* Adjust the dropdown links padding*/
        #sidebar.active menu-section a {
            padding: 10px !important;
        }

    /* Changing the arrow position to bottom center position, 
      translateX(50%) works with right: 50% 
      to accurately  center the arrow */
    .dropdown-toggle::after {
        top: auto;
        bottom: 10px;
        right: 50%;
        -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
        transform: translateX(50%);
    }
}


/*#region SIDEBAR FOOTER*/
#rowAppVersion {
    margin-top:10px;
}
#rowSidebarVersion {
  /*  bottom: 15px;
    position: fixed;*/
    flex-direction: column;
    padding-left: 8px;
    left: 0;
    font-size: 11px;
    padding-bottom:25px;
}
.active #rowSidebarVersion{
    padding:0;
}

.gnlink a {
    color: #f6921e;
}
.gnLink {
    color: #f6921e;
}

#sidebar .SideBarVersionWrapper{
    text-align:center;
}

#rowAppVersion span {
    color: var(--active) !important;
}
.SideBarVersionWrapper {
    padding-bottom:15px;
}
.SideBarVersionWrapper,#sidebar .SideBarVersionWrapper a{
    line-height:13px;
    font-size:11px;
}
.version-row-wrapper{
    flex:1;
    padding:2px;
}

/*#endregion*/

/*#region Nav Menu Hover*/
.navmenu-group-hover-container{
    position:absolute;
    left:166px;
    margin-top:-46px;
    border:solid 2px var(--primary);
    padding-top:5px;
    background-color:var(--white);
    z-index:999999;
    text-align:center;
    animation:small-grow 0.25s ease-in-out, 
              fadeIn 0.2s ease-in-out;
    backface-visibility:hidden;
    transform:translateZ(0);
    -webkit-font-smoothing:subpixel-antialiased;
}
.active .navmenu-group-hover-container{
    left:55px;
}
.navmenu-group-hover-wrapper{
    display:flex;
    flex-direction:column;
    width:200px;
}
.navmenu-group-hover-row{
    display:flex;
    flex-direction:column;
    text-align:left;
    padding:5px 10px;
}

.navmenu-group-hover-row:hover{
    background-color:var(--active);
    color:var(--white);
}
.navmenu-group-hover-row:hover *{
    color:var(--white);
}
.navmenu-group-hover-row i{
    margin-right:5px;
    font-size:1.2rem;
    width:25px;
}
.navmenu-group-hover-row span{
    font-size:1rem;
}
.navmenu-group-hover-title{
    font-weight:bold;
    text-align:center !important;
}

/*#endregion*/
/*#endregion */

/*#region HEADER*/


.navbar {
    width: 100%;
    height: 65px;
}


.header-row {
    width: 100%;
}


.logo-full {
    height: 3rem;
}

.login-controls-container {
    vertical-align: middle;
    padding-top: 1rem;
}

}

.login-controls-container a {
    color: #000 !important;
}

    .login-controls-container a:first-child {
        margin-right: 1rem;
    }
/*#endregion*/

/*#region DESKTOP LAYOUT*/
.desktop-layout {
    width: 100%;
    height: 100%;
}

    .desktop-layout .wrapper {
        margin: 0 auto;
        max-width: 800px;
    }

    .desktop-layout .page {
        width: 100%;
        min-height: 100%;
        position: relative;
    }

    .desktop-layout header {
        height: 60px;
    }

        .desktop-layout header .logo {
            height: 60px;
            width: 104px;
            background: url(../../images/logo.png) no-repeat;
        }

.dx-theme-generic.dx-color-scheme-dark .desktop-layout header .logo {
    background-position: -104px 0;
}

.dx-theme-generic.dx-color-scheme-light .desktop-layout header .logo {
    background-position: 0 0;
}

.desktop-layout .main-menu {
    width: 100%;
}

.desktop-layout .toolbar {
    box-sizing: border-box;
    height: 56px;
    margin-bottom: 35px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

    .desktop-layout .toolbar .dx-content {
        width: 100%;
    }

.desktop-layout #navBar .dx-icon {
    display: none;
}

.desktop-layout #navBar .dx-tab {
    padding: 9px 30px 11px;
}

.desktop-layout #navBar .dx-nav-item {
    height: 40px;
}

    .desktop-layout #navBar .dx-nav-item.dx-state-focused {
        box-shadow: none;
    }

.desktop-layout #tabs {
    width: 100%;
    text-align: center;
}

    .desktop-layout #tabs .dx-tab {
        padding: 5px 30px;
    }

.desktop-layout .half-content {
    float: left;
    width: 45%;
    margin: 0;
    padding: 0;
}

    .desktop-layout .half-content:first-child {
        padding: 0 10% 0 0;
    }

.desktop-layout .footer-gap {
    height: 40px;
}

.desktop-layout footer {
    position: absolute;
    width: 100%;
    bottom: 20px;
}

.desktop-layout .dx-field {
    position: static;
}

.desktop-layout .dx-toolbar {
    padding: 10px 0;
    box-sizing: border-box;
    box-shadow: none;
    background-color: transparent;
}

    .desktop-layout .dx-toolbar .dx-toolbar-before .dx-toolbar-item:first-child {
        margin: 0;
    }

    .desktop-layout .dx-toolbar .dx-toolbar-after .dx-toolbar-item {
        margin: 0 0 0 8px;
    }

.desktop-layout .dx-popup-title.dx-toolbar .dx-toolbar-label {
    padding: 0 5px 0 0;
}

.desktop-layout .dx-content.dx-animating.dx-leave,
.desktop-layout .dx-content.dx-animating.dx-enter {
    position: absolute;
    top: 0;
    left: 0;
}
/*#endregion*/

/*#region DEVEXPRESS*/
.dxbs-calendar .dxbs-calendar-header.btn-group .dxbs-calendar-header-btn {
    color: var(--white);
}

.form-control {
    border-color: var(--primary);
}

    .form-control:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 0.25rem rgb(var(--bs-primary-rgb) / 25%);
    }

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.dx-image:not(.dx-image-fill) {
    color: var(--white);
}

.dxbl-modal > .dxbs-modal > .dxbs-popup .dxbs-popup-header-button > .dxbs-popup-header-button-image {
    color: currentColor;
}

.card {
    border: 1px solid var(--primary);
}

.table {
    color: var(--primary);
}

li div.dropdown-item.focused.bg-primary {
    background-color: var(--active) !important;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: var(--active);
}

.dropdown-item:focus, .dropdown-item:hover {
    background-color: var(--purpleGrey);
}

.btn-secondary.disabled, .btn-secondary:disabled {
    background-color: var(--purpleGrey);
    border-color: var(--purpleGrey);
}

.blazored-toast, .blazored-toast-container {
    z-index: 999999999;
}

.form-view .dxbs-fl-row-break {
}

.form-view .row > * {
    margin-top: 5px;
}

.form-edit .row > * {
    margin-top: 5px;
}
.form-edit{
    margin-top:-24px;
}
div.row .form-edit-button-wrapper {
    text-align: right;
    margin-top: -28px;
    position: absolute;
}

.form-edit-button {
    text-align: right;
    border: none;
    background: none;
    color: var(--primary) !important;
    max-height:35px;
}

    .form-edit-button:hover {
        /*background:none;
    border:none;
    box-shadow:none;
    outline:none;*/
       
    color:var(--white) !important;
    }

#btnCancel.form-edit-button{
    margin-top:-40px;
}
.dxbs-tagbox button.disabled {
    display: none;
    box-shadow: none !important;
    animation: none !important;
}


.dxbs-combobox.dxbs-dropdown-edit .form-control.dxbs-input-group-append,
.dxbs-date-time-edit.dxbs-dropdown-edit .form-control.dxbs-input-group-append {
    right:-1px;
}


/*#endregion*/

/*#region RIGHT DRAWER*/
.sidebar-right {
    background-color: var(--background-panel);
    position: fixed;
    height: 100%;
    z-index: -100;
    right: 0;
    float: right;
    top: 0;
    width: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    max-width: 95%;
}

    .sidebar-right.active {
        /*width: calc(25% - 88px);*/

        -webkit-animation: slideLeft 0.4s ease-in-out forwards;
        -webkit-animation-fill-mode: forwards;
        z-index: 999;
        top: 0;
    }

        .sidebar-right.active .drawer-content-wrapper {
            z-index: 999;
            width: -webkit-fill-available;
        }

    .sidebar-right.hide {
        z-index: -100;
        animation-delay: 2s;
        -webkit-animation: slideRight 0.4s ease-in-out forwards;
        -webkit-animation-fill-mode: forwards;
    }

        .sidebar-right.hide .drawer-container {
            width: 0;
        }

#SideDrawer {
    height: 100%;
    min-height: 100%;
    min-width: 10px;
    width: 100%;
}

    #SideDrawer.active {
    }

        #SideDrawer.active .drawer-content {
            /*  -webkit-animation: slideLeftAndreas 2.8s ease-in-out;
            -webkit-animation-fill-mode: forwards;*/
        }

    #SideDrawer .drawer-content {
    }

    #SideDrawer.active .drawer-content {
        display: flex;
        padding: 10px;
        margin-top: -15px;
        min-width: fit-content;
        overflow-x: hidden;
        overflow-y: auto;
    }

    #SideDrawer.active .navbar-expand {
        display: none;
    }

    #SideDrawer.hide .navbar-collapse {
        display: none;
    }


    #SideDrawer.active .drawer-button-wrapper {
        /*opacity:1;*/
        margin-top: 0px;
    }

        #SideDrawer.active .drawer-button-wrapper:hover {
            /*opacity:1;*/
            margin-top: -2px;
        }

.sideDrawer-container {
    display: flex;
    align-items: flex-start;
    height: 100%;
    justify-content: flex-end;
}

.drawer-button-wrapper {
    height: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
    background: var(--primary);
    /*transition:opacity 0.4s ease-in-out;*/
}

    .drawer-button-wrapper button {
        height: 100%;
        border-radius: 0;
        border: 2px solid var(--primary);
        padding: 5px;
    }

        .drawer-button-wrapper button:hover {
            border: 2px solid var(--primary);
            box-shadow: 0 0 0 0 1px var(--primary);
        }

.drawer-container {
    height: 100%;
    background: var(--white);
    border-top: 2px solid var(--primary);
    width: -webkit-fill-available;
}

.drawer-container-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /*height: calc(100% - 3.5rem);*/
    height: 100%;
}

.drawer-content-wrapper {
    display: flex;
    flex-direction: column;
    /*min-height: calc(100% - 100px);*/
}

.drawer-item-wrapper {
    margin-bottom: 10px;
    flex-grow: 1;
    width: 100%;
}

.hide .drawer-close-wrapper {
    width: 0;
}

.drawer-close-wrapper {
    display: flex;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 2px solid var(--primary);
    margin-top: auto;
}

.hide #btnCloseSideDrawer {
    visibility: hidden;
    width: 0;
}

.active #btnCloseSideDrawer {
    width: auto;
    font-size: 1.5rem;
}

.drawer-close {
    margin-right: 15px;
    align-self: flex-end;
}

    .drawer-close button, .drawer-close button:focus,
    .drawer-close button:active, .drawer-close button:hover {
        background: none;
        border: none;
        box-shadow: none;
    }

    .drawer-close i {
        color: var(--primary);
    }

    .drawer-close button:hover i {
        color: var(--active);
    }

.drawer-content-wrapper > *:first-child {
    /*margin-right: 7px;*/
    /*margin-left: 7px;*/
}
/*#endregion*/

/*#region HUD*/
.hud-container {
    width: auto;
    padding: 5px 0px;
    position: absolute;
    display: flex;
    z-index: 998;
    left: 0;
    float: left;
    border-radius: 5px;
}

.hud-wrapper {
    position: fixed;
    top: 50%;
    left: 275px;
    width: 50px;
}

.hud-item {
}

    .hud-item > * {
        display: flex;
        align-items: center;
        transition: all 0.4s;
    }

.hud-button {
    width: 30px;
    border-radius: 0;
}
.delete-Button {
    width: 30px;
    border-radius: 0;
}
.hud-right {
    right: 0;
    left: unset;
    float: right;
}

.hud-left {
    margin-left: -25px;
    position: relative;
    left: 0px;
}

    .hud-left .hud-wrapper {
        left: 80px;
        width:30px;
    }
    .hud-left .hud-button{
        padding:10px;
        padding-left:7px
    }
    .hud-left .delete-Button {
        padding: 10px;
        padding-left: 7px
    }

/**stick top**/
.hud-top, .hud-bottom {
    top: 55px;
    height: 38px;
    left: 50%;
    overflow: hidden;
    max-width: 210px;
    min-width: 38px;
    padding: 0;
}

.hud-bottom {
    top: unset;
    bottom: 0;
}

    .hud-top button.hud-button, .hud-bottom button.hud-button {
        width: auto;
        height: 100%;
    }
    .hud-top button.delete-Button, .hud-bottom button.delete-Button {
        width: auto;
        height: 100%;
    }

    .hud-top:hover .hud-item, .hud-bottom:hover .hud-item {
        /*width:14%;*/
    }

    .hud-top .hud-item:hover, .hud-bottom .hud-item:hover {
        width: fit-content;
    }

    .hud-top .hud-wrapper, .hud-bottom .hud-wrapper {
        left: unset;
        top: unset;
        position: unset;
        width: auto;
        overflow: hidden;
        display: flex;
        background: var(--primary);
        height: 38px;
    }

    .hud-top .btn:hover, .hud-bottom .btn:hover {
        box-shadow: none;
        transition: all .6s ease-in-out;
        opacity: 1;
    }

        .hud-top .btn:hover span, .hud-bottom .btn:hover span {
            transition: all .3s ease-in-out;
        }


    .hud-top .hud-item, .hud-bottom .hud-item {
        height: 38px;
    }


.hud-container.hud-right .hud-wrapper {
    left: unset;
    left: calc(100% - 40px);
}

.hud-right:hover {
    right: 0px;
}

.hud-item:hover button {
    /* width:fit-content;*/
}

.hud-right .hud-item:hover button {
    transform: translate(-50px);
}

.hud-left .hud-item:hover button {
}

.hud-item i {
    width: 100%;
    /*margin-left:-4px;*/
    /* margin-right:10px;*/
}

.hud-item button {
    padding: 10px;
}

.power-on {
    text-shadow: 0px 0px 5px var(--active);
    color: var(--dx-calendar-table-active-color);
}
.power-on-pink {
    text-shadow: 0px 0px 5px #dc3545;
    color: var(--dx-calendar-table-active-color);
}

    .power-on:hover {
        color: var(--white);
    }
.power-on-pink:hover {
    color: #dc3545;
}

.power-off {
    text-shadow: 0px 0px 1px var(--white);
    color: var(--ShadowGrey);
    opacity: 0.85;
}
.power-off-pink {
    text-shadow: 0px 0px 1px var(--white);
    color: var(--ShadowGrey);
    opacity: 0.85;
}

button:hover .power-on, button:focus .power-on, button:active .power-on {
    color: var(--white);
}
button:hover .power-off-pink, button:focus .power-off-pink, button:active .power-off-pink {
    color: var(--white);
}
/*.hud-item button span{
    width:0;
    opacity:0;
}
.hud-item button:hover span {
    width:100%;
    opacity:1;
}

.accordion {
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin: -10px auto;
}*/
/*#endregion*/

/*#region POPUPS*/
.popupFooter {
    display: flex;
    justify-content: center;
    padding: 10px;
}

.popup-body {
    padding: 15px;
}

.popup-button {
    flex: 1;
    margin: 5px;
}

.modal {
}

.modal-title {
    text-align: center;
    width: 100%;
}
/*#endregion*/

/*#region TOOLTIPS*/
.ui-tooltip, .arrow:after {
    background: var(--active) !important;
    background-color: var(--lightPink) !important;
    border: 1px solid var(--active) !important;
}

.ui-tooltip {
    padding: 2px 5px !important;
    color: var(--primary) !important;
    border-radius: 10px !important;
    box-shadow: 0 0 7px var(--primary) !important;
    font-size: 0.75rem !important;
    font-weight: 600;
    text-align:center;
    white-space: pre-wrap;
    max-width:150px;
    /*    top: 100px !important;*/
}
.ui-tooltip, .ui-tooltip *{
    pointer-events:none;
}

.arrow {
    width: 60px;
    height: 16px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    margin-left: -35px;
    bottom: -10px;
}

    .arrow.top {
        top: -16px;
        bottom: auto;
    }

    .arrow.left {
        right: 100%;
        left: unset;
    }

    .arrow:after {
        content: "";
        position: absolute;
        left: 22px;
        top: -20px;
        width: 20px;
        height: 20px;
        box-shadow: 6px 5px 9px -9px var(--primary) !important;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .arrow.left:after {
        display: none;
    }

    .arrow.top:after {
        bottom: -20px;
        top: auto;
    }

.ui-tooltip-content {
    white-space: pre-wrap;
    hyphens: auto;
    max-width: 100px;
    font-size:0.75rem;
    line-height:0.875rem;
}
    
/*#endregion*/

/*#region SPINNER*/
.spinner-container{
    display:flex;
    flex-direction:column;
    align-items:center;
    flex:1;
}
.spinner-content {
    color: var(--primary);
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .spinner-content div {
        transform-origin: 40px 40px;
        animation: fadeout 1.2s linear infinite;
    }

        .spinner-content div:after {
            content: " ";
            display: block;
            position: absolute;
            top: 3px;
            left: 37px;
            width: 6px;
            height: 18px;
            border-radius: 20%;
            background: var(--primary);
        }

        .spinner-content div:nth-child(1) {
            transform: rotate(0deg);
            animation-delay: -1.1s;
        }

        .spinner-content div:nth-child(2) {
            transform: rotate(30deg);
            animation-delay: -1s;
        }

        .spinner-content div:nth-child(3) {
            transform: rotate(60deg);
            animation-delay: -0.9s;
        }

        .spinner-content div:nth-child(4) {
            transform: rotate(90deg);
            animation-delay: -0.8s;
        }

        .spinner-content div:nth-child(5) {
            transform: rotate(120deg);
            animation-delay: -0.7s;
        }

        .spinner-content div:nth-child(6) {
            transform: rotate(150deg);
            animation-delay: -0.6s;
        }

        .spinner-content div:nth-child(7) {
            transform: rotate(180deg);
            animation-delay: -0.5s;
        }

        .spinner-content div:nth-child(8) {
            transform: rotate(210deg);
            animation-delay: -0.4s;
        }

        .spinner-content div:nth-child(9) {
            transform: rotate(240deg);
            animation-delay: -0.3s;
        }

        .spinner-content div:nth-child(10) {
            transform: rotate(270deg);
            animation-delay: -0.2s;
        }

        .spinner-content div:nth-child(11) {
            transform: rotate(300deg);
            animation-delay: -0.1s;
        }

        .spinner-content div:nth-child(12) {
            transform: rotate(330deg);
            animation-delay: 0s;
        }

        .spinner-message-container{
            margin-top:10px;
        }

/*#endregion*/

/*#region SKELETON LOADER*/
.skeleton {
    animation: 1s linear infinite alternate;
}

.skeleton-text {
    width: 100%;
    height: 0.7rem;
    margin-bottom: 0.5rem;
    border-radius: 0.25rem;
}

.load-indicator {
    width: 100%;
    height: 100%;
    z-index: 9999;
    /*    animation: skeletonloading 1s linear infinite alternate;*/
    transition: all 1s;
    float: left;
    position: relative;
}


    .load-indicator.active {
        /*width: calc(25% - 88px);*/

        -webkit-animation: slideLeft 0.4s ease-in-out forwards, skeletonloading 1s linear infinite alternate;
        -webkit-animation-fill-mode: forwards;
        z-index: 999;
    }

    .load-indicator.active {
        z-index: 999;
    }

    .load-indicator.hide {
        z-index: -100;
        animation-delay: 2s;
        -webkit-animation: slideRight 0.4s ease-in-out forwards, skeletonloading 1s linear infinite alternate;
        -webkit-animation-fill-mode: forwards;
        width: 0;
        height: 0;
    }

.showloading {
    -webkit-animation: skeletonloadingtwo 1s linear infinite alternate;
    -webkit-animation-fill-mode: forwards;
    border-radius: 5px;
}

    .showloading * {
        border-radius: 5px;
        z-index: -1000;
        -webkit-animation: skeletonloadingtwo 1s linear infinite alternate;
        -webkit-animation-fill-mode: forwards;
    }

    .showloading button, .showloading button span {
        border: none;
        outline: none;
        background-color: transparent;
    }

.hideloading, .hideloading * {
    -webkit-animation: skeletonhide 0.5s linear forwards;
    -webkit-animation-fill-mode: forwards;
}

.borderedBoxBtn, .borderedBoxBtn > div {
    animation: growSlowly 0.4s ease;
}
/*.borderedBoxBtn.showloading *{
    border-radius:5px;
        animation:fadeIn 0.5s linear forwards;
}

.borderedBoxBtn.hideloading *{
    
    animation:fadeIn 1s linear forwards;
}*/
.tooltip-after-grow {
    animation: tooltipGrow 0.1s linear forwards;
}


.fadein {
    animation: fadeIn 0.5s linear forwards;
}

.growslowly {
    animation: growSlowly 0.5s linear forwards;
}

.fadein.growslowly {
    animation: fadeIn 1s ease forwards, growSlowly 0.5s ease forwards;
}

.borderedBoxBtn.showloading .dxbs-fl-ctrl {
    border-radius: 5px;
    animation: fadeIn 0.5s linear forwards, skeletonloadingtwo 1s linear infinite alternate;
}

.borderedBoxBtn.hideloading .dxbs-fl-ctrl {
    animation: fadeIn 1s linear forwards;
}

.showloading .dxbs-fl-cpt, .hideloading .dxbs-fl-cpt {
    opacity: 1 !important;
    box-shadow: none !important;
    animation: none !important;
}

.showloading .dxbs-fl > .row, .hideloading .dxbs-fl > .row,
.showloading .dxbs-fl, .hideloading .dxbs-fl {
    box-shadow: none !important;
}
/*#endregion*/

/*#region PAGER*/
.pagerBtn {
    color: var(--white);
    background-color: var(--primary);
    border-color: var(--primary);
}

.page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.page-item .page-link {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--primary);
    outline: var(--primary);
    box-shadow: 0 0 0 0.25rem rgb(var(--bs-primary-rgb-com) / 25%);
}
.page-item .page-link .dx-image:not(.dx-image-fill){
    color:var(--primary);
}
/*#endregion*/

/*#region APPOINTMENTS*/
/*#region SCHEDULER*/

.dxbs-scheduler .dxbs-sc-apt.dxbs-sc-vertical-apt{
    margin-left:5px;
}

.scheduler-hide-day-of-week tr > td.dxbs-sc-date-hr.dxbs-sc-date-hr-today,
.scheduler-hide-day-of-week tr > td.dxbs-sc-date-hr {
    display: none !important;
}
.scheduler-hide-day-of-week tr > td.dxbs-sc-all-day-area{
    display:none !important;
}
.scheduler-resource-wrapper {
    margin: 0 auto;
}   
.scheduler-resource-text {
    text-align:center;
    padding: 6px !important;
    font-size:1.2rem;

}
.scheduler-large .scheduler-resource-text{
    padding:2px !important;
    font-size:0.825rem;
}
.doctor .scheduler-resource-wrapper{
     max-width:20px;
     width:20px;

}
.doctor .scheduler-resource-text{
    min-width:fit-content;
    background-color: var(--lightPink);
    border-radius: 20px;

}
.room .scheduler-resource-text{
    font-size:1rem;
    line-height:1.2rem;
}
.scheduler-resource-container{
    width:100%;
}

.resource-card-container{
    width:250px;
    max-height:100px;
    height;
    display:none;
    float:left;
    z-index:999;
    position:absolute;
    background-color:var(--white);
    border-radius:5px;
    border:2px solid var(--primary);
}
.resource-card-container.show{
    display:block;
}
.resource-card-wrapper{
    padding:5px;
}
.resource-card-title{
font-weight:600;
font-size:0.875rem;
}
.resource-card-subtitle{

}
.resource-card-content{

}
#rowAppointments{
    width:fit-content;
}
.card-container{
    padding:5px;
    display:flex;
    flex-direction:row;
    padding-bottom:15px;
}

.card-added-item {
    max-width: 400px;
    border: solid 2px var(--primary);
    border-radius: 5px;
    margin-right: 20px;
    background-color:var(--menuPanel);
}

.card-added-item-wrapper {
    padding: 5px 10px;
}

.card-added-item label{
    margin-top:5px;
    margin-bottom:5px;
    font-weight:600;
}
.dxbs-scheduler .dxbs-sc-apt-container span{
    color:var(--white);
}
.scheduler-appointment {
    box-shadow: .125rem .25rem rgba(34,34,34,0.15);
    overflow: hidden;
    height: 100%;
    padding:0px 5px;
}
.appointment-popup-element {
    z-index: 9999;
    float: left;
    
  
}
.scheduler-appointment *,
.appointment-popup-element, 
.appointment-popup-element *{
    pointer-events:none;
}
.scheduler-appointment-popup-container {
    color: var(--primary);
    background-color: #ffffff;
    width: min-content;
    border-radius: 5px;
    border: 2px solid var(--primary);
    transition: all .1s ease-in-out;
    animation:fadeIn 0.2s ease-in-out, 
        max-grow 0.2s ease-in-out
}
.scheduler-appointment-popup-wrapper {
    flex: 1;
    background-color: var(--backgroundPanel);
}
.scheduler-appointment-popup-container 
.scheduler-appointment-popup-wrapper span{
    color:var(--primary);
    display:flex;
    flex-direction:row;
}
.scheduler-appointment-popup-header{
    padding:10px;
    border-bottom:solid 2px var(--primary);
    justify-content:center;
    font-weight:800;
    margin-top:-1px;
    border-radius:5px;
    border-bottom-left-radius:0px;
    border-bottom-right-radius:0px;
    font-size:0.975rem;
    line-height:0.975rem;
    /*transition:all 0.4s ease-in-out;*/
    width:100%;
    flex:1;
    animation:fadeIn 0.2s ease-in-out;
}

.scheduler-appointment-popup-header i{
    margin:0 5px;
}

.scheduler-appointment-popup-header 
span.scheduler-appointment-subject{
    color:var(--white);
}
.scheduler-appointment-popup-body{
   padding:5px;
   flex:1;
   font-size:0.875rem;
}
.scheduler-appointment-popup-body > div{
    flex:1;
    padding-bottom:5px;
}

.scheduler-appointment-popup-body i{
    margin-left:5px;
    margin-right:5px;
    vertical-align:middle;
    align-items:center;
}
.scheduler-appointment-popup-body hr{
    background-color:var(--primary);
    height:1px;
    opacity:1;
    margin-bottom:12px;
}
.scheduler-appointment-status{
    justify-content:center;
}
.scheduler-appointment-popup-body span{
    margin:3px 0px;
    vertical-align:middle;
    line-height:0.875rem;
}
.scheduler-appointment-popup-body > div > div {
   flex:1;
   justify-content:space-between;
}
.scheduler-appointment-popup-body > div > div span{
    justify-content:center;
    flex:1;
}
.scheduler-appointment-popup-body 
.scheduler-appointment-text:first-of-type{
    justify-content:flex-start;
}
.scheduler-appointment-popup-body > div >div {
    margin-bottom:10px;
}
.scheduler-appointment-text-date{
    white-space:nowrap;
}

/*#endregion*/

/*#region APPOINTMENT BOOKING*/

#appointment-booking-patient-info button,
#appointment-booking-patient-info span {
    background-color: transparent;
    color: var(--primary);
    border-color: transparent;
}

#appointment-booking-patient-info button:hover,
#appointment-booking-patient-info button:focus {
    border-color: transparent;
    outline: none;
    box-shadow: none;
}

#appointment-booking-patient-info button:hover span,
#appointment-booking-patient-info button:focus span {
    color: var(--active);
}

#appointment-booking-selected-services {
}

#appointment-booking-patient-info button,
#appointment-booking-patient-info span {
    background-color: transparent;
    color: var(--primary);
    border-color: transparent;
}

#appointment-booking-patient-info button:hover,
#appointment-booking-patient-info button:focus {
    border-color: transparent;
    outline: none;
    box-shadow: none;
}

#appointment-booking-patient-info button:hover span,
#appointment-booking-patient-info button:focus span {
    color: var(--active);
}

#appointment-booking-selected-services {
}

/*#endregion*/

/*#region APPOINTMENT CARDS*/
.appointment-card-container {
    border: 2px solid var(--primary);
    margin: 15px 5px;
    flex-wrap: wrap;
    justify-content: center;
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, 
                rgba(0, 0, 0, 0.07) 0px 2px 4px,
                rgba(0, 0, 0, 0.07) 0px 4px 8px, 
                rgba(0, 0, 0, 0.07) 0px 8px 16px, 
                rgba(0, 0, 0, 0.07) 0px 16px 32px, 
                rgba(0, 0, 0, 0.07) 0px 32px 64px;
    transition:background-color 0.2s linear; 
    animation: fadeIn 0.5s ease-in-out;
    
}

.appointment-card-container:active *{
    background-color:var(--primary);
}
.appointment-card-wrapper{
    padding:5px;
    justify-content:center;
    align-content:flex-start;
}
.appointment-card-top-row{
    text-align:center;
    justify-content:center;
    font-weight:bold;
}
.appointment-card-body-row{
    margin:5px 0;
}
.appointment-card-body-container
.appointment-card-body-row:nth-child(even):before,
.appointment-card-body-container
.appointment-card-body-row:nth-child(2n+1):before {
    content: '';
    height: 2px;
    width: 90%;
    background-color: var(--primary);
    margin: auto;
    margin-bottom: 5px;
}
.appointment-card-body-container 
.appointment-card-body-row:nth-child(1):before{
    content:none;
}
.appointment-card-body-wrapper{
    align-content:space-evenly;
    column-gap:10px;
    padding:5px;
}
.appointment-card-body-wrapper .flex-column{
    max-width:165px;
    width:165px;
}
.appointment-card-body-wrapper .flex-column:first-child{
    max-width:200px;
    width:195px;
}

.appointment-card-container label{
    font-weight:bolder;
    word-wrap:break-word;
    white-space:pre-wrap;
    hyphens:auto;
}
.appointment-card-container label span{
    font-weight:normal;
}
.appointment-card-body-row .flex-column:last-child .flex-row:last-child{
    column-gap:5px;
}

.appointment-card-container:hover .appointment-card-top-row span,
.appointment-card-container:hover label,
.appointment-card-container:active .appointment-card-top-row span,
.appointment-card-container:active label,
.appointment-card-container:focus .appointment-card-top-row span,
.appointment-card-container:focus label{
    color: var(--white);
} 
.appointment-card-container:hover .appointment-card-body-container 
.appointment-card-body-row:nth-child(even):before,
.appointment-card-container:hover .appointment-card-body-container 
.appointment-card-body-row:nth-child(2n+1):before{
    background-color:var(--white);
}
.appointment-card-container:hover,
.appointment-card-container:hover *,
.appointment-card-container:active,
.appointment-card-container:active *,
.appointment-card-container:focus,
.appointment-card-container:focus * {
    background-color: var(--primary);
    cursor: pointer;
}

/*START OF CAROUSEL*/
.appointment-carousel-container{
    margin-left:-35px;
    margin-right:-45px;
}
.appointment-carousel-wrapper{
    justify-content:center;
}
.appointment-carousel-left{
    margin-left:-15px;
}
.appointment-carousel-right{
    margin-right:-15px;
}
.appointment-carousel-left, .appointment-carousel-right{
    float:left;
    z-index:999;
 

}
.appointment-carousel-arrow-wrapper{
    height:35px;
    align-items:center;
    display:flex;
    justify-items:center;
    text-align:center;
    padding:12px;
}
.appointment-carousel-arrow-wrapper:hover{
    color:var(--white);
    background-color:var(--active);
    border-radius:5px;
}
.appointment-carousel-center {
    flex-wrap: wrap;
    justify-content: center;
    border-radius:5px;
    margin:0 -5px;
}

/*END OF CAROUSEL*/

/*START OF CARD DETAILS*/
.appointment-card-details-container{
    border:2px solid var(--primary);
    border-radius:5px;
    /*margin:15px;*/
    background-color:var(--white);
}
.appointment-card-details-wrapper{
    padding:15px;
}
.appointment-card-details-container h4{
    font-weight:800;
}
.appointment-card-details-container ol{
    counter-reset:list;
}
.appointment-card-details-container li{
    list-style:none;
}
.appointment-card-details-container li:before{
    content: counter(list, numeric) ") ";
    counter-increment:list;
}
.appointment-card-details-service{
    font-weight:800;
}
.appointment-card-details-date{
    font-weight:800;
}
.appointment-card-details-doctor{
    font-weight:800;
}
.appointment-card-details-time{
    font-weight:800;
}
/*END OF CARD DETAILS*/

/*#endregion*/

/*#endregion*/

/*#region ANIMATIONS*/
@-webkit-keyframes tooltipGrow {
    0% {
        transform: translateY(50%);
    }

    100% {
        transform: translateY(0%);
    }
}

@-webkit-keyframes slideLeft {
    0% {
        width: 100%;
        transform: translateX(100%);
    }

    100% {
        width: 100%;
        transform: translateX(0);
    }
}

@-webkit-keyframes slideRight {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

@-webkit-keyframes growSlowly {
    0% {
        width: 0;
        height: 0;
    }

    100% {
        width: 100%;
        height: 100%;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeout {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes skeletonloading {
    0% {
        background-color: hsl(200, 20%, 80%);
    }

    100% {
        background-color: hsl(200, 20%, 95%);
    }
}

@-webkit-keyframes skeletonloadingtwo {
    0% {
        /*box-shadow:inset 0px 0px 0 5000px hsl(200, 20%, 80%);*/
        box-shadow: inset 0px 0px 0 5000px var(--loading-start);
    }

    100% {
        /*box-shadow: inset 0px 0px 0 5000px hsl(200, 20%, 95%);*/
        box-shadow: inset 0px 0px 0 5000px var(--loading-end);
    }
}

@-webkit-keyframes skeletonhide {

    0% {
        box-shadow: inset 0px 0px 0 5000px var(--loading-end);
    }

    100% {
        box-shadow: none;
    }
}

@-webkit-keyframes vertical-grow{
    0%{
        height:0px;
    }
    100% {
        height: 100%;
    }
}

@-webkit-keyframes max-grow{
    0%{
        transform:scale(0);
    }
    100%{
        transform:scale(1);
    }
}

@-webkit-keyframes small-grow{
    0%{
        transform:scale(0.992);
    }
    100%{
        transform:scale(1);
    }
}
.transparent-btn {
    color: #591782;
    border: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0px;
    margin: 0px 5px;
    background-color: #fff;
}
    .transparent-btn:hover {
        background-color: transparent !important;
        color: #f4007f !important;
    }
.card-contain {
    width: 31.3%;
    min-height: 190px;
}
.w-90 {
    width:90% !important;
}
.card-contain:hover .transparent-btn {
    background-color: transparent !important; 
    color: #fff;
}
/*#endregion*/

