﻿@font-face {
    font-family: 'Poppins';
    src: url('/fonts/poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/poppins/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Global */



html, body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.header-position {
    font-size: 25px;
    font-weight: 500;
    color: #212529;
}

h4 {
    font-size: 16px;
    font-weight: 600;
}

p {
    font-size: 16px;
    font-weight: 400;
    color: #212529;
}

span {
    color: #343a40;
}

.label-p {
    color: #343A40;
    font-size: 14px;
    font-weight: 400;
}

/* Nav */


nav {
    width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100dvh;
}

.hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 24px;
    cursor: pointer;
}

.header-collapsed,
.header-expanded {
    display: flex;
    align-items: center;
    margin: 20px;
}

.header-icon {
    cursor: pointer;
    margin: 8px 0;
}

.header-collapsed {
    justify-content: center;
}

.header-expanded {
    justify-content: space-between;
}

.nav-items {
    margin: 8px 24px;
}

.divider {
    height: 1px;
    width: 48px;
    background-color: #E1E2E5;
    margin: 0 auto;
}

.divider-expanded {
    height: 1px;
    width: 194px;
    background-color: #E1E2E5;
    margin: 0 auto
}

.circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #0D6EFD;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.96rem;
}

.nav-link {
    color: #51545C;
    border-radius: 8px;
    height: 52px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

    .nav-link:focus {
        outline: none;
        border: none;
    }

/* Special padding for icons */
.dashboard {
    padding: 7px 0 5px 2px;
}

.sheduler {
    padding: 7px 0 5px 3px;
}

.customer {
    padding: 7px 0 5px 1px;
}

.timelog {
    padding: 7px 0 5px 4.5px;
}

.notifications {
    padding: 7px 0 5px 4.5px;
}

.settings {
    padding: 7px 0 5px 3px;
}

.signout {
    padding: 7px 0 0 4.5px;
    height: 52px;
}

 .nav-link:hover {
    background-color: #0D6EFD;
    color: white;
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

 .nav-link.active {
    background-color: #0D6EFD;
    color: white;
}

.sidebar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100dvh;
    transition: width 0.2s ease;
    border-right: 1px solid #E1E2E5;
    position: relative;
    z-index: 1200 !important;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}


.sidebar-collapsed {
    width: 100px;
}

.nav-text {
    width: 100%;
    border-radius: 0 8px 8px 0;
    opacity: 1;
    transition: opacity 0.3s ease-out;
}


.sidebar-collapsed .nav-text {
    opacity: 0;
    transition: none;
}


.sidebar-expanded {
    width: 242px;
}

    .sidebar-expanded .nav-text {
        display: flex;
        align-items: center;
        padding-left: 12px;
        font-size: 1rem;
        font-weight: 500;
    }



.brand-text {
    font-size: 20px;
    font-weight: 700;
    margin-left: 8px;
    color: #151618;
}

.user-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 8px;
    color: #51545C;
    font-size: 0.95rem;
    font-weight: 500;
}

.menu-overlay {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 999; 
}

/* Custom CSS for a smooth collapse animation */
.collapse-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.show-menu {
    max-height: 500px; 
    transition: max-height 0.3s ease-in-out;
}

@media screen and (max-width: 992px) {
    .user-info {
        margin-left: 0;
    }
}

.user-email {
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
}

.user-info strong {
    margin-bottom: 2px;
}

navbar {
    position: relative;
    z-index: 1070;
}

/* MainLayout */

.page {
    position: relative;
    display: flex;
}

main {
    flex: 1;
    background-color: #F8F8F8;
    position: relative;
}

.aside {
    height: 100vh;
    position: sticky;
    top: 0;
}

@media (max-width: 991.98px) {
    .aside {
        height: auto; 
        width: 100%;
        border-bottom: 1px solid #E1E2E5;
        background-color: #ffffff;
        position: sticky;
        top: 0;
         z-index:1000;
    }

    .page {
        flex-direction: column;
    }

    .sidebar {
        display: none;
    }
}
/* AnonymousLayout */

.main-anonymous {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-container {
    background: linear-gradient(180deg, #F8F8F8 24%, #E1E2E5 77%);
    width: 100%;
}

/* Signin */

.form-container {
    height: 640px;
    max-width: 441px;
    border: 1px solid #E1E2E5;
    box-shadow: 0px 4px 40px rgba(81, 84, 92, 0.22);
    background-color: #ffffff;
    border-radius: .5rem;
    padding: 0 48px;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.signin-h1 {
    font-size: 1.9375rem;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 34px;
    outline: none;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.signin-h2 {
    outline: none;
    font-size: 1.5625rem;
    font-weight: 500;
    margin-top: 24px;
}

.signin-p {
    outline: none;
    font-size: .98rem;
    font-weight: 400;
    margin-top: 8px;
    margin-bottom: 32px;
}

.signin-a {
    color: #0D6EFD;
    font-size: 1rem;
    font-weight: 500;
}

.signin-button {
    background-color: #0D6EFD;
    border: none;
    color: #ffffff;
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
}

form label {
    color: #151618;
    font-size: 1rem;
    font-weight: 400;
}

form input {
    margin: 8px 0;
}

.form-input-custom {
    height: 48px;
    border-radius: 8px;
    border: 1px solid #E1E2E5;
}

.eye-icon {
    position: absolute;
    top: 70%;
    right: 12px;
    transform: translateY(-50%);
    color: #51545C;
    cursor: pointer;
}

    .eye-icon:hover {
        opacity: 1;
    }

/* Dashboard */


.dashboard-container {
    display: grid;
    grid-template-rows: auto auto auto;
    row-gap: 20px;
    padding: 20px;
    box-sizing: border-box;
}


.top-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 20px;
    height: 79px;
    margin-bottom: 20px;
}

.middle-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 20px;
    margin-bottom: 20px;
}

.bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 20px;
}

.block {
    background: #F5F5F5;
    border: 1px solid #D0D5DD;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 8px 20px;
}

.percentage {
    font-size: 10px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0px;
    color: #27AE60;
}

.chart-container {
    background: #FFFFFF;
   
    margin-top: 10px;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    justify-content: start;
    align-items: center;
}

    .chart-container img {
        max-width: 100%; 
        width: auto; 
        height: auto;
     
        object-fit: contain;
    }

@media screen and (max-width: 1200px) {
    .top-grid {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }
}

@media screen and ( max-width: 772px) {
    .top-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .middle-grid,
    .bottom-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}



/* Sheduler */

.e-btn {
    background-color: #ffffff;
    border: 1px solid #E1E2E5;
    height: 44px;
    border-radius: 8px;
    color: #51545C;
}

.chevron {
    width: 44px;
    border-color: #ced4da;
}

.today {
    width: 83px;
    font-size: 1rem;
    font-weight: 500;
}



.scheduler .e-input-group-icon {
    height: 44px;
    position: relative;
    top: -6px;
}

.e-btn:hover,
.e-btn:focus,
.e-btn:active {
    background-color: #ffffff;
    border: 1px solid #E1E2E5;
    height: 44px;
    outline: none;
    color: #51545C;
}

.top-input-container .e-input-group {
    height: 44px;
    border-radius: 8px;
    padding-top: 5px;
    padding-left: 15px;
    font-size: 1rem;
    font-weight: 500;
}

.e-grid .e-gridcontent {
    border-radius: 0 0 8px 8px;
}

.e-grid {
    border-radius: 8px !important;
}

    .e-grid .e-gridheader {
        border-radius: 8px 8px 0 0;
    }

.e-input-group, .e-input-group.e-control-wrapper {
    color: #51545C !important;
}

.scheduler-container .e-input-group.e-control-wrapper input, .e-float-input input, .e-float-input.e-input-group input, .e-float-input.e-control-wrapper input, .e-float-input.e-control-wrapper.e-input-group input {
    height: 38px;
    border-radius: 2px !important;
}

label.e-float-text, .e-float-input label.e-float-text, .e-float-input.e-control-wrapper label.e-float-text {
    top: 12px !important;
    line-height: 22px;
}

.customer-edit .e-float-input, .e-float-input.e-control-wrapper {
    margin-top: 20px;
}

    .customer-edit .e-float-input input, .e-float-input.e-input-group input, .e-float-input.e-control-wrapper input, .e-float-input.e-control-wrapper.e-input-group input {
        height: 35px;
    }

.e-schedule {
    border-radius: 8px !important;
}

    .e-schedule .e-vertical-view .e-time-cells-wrap table td {
        background: #ffffff;
    }

.e-header-day {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.e-header-date {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.btn-add-container {
    position: absolute;
    bottom: 17px;
    right: 16px;
    z-index: 500;
}

.btn-scheduler-add {
    background: #0D6EFD;
    border: none;
    border-radius: 8px;
    width: 44px;
    height: 44px;
    color: #ffffff;
}

.e-day-wrapper.e-appointment-details {
    position: relative;
}

.template-wrap {
    border-radius: 2px !important;
    padding: 4px;
    width: 100%;
    container-type: inline-size;
    container-name: footer;
}

.appointment-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.e-control {
    font-size: 16px;
    line-height: 120%;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500;
    color: #51545C;
}

.event_subject {
    font-size: 12px;
    line-height: 120%;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600;
    margin-top: -0.5px;
    display: flex;
}

.event_footer {
    position: absolute;
    left: 4px;
    right: 4px;
    bottom: 4px;
    display: flex;
    justify-content: end;
   
}

    
    .event_footer .dash {
        display: block;
    }

@container footer (max-width: 90px) {

    .event_footer {
        flex-direction: column;
        align-items: start;
    }

        .event_footer .event_time {
            flex-direction: column;
        }

        .event_footer .dash {
            display: none;
        }

        .event_footer .signature {
            margin-left: 10px;
        }

    .event_subject {
        flex-direction: column;
    }
}


.signature_box {
    padding: 4px;
    border: solid 1px;
    border-radius: 4px;
    text-align: center;
    width: 24px;
    height: 24px;
    border-radius: 24px;
    margin-left: -10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
    background: #6C757D;
    font-size: 10px;
    line-height: 120%;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500;
}

.event_time {
    font-size: 10px;
    line-height: 120%;
    font-family: 'Poppins', sans-serif !important;
    color: black;
    font-weight: 400;
    margin-top: 11px;
    display: flex;
}

.template-wrap.compact .repeat-color,
.template-wrap.compact .signature {
    display: none;
}



.repeat-color {
    color: black;
}

.e-schedule .e-vertical-view .e-day-wrapper .e-appointment .e-appointment-details {
    padding: 0 !important;
}

.e-schedule .e-vertical-view .e-time-cells-wrap table td, .e-schedule .e-vertical-view .e-work-cells {
    height: 49px !important;
}

.e-input-group input.e-input, .e-input-group.e-control-wrapper input.e-input {
    color: #51545C !important;
}

.e-schedule .e-vertical-view .e-left-indent-wrap table tbody td.e-header-cells.e-week-number {
    padding-top: 25px;
}

.e-schedule .e-agenda-view .e-day-border {
    border-bottom: none;
}
/* Filter togler */
.filter-togler {
    background: #ffffff;
    padding: 9px 13px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    margin-left: 10px;
}

/* Scheduler Filter Overlay - only visible on mobile/tablet screens */
.scheduler-filter-overlay {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 15; 
}

.filter-togler-menu {
    position: absolute;
    top: 62px;
    left: 0;
    z-index: 25;
    width: 100%;
    background-color: #F8F8F8;
    border: 1px solid #82869140;
    border-radius: 12px;
    padding-left: 8px;
    padding-top: 8px;
}
@media screen and ( max-width: 768px ) {
    .filter-togler {
        margin-left: 0;
    }

    .filter-togler-menu {
        left: 0;
        right: 16px;
    }
}


/* Add/Edit Appointment */

.event_dialog .e-dialog {
    width: 1088px !important;
    max-width: 1088px;
    height: 982px !important;
    border-radius: 8px;
    padding: 13px 35px;
}

.e-dialog .e-dlg-header {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
}

.dialog-message.e-dialog.e-lib.e-popup.e-control.e-popup-open {
    width: 400px;
    padding: 10px 35px;
}

#CustomerContainer > div.col-md-7.ps-4 > div:nth-child(1) > div:nth-child(1) > div.col-md-6.ps-2.pe-4.position-relative > div > span.e-input-group-icon.e-ddl-icon.e-icons,
#CustomerContainer > div.col-md-7.ps-4 > div:nth-child(1) > div:nth-child(1) > div.col-md-6.px-0.position-relative > div > span.e-input-group-icon.e-ddl-icon.e-icons {
    margin-right: 25px;
}

.copy-icon {
    position: absolute;
    top: 30px;
    right: 10px;
    cursor: pointer;
    color: #6C757D
}

.fa-2x {
    font-size: 14px !important;
    color: #212529;
}

.fs-24 {
    font-size: 24px;
}

.fs-16 {
    font-size: 16px;
    font-weight: 500;
    color: #343A40;
}

.fs-14 {
    font-size: 14px;
    font-weight: 400;
    color: #343A40;
}

.fs-12 {
    font-size: 12px;
    font-weight: 400;
    color: #343A40;
}

.fs-10 {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.text-primery {
    color: #212529;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.px-27 {
    padding: 0 27px;
}

.px-18 {
    padding: 0 18px;
}

.px-16 {
    padding: 0 16px;
}

.mt-56 {
    margin-top: 56px;
}

.ms-20 {
    margin-left: 12px;
}

@media screen and ( max-width: 768px ) {
    .px-27 {
        padding: 0 16px;
    }
}

.box-sizing {
    box-sizing: border-box;
}

.e-dlg-content {
    padding: 10px 0 !important;
}

.close-button {
    cursor: pointer;
    position: absolute;
    right: 0;
    bottom: 18px;
}

.cursor-pointer {
    cursor: pointer;
}


.button-primary {
    border-radius: 4px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    font-family: 'Poppins', sans-serif;
    background-color: #0D6EFD !important;
    border: none;
    padding: 4px 12px;
    color: #ffffff !important;
}

.button-secondary {
    border-radius: 4px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    font-family: 'Poppins', sans-serif;
    background-color: #6C757D !important;
    border: none;
    padding: 4px 12px;
    color: #ffffff !important;
}

.button-remove {
    border-radius: 4px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    font-family: 'Poppins', sans-serif;
    background-color: #e94a4a !important;
    border: none;
    padding: 4px 12px;
    color: #ffffff !important;
    outline: none;
}


.edit-event-tab .e-tab {
    padding: 0 1.4rem;
}

.e-ddl.e-input-group .e-input-value {
    min-height: 38px !important;
    padding-top: 5px;
}

.user-avatar-container {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #6C757D;
    display: flex;
    justify-content: center;
    align-items: center;
}

.name-icon-wrapper {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

.user-name-ellipsis {
    display: block;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}



.hours-wrapper {
    width: 652px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

    .hours-wrapper.active {
        cursor: grabbing;
    }

    .hours-wrapper::-webkit-scrollbar {
        display: none;
    }

.hours {
    display: inline-flex;
    position: relative;
    width: 1152px;
}

.hour {
    flex: 0 0 48px;
    text-align: center;
    line-height: 26px;
}


tbody tr:last-child .hours-wrapper {
    overflow-x: auto;
    position: relative;
    top: 30px;
    scrollbar-width: auto;
    -ms-overflow-style: auto;
}

    tbody tr:last-child .hours-wrapper::-webkit-scrollbar {
        display: block;
        height: 8px;
    }

    tbody tr:last-child .hours-wrapper::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,0.3);
        border-radius: 4px;
    }

.event {
    position: absolute;
    top: 0;
    height: 11px;
    opacity: .65;
}

.agent-container {
    position: relative;
}

.agent-shade {
    position: absolute;
    top: 2.5em;
    left: var(--s-left);
    2286 width: var(--s-width);
    height: calc(1em + (var(--row-count) * var(--row-height)));
    background: rgba(0,0,0,0.05);
    pointer-events: none;
    z-index: 0;
}

@media screen and (max-width: 768px) {

    .agent-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}


/* Customers */

.sf-tab {
    background-color: #ffffff;
}

.e-tab {
    padding: 0;
}



.px-12 {
    padding: 6px 12px;
}

.e-card {
    margin: 10px 0;
}

.e-dialog .e-dlg-header {
    font-size: 24px;
    font-weight: 600;
    padding: 5px 0 10px 0;
}



.edit-user {
    padding: 14px 21px !important;
}

.e-dialog .e-dlg-header-content {
    border-radius: 8px 8px 0 0;
}

/* Color picker  */


.btn-colorpicker {
    width: 28px !important;
    height: 28px !important;
    line-height: 28px;
    border-radius: 2px;
}

.e-colorpicker-container .e-split-btn-wrapper .e-split-colorpicker.e-split-btn .e-selected-color {
    height: 12px;
    width: 12px;
    border-radius: 2px;
}

.btn-colorpicker.e-btn .e-btn-icon {
    margin-top: -9px;
}

.e-footer-content{
    padding-right: 25px;
}

.e-dialog .e-footer-content {
    border-radius: 0 0 8px 8px;
    padding-right: 0;
}

.e-dlg-header-content {
    padding: 14px 0 !important;
}

.e-checkbox-wrapper .e-check, .e-css.e-checkbox-wrapper .e-check {
    padding-top: 0px;
    font-size: 10px
}

/* Customer add new */

.container-customer {
    display: flex;
}

.first-column {
    max-width: 544px;
    margin-top: 25px;
}

.secound-column {
    width: 349px;
    max-width: 349px;
    margin-left: 80px;
    margin-top: 25px;
}

.e-tab {
    padding: 0 !important;
}

    .e-tab .e-tab-header .e-toolbar-items .e-toolbar-item.e-active,
    .e-tab .e-content > .e-item.e-active {
        background-color: #ffffff;
    }

    .e-tab .e-content > .e-item.e-active {
        border-radius: 0 0 8px 8px;
    }


@media screen and (max-width: 1200px) {
    .container-customer {
        flex-direction: column;
    }

    .secound-column {
        margin-left: 0;
    }
}

.tab-btn-facility {
    color: #6C757D;
    font-weight: 400;
}

.e-tab .e-tab-header .e-toolbar-item .e-tab-text {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400 !important;
}

.e-tab .e-tab-header .e-toolbar-item .e-tab-wrap {
    padding-top: 3px;
    height: 40px !important;
}

label.e-float-text, .e-float-input label.e-float-text, .e-float-input.e-control-wrapper label.e-float-text {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
}


.e-tab.e-fill .e-tab-header .e-toolbar-item .e-tab-wrap {
    padding-bottom: 2.2rem;
}

/* Facilities */

.container-facilities {
}

.trash-tab-btn {
    border: none;
    background-color: transparent;
    color: #6C757D;
}

.container-facilities {
    height: auto;
    width: 100%;
    margin-bottom: 68px;
}

.facility-width {
    max-width: 544px;
    margin-top: 1px;
}




/* Settings */

.dashed {
    border: 1px dashed #ADB5BD;
    padding: 16px;
    border-radius: 6px;
}

.format-column label {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #212529;
    font-size: 16px;
}

.format-column input[type="radio"] {
    margin-right: 0.5rem;
}

.dvh-100 {
    height: 100dvh;
}

.settings-button-container {
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 0 16px 16px 16px;
    position: absolute;
    bottom: 0;
    right: 0;
    border-top: 1px solid #dee2e6;
    width: 100%;
}

.settings-container {
    width: 100%;
    max-width: 1600px;
}

.trash-container {
    cursor: pointer;
}


/* Settings Appointments */

.e-float-input.e-error input, .e-float-input.e-control-wrapper.e-error input {
    border-color: #ADB5BD !important;
}


@media screen and (max-width: 1200px) {
    .event_dialog .e-dialog {
        width: 100% !important;
        height: 100% !important;
        margin-left: 5px;
        margin-right: 5px;
    }
}

.event_scheduler {
    width: 100%;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}



.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}



.rounded-4 {
    border-radius: 1rem;
}

.bo {
    border: 1px solid red;
}



.dot {
    height: 65px;
    width: 65px;
    border: 7px solid red;
    border-radius: 50%;
    display: inline-block;
}



.z-index {
    z-index: 1;
}

body > div.page > main > article {
    padding-top: 0;
}

.e-dialog .e-dlg-header {
    width: 100%;
}

.e-dialog .e-dlg-header-content {
    border-bottom: 1px solid #dee2e6;
    padding: 12px 0;
}

.e-popup.e-popup-open.e-dialog {
    padding: 10px 20px;
}

.mobile-view-buttons {
    display: none;
}

    .mobile-view-buttons button {
        height: 2rem;
        padding: 2px 8px;
        margin-top: 10px;
    }

.display-none {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms, visibility 500ms linear 500ms;
}

.display-block {
    opacity: 1;
    visibility: visible;
    transition: opacity 500ms, visibility 500ms linear 0ms;
}

.facility-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(128, 128, 128, 0.7);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.z-10 {
    z-index: 20;
}



.height-settings {
    height: calc( 100vh - 160px);
}

.p-4rem {
    height: auto;
    padding-top: 4rem !important;
    background: rgb(27,79,114);
    background: linear-gradient(180deg, rgba(27,79,114,1) 24%, rgba(84,153,199,1) 77%);
}

.new-facility-border {
    border: 2px solid #32CD32 !important;
    box-shadow: inset 0 0 8px #32CD32;
}
/* Dialog */

.message-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99 !important;
}

.rounded-8 {
    border-radius: 8px;
}

.no-bottom-border {
    border-bottom: 0 !important;
    border-top: 0 !important;
}

.table-row {
    display: flex;
    border: 1px solid black;
}

.even-row {
    background-color: #ffffff;
}



.odd-row {
    background-color: #f9f9f9;
}

    .odd-row:hover {
        background-color: #f1f1f1 !important;
    }

.hover:hover {
    background-color: #f1f1f1;
}

/* Groups Component */

.group-container {
    padding: 14px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Tenant css */

.tennant-container {
    width: 507px;
}

.tenant-logo {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    background: #6C757D;
    margin-right: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    line-height: 28px;
}

.tenant-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    color: #000000;
}

.tenant-info {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #000000;
}

.border-radius-8 {
    border-radius: 8px;
}

.p-48 {
    padding: 48px;
}

.tennant-button {
    border: 1px solid #CED4DA;
    border-radius: 2px;
    padding: 18px 16px;
    margin-bottom: 24px;
    display: flex;
    cursor: pointer;
}

.mb-43 {
    margin-bottom: 43px;
}

/* Blink animation */

.e-danger-blink {
    animation: dangerColorChange 0.5s infinite alternate;
    border-radius: 10px;
}

@keyframes dangerColorChange {
    0% {
        background-color: #ffe4e4;
    }

    100% {
        background-color: #ff9999;
    }
}

/* Edit event styles + Syncfusion tab borders */

#CommentContainer {
    height: 100%;
}


.e-tab .e-content {
    border: none;
    padding: 0;
}


    .e-tab .e-content > .e-item.e-active > .e-grid {
        border: 1px solid #DEE2E6;
        border-top: none;
        border-radius: 0 0 4px 4px;
        box-shadow: none;
    }


        .e-tab .e-content > .e-item.e-active > .e-grid > .e-gridheader,
        .e-tab .e-content > .e-item.e-active > .e-grid > .e-gridcontent {
            border: 0 !important;
        }

.e-tab .e-tab-header .e-toolbar-item .e-tab-wrap,
.e-tab .e-tab-header .e-toolbar-item:hover .e-tab-wrap,
.e-tab .e-tab-header .e-toolbar-item:focus .e-tab-wrap,
.e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-wrap {
    border-left: none !important;
    border-right: none !important;
}

.e-content.e-lib.e-touch {
    height: auto;
    border: 1px solid #DEE2E6;
    border-top: none;
    border-radius: 0 0 4px 4px;
}

.e-tab .e-tab-header .e-toolbar-item .e-tab-text,
.e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-text {
    color: rgba(0, 0, 0, 0.5);
    font-size: 13px !important;
    font-weight: 600 !important;
}


/*thead tr:first-child th:nth-child(1) {
    width: 50%;
}*/
/* the colspan cell */
/*thead tr:first-child th:nth-child(2) {
    width: 10%;
}

thead tr:first-child th:nth-child(3) {
    width: 10%;
}*/







.e-control.e-textarea.e-lib {
    width: 31.15em;
    height: 6.14em
}

@media screen and (max-width: 700px) {
    .e-dialog .e-dlg-content {
        padding: 0;
    }

    .e-recurrenceeditor .e-editor > div {
        margin-top: 0;
    }

    .p-30 {
        padding-left: 18px;
    }

    .custom-menu-none {
        display: none;
    }

    .md-fixed-top {
        position: fixed;
        top: 0;
    }


    .container-custom {
        padding-left: -60px;
    }

   /* .hide-customer-text {
        display: none;
    }*/



    .custom-position {
        top: 32px;
        left: 0;
    }


    .custom-shadow-under {
        left: 0;
    }



    .container-customer {
        margin-bottom: 20px;
    }
}

.bottom-23 {
    bottom: 22px;
    right: 24px;
}

.textarea {
    width: 100% !important;
    height: 110px ;
}

.e-listbox-container {
    font-family: Poppins;
}

    .e-listbox-container:not(.e-listboxtool-container):not(.e-sortableclone) {
        border-color: #CED4DA !important;
        border-radius: 4px;
    }

    .edit-group.e-listbox-container:not(.e-list-template) .e-list-item {
        height: 52px !important;
        border-bottom: 1px solid #CED4DA;
    }
    .edit-group.e-listbox-container:not(.e-list-template) .e-list-item:last-child {
        border: none;
    }

.edit-user-dialog :is(.e-input-group, .e-input-group.e-control-wrapper) {
    border-radius: 2px;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 20px;
    background: #6C757D;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}


.e-input,
.e-dropdownlist,
.e-datepicker,
.e-timepicker,
.e-datetimepicker,
.e-colorpicker,
.e-numerictextbox,
.e-autocomplete,
.e-combobox {
    color: #51545C !important;
}

.e-dlg-container {
    padding: 5px !important;
}
