﻿/*
    This file is to show how CSS and other static resources (such as images) can be
    used from a library project/package.
*/

@font-face {
    font-family: 'open_sansbold';
    src: url('open-iconic/font/fonts/opensans-bold-webfont.woff2') format('woff2'), url('open-iconic/font/fonts/opensans-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'open_sansregular';
    src: url('open-iconic/font/fonts/opensans-regular-webfont.woff2') format('woff2'), url('open-iconic/font/fonts/opensans-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'open_sanssemibold';
    src: url('open-iconic/font/fonts/opensans-semibold-webfont.woff2') format('woff2'), url('open-iconic/font/fonts/opensans-semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

a {
    color: #D8292F;
}

    a:hover {
        text-decoration: none;
        color: #B52327;
    }

.nav.flex-column .nav-item a {
    padding: 0.75em 1em;
    color: initial;
    border-left: 5px solid transparent;
}

.nav.flex-column .nav-item.active a {
    border-color: red;
    font-weight: 600;
}

.main {
    flex: 1;
}

    .main .banner {
        background-color: #f3f3f3;
        background-image: url('https://images.unsplash.com/photo-1635301043416-70f8a4ec0204?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
        background-size: cover;
        background-position-y: bottom;
        color: #fff;
    }

    .main section {
        margin: 20px 0 40px 0;
    }

    .main h1, .bold {
        font-family: open_sansbold
    }

    .main h2, .main h3, .main h4, .semi-bold {
        font-family: open_sanssemibold;
    }

    .main h1 {
        font-size: 32px;
    }

    .main h2 {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .main h3 {
        font-size: 16px;
    }

.page-logo {
    height: 35px;
}

.black-background {
    background-color: black;
}

.page-header {
    display: flex;
    justify-content: space-between;
}

    .page-header .hamburger-button {
        background-color: transparent;
        border: none;
    }
    .page-header .hamburger-icon {
        width: 1.5rem;
        height: 1.5rem;
        color: black;
    }

.initializing-display {
    margin: 0 auto;
    padding: 25vh 0;
}

.spinner {
    margin: 0 auto;
    width: 120px;
    height: 120px;
    background: url('Images/loader.svg') no-repeat;
    background-size: cover;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.spinner-label {
    margin-top: 30px;
    text-align: center;
}


.header-help-button {
    background-position: center;
    width: 25px;
    height: 20px;
    background-repeat: no-repeat;
    background-image: url("Images/help.svg");
    cursor: pointer;
}

.ehr-breadcrumb {
    background-color: white;
    margin: auto;
    padding-left: 0;
    padding-bottom: 20px;
}

.page-footer {
    background-color: black;
    color: white;
    padding: 10px;
}

    .page-footer a {
        color: white;
    }

.page-footer-help {
    cursor: pointer;
}

.blazor-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.blazor-modal-section:not(:last-child) {
    padding-bottom: 20px;
}

.blazor-modal-content {
    max-width: 665px;
    margin: auto;
    margin-top: 7%;
    background-color: white;
    /*border-radius: 20px;*/
    -webkit-box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
    -moz-box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
    box-shadow: 6px 4px 38px -21px rgba(0,0,0,0.75);
    overflow: hidden;
    padding: 10px;
}

.show {
    display: block;
    animation-name: show-animation;
    animation-duration: 0.5s;
}

@keyframes show-animation {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.hide {
    display: none!important;
}

.blazor-modal-header {
    padding: 10px 15px 10px 10px;
    color: black;
}

.blazor-modal-title {
    margin: 5px;
    display: inline-block;
}

.blazor-modal-close-button {
    float: right;
    /* margin: 2px -13px; */
    cursor: pointer;
    color: black;
    font-size: 20px;
    background: url(Images/Close.svg) no-repeat;
    display: block;
    background-size: 25px 25px;
    width: 25px;
    height: 25px;
    position: relative;
    z-index: 10;
}

    .blazor-modal-close-button:hover {
        color: #000000;
    }

.blazor-modal-body {
    padding-bottom: 20px;
}

.blazor-modal-footer {
    /* background-color: purple;*/
    padding: 13px;
    min-height: 70px;
}
/*---Card---*/
.card {
    box-shadow: 0 0 4px #c2bdbd;
    border-radius: 5px;
    padding: 0;
}

.card-logo {
    width: 38%;
}

.card-title {
    margin-bottom: 0;
}

.card-header {
    background-color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.view-btn {
    font-size: 16px;
    font-weight: 600;
    color: #E0575C;
    cursor: pointer;
    display: flex;
}

    .view-btn > .view-btn-arrow {
        background-position: center;
        width: 20px;
        background-repeat: no-repeat;
        /* -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);*/
        margin-left: 5px;
    }

.view-btn-arrow.view-more {
    background-image: url("Images/angle-expand.svg");
}

.view-btn-arrow.view-less {
    background-image: url("Images/angle-collapse.svg");
}

.card-head-title {
    font-family: open_sanssemibold;
    font-weight: 500;
    font-size: 18px;
}
/*---End Card---*/

/*---Custom MultiSelect Component */


.custom-multi-select {
    position: relative;
    user-select: none;
    width: 100%;
}

.multi-select-container {
    position: relative;
}

    .multi-select-container label {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.2s ease;
        pointer-events: none;
        font-size: 16px;
        color: gray;
        margin-left: 10px;
    }

    .multi-select-container .label-active {
        top: 40%;
        transform: translateY(-110%) !important;
        font-size: 12px;
        color: grey;
        margin-left: 10px;
    }

    .multi-select-container .selected-value {
        width: 100%;
        height: 50px;
        padding-left: 10px;
        cursor: pointer;
        border: 1.5px solid #E6E6E5;
        flex-shrink: 0;
    }

.input-section-select .multi-select-container input[type ="text"]:focus {
    outline: none;
    border: 1.5px solid #E6E6E5;
}

.input-section-select .multi-select-container:focus-within:before {
    border: 1.5px solid #E6E6E5;
    border-right-style: none;
    background-color: white;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}


.input-section-select .multi-select-container:before {
    content: url("Images/angle-expand-black.svg");
    border-left: none;
    border: 1px solid #E6E6E5;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: #E6E6E6;
    padding: 13px 15px;
    pointer-events: none;
    fill: black;
}

.multi-menu-dropdown {
    display: none;
    position: absolute;
    width: 100%;
    border: 1px solid #ccc;
    background-color: white;
    z-index: 1;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

    .multi-menu-dropdown.visible{
        display: block;
    }

.option-input {
    display: flex;
    align-items: center;
    padding: 4px 8px;
    border-bottom: 1px solid #E6E6E5;
    margin-top: 10px;
}

    .option-input .option-check {
        margin-right: 8px;
    }

    .option-input > span {
        margin-left: 5px;
        margin-right: 5px;
    }

    .option-input > input[type=checkbox] {
        display: none;
    }

.custom-label {
    display: flex;
    padding-bottom: 5px
}

.custom-label .custom-checkbox {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 12px;
    border: 1.5px solid #E6E6E5;
    cursor: pointer;
}

    .custom-label .custom-checkbox::before {
        content: '\2713';
        opacity: 0;
        color: white;
    }

    .custom-label .custom-option{
        margin-left: 5px;
    }

.option-input > input[type="checkbox"]:checked + .custom-label .custom-checkbox {
    background-color: #00778f;
}

.option-input > input[type="checkbox"]:checked + .custom-label .custom-checkbox::before {
    opacity: 1;
}
        
/*---End CustomMultiSelect Component */


/*----Custom Checkbox-Radio ----*/
.check-radio-wrapper {
    display:flex;
    flex-direction:column;
}

.hidden-radio {
    position: absolute;
    opacity: 0;
    width:20px;
    height:20px;
    margin: 0;
    cursor: pointer;
    vertical-align:middle;
}

.custom-radio-checkbox {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    vertical-align: middle;
}

/*.custom-radio-check-option .custom-radio-checkbox::before {
    
}
*/
.custom-radio-check-option > input[type="radio"]:checked + .custom-radio-checkbox {
    background-color: #00778f;
}

    .custom-radio-check-option > input[type="radio"]:checked + .custom-radio-checkbox::before {
        content: '\2713';
        opacity: 1;
        color: white;
    }

/*---- End Custom Checkbox-Radio ----*/

/*--- Custom Check Box---*/

.custom-checkbox-input {
    display: flex;
    padding-bottom: 5px
}

.hidden-check {
    position: absolute;
    opacity: 0;
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    vertical-align: middle;
}

.custom-checkbox-input .custom-checkmark-checkbox {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    vertical-align: middle;
}

.custom-checkbox-input .custom-checkbox-option {
    margin-left: 5px;
}

.custom-checkbox-container > input[type="checkbox"]:checked + .custom-checkbox-input .custom-checkmark-checkbox {
    background-color: #00778f;
    transition: all 0.3s ease-out;
    
}

    .custom-checkbox-container > input[type="checkbox"]:checked + .custom-checkbox-input .custom-checkmark-checkbox::before {
        content: '\2713';
        opacity: 1;
        color: white;
    }
/*--- End Custom Check Box---*/


/*---Multi Select Dropdown---*/
.multi-select-dropdown {
    position: relative;
    display: inline-block;
}

.multi-select-dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 1;
}

.multi-select-dropdown:hover .multi-select-dropdown-content {
    display: block;
}
/*---End Multi Select Dropdown---*/
/*---Input Text---*/

.input-section, .input-section-multi {
    position: relative;
    overflow: hidden;
    width: 100%;
}

    .input-section > .input-section-select > select,
    .input-section > input[type="text"],
    .input-section > input[type="number"],
    .input-section > textarea {
        width: 100%;
        height: 100%;
        outline: none;
        font-size: 16px;
    }

    .input-section > input[type="text"],
    .input-section > input[type="number"] {
        padding-top: 15px;
        padding-bottom: 8px;
        padding-left: 10px;
    }

    .input-section > .input-section-select > select {
        padding-top: 15px;
        padding-bottom: 8px;
        padding-left: 7px;
        background-color: #ffffff;
    }

    .input-section > textarea {
        padding-top: 15px;
        padding-bottom: 0px;
        padding-left: 10px;
        resize: none;
    }

.input-section-select {
    position: relative;
}

.input-section-select > select,
.input-section-select > .rz-dropdown {
    border: none;
    -webkit-appearance: button;
}

.input-section-select > select.select-disabled {
    -webkit-appearance: none;
}

.input-section-select:before {
    content: url("Images/angle-expand-black.svg");
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: #E6E6E6;
    padding: 13px 15px;
    pointer-events: none;
    fill: black;
}

.input-section label {
    position: absolute;
    bottom: 0px;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    pointer-events: none;
    border: 1px solid #E6E6E5;
}

.input-section > label.label-multi-select {
    position: absolute;
    bottom: 0px;
    top: -5px;
    left: 0px;
    height: 100%;
    width: 100%;
    pointer-events: none;
    border: none;
}

.input-section label::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0%;
    bottom: 0px;
    top: 0px;
    /*border:2px solid blue;*/
    transform: translate(-100%);
    transition: transform 0.3s ease;
}

.content-text {
    position: absolute;
    bottom: 10px;
    left: 10px;
    transition: all 0.2s ease;
    color: #4b4f54;
}

.content-text-textarea {
    bottom: 30px !important;
}

.input-section input:focus + .label-text .content-text,
.input-section .update + .label-text .content-text {
    transform: translateY(-95%);
    font-size: 12px;
    color: grey;
}

.input-section textarea:focus + .label-text .content-text {
    transform: translateY(-110%) !important;
    font-size: 12px;
    color: grey;
}

.input-section textarea.update + .label-text .content-text {
    transform: translateY(-110%) !important;
    font-size: 12px;
    color: grey;
}

.input-section select.update + .label-text .content-text {
    transform: translateY(-85%) !important;
    font-size: 12px;
    color: grey;
}

.input-section select:focus + .label-text .content-text {
    transform: translateY(-85%) !important;
    font-size: 12px;
    color: grey;
}


.input-section .rz-dropdown.update + .label-text .content-text,
.input-section .rz-dropdown:focus + .label-text .content-text {
    transform: translateY(-88%) !important;
    margin-bottom: 4px;
    font-size: 12px;
    color: grey;
}

.input-section .rz-dropdown.update label.rz-inputtext,
.input-section .rz-dropdown.focus label.rz-inputtext {
    margin-left: 10px;
    margin-top: 5px;
    color: black;
    border: none
}

.input-section input:focus + .label-text::after, .input-section input:valid + .label-text::after,
.input-section textarea:focus + .label-text::after, .input-section textarea:valid + .label-text::after {
    transform: translate(0%);
}

.rz-multiselect-trigger,
.rz-dropdown-trigger {
    width: 43px;
    justify-content: center;
}

.rz-dropdown-clear-icon:before {
    content: 'close';
    transform: translateX(-20px);
    background-color: #E6E6E5;
}

.input-section-select:focus-within:before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.rz-dropdown:focus .rz-dropdown-trigger-icon {
    -webkit-transform: rotate( 180deg) translate(-8px);
    -ms-transform: rotate(180deg) translate(-8px);
    transform: rotate( 180deg) translate(-8px);
}

.input-section select:focus + .label-text::after, .input-section select:valid + .label-text::after,
.input-section .rz-dropdown:focus + .label-text::after, .input-section .rz-dropdown:valid + .label-text::after {
    transform: translate(0%);
}

input[type=date]:required:invalid::-webkit-datetime-edit {
    color: transparent;
}

/*to make the multi-select list items wrap on mobile*/
li.rz-multiselect-item {
    white-space: unset !important;
}
/*---End Input Text---*/

.confirm-dialod-content {
    margin-top: 50%;
}

.confirm-dialog-modal {
    background-color: rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 576px) {
    .invisible-on-mobile {
        display: none;
    }
}


.modal-scrollable-body .form {
    max-height: 60vh;
    overflow-y: scroll;
    overflow-x: hidden;
}

.btn-img {
    cursor: pointer;
}

.btn-img-close {
    transform: scale(0.6);
}

.styled-message {
    display: flex;
    margin: 20px 0;
    padding: 20px 20px 20px 0px;
    font-weight: 500;
    width: 100%;
}

.styled-message-icon {
    background-position: center;
    width: 50px;
    height: 25px;
    background-repeat: no-repeat;
    display: flex
}

.styled-message-content {
    padding-top: 5px;
}

.styled-message-information {
    border-left: 7px solid #005078;
    background-color: #F1F7FB;
}

.styled-message-icon-information {
    background-image: url("Images/info_icon_24x24.svg");
    margin: 10px;
    padding: 10px;
}

.styled-message-success {
    border-left: 7px solid #108C0C;
    background-color: #F3F9F3;
}

.styled-message-icon-success {
    background-image: url("Images/success_icon_24x24.svg");
    margin: 10px;
    padding: 10px;
}

.styled-message-warning {
    border-left: 7px solid #E89B20;
    background-color: #FFFCF2;
}

.styled-message-icon-warning {
    background-image: url("Images/warning_icon_24x24.svg");
    margin: 10px;
    padding: 10px;
}

@media (max-width:767.98px) {
    .header-profile-id {
        display: none;
    }
}

.custom-file .loading {
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background-color: #f9f9f9;
}

    .custom-file .loading span {
        position: absolute;
        top: 12px;
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background: #005078;
        animation-timing-function: cubic-bezier(0, 1, 1, 0);
    }

        .custom-file .loading span:nth-child(1) {
            left: 8px;
            animation: custom-file-loading1 0.6s infinite;
        }

        .custom-file .loading span:nth-child(2) {
            left: 8px;
            animation: custom-file-loading2 0.6s infinite;
        }

        .custom-file .loading span:nth-child(3) {
            left: 32px;
            animation: custom-file-loading2 0.6s infinite;
        }

        .custom-file .loading span:nth-child(4) {
            left: 56px;
            animation: custom-file-loading3 0.6s infinite;
        }

@keyframes custom-file-loading1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes custom-file-loading3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes custom-file-loading2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}

.ellipsis-overflow {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.circlebackground {
    min-width: 26px;
    width: 26px;
    height: 26px;
    background: #F01428;
    border-radius: 26px;
    color: white;
    font-size: 11px;
    text-align: center;
    padding-top: 5px;
    margin-right: 10px;
}

/* Custom Form */
.custom-form-content .validation-errors {
    background-color: #FFFCF2;
    background-image: url("Images/warning_icon_24x24.svg");
    background-repeat: no-repeat;
    background-position-x: 15px;
    background-position-y: 20px;
    margin: 20px auto;
    padding: 20px;
    padding-left: 65px;
    border-left: 5px solid #FFCF00;
    list-style: none;
}

.custom-form-content .loading-icon-hidden {
    display: none;
}

.rz-notification {
    word-break: break-word;
    font-family: 'Open Sans', sans-serif;
}

.rz-growl-item-container {
    background-color: transparent;
}

.rz-growl-title {
    display: none;
}

.rz-growl-item {
    border-radius: 12px;
}

.rz-growl-image.rzi-info-circle:before {
    content: 'info_outline';
    color: #005078;
}

.rz-growl-image.rzi-check:before {
    color: #108C0C;
}

.rz-growl-image.rzi-times:before {
    content: 'warning_amber';
    color: #D8292F;
}

.rz-growl-image.rzi-exclamation-triangle:before {
    content: 'error_outline';
    color: #4B4F54;
}

.rz-growl-message-info .rz-growl-item {
    background-color: #DDE5E9;
    color: black;
}

.rz-growl-message-success .rz-growl-item {
    background-color: #E0EAE2;
    color: black;
}

.rz-growl-message-error .rz-growl-item {
    background-color: #F3E1E2;
    color: black;
}

.rz-growl-message-warn .rz-growl-item {
    background-color: #F7EFC5;
    color: black;
}

.rz-growl-icon-close:before {
    color: black;
    font-size: 16px;
    display: flex;
    margin-left: 8px;
}

.rz-growl-message p {
    display: flex;
    max-width: 224px;
    padding-left: 8px;
    padding-right: 8px;
}