﻿/* -------------------- Btn css -------------------- */
.btn {
    color: #000;
    background-color: transparent;
    border-radius: 10px;
    font-weight: 500 !important;
}

    .btn.focus, .btn:focus {
        box-shadow: none !important;
    }

    .btn.btn-primary {
        background-color: #0DD17F;
        border-color: #0DD17F;
    }

        .btn.btn-primary svg {
            fill: #fff;
            height: 22px;
        }

        .btn.btn-primary i {
            font-size: 18px;
            color: #fff;
        }

    .btn.btn-danger {
        color: #fff;
        background-color: #dc3545;
        border-color: #dc3545;
    }

        .btn.btn-danger svg {
            fill: #fff;
            height: 20px;
        }

        .btn.btn-danger i {
            font-size: 18px;
            color: #fff;
        }

    .btn.btn-grid {
        background: #e8e8e8;
    }

        .btn.btn-grid.active {
            background: #186860;
        }

        .btn.btn-grid svg {
            height: 18px;
            fill: #333;
        }

        .btn.btn-grid.active svg {
            fill: #fff;
        }

    .btn.btn-copy {
        font-size: 13px;
        border: 1px solid #006cb7;
        color: #006cb7;
    }

    .btn.btn-secondary {
        background: #0b81fe;
        border-color: #0b81fe;
        color: #fff;
    }

        .btn.btn-secondary svg {
            fill: #fff;
            height: 22px;
        }

    .btn.btn-default {
        background: #ffffff;
        /*border-color: #e0e2e5;*/
        color: #333;
        border-radius: 5px;
    }

        .btn.btn-default svg {
            fill: #333;
            height: 22px;
        }


    .btn.btn-with-border {
        background: #fff;
        border: 1px solid #757575;
    }

        .btn.btn-with-border svg {
            fill: #757575;
            height: 22px;
        }
/* -------------------------------------- */


/*-------------------- Radio --------------------*/
.radio-main {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.form-radio {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .form-radio label {
        margin: 0;
    }

.radio-main label {
    margin: 0;
}
/* -------------------------------------- */


/*-------------------- Check Box --------------------*/
.fillable-checkbox input[type=checkbox] + label {
    display: block;
    cursor: pointer;
    width: max-content;
}

.fillable-checkbox input[type=checkbox] {
    display: none;
}

    .fillable-checkbox input[type=checkbox] + label:before {
        content: "\2714";
        border: 0.1em solid #000;
        border-radius: 0.2em;
        display: inline-block;
        width: 1.5em;
        height: 1.5em;
        padding-left: 0.3em;
        padding-bottom: 0.3em;
        margin-right: 0.7em;
        vertical-align: bottom;
        color: transparent;
        transition: .2s;
    }

    .fillable-checkbox input[type=checkbox] + label:active:before {
        transform: scale(0);
    }

    .fillable-checkbox input[type=checkbox]:checked + label:before {
        background-color: #1f445e;
        border-color: #1f445e;
        color: #fff;
    }

    .fillable-checkbox input[type=checkbox]:disabled + label:before {
        transform: scale(1);
        border-color: #aaa;
    }

    .fillable-checkbox input[type=checkbox]:checked:disabled + label:before {
        transform: scale(1);
        background-color: #E2E2E2;
        border-color: #E2E2E2;
    }

.fillable-checkbox {
    padding-top: 6px;
}
/* -------------------------------------- */


/*-------------------- Toggle btn --------------------*/
.switch label {
    cursor: pointer;
    font-weight: 400;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 13px;
    overflow: visible !important;
}

.switch-text {
    margin-top: 3px;
    position: absolute;
    margin-left: -20px;
}

.switch label .lever:after {
    content: "";
    position: absolute;
    display: inline-block;
    background-color: #f1f1f1;
    -webkit-border-radius: 1.3125rem;
    border-radius: 1.3125rem;
    left: -0.3125rem;
    top: -0.1875rem;
    -webkit-box-shadow: 0 0.0625rem 0.1875rem 0.0625rem rgba(0, 0, 0, 0.4);
    box-shadow: 0 0.0625rem 0.1875rem 0.0625rem rgba(0, 0, 0, 0.4);
    width: 1.3125rem;
    height: 1.3125rem;
    -webkit-transition: left 0.3s ease, background 0.3s ease, -webkit-box-shadow 1s ease;
    transition: left 0.3s ease, background 0.3s ease, -webkit-box-shadow 1s ease;
    -o-transition: left 0.3s ease, background 0.3s ease, box-shadow 1s ease;
    transition: left 0.3s ease, background 0.3s ease, box-shadow 1s ease;
    transition: left 0.3s ease, background 0.3s ease, box-shadow 1s ease, -webkit-box-shadow 1s ease;
}

.switch label .lever {
    content: "";
    display: inline-block;
    position: relative;
    background-color: #818181;
    -webkit-border-radius: 0.9375rem;
    border-radius: 0.9375rem;
    margin-right: 0.625rem;
    vertical-align: middle;
    margin: 0 1rem;
    width: 2.5rem;
    height: 0.9375rem;
    -webkit-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
    transition: background 0.3s ease;
    margin-left: 8px;
    margin-right: 8px;
}

.switch label input[type=checkbox] {
    opacity: 0;
    width: 0;
    height: 0;
}

    .switch label input[type=checkbox]:checked + .lever {
        background-color: #7db4da;
    }

        .switch label input[type=checkbox]:checked + .lever:after {
            background-color: #006bb7 !important;
            left: 1.5rem;
        }
/* -------------------------------------- */

/*-------------------- Inputs btn --------------------*/

.model-inp {
    position: relative;
    margin: auto;
    width: 100%;
    margin-bottom: 15px;
}

.model-inp label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    margin: 0;
}

    .model-inp input {
        width: 100%;
        padding: 8px 12px;
        font-size: 12px;
        font-weight: 500;
        border: 1px solid #cccccc;
        border-radius: 5px;
        color: #757575;
        transition: all 0.15s ease;
    }

    .model-inp textarea {
        width: 100%;
        padding: 8px 12px;
        font-size: 13px;
        font-weight: 500;
        border: 1px solid #cccccc;
        border-radius: 10px;
        color: #757575 !important;
        transition: all 0.15s ease;
        resize: none;
    }


    .model-inp select {
        width: 100%;
        padding: 7px 12px 8px 12px;
        font-size: 12px;
        font-weight: 500;
        border: 1px solid #cccccc;
        border-radius: 5px;
        color: #757575;
        transition: all 0.15s ease;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'><path fill='%237a7f8c' d='M31.3 192h257.3c28.4 0 42.8 34.5 22.6 54.6l-128.6 128c-12.5 12.5-32.8 12.5-45.3 0l-128.6-128c-20.2-20.1-5.8-54.6 22.6-54.6z'/></svg>");
        background-color: #fff;
        background-position: right 10px top 48%;
        background-size: 12px 12px;
        background-repeat: no-repeat;
        cursor: pointer;
    }

        .model-inp select option {
            font-size: 14px;
            background-color: #f0f8ff;
            color: #000000;
            font-weight: 400;
        }

    .model-inp input[type="color"] {
        height: 35px;
        width: 100%;
        padding: 4px 8px;
    }

    .model-inp optgroup {
        font-size: 14px;
        background: #f1f1f1;
        text-transform: uppercase;
        color: #343a40;
    }

    .model-inp input[type="file"] {
        padding: 5px 10px;
    }

.searchCancel {
    position: absolute;
    right: 10px;
    top: 34px;
    font-size: 14px;
    color: #747474;
}

.alt-model-inp {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 12px;
    color: #757575 !important;
    font-weight: 500;
}

.select-city-dd select {
    background-color: rgba(255, 255, 255, 0.9);
    width: 100%;
    padding: 5px;
    border: 1px solid #f2f2f2;
    border-radius: 2px;
    height: 3rem;
    /*display: none;*/
}

.select-city-dd .select-wrapper {
    position: relative;
}

.dropdown-content.select-dropdown {
    position: absolute;
    width: 100% !important;
    top: 36px !important;
    height: fit-content !important;
    max-height: 250px !important;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    background-color: #fff;
    display: none;
    opacity: 0;
    z-index: 1002;
}

.select-city-dd .select-dropdown.dropdown-content li.selected {
    background-color: rgba(0, 0, 0, 0.03);
}

.select-city-dd .dropdown-content li {
    list-style-type: none;
    clear: both;
    color: #000;
    cursor: pointer;
    line-height: 1.3rem;
    width: 100%;
    text-align: left;
    text-transform: none;
    padding: 0 10px;
}

    .select-city-dd .dropdown-content li > a, .select-city-dd .dropdown-content li > span {
        font-size: 0.9rem;
        color: #4285f4;
        display: block;
        padding: 0.5rem 0;
    }

.select-city-dd .select-wrapper input {
    padding: 8px 26px 8px 12px;
    overflow: hidden !important;
    text-overflow: ellipsis;
    cursor: pointer;
}
.select-city-dd .select-wrapper .caret {
    position: absolute;
    right: 2px;
    top: 5px;
    bottom: 0;
    margin: 0;
    z-index: 0;
    fill: rgba(0, 0, 0, 0.87);
    background-color: #ffffff;
    display: none;
}

.select-city-dd .select-wrapper::after {
    content: '\f0dd';
    font-family: "FontAwesome";
    position: absolute;
    right: 12px;
    top: 44%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #7a7f8c;
    pointer-events: none;
}

.multiselectAddDropdown .select-wrapper input {
    padding: 8px 60px 8px 12px;
}
.multiselectAddDropdown .select-wrapper .caret {
    position: absolute;
    right: 38px !important;
    top: 5px;
    bottom: 0;
    margin: 0;
    z-index: 0;
    fill: rgba(0, 0, 0, 0.87);
    background-color: #ffffff;
    display: none;
}

.multiselectAddDropdown .select-wrapper::after {
    content: '\f0dd';
    font-family: "FontAwesome";
    position: absolute;
    right: 50px;
    top: 44%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #7a7f8c;
    pointer-events: none;
}

.select-city-dd .disabled, .select-city-dd :disabled {
    pointer-events: none !important;
}

.select-city-dd.dropdowncheckbox select {
    display: none;
}

.dropdowncheckbox .select-wrapper ul {
    background-color: #f0f8ff !important;
}

.queue-col-select {
    display: flex !important;
    align-items: center;
    padding: 0 10px;
}
/* -------------------------------------- */
/*-------------------- Table Grid --------------------*/

.soft-ui-table {
    /*overflow: hidden;*/
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

    .soft-ui-table thead {
        background-color: #081E32;
    }
        .soft-ui-table thead tr th {
            vertical-align: middle;
        }

        .soft-ui-table thead tr th, .soft-ui-table thead tr th a {
            color: white;
            font-weight: normal;
            font-size: 12px;
            text-decoration: none;
        }


        .soft-ui-table thead td, .soft-ui-table thead th {
            padding-top: 7px;
            padding-bottom: 7px;
        }

    .soft-ui-table tbody td, .soft-ui-table tbody th {
        padding-top: 4px;
        padding-bottom: 4px;
        vertical-align: middle;
        font-size: 12px;
    }

    .soft-ui-table tbody {
        box-shadow: inset 0 0 1px #081e32;
        background-color: white;
    }


.popup-table thead {
    background: #dddddd;
}

    .popup-table thead th {
        color: #333 !important;
        font-weight: 600 !important;
    }

.table.soft-ui-table tbody tr:hover {
    background: #f9f9f9;
}

.table-icons {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 5px;
}

    .table-icons svg {
        height: 18px;
        fill: #2e4051;
    }

    .table-icons img {
        height: 20px;
        fill: #2e4051;
    }

.soft-ui-table tbody td:last-child {
    /*display: flex;*/
    /*justify-content: end;*/
    /*width: 100%;*/
}

.table.soft-ui-table td:last-child .text-right {
    /*display: flex;
    align-items: center;
    justify-content: end;
    gap: 5px;*/
}

.table.soft-ui-table td:last-child svg {
    height: 18px;
    fill: #2e4051;
}

.table.soft-ui-table td:last-child img {
    height: 20px;
    fill: #2e4051;
}

.soft-ui-table thead tr th .character-counter {
    display: none;
}

/* -------------------------------------- */

/*-------------------- Paging --------------------*/

.pageshowing {
    position: absolute;
    bottom: 24px;
    font-size: 12px;
    left: 20px;
    color: #757575;
}

.pageshowingInner {
    position: absolute;
    bottom: 7px;
    font-size: 12px;
    left: 20px;
    color: #757575;
}

.paging-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
    position:relative;
}

    .paging-nav a {
        font-size: 12px;
        color: #757575;
        width: 25px;
        height: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 20px;
    }

        .paging-nav a.pagerButtonCurrentPage {
            color: #ffffff;
            background: #25313e;
        }


        .paging-nav a:hover:not(.active) {
            background-color: #25313e;
            color: #fff;
        }

/* -------------------------------------- */
/*==========audio==========*/
audio {
    height: 36px;
}


.show-pass {
    position: absolute;
    top: 20%;
    right: 15px;
    font-size: 14px;
    transform: translate(0%, 0%);
}

    .show-pass i {
        color: #081E32;
    }

.model-show-pass {
    position: absolute;
    top: 53%;
    right: 15px;
    font-size: 14px;
    transform: translate(0%, 0%);
}
    .model-show-pass i {
        color: #081E32;
    }

    .fa-eye:before {
        content: "\f06e";
    }

.fa-eye-slash:before {
    content: "\f070" !important;
}

/*=====datepicker*/

.ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
    left: 4px;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-next {
    right: 15px;
}

/*.ui-datepicker-header .ui-corner-all {
    background-color: #ffffff;
}*/
.ui-datepicker .ui-datepicker-header .ui-corner-all:hover {
    color: #ffffff !important;
}

.ui-datepicker .ui-datepicker-header .ui-corner-all .ui-icon {
    font-size: 13px;
    width: unset;
    height: unset;
    text-indent: unset;
    cursor: pointer;
}

.ui-datepicker .ui-datepicker-header .ui-state-hover, .ui-datepicker .ui-datepicker-header .ui-state-focus {
    background: unset !important;
    border: 0px !important;
    font-weight: unset !important;
}


/*============== Loader =============*/
.preloader {
    width: 100%;
    height: 100%;
    position: fixed;
    background: #fff;
    z-index: 11111;
    text-align: center;
    opacity: .80;
}

.preloader_inner {
    position: absolute;
    left: 45%;
    top: 35%;
    text-align: center;
}

.loader {
    border: 3px solid #d6336c;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border-left-color: transparent;
    border-right-color: transparent;
    animation: rotate 2s cubic-bezier(0.26, 1.36, 0.74, -0.29) infinite;
}

.loader_level1 {
    /*border: 3px solid #d14349;*/
    border: 3px solid #158fb8;
    width: 160px;
    position: absolute;
    top: 30px;
    left: 30px;
    height: 160px;
    border-radius: 50%;
    border-left-color: transparent;
    border-right-color: transparent;
    animation: rotate 2s cubic-bezier(0.26, 1.36, 0.74, -0.29) infinite;
}

.loader_level2 {
    border: 3px solid #3da57a;
    width: 180px;
    height: 180px;
    position: absolute;
    top: 20px;
    border-left-color: transparent;
    border-right-color: transparent;
    animation: rotate2 2s cubic-bezier(0.26, 1.36, 0.74, -0.29) infinite;
    left: 20px;
}

.loader_level3 {
    /*border: 3px solid #d14349;*/
    border: 3px solid #158fb8;
    width: 200px;
    height: 200px;
    position: absolute;
    top: 10px;
    left: 10px;
    border-left-color: transparent;
    border-right-color: transparent;
    animation: rotate 2s cubic-bezier(0.26, 1.36, 0.74, -0.29) infinite;
}

.loader_level4 {
    border: 3px solid #3da57a;
    width: 220px;
    height: 220px;
    position: absolute;
    top: 0;
    left: 0;
    border-left-color: transparent;
    border-right-color: transparent;
    animation: rotate2 2s cubic-bezier(0.26, 1.36, 0.74, -0.29) infinite;
}

@keyframes rotate {
    0% {
        transform: rotateZ(-360deg);
    }

    100% {
        transform: rotateZ(0deg);
    }
}

@keyframes rotate2 {
    0% {
        transform: rotateZ(360deg);
    }

    100% {
        transform: rotateZ(0deg);
    }
}

.pharmCRMLoaderImage {
    width: 90px;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(70%, 95%);
}