﻿@import url('fontawesome/css/all.min.css');

:root {
    --clinics-primary: #04799A;
    --fa-primary-color: #04799A;
    --fa-secondary-color: lightgray;
}

.top-row {
    background-color: var(--clinics-primary);
}

html, body {
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}

h1.page-header {
    margin-bottom: 1.5rem;
}

.btn-bw:disabled {
    opacity: .25;
}

.btn-gray,
.btn-gray:disabled:hover {
    color: darkgray;
}

.btn-gray:hover {
    color: black;
}

.page {
    overflow: hidden;
}

.shimmer {
    animation: shimmer 2s infinite;
    background: linear-gradient(to right, #eff1f3 4%, #e2e2e2 25%, #eff1f3 36%);
    background-size: 1000px 100%;
}

.shimmer-w400 {
    width: 400px;
}

.shimmer-w300 {
    width: 300px;
}

.shimmer-w200 {
    width:200px;
}

.shimmer-h1rem {
    height: 1rem;
}

.shimmer-h1-25rem {
    height: 1.25rem;
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.rz-dialog-wrapper .rz-dialog-content {
    flex: 1 1 auto;
}

.details-side-overlay-container {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    left: 100%;
    max-width: 700px;
    position: absolute;
    top: 3.5rem;
    transition: transform .2s ease-in;
    width: 55%;
    z-index: 600;
    height: calc(100vh - 3.5rem);
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    border: 1px solid #eeeeee;
}

    .details-side-overlay-container.active {
        transform: translateX(-100%);
        transition: transform .5s cubic-bezier(0.23, 1, 0.32, 1)
    }

.btn-dashboard-item-edit {
    padding: 0px;
    margin: -5px 0px 0px 5px;
    color: lightgray;
    opacity: 0;
}

    .btn-dashboard-item-edit:hover {
        opacity: 1;
    }

.form .row {
    margin-bottom: 16px;
}

.steps-button-row {
    margin-top: 1.5rem;
}

.steps-button-col {
    display:flex;
    justify-content: space-between;
}

.btn-w100 {
    width: 100px;
}

.btn-w150 {
    width: 150px;
}

.btn-w200 {
    width: 200px;
}

.acalta-fontawesome-duo {
    --fa-primary-color: #2AB0D6;
    --fa-secondary-color: dimgray;
}

.plandefinition-proposition-container .rz-g > div,
.rz-card.dashboard-selectable {
    border-width: 2px;
}

.plandefinition-proposition-container .rz-card.suggested {
    border-style: solid;
    border-color: var(--yellow);
}

.plandefinition-proposition-container .rz-card:hover,
.plandefinition-proposition-container .rz-card.suggested:hover,
.rz-card.dashboard-selectable:hover {
    cursor: pointer;
    border-style: solid;
    border-color: var(--clinics-primary);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem var(--primary);
    -webkit-box-shadow: 0 0 0 0.2rem var(--primary);
}


/*
html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

a, .btn-link {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}



.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}
    */
.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    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;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* ToolTips */
.tool-tip-container {
    position: relative;
}

    .tool-tip-container .tool-tip {
        visibility: hidden;
        padding: 5px 20px;
        background-color: var(--clinics-primary);
        color: white;
        border-radius: 6px;
        position: absolute;
        text-align: center;
        z-index: 9999999;
    }

.tool-tip-container .tool-tip-small {
    font-size:smaller;
    padding: 2.5px 5px;
}

.tool-tip-left {
    left: 0;
    top: 50%;
    transform: translateX(-100%) translateY(-50%);
}

.tool-tip-top {
    top: 0;
    left: 50%;
    transform: translateY(-100%) translateX(-50%);
}

.tool-tip-right {
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.tool-tip-bottom {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.tool-tip-container:hover .tool-tip {
    visibility: visible;
}

/* Subject in Appointments */
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-subject-wrap .e-subject,
.custom-event-editor .e-subject {
    cursor: default;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    max-height: 87px;
    background-color: rgba(4, 121, 154, 0.3);
    border-left: 6px solid #04799A;
    border-radius: 4px;
    padding: 8px;
}