﻿@font-face {
    font-family: iransans;
    src: url("../Resources/Fonts/IRANSansWeb.eot");
    src: url("../Resources/Fonts/IRANSansWeb.eot?#iefix") format("embedded-opentype"), url("../Resources/Fonts/IRANSansWeb.woff2") format("woff2"), url("../Resources/Fonts/IRANSansWeb.woff") format("woff"), url("../Resources/Fonts/IRANSansWeb.ttf") format("truetype");
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

/* Fazel */

.clear {
    clear: both;
}

.relative {
    position: relative;
}

.right {
    float: right;
}

.left {
    float: left;
}

.box {
    border: 1px solid #dee2e6;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.greenBox {
    border: 1px solid #3dac9642;
    padding: 5px;
    border-radius: 4px;
    background: #3dac9614;
    margin: 2px;
}

.warningBox {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
    padding: 15px;
    margin-bottom: 10px;
    margin-top: 10px;
    width: 100%;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}
/* column */

.column {
    width: calc(50% - 20px);
    float: right;
    min-height: 40vh;
    max-height: 40vh;
    overflow: hidden;
    padding: 0;
}

    .column .column-header {
        background-color: #9bcced;
        text-align: center;
        margin-bottom: 0;
        padding: 10px;
        font-weight: bold;
        height: 55px;
    }

    .column .column-body {
        max-height: 100%;
        overflow: auto;
        padding: 10px;
        height: calc(40vh - 100px);
    }

/* column */

/* notify */

.dvNotify {
    right: 110%;
    width: 30%;
    position: fixed;
    left: 0;
    bottom: 10%;
    padding: 0;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 0 3px #888;
    color: #fff;
    transition: all 0.2s;
    overflow: hidden;
    white-space: normal;
    z-index: 100;
}

    .dvNotify.show {
        padding: 10px;
        right: 70%;
    }

    .dvNotify.error {
        background-color: #ff6d6f;
        box-shadow: 5px 0px 10px #ff6d6f;
    }

    .dvNotify.success {
        background-color: #28a745;
        box-shadow: 5px 0px 10px #28a745;
    }

    .dvNotify .close {
        display: inline-block;
        padding: 0 10px;
        cursor: pointer;
        font-size: 1.1em;
        color: #c8c8c8;
    }

        .dvNotify .close:hover {
            color: #fff;
        }

/* notify */

.fazel li {
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    box-shadow: 2px -2px 3px #ddd;
    border: 1px solid #2a80b9;
}

    .fazel li:hover,
    .fazel li:active {
        background-color: #2a80b9;
        box-shadow: 0;
        color: #f5f6f7;
    }

/* Global */

* {
    box-sizing: border-box;
}

html {
    direction: rtl;
    width: 100%;
    height: 100vh;
}

.disabledBox {
    pointer-events: none;
    -filter: grayscale(0.6) !important;
    -opacity: 0.5;
}

div.dvContent {
    width: 100%;
    top: 0;
    bottom: 0;
    position: fixed;
    overflow: hidden;
    touch-action: none;
    left: 0px;
    transition: all 0.3s linear;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
}

select,
input,
button,
textarea {
    font-family: iransans, tahoma, Arial, Helvetica !important;
}

table {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
}

.SubLineTR {
    border-collapse: collapse;
    width: calc(50% - 80px);
    text-align: right;
    font-size: 1em;
    float: right;
    margin: 4px;
}

    .SubLineTR tr {
        border-bottom: solid 1px #dddddd;
    }

        .SubLineTR tr:last-child {
            border-bottom: none;
        }


.header {
    text-align: center;
    height: 55px;
    position: fixed;
    top: 0;
    width: calc(100% - 275px);
    z-index: 8;
    margin: 0;
    border-bottom: 1px solid #d2dae3;
    background: #fff;
    padding: 0 15px;
}

.header-center-txt {
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    text-wrap: nowrap;
    color: #495057;
}

.header .header-menu {
    display: flex;
    width: 100%;
    margin-top: 5px;
}

.header .header-menu-item {
    background-color: #99d6f1;
    border-radius: 20px;
    flex: 1;
    margin: 0 10px;
    padding-top: 5px;
}

    .header .header-menu-item:hover {
        background-color: #34aadc;
        cursor: pointer;
    }

    .header .header-menu-item.selected {
        background: linear-gradient(to right, #cfdef3, #e0eafc);
        cursor: default;
    }

    .header .header-menu-item i {
        width: 20px;
    }

    .header .header-menu-item p {
        margin: 0;
        font-size: 0.7em;
        margin-bottom: 5px;
    }

.view-current-title {
    float: right;
    margin: 0;
    line-height: 55px;
    letter-spacing: -1px;
    color: #2f4358;
    font-size: 1.5em;
    font-weight: 600;
    color: #00bd9c;
}

.view-action-buttons {
    float: left;
}

.top-links {
    height: 30px;
    background: linear-gradient(to left, #cfdef3, #e0eafc);
    margin-top: 55px;
    position: fixed;
    width: 100%;
    font-size: 12px;
    z-index: 8;
}

    .top-links .top-links-item {
        border-left: 1px solid #888;
        padding: 5px 15px;
        display: inline-block;
        line-height: 20px;
    }

        .top-links .top-links-item:hover {
            background: #99d6f1;
            cursor: pointer;
        }

.pageContent {
    transition: padding 0.2s linear;
    padding: 10px 80px;
    min-height: calc(100vh - 100px);
    overflow: auto;
    max-height: calc(100vh - 100px);
}

.labelCell {
    width: 1%;
    white-space: nowrap;
}

.limitedChars {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.header-text.offline {
    color: brown;
}

/* menu */

.menu-pnl-container.show {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
}

.menu-pnl-container.close {
    display: none;
}

.menu-pnl {
    position: fixed;
    overflow: auto;
    height: 100%;
    width: 100%;
    background-color: white;
    z-index: 10;
    left: 80px;
    transition: left 0.4s;
    padding-right: 50px;
    top: 0;
    box-shadow: 4px 0px 7px #888;
}

    .menu-pnl #menu-top {
        margin-right: 80px;
        text-align: center;
        padding-top: 10px;
    }

        .menu-pnl #menu-top img {
            border-radius: 50%;
            border-radius: 50%;
            max-height: 3cm;
        }

        .menu-pnl #menu-top .user-detail-label {
            width: 1%;
            white-space: nowrap;
            font-weight: bold;
            text-align: right;
            padding-right: 10px;
        }

#damageitem-details-table td {
    padding: 8px;
    font-size: 1em;
}

.menu-pnl.close {
    transition: left 0.4s;
    left: 100%;
}

.menu-pnl ul {
    margin-right: 80px;
    padding: 0;
}

    .menu-pnl ul li {
        background-color: #fff;
        line-height: 42px;
        margin: 0px;
        border-bottom: 1px solid #000000;
    }

        .menu-pnl ul li .menu-item {
            text-align: right;
            padding-right: 10px;
            font-size: 12px;
        }

        .menu-pnl ul li img {
            vertical-align: middle;
            filter: brightness(0.3);
            height: 18px;
        }

.menu-item {
    line-height: 35px;
}

/*Footer Menu*/

.footerMenuPane {
    position: absolute;
    width: 100%;
    background: white;
    z-index: 9;
}

    .footerMenuPane.open {
        transition: background-color 0.4s ease;
        background-color: rgba(0, 0, 0, 0.5);
        height: 100vh;
        top: 0px;
    }

    .footerMenuPane.close {
        transition: background-color 0.4s ease;
        background-color: rgba(0, 0, 0, 0);
        height: 0;
        top: 0;
    }

    .footerMenuPane .footerMenuItemsContainer {
        position: relative;
        overflow: hidden;
        width: 100%;
        background-color: white;
        overflow: auto;
    }

    .footerMenuPane.close .footerMenuItemsContainer .footerMenuItemsHeader {
        display: none;
    }

    .footerMenuPane .footerMenuItemsContainer .footerMenuItemsHeader {
        height: 30px;
        text-align: center;
        position: fixed;
        background-color: white;
        width: 100%;
    }

        .footerMenuPane .footerMenuItemsContainer .footerMenuItemsHeader img,
        #partialviews-ContractParties-types #close-footer-menu img {
            animation: MoveUpDownNotAbsolute;
            animation-duration: 2s;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
            transform: rotate(-90deg);
        }

        .footerMenuPane .footerMenuItemsContainer .footerMenuItemsHeader img {
            filter: invert(1) blur(1px);
        }

    .footerMenuPane .footerMenuItemsContainer .footerMenuItems {
        margin-top: 40px;
    }

    .footerMenuPane.open.full .footerMenuItemsContainer {
        top: 0;
        height: 100vh;
        transition: all 0.5s ease;
    }

    .footerMenuPane.open.half .footerMenuItemsContainer {
        top: 40vh;
        height: 60vh;
        transition: all 0.5s ease;
    }

    .footerMenuPane.close .footerMenuItemsContainer {
        top: 100vh;
        height: 0vh;
        transition: all 0.5s ease, height 0.4s ease;
    }

/* Front page*/

.frontpage-menu {
    margin: 20px;
    text-align: center;
    margin-top: 0;
}

/* #partialviews-frontpage .manu-item img {
    border-radius: 50%;
} */

.manu-item img {
    width: 100%;
}

.manu-item-image {
    width: 25%;
}

.menu-item-text {
    width: 75%;
    padding-right: 20px;
}

.hr {
    position: relative;
    border: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #34495e, transparent);
}

/* Profile */

#user-pic {
    margin: 10px;
    padding: 2px;
    background: white;
    border: solid 1px #dddddd;
    border-radius: 3px;
    width: 115px;
    height: 150px;
    float: right;
}

#user-details,
.user-details {
    padding: 10px;
}

    #user-details td,
    .user-details td {
        text-align: right;
        padding-right: 5px;
    }

.detail-item-label {
    width: 1%;
    white-space: nowrap;
    font-weight: bold;
}

.detail-item-value {
    padding-right: 5px;
}

#user-details tr:nth-child(odd),
.user-details tr:nth-child(odd) {
    background-color: white;
}

#user-details tr:nth-child(even),
.user-details tr:nth-child(even) {
    background-color: #e8ebee;
}

/* family */

#partialviews-family {
    overflow: hidden;
}

    #partialviews-family dd {
        margin: 0 10px 0 10px;
    }

.family-user-pic {
    width: 1cm;
}

    .family-user-pic img {
        width: 100%;
        vertical-align: middle;
        border-radius: 5px;
    }

.family-name {
    text-align: center;
}

#family-details-table td {
    text-align: right;
}

#family-details-table table {
    padding: 0;
}

.accordion dl,
.accordion-list {
    margin: 0;
}

.accordion dt {
    padding: 3px;
}

.accordionTitle {
    border-radius: 10px;
}

.accordion dd,
.accordion__panel {
    font-size: 1em;
    line-height: 1.5em;
    margin: 0;
}

.accordion p {
    padding: 1em 2em 1em 2em;
}

.accordion {
    position: relative;
}

.accordionTitle,
.accordion__Heading {
    background-color: white;
    text-align: right;
    font-weight: 700;
    padding: 0;
    display: block;
    text-decoration: none;
    color: #34495e;
    transition: background-color 0.5s ease-in-out;
    border: 1px solid #2980b9;
    position: relative;
}

    .accordionTitleActive,
    .accordionTitle.is-expanded {
        background-color: #2a80b9;
        color: #f5f6f7;
    }

.accordionItem {
    height: auto;
    overflow: hidden;
    max-height: 2000em;
    transition: max-height 0.3s;
}

@media screen and (min-width: 48em) {
    .accordionItem {
        max-height: 15em;
        transition: max-height 0.3s;
    }
}

.accordionItem.is-collapsed {
    max-height: 0;
}

.no-js .accordionItem.is-collapsed {
    max-height: initial;
}

.animateIn {
    animation: accordionIn 0.35s normal ease-in-out both 1;
}

.animateOut {
    animation: accordionOut 0.35s alternate ease-in-out both 1;
}

@keyframes accordionIn {
    0% {
        opacity: 0;
        transform: scale(0.9) rotateX(-60deg);
        transform-origin: 50% 0;
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes accordionOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0.9) rotateX(-60deg);
    }
}

/* MyDamages */

#partialviews-damages-mydamages .accordionTitle {
    padding: 10px;
}

.damageitem {
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #2980b9;
    margin: 10px;
    text-align: center;
}

    .damageitem a {
        padding: 5px;
        display: block;
    }

    /*fazel*/

    .damageitem p {
        margin: 0;
        font-size: 1em;
    }

/* damage item */

.hide {
    display: none;
}

.hidden {
    visibility: hidden;
}

button.file {
    border: 1px solid #34495e;
    border-radius: 10px;
    padding: 8px;
    background-color: white;
    float: right;
    margin-right: 10%;
}

    button.file:hover {
        background-color: #34495e;
        color: #f5f6f7;
    }

    button.file:focus {
        outline: 0;
        border-radius: 10px;
        border: 1px solid #34495e;
    }

#damageitem-details-table tr:nth-child(odd) {
    background-color: white;
}

#damageitem-details-table tr:nth-child(even) {
    background-color: #e8ebee;
}

#damageitem-details-table td {
    text-align: right;
    padding-right: 5px;
}

/* partialviews-damages-adddamage */

#pnlChooseFamilyMember {
    position: absolute;
    width: 100%;
    height: calc(100% - 40px);
    z-index: 10;
    margin-top: -10px;
    background-color: white;
    left: 0;
    transition: left 0.4s;
    top: 50px;
}

.blueBorderList {
    padding: 10px;
}

    .blueBorderList li {
        text-align: right;
        display: block;
        border: 1px solid #2980b9;
        border-radius: 10px;
        margin-bottom: 5px;
        box-shadow: 0px 0px 5px #aeaeae;
        overflow: hidden;
    }

        .blueBorderList li .blueBorderListHeader {
            font-weight: 700;
            color: #34495e;
            cursor: pointer;
            padding: 5px;
            transition: background-color 0.5s ease-in;
            position: relative;
        }

    .blueBorderList:not(.expandable) li:hover {
        background-color: #2a80b9;
        color: #f5f6f7;
        transition: background-color 0.5s ease-out;
    }

    .blueBorderList li .blueBorderListHeader:hover {
    }

    .blueBorderList.expandable li.active {
        border: 2px solid #0027ff;
    }

        .blueBorderList.expandable li.active .blueBorderListHeader {
            border-bottom: 1px solid #2980b9;
            box-shadow: 0px 0px 5px #aeaeae;
            background-color: #69e0cb;
            color: #f5f6f7;
            transition: background-color 0.5s ease-out;
        }

    .blueBorderList.expandable li .blueBorderListHeader::after {
        content: " ";
        background-image: url(/darmanafzar.customer/Resources/return.png);
        background-size: 20px;
        display: inline-block;
        width: 20px;
        height: 20px;
        position: absolute;
        left: 5px;
        top: calc(50% - 10px);
        transform: rotate(-90deg);
        transition: transform 0.2s;
        filter: invert(1);
    }

    .blueBorderList.expandable li.active .blueBorderListHeader::after {
        transform: rotate(90deg);
        transition: transform 0.2s;
    }

    .blueBorderList.expandable li .extraContent {
        overflow: hidden;
        max-height: 0px;
        transition: max-height 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    }

    .blueBorderList.expandable li.active .extraContent {
        /* set max-height in js */
        padding: 10px;
        transition: max-height 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
        overflow: auto;
    }

#partialviews-damages-adddamage td,
#partialviews-NewCureIntroduction td {
    text-align: right;
}

#partialviews-damages-adddamage,
#partialviews-NewCureIntroduction {
    text-align: center;
}

input[type="checkbox"].simple {
    height: 16px;
    width: 16px;
    border-radius: 5px;
    margin-top: 1px;
}

input[type="checkbox"]:not(.simple) {
    display: none;
}

input[type="checkbox"] + label:focus {
    outline: none;
    font-weight: bold;
    text-shadow: 0 0 5px #66afe9;
}

input[type="checkbox"] + label {
    display: block;
    position: relative;
    padding-right: 35px;
    margin-bottom: 20px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    white-space: nowrap;
    text-align: right;
}

    input[type="checkbox"] + label:last-child {
        margin-bottom: 0;
    }

    input[type="checkbox"] + label:before {
        content: "";
        display: block;
        width: 20px;
        height: 20px;
        border: 1px solid #000;
        position: absolute;
        right: 0;
        top: 0;
        opacity: 0.6;
        -webkit-transition: all 0.12s, border-color 0.08s;
        transition: all 0.12s, border-color 0.08s;
    }

input[type="checkbox"]:checked + label:before {
    width: 10px;
    top: -5px;
    right: 5px;
    border-radius: 0;
    opacity: 1;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.form-autocomplete {
    margin-bottom: 0px;
    border-bottom: none;
}

.moneyCell {
    text-align: left;
}

.DamagesUseDetailsPersonDetails .DamagesUseDetailsPersonDetailsItem {
    border-radius: 5px;
    border: 1px solid #2980b9;
    display: block;
    box-sizing: border-box;
    width: 95%;
    margin: 3%;
    overflow: hidden;
}

.DamagesUseDetailsPersonDetails .even {
    background: #eee;
}

.DamagesUseDetailsPersonDetails td {
    width: 1%;
}

#partialviews-DamagesUseDetails td {
    padding: 10px;
    padding: 10px;
    font-weight: normal;
    font-size: 1em;
}

#tdRemainOfRoof {
    border-top: 1px dashed #c0c0c0;
}

/*MedicalCenters*/

.list {
    transition: 0.5s linear;
    border: 1px solid;
    border-radius: 5px;
    box-shadow: 0px 0px 5px #868686;
    margin: 5px;
    overflow: hidden;
}

    .list.top {
        background-color: #f1f1f1;
        margin: 0;
        padding: 0;
        box-shadow: none;
        border: 0;
        margin-top: -10px;
    }

        .list.top li {
            padding: 7px;
            overflow: hidden;
            position: relative;
            border: 1px solid #ddd;
        }

.noChildren {
    font-weight: normal;
}

.hasChildren {
    font-weight: bold;
}

.hasMedicalCenters .medIcon:hover {
    cursor: pointer;
    background-color: #c4cfdb;
}

/**/

.tabs {
    margin: 10px;
}

    .tabs.fixed {
        margin-top: 50px;
    }

        .tabs.fixed .tab-list {
            width: 80%;
            margin: auto;
        }

.tab-list {
    border-radius: 10px;
    overflow: hidden;
}

    .tab-list li {
        display: inline-flex;
        float: right;
    }

    .tab-list .tab-link {
        display: block;
        background-color: #ddd;
        text-align: center;
        width: 100%;
        padding: 5px;
        transition: 0.5s;
    }

        .tab-list .tab-link.active {
            background-color: #34495e;
            color: #f5f6f7;
        }

.tabs .tab-content {
    display: none;
    animation: fadeEffect 0.5s;
}

@keyframes fadeEffect {
    from {
        opacity: 0.1;
    }

    to {
        opacity: 1;
    }
}

.tabs .tab-content.active {
    display: block;
}

.formElement {
    border: 1px solid #a1a1a1;
    width: 98%;
    padding: 6px 12px;
    font-size: 1em;
    line-height: 2;
    color: #555;
    background-color: #fff;
    border-radius: 3px;
    -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    margin: 25px 0 0 0;
}

    .formElement:focus {
        border-color: #66afe9;
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    }

.has-success.formElement {
    border-color: #3c763d;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-error.formElement {
    border-color: #a94442;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.formElement.ltr {
    direction: ltr;
    text-align: left;
}

select.formElement {
    min-height: 45px;
    background-color: white;
    font-size: 16px;
}

input[type="radio"].formElement {
    height: 17px;
    width: 17px;
    border-radius: 5px;
    margin-top: 0px;
    display: inline-block;
}

textarea.formElement {
    height: 100px;
    resize: none;
}

a.button {
    border-radius: 10px;
    padding: 8px;
    float: right;
    margin-right: 10%;
    background-color: #eff2f5;
    color: #2f4358;
    border: 1px solid #2f4358;
}

button.formElement {
    width: initial;
    display: inline-block;
    padding: 10px 36px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 5px;
    margin: 5px;
    border: none;
    color: #fff;
    font-size: 1.2em;
    /* background: #2f4358; */
    min-width: 25%;
}

    button.formElement:hover {
        background-position: right center;
        color: #fff;
        text-decoration: none;
    }

    button.formElement:active {
        transform: scale(0.95);
    }

    button.formElement.small {
        padding: 6px 12px;
        font-weight: 200;
        line-height: 1;
        margin: 3px;
        font-size: 0.8em;
        min-width: initial;
        border-radius: 5px;
    }

    button.formElement.medium {
        padding: 8px 16px;
        font-weight: 300;
        line-height: 1;
        margin: 5px;
        font-size: 1em;
        min-width: initial;
        border-radius: 10px;
    }

    button.formElement:hover,
    button.formElement:focus {
        background-color: #08987f;
    }

    button.formElement.delete {
        background-color: #ff6d6f;
    }

        button.formElement.delete:focus,
        button.formElement.delete:hover {
            background-color: rgba(255, 109, 111, 0.75);
            color: #711214;
        }

    button.formElement.edit {
        background-color: #d9d9d9;
        color: rgba(46, 67, 89, 0.65);
    }

.btn.neutral:focus,
.btn.neutral:hover {
    opacity: 0.8;
}

button.formElement.edit:hover,
button.formElement.edit:focus {
    background-color: #08987f;
    background-color: #13d8b6;
}

.view-action-buttons button {
    background-color: #00bd9c;
    color: #fff;
    border: 1px solid #00bd9c;
    width: 100%;
    padding: 5px 10px;
    font-size: 1em;
    border-radius: 5px;
    margin-top: 10px;
}


.formElement.video {
    padding-left: 10px;
}

    .formElement.video:before {
        background-image: url(/darmanafzar.customer/Resources/video.svg);
        background-size: 20px 20px;
        display: inline-block;
        width: 20px;
        height: 20px;
        content: "";
        margin-left: 10px;
        vertical-align: middle;
    }

.formElementLabel {
    display: block;
    position: absolute;
    opacity: 0;
    top: 0px;
    right: 10px;
    transform: translate(-10px, 30px);
    transition: all 0.2s ease-in;
}

.formElement:placeholder-shown + .formElementLabel {
    visibility: hidden;
    z-index: -1;
}

.formElement:focus::placeholder {
    color: transparent;
}

.formElement:focus + .formElementLabel,
.formElement:not(:placeholder-shown) + .formElementLabel,
.formElement:focus:not(:placeholder-shown) + .formElementLabel {
    visibility: visible;
    z-index: 1;
    opacity: 1;
    transform: translate(0, 0);
    transition: all 0.2s ease-out;
    font-size: 0.9em;
}

/* all tickets */

.ticket-item {
    cursor: pointer;
    position: relative;
    display: block;
    clear: both;
    overflow: hidden;
    color: #000;
    padding: 8px 9px;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
    margin-top: -1px;
    border-radius: 0;
    padding-left: 11px;
}

div.ticket-image {
    margin: 0 0 0 12px;
}

.ticket-image {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    float: right;
}

.ticket-subject {
    word-wrap: break-word;
    overflow: hidden;
}

.ticket-date {
    color: #b3b3b3;
    font-size: 0.8em;
    margin-right: 3px;
    float: left;
    text-align: right;
    margin-top: 2px;
}

/* show ticket */

.ticketReplyContainer {
    border: 2px solid #dedede;
    background-color: #f1f1f1;
    border-radius: 5px;
    padding: 10px;
    margin: 10px;
    overflow: auto;
}

.darker {
    border-color: #ccc;
    background-color: #ddd;
}

.ticketReplyText,
.attachedFile {
    overflow: hidden;
    overflow-wrap: break-word;
}

.time {
    float: left;
    color: #b3b3b3;
    font-size: 1em;
    margin-right: 3px;
    float: left;
    text-align: right;
    margin-top: 2px;
}

/*map*/

#map {
    position: absolute;
    width: 100%;
    height: calc(100% - 90px);
    top: 40px;
    bottom: 30px;
}

#current {
    position: fixed;
    bottom: 50px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    z-index: 400;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 0 5px #474646;
    background-image: url(//maps.gstatic.com/mapfiles/maps_lite/images/2x/my_location_grey600_18dp.png);
}

    #current:hover,
    #current:focus {
        transform: scale(0.9);
    }

.leaflet-control-attribution.leaflet-control {
    display: none !important;
}

#allMedicalCenters-data {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    padding-top: 40px;
    justify-content: center;
}

.partyTypesItem {
    flex-grow: 1;
    padding: 5px;
    max-width: 20%;
    margin: 0;
    min-width: 15%;
}

    .partyTypesItem img {
        max-width: 60px;
        max-height: 60px;
        border-radius: 50%;
    }

    .partyTypesItem p {
        margin: 0;
        font-size: 0.8em;
    }

.medicalCenterItem {
    width: 100%;
    border-bottom: 1px solid #ddd;
    min-height: 70px;
    position: relative;
}

    .medicalCenterItem .medicalCenterItemImg {
        max-height: 15vw;
        max-width: 20vw;
        display: inline-block;
        padding: 2px 10px;
        vertical-align: middle;
    }

    .medicalCenterItem .MoreDetails {
        height: 0px;
        transition: height 0.2s linear;
        overflow: hidden;
        font-size: 0.8em;
        margin: 5px;
    }

        .medicalCenterItem .MoreDetails.open {
            height: 13vh;
        }

    .medicalCenterItem .medicalCenterItemDetails {
        display: inline-block;
        vertical-align: top;
        width: 60%;
        margin-left: 48px;
    }

.medicalCenterItemDetails p {
    margin: 0;
    font-size: 0.85em;
}

.showOnMap {
    position: absolute;
    left: 10px;
    top: 5px;
    cursor: pointer;
}

.lnkGoToNavigation {
    display: inline-block;
    padding: 5px 10px;
    background-color: #28a745;
    border-radius: 10px;
    font-size: 1em;
    font-weight: bold;
    color: #fff !important;
    text-decoration: none;
}

#allMedicalCenters {
    position: fixed;
    height: 30px;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    transition: height 0.2s ease-out;
    z-index: 400;
    border-top: 1px solid;
}

    #allMedicalCenters.open {
        height: 70%;
        overflow: auto;
    }

        #allMedicalCenters.open .arrow {
            display: none;
        }

#allMedicalCenters-header {
    height: 30px;
    position: fixed;
    width: 100%;
    border-bottom: 1px solid;
    text-align: right;
    background-color: #34495e;
    z-index: 2;
}

.arrow {
    animation: MoveUpDown;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    position: absolute;
    line-height: 0;
    transform: rotate(90deg);
    font-size: 1.5em;
    font-weight: bold;
    right: 48%;
}

#close-footer-menu {
    position: absolute;
    right: 10px;
    color: #fff;
    font-size: 1.5em;
    display: none;
    transform: translate(50%, -20%);
    right: 50%;
}

#back-footer-menu {
    position: absolute;
    left: 10px;
    display: none;
    top: 3px;
}

#title-footer-menu {
    color: #fff;
    display: none;
    margin-right: 10px;
}

#allMedicalCenters.open #close-footer-menu,
#allMedicalCenters.open #title-footer-menu {
    display: inline-block;
}

@keyframes MoveUpDown {
    0%, 100% {
        bottom: 0px;
    }

    50% {
        bottom: 8px;
    }
}

@keyframes MoveUpDownNotAbsolute {
    0%, 100% {
        margin-top: 10px;
    }

    50% {
        margin-top: 15px;
    }
}

/* signup*/

.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    margin-top: 5px;
}

.panel-primary {
    border-color: #337ab7;
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border-bottom: 0;
}

.panel-primary .panel-heading {
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7;
}

.panel-body {
    padding: 15px;
}

.page_section {
    display: none;
    animation: IGCoreModalShow 0.3s ease-out;
    margin: 5px;
}

.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

/*Loader*/
#loader-container {
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.3);
    z-index: 10;
    position: absolute;
    left: 0;
    right: 0;
    display: none;
}

    #loader-container.show {
        display: flex;
    }

    #loader-container.hide {
        display: none;
    }

#cancelFetch {
    border: 2px solid #f5f6f7;
    border-radius: 10px;
    padding: 8px;
    background-color: transparent;
    position: absolute;
    left: 10%;
    top: 10%;
    color: #f5f6f7;
    z-index: 9;
    right: 5%;
    width: 25%;
    outline: 0;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    #cancelFetch:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: scale(1.05);
    }

.loader {
    width: 20em;
    height: 20em;
    font-size: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .loader .face {
        position: absolute;
        border-radius: 50%;
        border-style: solid;
        animation: animate 3s linear infinite;
    }

        .loader .face:nth-child(1) {
            width: 100%;
            height: 100%;
            color: rgba(8, 149, 124, 1);
            border-color: currentColor transparent transparent currentColor;
            border-width: 0.2em 0.2em 0em 0em;
            --deg: -45deg;
            animation-direction: normal;
        }

        .loader .face:nth-child(2) {
            width: 70%;
            height: 70%;
            color: rgba(3, 97, 82, 1);
            border-color: currentColor currentColor transparent transparent;
            border-width: 0.2em 0em 0em 0.2em;
            --deg: -135deg;
            animation-direction: reverse;
        }

        .loader .face .circle {
            position: absolute;
            width: 50%;
            height: 0.1em;
            top: 50%;
            left: 50%;
            background-color: transparent;
            transform: rotate(var(--deg));
            transform-origin: left;
        }

            .loader .face .circle::before {
                position: absolute;
                top: -0.5em;
                right: -0.5em;
                content: "";
                width: 1em;
                height: 1em;
                background-color: currentColor;
                border-radius: 50%;
                box-shadow: 0 0 2em, 0 0 4em, 0 0 6em, 0 0 8em, 0 0 10em, 0 0 0 0.5em rgba(255, 255, 0, 0.1);
            }

@keyframes animate {
    to {
        transform: rotate(1turn);
    }
}


.inlineButtons {
    display: flex;
    width: 100%;
    outline: none;
}

    .inlineButtons button {
        flex: 1;
    }

.newItemAnimation {
    transform-origin: top;
    animation: anim 0.5s ease;
    transition: max-height 0.3s, padding 0.3s;
}

.calendarShow {
    animation: calendarShow 0.3s;
}

@keyframes calendarShow {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes anim {
    0% {
        transform: scaleY(0);
    }

    100% {
        transform: scaleY(1);
    }
}

.menu-pnl-container.close ~ #dvContent,
.menu-pnl-container.close ~ .header,
#loader-container.hide ~ #dvContent,
#loader-container.hide ~ .header,
#footer-menu-container.close ~ .page,
#footer-menu-container.close ~ .header {
    filter: none;
}

#loader-container.show ~ #dvContent,
#loader-container.show ~ .header,
.menu-pnl-container.show ~ #dvContent,
.menu-pnl-container.show ~ .header {
    filter: blur(2px) !important;
}

/* messages */

.alert {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
    padding: 15px;
    margin-bottom: 5px;
    border: 1px solid transparent;
    border-radius: 4px;
    transform: scale(0.9);
    transition: all 0.4s ease;
}

    .alert:hover,
    .alert:active {
        transform: scale(0.97);
    }

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.mb-0 {
    margin-bottom: 0 !important;
}
.mb-10 {
    margin-bottom: 10px;
}
.mt-10{
    margin-top: 10px;
}
.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: "Glyphicons Halflings";
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -moz-osx-font-smoothing: grayscale;
}

    .glyphicon:empty {
        width: 1em;
    }

.glyphicon-ok:before {
    content: "\2717";
}

.alert-success hr {
    border-top-color: #c9e2b3;
}

/*_______________________________*/

.medicalPartItemContainer {
    display: flex;
    flex-wrap: wrap;
}

.medicalPartItem {
    flex: auto;
    text-align: center;
    flex-wrap: wrap;
    border: 1px solid #d2dae3;
    margin: 5px;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    min-width: 100px;
    transition: all 0.2s;
}

    .medicalPartItem:hover {
        border: 1px solid #00bd9c;
    }

    .medicalPartItem.selected {
        background-color: #00bd9c;
        color: #fff;
        border-radius: 10px;
    }

    .medicalPartItem > i {
        font-size: 20px;
    }

    .medicalPartItem > p {
        font-size: 12px;
        margin: 0;
    }

#dvMedicalPartsDoctors,
#dvMedicalPartsServices {
    display: flex;
    flex-wrap: wrap;
}

.doctorItem p {
    margin: 0;
}

.doctorItem:hover,
.serviceItem:hover {
    border: 1px solid #00bd9c;
}

.doctorItem.selected,
.serviceItem.selected {
    background-color: #00bd9c;
    color: #fff;
    border-radius: 10px;
}

/*seprate*/

.dvSeperateLine {
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
    margin: 10px;
    position: relative;
    height: 17px;
}

.spnSeprateTitle {
    position: absolute;
    z-index: 1;
    background: #fff;
    top: 5px;
    right: 30px;
    padding: 0 20px 0 20px;
    font-size: 1em;
}

/*context menu*/

.show-menu {
    opacity: 1 !important;
    -webkit-transform: translate(0, 0) scale(1) !important;
    transform: translate(0, 0) scale(1) !important;
    pointer-events: auto !important;
}

#contextMenu {
    position: absolute;
    width: 200px;
    padding: 2px;
    margin: 0;
    border: 1px solid #bbb;
    background: #eee;
    background: -webkit-linear-gradient(to bottom, #fff 0%, #e5e5e5 100px, #e5e5e5 100%);
    background: linear-gradient(to bottom, #fff 0%, #e5e5e5 100px, #e5e5e5 100%);
    z-index: 100;
    border-radius: 3px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    opacity: 0;
    -webkit-transform: translate(0, 15px) scale(0.95);
    transform: translate(0, 15px) scale(0.95);
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
    pointer-events: none;
}

    #contextMenu li {
        display: block;
        position: relative;
        margin: 0;
        padding: 5px;
        white-space: nowrap;
        border-bottom: 1px solid #888;
        cursor: pointer;
        font-size: 1em;
    }

        #contextMenu li i {
            margin-left: 10px;
        }

        #contextMenu li:hover {
            background: #d2d2d2;
        }

/**/

/**/

#navigationBar {
    float: right;
    margin: 0 20px 0 0;
    line-height: 55px;
    letter-spacing: 0px;
    font-weight: 100;
    font-size: 1em;
}

    #navigationBar .active {
        color: blue;
        cursor: pointer;
    }

/**/

.printIframeContainer {
    /*position: absolute;
    width: 100%;
    height: 100%;*/
    /* background: rgba(0,0,0,0.3); */
    text-align: center;
    height: 100%;
}

    .printIframeContainer .printIframe {
        /*background: white;
        position: absolute;
        top: 5%;
        left: 5%;
        width: 90%;
        height: 90%;
        margin: 10px;*/
        width: 100%;
        height: 90%
    }

/*file item*/

.fileItem {
    float: right;
    margin: 10px 0 0 10px;
    border: 1px solid #dee2e7;
    border-radius: 10px 5px 5px 10px;
    overflow: hidden;
    background-color: #fff;
}

    .fileItem.selectable {
        cursor: pointer;
        transition: all 0.3 ease-in;
        outline: 0;
        -webkit-box-shadow: inset 0px 0px 0px rgba(0, 0, 0, 0.075), 0 0 0px rgba(102, 175, 233, 0.6);
        -moz-box-shadow: inset 0px 0px 0px rgba(0, 0, 0, 0.075), 0 0 0px rgba(102, 175, 233, 0.6);
        box-shadow: inset 0px 0px 0px rgba(0, 0, 0, 0.075), 0 0 0px rgba(102, 175, 233, 0.6);
    }

        .fileItem.selectable:hover,
        .fileItem.selectable:focus {
            transition: all 0.3 ease-out;
            border-color: #00bd9c;
            -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0 189 156 / 17%);
            -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0 189 156 / 17%);
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgb(0 189 156 / 17%);
        }

    .fileItem .thumbnail {
        width: 50px;
        height: 50px;
        float: right;
        background-color: #fff;
        cursor: pointer;
    }

        .fileItem .thumbnail img {
            width: 100%;
            height: 100%;
            vertical-align: middle;
        }

.fileItem-name {
    float: right;
    line-height: 50px;
    margin: 0 10px;
    direction: ltr;
    font-size: 0.9em;
}

.dvDeleteFileItem {
    cursor: pointer;
    width: 25px;
    height: 10px;
    float: right;
    margin: 0 10px;
}

    .dvDeleteFileItem img {
        width: 100%;
        display: block;
        margin-top: 10px;
    }

.ImagePreviewBG {
    position: fixed;
    height: 100vh;
    width: 100%;
    top: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 10;
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: scale(0);
}

    .ImagePreviewBG.shown {
        transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        transform: scale(1);
    }

.ImagePreviewHolder {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    max-height: 80%;
    top: 50%;
    padding: 10px;
    background-color: #fff;
    overflow: auto;
}

    .ImagePreviewHolder img {
        max-width: 100%;
        min-width: 320px;
        display: block;
        margin: auto;
    }

.secondSideMenuTrigger {
    display: none;
    width: 30px;
    height: 30px;
    float: right;
    margin: 18px 0 0px 10px;
    cursor: pointer;
    position: relative;
}

@media (max-width: 1200px) {
    .box {
        margin: 5px;
        padding: 5px;
        width: calc(100% - 10px);
    }

    .background.mask {
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 1;
    }

    .header {
        width: 100% !important;
    }

    .pageContent {
        padding: 10px 10px;
    }

    .column {
        width: calc(100% - 10px);
        height: auto;
        padding: 0;
        min-height: unset;
        max-height: unset;
    }

    .SubLineTR {
        width: 100%;
    }

        .SubLineTR td:first-child {
            width: 1%;
            white-space: nowrap;
            padding-left: 10px;
        }

    #user-pic {
        display: block;
        margin: 10px 50%;
        transform: translate(50%, 0px);
    }

    .secondSideMenuTrigger {
        display: initial;
    }

        .secondSideMenuTrigger span {
            height: 3px;
            position: absolute;
            background-color: #3498db;
            width: 100%;
            right: 0;
            border-radius: 5px;
        }

            .secondSideMenuTrigger span:nth-of-type(1) {
            }

            .secondSideMenuTrigger span:nth-of-type(2) {
                top: 7px;
            }

            .secondSideMenuTrigger span:nth-of-type(3) {
                top: 14px;
            }
}

@media (max-width: 780px) {
    table.responsive,
    table.responsive thead,
    table.responsive tbody,
    table.responsive th,
    table.responsive td,
    table.responsive tr {
        display: block;
    }

        table.responsive td {
            position: relative;
        }

            table.responsive td:before {
                position: absolute;
                top: 0;
                right: 6px;
                width: 45%;
                padding-left: 10px;
                white-space: nowrap;
            }

    .calendarShow {
        width: 100% !important;
        left: 0 !important;
    }

    .view-current-title {
        font-size: 1em;
        font-weight: 400;
        max-width: calc(100% - 100px);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .column .column-header {
        height: auto;
    }

    #navigationBar {
        margin: 0 10px 0 0;
        line-height: 55px;
        letter-spacing: -1px;
        font-size: 0.8em;
        max-width: 150px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .dvNotify {
        width: 90%;
    }

        .dvNotify.show {
            padding: 5px;
            right: 10%;
        }

    .tab-list {
        display: block !important;
    }

        .tab-list li {
            display: block;
            width: 100% !important;
            flex: unset !important;
        }
}

.ButtonsUL {
    list-style-type: none;
    text-align: center;
    margin: 0;
}

    .ButtonsUL li {
        display: inline-block;
        min-width: 200px;
        margin: 0 20px;
    }

        .ButtonsUL li a {
            display: block;
        }

        .ButtonsUL li:hover {
            background: #f5f5f5;
        }

        .ButtonsUL li img {
            height: 60px;
            filter: invert(1);
        }

    .ButtonsUL .liTitle {
        color: #1b82bc;
        font-weight: bold;
        font-family: iransans;
        line-height: 30px;
        font-size: 14px;
        display: block;
    }

    .ButtonsUL .liBubTitle {
        color: gray;
        font-family: iransans;
        font-size: 12px;
    }

/*popover*/
.inputBox {
    position: relative;
}

.popover {
    position: absolute;
    background-color: #ecf0f1;
    display: block;
    right: 5px;
    top: 30px;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    line-height: 30px;
    color: #ff5722;
    font-size: 19px;
    font-weight: bold;
    border: 1px solid;
    cursor: pointer;
    text-align: center;
}

/*-popover-*/
@keyframes blink {
    50% {
        background-color: #bfbfbf;
    }
}

@-webkit-keyframes blink {
    50% {
        background-color: #bfbfbf;
    }
}

.blink {
    animation: blink 2s infinite;
    -webkit-animation: blink 2s infinite;
    transition: all 1s;
}

/* Toast */
.snackbar {
    visibility: hidden;
    min-width: 250px;
    color: #f8f7f7;
    background-color: rgb(114, 114, 114) !important;
    text-align: center;
    border-radius: 2px;
    padding: 10px;
    position: fixed;
    z-index: 9999;
    left: 50%;
    /* bottom: 30px; */
    top: 30px;
    transform: translate(-50%, 0px);
    border-radius: 5px;
    height: 20px;
    height: fit-content;
    direction: rtl;
    /* box-shadow: 0px 0 5px #1976d2; */
}

    /* Show the snackbar when clicking on a button (class added with JavaScript) */
    .snackbar.show {
        visibility: visible;
        /* Show the snackbar */
        /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
However, delay the fade out process for 2.5 seconds */
        -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
        animation: fadein 0.5s, fadeout 0.5s 2.5s;
    }


/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}
/* ----------------------------------------------------------------- */

/* body {

background-image: url('../images/white-background.png');
background-repeat: no-repeat;
background-size: cover;
display: flex;
/* flex-direction: column;
align-items: center;
justify-content: center;
overflow-y: hidden !important;
overflow-x: hidden !important;

} */

.loading {
    animation: rotation 2s infinite linear;
    -webkit-animation: rotation 2s infinite linear;
}

@keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}

#partialviews-mainPage,
#partialviews-nationalCodeQuery
/*#partialviews-IntroductionLetter,
    #insurancer-partialviews-mainPage,
    #partialviews-invoiceIssuance,
    #partialviews-listOfMedicalCenterContracts */ {
    position: absolute;
    width: 100%;
    height: 98vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: hidden;
    overflow-x: hidden;
}

input,
textarea {
    font-size: 14px;
    padding: 2%;
    border-radius: 5px;
}

    input:not([type="radio"]):focus,
    input:not([type="radio"]):hover
    textarea:hover,
    textarea:focus,
    #contractContentTxt:focus,
    select:hover,
    select:focus {
        border-color: #3cab9561;
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 15%);
        box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 4px rgb(102 175 233 / 23%);
    }

#contractContentTxt {
    border: 1px solid #dee2e7;
}

.cancelBtn {
    background-image: linear-gradient(90deg, rgba(255, 82, 82, 1) 2%, rgba(239, 83, 80, 1) 35%, rgba(211, 47, 47, 1) 59%);
    color: #ffffff;
    border-radius: 5px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
    background-size: 200% auto;
    font-weight: 500;
    font-size: 16px;
    white-space: nowrap;
    padding: 8px 16px;
    cursor: pointer;
    touch-action: manipulation;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

    .cancelBtn:hover {
        background-image: linear-gradient(90deg, rgba(255, 112, 112, 1) 2%, rgba(255, 87, 34, 1) 35%, rgba(239, 83, 80, 1) 59%);
        background-size: 200% auto;
        background-position: right center;
        color: #ffffff;
        border-color: transparent;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    }

    .cancelBtn:active {
        transform: scale(0.95);
        background-color: #b71c1c;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    }

.button {
    background-image: linear-gradient(90deg, rgba(8, 149, 124, 1) 2%, rgba(24, 137, 118, 1) 35%, rgba(3, 97, 82, 1) 59%);
    color: #ffffff;
    border-radius: 5px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
    background-size: 200% auto;
    font-weight: 500;
    font-size: 16px;
    white-space: nowrap;
    padding: 8px 16px;
    cursor: pointer;
    touch-action: manipulation;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

    .button:hover {
        background-image: linear-gradient(90deg, rgba(8, 174, 149, 1) 2%, rgba(24, 164, 137, 1) 35%, rgba(3, 130, 108, 1) 59%);
        background-size: 200% auto;
        background-position: right center;
        color: #ffffff;
        border-color: transparent;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    }

    .button:active {
        transform: scale(0.95);
        background-color: #00796b;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    }

/**/
.button-border {
    border: 1px solid rgba(8, 149, 124, 1);
    color: rgba(8, 149, 124, 1);
    background: transparent;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    transition: color 0.3s, border-color 0.3s, box-shadow 0.3s;
    font-weight: 500;
    font-size: 16px;
    white-space: nowrap;
    padding: 7px 16px;
    cursor: pointer;
    touch-action: manipulation;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

    .button-border:hover, .cancelBtn-border:hover {
        background-size: 200% auto;
        background-position: right center;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    }

    .button-border:active {
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    }

/**/

.flexRow {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.flexColumn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.none {
    display: none;
}

.pointer {
    cursor: pointer;
}

.pointerEvents {
    pointer-events: none;
    filter: blur(2px);
}

.pointer-events-none {
    pointer-events: none;
}

/* header */

#header {
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #d2dae3;
    background: #f8f9fa;
    color: #343a40;
    font-size: 1rem;
    padding: 0 15px;
    font-weight: bold;
    z-index: 1;
    position: fixed;
    top: 0;
}

#nav-content p {
    padding: 10px 15px;
    margin: 0;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    transition: background-color 0.3s;
}

    #nav-content p:hover {
        background-color: #e2e6ea;
    }
.nav-panel {
    height: calc(100% - 100px);
    overflow-y: scroll;
    width: 100%;
}

#exit {
    width: 100%;
}
/*

    #exit:hover {
        background-color: #c82333;
    }
*/

#dvPermissionGroup {
    display: flex;
    align-items: center;
    margin-right: 30px;
}

    #dvPermissionGroup img {
        width: 50px;
        height: 38px;
        margin-right: 10px;
    }

#pageName {
    font-size: 1.25rem;
    color: #495057;
}

.ltr {
    direction: ltr;
    text-align: left;
}

.m-r_8 {
    margin-right: 8px;
}

.none {
    display: none !important;
}
/* menuHeader */
#nav-container {
    margin-left: 10px;
}

    #nav-container .bg {
        display: none;
    }

    #nav-container:focus-within .bg {
        display: none;
        visibility: hidden;
        opacity: 0.6;
    }

.nav-container-button {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    border-radius: 0;
    height: 70px;
    width: 30px;
    cursor: pointer;
    -pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #495057;
    transition: 0.3s;
    left: 0;
}

    .icon-bar + .icon-bar {
        margin-top: 5px;
    }

#menu-toggle:checked ~ .nav-container-button {
    -pointer-events: none;
}

    #menu-toggle:checked ~ .nav-container-button .icon-bar:nth-of-type(1) {
        transform: translate3d(0, 8px, 0) rotate(45deg);
    }

    #menu-toggle:checked ~ .nav-container-button .icon-bar:nth-of-type(2) {
        opacity: 0;
    }

    #menu-toggle:checked ~ .nav-container-button .icon-bar:nth-of-type(3) {
        transform: translate3d(0, -8px, 0) rotate(-45deg);
    }

#nav-content {
    padding: 20px;
    padding-top: 20px;
    width: 90%;
    max-width: 300px;
    position: absolute;
    top: 60px;
    left: 0.5%;
    right: 0%;
    height: calc(100% - 60px);
    background: #f8f9fa;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.5s;
    will-change: transform;
    border-radius: 0 0 0 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
}

    #nav-content p {
        padding: 10px 15px;
        margin: 0;
        color: #343a40;
        font-size: 15px;
        border-bottom: 1px solid #e9ecef;
        cursor: pointer;
        transition: background-color 0.3s ease;
        width: 100%;
    }

        #nav-content p:hover {
            background-color: #e2e6ea;
        }

        #nav-content p:focus {
            background-color: #dae0e5;
        }

.accordion-toggle {
    cursor: pointer;
    font-weight: bold;
    color: #343a40;
    padding: 10px 15px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    transition: background-color 0.3s ease;
    width: 100%;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    padding-left: 15px;
    transition: max-height 0.5s ease, padding 0.5s ease;
    color: #6c757d;
}

    .accordion-content p {
        margin: 5px 0;
        padding: 5px;
        transition: background-color 0.3s ease;
    }

        .accordion-content p:hover {
            background-color: #e2e6ea;
            border-radius: 0.25rem;
        }

    .accordion-content.expanded {
        max-height: 300px;
        padding-top: 10px;
    }

.accordion-item-child {
    padding: 10px 15px;
    margin: 5px 0;
    color: #495057;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .accordion-item-child:hover {
        background-color: #f1f3f5;
        transform: translateY(-2px);
    }

    .accordion-item-child:focus {
        outline: none;
        background-color: #e9ecef;
    }

#nav-content .cancelBtn {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 15px;
    width: 100%;
    transition: background-color 0.3s ease;
}

    #nav-content .cancelBtn:hover {
        background-color: #c82333;
    }


#menu-toggle:checked ~ #nav-content {
    transform: none;
}

/* menuHeader */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


#parentDv,
#dvParent {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 2%;
    overflow-y: scroll;
    overflow-x: hidden;
}

#parentDv {
    justify-content: flex-start;
}

#dvInsurancer,
#panelName {
    width: fit-content;
    z-index: 1;
    cursor: pointer;
    text-align: center;
    font-weight: 800;
    margin: 3px;
    background: #f5f5f5;
    min-width: 200px;
}

    #dvInsurancer:hover,
    #panelName:hover {
        box-shadow: 0px 0px 5px rgb(91 93 95 / 51%);
    }

#expandMoreItem {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    width: 100%;
    height: 100px;
    margin-top: 5%;
}

#ChangeInsuranceCompany,
#changePass,
#exit,
#home,
#edit,
/*#dvInsurancer-Calculations,*/
/*#nav-content p */ {
    width: 100%;
    height: 30px;
    /* border-bottom: 1px solid #00bd9c; */
    color: black;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-top: 2%;
    cursor: pointer;
}

    #ChangeInsuranceCompany:hover,
    #changePass:hover,
    #exit:hover,
    #home:hover,
    #edit:hover,
    /*    #dvInsurancer-Calculations:hover,*/
    /*    #nav-content p:hover*/ {
        background: #00bd9c45;
        border-radius: 1px;
    }

    /*#dvInsurancer-Calculations p:hover {
        background: none;
        border-radius: 0;
    }*/

    #ChangeInsuranceCompany:hover,
    #changePass:hover {
        cursor: pointer;
    }

#boxParent {
    width: 100%;
    height: 100vh;
    margin: auto;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    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;
}

/*.dvInput {
    width: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: fit-content;
}
*/
.dvInput {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: fit-content;
}

.inputItem,
#inputNationalID,
#realManagernationalCode,
#txtDoctorOrderDate,
#txtReceptionDate {
    border: 1px solid #dee2e7;
    width: 98%;
    padding: 6px 12px;
    font-size: 16px;
    line-height: 2;
    color: #555;
    background-color: #fff;
    border-radius: 5px;
    -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    margin: 5px;
}

.txtServiceCount,
.txtServiceAmount,
.txtBaseInsurerPortionAmount,
.txtConsumeOrder,
.txtToothNum {
    max-width: 300px;
    width: 100%;
    min-width: 100px;
}

.label {
    width: fit-content;
    text-align: right;
}

.span {
    background-color: #ffffff !important;
    margin: 2px 20px;
    margin: -15px 20px;
    border-radius: 10px;
    display: block;
    width: fit-content;
    padding: 0px 5px 0px 5px;
}

.tblContainer::-webkit-scrollbar-track {
    background: transparent;
}

.tblContainer::-webkit-scrollbar-thumb {
    background-color: #2da58eeb;
    border-radius: 0px;
}

::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #d2d2d2;
    border-radius: 3px;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #a8a7a7;
    }

.insurancerPage {
    margin-top: 100px;
    width: calc(100% - 300px);
    margin-right: 300px;
    padding: 10px;
    overflow-y: scroll;
    height: calc(100vh - 100px);
}

.page {
    margin-top: 100px;
    padding: 10px;
    overflow-y: scroll;
    height: calc(100vh - 100px);
}
/*.page-mt {
    margin-top: 100px;
}*/
.rtlItems {
    width: 100%;
    direction: rtl;
    padding: 20px 0 20px 0;
}


#serviceTable,
#listOfDossiersTable {
    width: 98%;
    height: 80%;
    margin: auto;
}

#informationTxt,
#voidTxt,
.txtIntroductionServiceWarning,
#printTxt,
#fileAtachmentText,
#dischargeTxt,
#showAtachmentsTxt,
.txtDefinitionOfMappedCode,
.txtBlockMedicalCenter,
.txtViewTheContract,
.txtContractManagement,
.txtUnBlockMedicalCenter,
.txtFactor,
.txtApprovedIcon,
.txtPendingIcon,
.txtSendIcon,
.txtIntroductionIcon,
.txtMappedMedicalCenterID,
.txtMedicalcenterFiles,
.txtManagerInfo {
    width: max-content;
    padding: 4%;
    border-radius: 5px;
    box-shadow: 0px 1px 2px #2f4358;
    font-size: 13px;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.7s linear;
    z-index: 11111;
}

.txtDefinitionOfMappedCode,
.txtBlockMedicalCenter,
.txtViewTheContract,
.txtContractManagement,
.txtUnBlockMedicalCenter,
.txtFactor,
.txtApprovedIcon,
.txtSendIcon,
.txtIntroductionIconو
.txtManagerInfo {
    padding: 2px;
}

.txtPendingIcon {
    padding: 5px;
}

.txtBlockMedicalCenter {
    background-color: rgba(255, 0, 0, 0.22);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: 0.4s;
        transition: 0.4s;
    }

input:checked + .slider {
    background-color: #00bd9c;
    content: "on";
}

input:focus + .slider {
    box-shadow: 0 0 1px #00bd9c;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

.warningImg {
    margin-left: 5px;
    margin-top: 2px;
}

.warningMessage {
    display: flex;
    visibility: hidden;
    justify-content: center;
}

#sepid-logo {
    width: 65px;
    height: 55px;
    margin-left: 17px;
    border-radius: 4px;
}

.imgCaptcha {
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1111;
    margin: 5px;
}

.captcha {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 99%;
    border: 1px solid #dee2e7;
    color: #555;
    background-color: #fff;
    border-radius: 5px;
    -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    margin-left: 4px;
}

@media (max-width: 800px) {
    #loginParent {
        width: 90% !important;
    }

    #contractContentTxt {
        width: 100%;
    }

    #nationalCodeQueryItem {
        width: 85% !important;
    }

    #nav-content {
        width: 100%;
        max-width: 100%;
    }

    #ItemRegistration {
        margin-right: 0%;
    }

    .insuredInformation {
        margin-top: 7% !important;
    }

    #out {
        margin-top: 5%;
    }


    #dateOfIssueDiv,
    #dateOfAdmissionDiv,
    #doctorOrderDateFromDiv {
        justify-content: flex-end !important;
    }

    #dvMedicalCenterData {
        margin-top: 15% !important;
    }


    #address {
        margin-bottom: 7%;
    }


    #inputUsername,
    #inputPass {
        width: 85% !important;
    }


    .dvSearchBox {
        flex-direction: column !important;
    }

    .dvInput,
    #dvCenterActivityDescription,
    #dateOfIssue,
    #dateOfAdmission,
    #doctorOrderDate,
    #dvSpecialPolicy_warningAlert,
    #dvIndependentOfPolicy_warningAlert,
    .dvAautocomplete {
        width: 100% !important;
    }



    #dvStartDate,
    #dvExpireDate,
    #txtUseCountLimit,
    #txtUseCountLimitPeriodDays,
    .dateOfIssue,
    .dateOfAdmission,
    .doctorOrderDate,
    #contractDate {
        width: 100% !important;
    }

    .dialog {
        width: 90% !important;
    }
}

.blur {
    filter: blur(2px);
    pointer-events: none;
}

.delete-row {
    animation: fade-out 2s forwards;
}

@media (max-width: 950px) {
    #servicesThead {
        display: none !important;
    }
}

@keyframes fade-out {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        height: 0;
        padding: 0;
        margin: 0;
        border: none;
    }
}


.dvSearchBox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 auto;
}

.dvAautocomplete {
    margin-bottom: 5px;
}

.date {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .date div {
        position: relative;
        width: 50%;
        display: flex;
    }

    .date input {
        width: 100%;
        border: 1px solid #dee2e7;
        padding: 6px 12px;
        font-size: 16px;
        line-height: 2;
        color: #555;
        background-color: #fff;
        border-radius: 5px;
        -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
        transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
        margin: 5px;
    }


.circleLoader {
    border: 5px solid #d4d0d0;
    border-radius: 50%;
    border-top: 5px solid #149f87;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.Contract {
    width: 100%;
    word-wrap: break-word;
}

.dvElectronicPrescriptionData {
    width: 100%;
    background: #baede452;
    padding: 10px;
    box-shadow: 0 0px 3px #34495e5e;
    width: 70%;
    height: max-content;
    margin-top: 10px;
}


.dvInsuranceContract {
    margin: 10px auto;
    cursor: pointer;
    width: fit-content;
    min-width: 300px;
    background: #f5f5f5;
}

.electronicPrescriptionDataSubscriptionInfo {
    background: white;
    padding: 15px;
    border-radius: 4px;
    margin: 10px;
    cursor: pointer;
}

.assessBtn,
.assessDetailsBtn, .unAssessBtn {
    margin: 0px 3px;
    padding: 2px 7px;
    font-weight: 300;
    width: fit-content !important;
}

.sepidDescription {
    width: 100%;
    height: 80vh;
}

.formElementContainer {
    width: 70%;
}

    .formElementContainer input {
        width: calc(100% - 11px);
    }

.btnTransparent {
    border: 1px solid #08957c;
    border-radius: 5px;
    padding: 5px;
    color: #08957c !important;
    background: transparent;
    font-size: 13px;
}

.disable {
    pointer-events: none;
    filter: blur(0.8px);
}

.opacity {
    pointer-events: none;
    opacity: 0.7;
}



.flexRowWithoutWrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.selectableList {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .selectableList .selectableItem {
        padding: 12px 30px;
        background-color: #ffffff;
        border: 1px solid #e0e0e0;
        cursor: pointer;
        border-radius: 0;
        color: #757575;
        transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
        font-size: 16px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        margin-right: -1px;
        width: 220px;
        text-align: center;
    }

        .selectableList .selectableItem:first-child {
            border-radius: 0 8px 8px 0;
        }

        .selectableList .selectableItem:last-child {
            border-radius: 8px 0 0 8px;
            margin-right: 0;
        }

.selectableItem:hover {
    background-color: #f5f5f5;
    color: #424242;
}

.selectableItem.selected {
    background-color: #c8c8c8;
    color: #212121;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}


.hiddenEl {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.visibleEl {
    display: block;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.mr-5 {
    margin-right: 5px;
}

input[type="radio"] {
    accent-color: #188976;
}

.table {
    width: 100%
}

.f-13 {
    font-size: 13px;
}

.m-5 {
    margin: 5px;
}

.dvRadio {
    display: flex;
}

    .dvRadio input {
        margin-left: 3px;
    }


.dvIntroductionServicesAssessIcons {
    display: flex;
    align-items: center;
}

.toggleBody {
    overflow: hidden;
    transition: height 0.5s ease-out;
}

.toggleButton {
    cursor: pointer;
    transition: transform 0.3s;
    width: 25px;
}

    .toggleButton.rotate {
        transform: rotate(180deg);
    }

.cancelBtn-border {
    border: 1px solid rgba(220, 53, 69, 1);
    color: rgba(220, 53, 69, 1);
    background: transparent;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    transition: color 0.3s, border-color 0.3s, box-shadow 0.3s;
    font-weight: 500;
    font-size: 16px;
    white-space: nowrap;
    padding: 7px 16px;
    cursor: pointer;
    touch-action: manipulation;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.totalTr {
    background: gray;
    background-color: #f8f8f8;
    font-weight: bold;
    color: #000;
    background: #288e7b61;
}

.operationButtons img {
    width: 30px;
    padding: 3px
}

.operationButtons {
    width: fit-content;
    flex-wrap: nowrap;
}

.dvImageDetails img {
    max-width: 100%;
}

.dvListOfIntroductions, .dvListOfInvoice {
    width: 100%;
}

/*td:has(.tdButtons) {
    width: fit-content !important;
    max-width: fit-content !important;
}*/

td button {
    padding: 3px 5px !important;
}

#invoiceDeductions {
    width: 100%;
}

.invoiceDetailsContainer {
    display: flex;
    flex-wrap: wrap;
}

.invoiceItem {
    flex: 1 1 33%;
    max-width: 33%;
    padding: 2px;
    box-sizing: border-box;
}

.invoiceDeductionsRow {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.deductionItemContainer {
    display: flex;
    flex-direction: column;
    width: 23%;
    text-align: center;
}



    .deductionItemContainer p {
        font-size: 14px;
        color: #333;
        font-weight: normal;
    }

        .deductionItemContainer p:first-child {
            font-weight: bold;
        }

.invoiceDeductionsTitle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e0f7fa;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
}

.expandButton {
    background-color: #00796b;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

    .expandButton:hover {
        background-color: #004d40;
    }

.invoiceDeductions {
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.toggleSection {
    background-color: #ffffff;
    border: 1px solid #d2d2d2;
    padding: 20px;
    border-radius: 3px;
}

.description {
    padding: 10px;
    margin-bottom: 5px;
    width: 100%;
    background: #c9c9c9;
    border-radius: 3px;
}

.descBox {
    background: #e1ab1436;
    padding: 5px;
    border-radius: 6px;
    text-align: right;
}

.redRow {
    background: #ff00003d;
}
.actionButtons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
}
.showAndHidePassImg {
    position: absolute;
    margin: 10px;
    cursor: pointer;
}
.chkSelectableRow {
    height: 22px;
    width: 22px;
    margin-right: 2px;
}