/* global reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* reset ul  */
ul {
    display: list-item;
    list-style: none;
    margin: 0;
    padding: 0;
}
/* reset button  */
button {
    background-color: transparent;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    outline: none;
    padding: 0px;
}
/* reset a */
a {
    text-decoration: none !important;
}

body {
    background-color: #e9e9e9 !important;
    font-size: 14px;
    font-family: "Droid Arabic Kufi", "play", Arial, Helvetica, sans-serif !important;
}

/* width */
::-webkit-scrollbar {
    width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
    /* background: #edf2f8; */
    background: #e9e9e9;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: rgb(85, 85, 85);
    border-radius: 0px;
}

.h-app {
    min-height: calc(100vh - 55px);
}

/* start global helpers classes */
.pointer {
    cursor: pointer;
}
.fs-15 {
    font-size: 15px !important;
}

.f-14 {
    font-size: 14px !important;
}

.f-13 {
    font-size: 13px !important;
}

.fs-8 {
    font-size: 8px !important;
}
.w-fit {
    width: fit-content !important;
}
.main-section {
    min-height: calc(100vh - 42px - 55px - 70px);
    transition: 0.4s;
}
.title {
    background-color: #cfe8fc;
    padding: 14px;
    border-radius: 5px;
}

/* end global helpers classes */

/* start nav */
.main-navbar {
    width: 100%;
    z-index: 1111;
    position: fixed;
    top: 0%;
    right: 0%;
    background-color: #2d2d2d;
    padding: 10px 15px;
    color: white;
}
.main-navbar .tog-nav {
    font-size: 25px;
    display: flex;
    cursor: pointer;
}
.main-navbar .list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.main-navbar .list-item .icon-nav {
    color: #fff;
    font-size: 16px;
}
.main-navbar .list-item .icon-nav.notice .badge-count {
    background-color: #09aece;
}
.main-navbar .list-item .icon-nav.msg .badge-count {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.main-navbar .list-item .icon-nav .badge-count {
    position: absolute;
    right: -8px;
    top: -4px;
    z-index: 2;
    width: 15px;
    height: 15px;
}
.main-navbar .list-item .icon-nav .dropdown-toggle {
    position: relative;
}
.main-navbar .list-item .icon-nav .dropdown-toggle::after {
    display: none;
}
@media (max-width: 767.98px) {
    .main-navbar .list-item .btn {
        font-size: 12px !important;
        padding: 4px !important;
    }
}

button.icon-nav {
    font-size: 15px !important;
}
/* end nav */
/* start sidebar style */
/* .app {
    overflow-x: hidden;
    display: flex;
}
.app .sidebar {
    -ms-overflow-style: none;
    scrollbar-width: none;
    z-index: 11;
    background-color: #0f4100;
    width: 240px;
    position: fixed;
    overflow-y: auto;
    height: 100%;
    right: 0;
    top: 0%;
    transition: 300ms;
}
.app .sidebar::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}
/* @media (max-width: 991.98px) {
    .app .sidebar {
        right: -240px;
    }
}
.app .sidebar .close {
    color: white;
    font-size: 30px;
    position: absolute;
    top: 0px;
    cursor: pointer;
    display: none;
    left: 10px;
}
@media (max-width: 991.98px) {
    .app .sidebar .close {
        display: block;
    }
}
.app .sidebar .list {
    margin-top: 45px !important;
    padding: 0;
    margin: 0;
    overflow-y: scroll;
    height: 100%;
}
.app .sidebar .list .list-item {
    white-space: nowrap;
}
.app .sidebar .list .list-item a {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    padding: 10px 11px 10px 12px;
    gap: 7px;
    transition: 300ms;
    font-size: 14px;
    font-weight: 300;
    border-top: 1px solid white;
}
.app .sidebar .list .list-item a svg,
.app .sidebar .list .list-item a i {
    font-size: 15px;
    text-shadow: none;
    color: white;
    margin-left: 6px;
}
.app .sidebar .list .list-item a .arrow {
    margin-left: 6px;
    font-size: 12px;
    font-weight: 300;
    transition: transform ease-in-out 0.3s;
}
.app .sidebar .list .list-item a:not(.active):hover {
    cursor: pointer;
    background: white;
    color: #0f4100;
}
.app .sidebar .list .list-item a:not(.active):hover .arrow {
    color: #0f4100;
}
.app .sidebar .list .list-item a:not(.active):hover i,
.app .sidebar .list .list-item a:not(.active):hover svg {
    color: #0f4100;
}
.app .sidebar .list .list-item a .badge-count {
    position: absolute;
    background-color: #ed4e2a;
    top: 50%;
    left: 45px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    min-width: 17px;
    height: 17px;
    font-size: 10px;
}
.app .sidebar .list .list-item a[aria-expanded="true"] .arrow {
    transform: rotate(90deg);
}
.app .sidebar .list .list-item.active a {
    background: white;
    color: #8ac149;
    border-top-color: transparent !important;
}
.app .sidebar .list .list-item.active a:hover {
    background: white !important;
    color: #8ac149;
}
.app .sidebar .list .list-item.active a svg,
.app .sidebar .list .list-item.active a i {
    color: #0f4100 !important;
}
.app .sidebar .list .list-item.active a ::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0%;
    border-width: 12px;
    border-color: transparent transparent transparent #8ac149;
    border-style: solid;
}
.app .sidebar .list .item-collapse {
    margin-top: 4px;
    margin-right: 22px;
    list-style: none;
    position: relative;
}
.app .sidebar .list .item-collapse::before {
    position: absolute;
    right: -7px;
    top: 0;
    border-radius: 10px;
    width: 3px;
    height: 100%;
    background-color: #ddd;
    content: "";
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.app .sidebar .list .item-collapse .list-item a {
    font-size: 14px;
    padding: 12px;
    height: unset !important;
}
.app .sidebar .list .item-collapse .list-item a svg,
.app .sidebar .list .item-collapse .list-item a i {
    font-size: 15px;
}
.app .sidebar .list .item-collapse .list-item a .badge-count {
    min-width: 20px;
    font-size: 12px;
    height: 20px;
    left: 32px;
}
.app .main-side {
    width: calc(100% - 240px);
    margin: 0 auto 0 0;
    transition: 300ms;
    overflow-y: auto;
}
@media (max-width: 991.98px) {
    .app .main-side {
        width: 100%;
    }
}
.app.active .sidebar {
    width: 57px;
}
@media (max-width: 991.98px) {
    .app.active .sidebar {
        width: 240px;
        right: 0;
    }
}
.app.active .sidebar .list {
    transition: 300ms;
}
.app.active .sidebar .list .list-item {
    overflow: hidden;
}
.app.active .sidebar .list .list-item a {
    gap: 18px;
}
.app.active .sidebar .list .list-item a svg:not(.arrow) {
    width: 29px;
}
.app.active .sidebar .list .list-item a .badge-count {
    display: none;
}
.app.active .sidebar:hover {
    width: 240px;
}
.app.active .sidebar:hover .list .list-item {
    overflow: unset;
}
.app.active .sidebar:hover .list .list-item a {
    gap: 7px;
}
.app.active .sidebar:hover .list .list-item a .badge-count {
    display: flex;
}
.app.active .main-side {
    width: calc(100% - 50px);
} */
/* end sidebar style */
/* start footer */
.footer-app {
    background: #3d3d3d;
    height: 55px;
    color: #999999;
    z-index: 1;
    position: relative;
    text-align: start;
    padding: 10px 10px;
}
.footer-app a {
    color: #999999;
}
.footer-app a:hover {
    color: #a09f9f;
}
.footer-app .logo {
    width: 50px;
}
/* end footer */
.badge-count {
    background-color: #ff1f1d;
    font-size: 12px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 18px;
    min-width: 18px;
    font-family: sans-serif;
    border-radius: 5px;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/* start table style */
.main-table {
    width: 100%;
    border-radius: 7px;
    border: none !important;
    text-align: center;
    border: 1px solid #ddd !important;
}
.main-table tr {
    border: 1px solid #ddd !important;
}
.main-table tr th {
    background-color: #f9fafb;
    color: #6b7280;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
    padding: 10px;
}
.main-table tr td {
    background-color: white;
    font-size: 14px;
    padding: 10px;
}
/* end table style */
#inp-date {
    cursor: pointer;
}

.filter {
    font-size: 15px !important;
    font-weight: normal;
    color: black;
    width: fit-content;
    position: relative;
}
.filter select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    cursor: pointer;
    padding: 5px;
    border-radius: 3px;
    outline: none;
    padding-left: 51px;
}
.filter .icon {
    color: #00abd8;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}
.filter .count {
    left: 30px;
    top: 50%;
    font-family: sans-serif;
    transform: translateY(-50%);
    position: absolute;
}
.table-btns {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    min-width: 120px;
}
.table-btns .btn {
    width: fit-content;
    padding: 5px;
}
.bg-orangered {
    background-image: linear-gradient(
        to bottom,
        rgb(255, 98, 41) 0%,
        orangered 100%
    );
    color: white;
}
.bg-orangered:hover {
    background-image: unset;
    background-color: rgb(235, 65, 3);
    color: white;
}
.row {
    display: flex;
    flex-wrap: wrap;
}
.row-gap-24 {
    row-gap: 24px;
}
.fit-content {
    width: fit-content;
}
.table-no-border {
    border: none !important;
}
.table-no-border tr,
.table-no-border td {
    border: none !important;
    background-color: transparent !important;
}
.table-no-border td:first-of-type {
    white-space: nowrap;
}
.table-no-border td {
    padding: 10px;
}
.pop {
    position: fixed;
    left: 0;
    z-index: 2000;
    display: none;
    top: 0;
    background-color: rgba(0, 0, 0, 0.322);
    width: 100%;
    height: 100%;
    overflow: auto;
    text-align: center;
}
.pop .show {
    display: block;
}
.pop .box-pop {
    width: fit-content;
    margin-left: auto;
    padding: 10px;
    margin-top: 5rem;
    max-width: 890px;
    margin-right: auto;
    background-color: white;
}
@media (max-width: 1199.98px) {
    .pop .box-pop {
        max-width: 90%;
    }
}

.pop .box-pop .pop-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    gap: 1rem;
}
.pop .box-pop .pop-title .title {
    color: black;
    font-size: 16x;
}
.pop .box-pop #close-pop {
    cursor: pointer;
}
.pop .pop-content {
    padding-top: 10px;
}
.pop .pop-content form input {
    width: 100%;
}
.modal .modal-title {
    font-size: 16px;
    font-weight: normal;
    color: black;
    float: right;
}
.modal .modal-header .close {
    float: left;
}
input,
select,
textarea {
    width: 100%;
    font-size: 13px;
    padding: 3px;
    color: black;
    border: 1px solid #bbb;
    font-weight: normal;
}
label {
    font-size: 13px;
    padding: 3px;
    font-weight: normal !important;
    margin-bottom: 0 !important;
}
textarea {
    min-height: 90px;
}
input[type="checkbox"] {
    width: fit-content;
}
.remove-inp {
    background-color: #e43949;
    cursor: pointer;
    color: white;
}
.inp-group-btn {
    display: flex;
    padding: 0;
    border-radius: 0 !important;
    align-items: center;
    width: 70px !important;
    justify-content: center;
    color: white;
    background-color: #2c689d;
    border: 1.3px solid #2c689d;
    transition: 0.3s;
}
.inp-group-btn:hover {
    color: white;
    background-color: #255c8c;
    border: 1.3px solid #255c8c !important;
}
.box-border-greey {
    border: 1px solid #8f8f8f;
    padding: 8px 12px;
    border-radius: 9px;
}
.count {
    width: 19px;
    height: 19px;
    font-size: 13px;
    border-radius: 5px;
    background-color: red;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    font-family: sans-serif;
}

/* header */
header {
    background: -moz-linear-gradient(
        270deg,
        #1e195f 0%,
        #130f40 100%
    ); /* ff3.6+ */
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #1e195f),
        color-stop(100%, #130f40)
    ); /* safari4+,chrome */
    background: -webkit-linear-gradient(
        270deg,
        #1e195f 0%,
        #130f40 100%
    ); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(
        270deg,
        #1e195f 0%,
        #130f40 100%
    ); /* opera 11.10+ */
    background: -ms-linear-gradient(
        270deg,
        #1e195f 0%,
        #130f40 100%
    ); /* ie10+ */
    background: linear-gradient(180deg, #1e195f 0%, #130f40 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e195f', endColorstr='#130f40',GradientType=0 ); /* ie6-9 */
    padding: 15px 0;
}
header .logo {
    float: right;
}
header a.controllink {
    background: -moz-linear-gradient(
        270deg,
        #352f84 0%,
        #1e195f 100%
    ); /* ff3.6+ */
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #352f84),
        color-stop(100%, #1e195f)
    ); /* safari4+,chrome */
    background: -webkit-linear-gradient(
        270deg,
        #352f84 0%,
        #1e195f 100%
    ); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(
        270deg,
        #352f84 0%,
        #1e195f 100%
    ); /* opera 11.10+ */
    background: -ms-linear-gradient(
        270deg,
        #352f84 0%,
        #1e195f 100%
    ); /* ie10+ */
    background: linear-gradient(180deg, #352f84 0%, #1e195f 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#352f84', endColorstr='#1e195f',GradientType=0 ); /* ie6-9 */
    display: block;
    float: left;
    height: 45px;
    padding: 0 40px;
    border-radius: 100px;
    color: #fff;
    font-size: 16px;
    line-height: 45px;
    margin: 2px auto;
}
header a.controllink:hover {
    background: -moz-linear-gradient(
        270deg,
        #1e195f 0%,
        #352f84 100%
    ); /* ff3.6+ */
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #1e195f),
        color-stop(100%, #352f84)
    ); /* safari4+,chrome */
    background: -webkit-linear-gradient(
        270deg,
        #1e195f 0%,
        #352f84 100%
    ); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(
        270deg,
        #1e195f 0%,
        #352f84 100%
    ); /* opera 11.10+ */
    background: -ms-linear-gradient(
        270deg,
        #1e195f 0%,
        #352f84 100%
    ); /* ie10+ */
    background: linear-gradient(180deg, #1e195f 0%, #352f84 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e195f', endColorstr='#352f84',GradientType=0 ); /* ie6-9 */
}

.pop_aqarat .pop {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1003;
    background-color: white;
    box-shadow: black 0 0 10px 0;
    padding: 35px;
    display: none;
}
.pop_aqarat .pop .close {
    background-color: black;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    font-size: 20px;
    opacity: 1 !important;
    justify-content: center;
    color: white;
    width: 30px;

    height: 30px;
}

.pop_aqarat .pop input[type="text"] {
    display: block;
    padding: 7px;
    border: 1px solid #888;
    font-size: 18px;
    outline: none;
    border-radius: 4px;
}
.pop_aqarat .pop input[type="text"]::placeholder {
    color: #888;
}
.pop_aqarat .pop input[type="submit"] {
    margin: 15px auto 0;
    text-align: center;
    display: block;
}
.pop_aqarat.show .pop {
    display: block;
}
/* End header */

/* homepage */

.logo2 {
    margin: 15px auto 30px;
    text-align: center;
}
.logo2 img {
    max-width: 100%;
    height: auto;
}
#homepagearea {
    background-color: #fff;
    box-shadow: 0 0 8px 0 rgba(170, 179, 204, 0.23);
    border-radius: 4px;
    margin: 0 auto 50px;
}
#homepagearea li #tasdeed_count {
    background-color: red;
    position: absolute;
    left: 3px;
    top: 3px;
    color: white;
    width: 17px;
    display: flex;
    font-size: 11px;
    align-items: center;
    justify-content: center;
    height: 17px;
    border-radius: 50%;
}
#homepagearea li {
    position: relative;
}
#homepagearea nav {
    background: -moz-linear-gradient(
        270deg,
        #ffffff 0%,
        #e9edf6 100%
    ); /* ff3.6+ */
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #ffffff),
        color-stop(100%, #e9edf6)
    ); /* safari4+,chrome */
    background: -webkit-linear-gradient(
        270deg,
        #ffffff 0%,
        #e9edf6 100%
    ); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(
        270deg,
        #ffffff 0%,
        #e9edf6 100%
    ); /* opera 11.10+ */
    background: -ms-linear-gradient(
        270deg,
        #ffffff 0%,
        #e9edf6 100%
    ); /* ie10+ */
    background: linear-gradient(180deg, #ffffff 0%, #e9edf6 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e9edf6',GradientType=0 ); /* ie6-9 */
    border: 1px solid #c4c5d5;
    box-shadow: 0 0 9px 0 rgba(170, 179, 204, 0.47);
}
#homepagearea nav ul li {
    float: right;
    border-left: 1px solid rgba(143, 154, 184, 0.27);
}
#homepagearea nav ul li a,
#homepagearea nav ul li button {
    display: block;
    margin: 0 auto;
    padding: 15px 25px 10px 25px;
    border: none;
    height: 100%;
    border-radius: 0;
    background-color: transparent;
    display: flex !important;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: normal;
    -webkit-transition: all 0s ease-in-out;
    -moz-transition: all 0s ease-in-out;
    -o-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
}
.drop-down {
    display: block;
    margin: 0 auto;
    padding: 4px 16px 4px 16px;
    border: none;
    background-color: transparent;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-radius: 0;
    line-height: normal;
    -webkit-transition: all 0s ease-in-out;
    cursor: pointer;
    -moz-transition: all 0s ease-in-out;
    -o-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
}

.drop-down > .arrow {
    margin: 0;
    height: fit-content;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    font-size: 13px !important;
}

.drop-down .list-down {
    position: absolute;
    left: 0;
    display: none;
    z-index: 1000;
    background-color: #f3f5fa;
    top: 100%;
}
.drop-down .list-down.show {
    display: block;
}
.drop-down .list-down li {
    border: none !important;
    float: none !important;
}
.drop-down .list-down a {
    display: block;
    white-space: nowrap;
    padding: 7px !important;
}
.main-title {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 1.5rem;
}
#homepagearea nav ul li a:hover,
#homepagearea nav ul li button:hover {
    background-color: #36c6d305 !important;
}

#homepagearea nav ul li a:active,
#homepagearea nav ul li a:focus,
#homepagearea nav ul li button:active,
#homepagearea nav ul li button:focus {
    background: -moz-linear-gradient(
        270deg,
        #f0f0f0 0%,
        #dadee7 100%
    ); /* ff3.6+ */
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #f0f0f0),
        color-stop(100%, #dadee7)
    ); /* safari4+,chrome */
    background: -webkit-linear-gradient(
        270deg,
        #f0f0f0 0%,
        #dadee7 100%
    ); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(
        270deg,
        #f0f0f0 0%,
        #dadee7 100%
    ); /* opera 11.10+ */
    background: -ms-linear-gradient(
        270deg,
        #f0f0f0 0%,
        #dadee7 100%
    ); /* ie10+ */
    background: linear-gradient(180deg, #f0f0f0 0%, #dadee7 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f0f0', endColorstr='#dadee7',GradientType=0 ); /* ie6-9 */
}
#homepagearea nav ul li.active a,
#homepagearea nav ul li.active a:hover,
#homepagearea nav ul li.active a:active,
#homepagearea nav ul li.active a:focus {
    background: #130f40;
    color: white;
}
#homepagearea nav ul li:nth-child(2n) span {
    background-position: -264px top;
    width: 47px;
}
#homepagearea nav ul li:nth-child(3n) span {
    background-position: -219px top;
    width: 47px;
}
#homepagearea nav ul li:nth-child(4n) span {
    background-position: -125px top;
    width: 33px;
}
#homepagearea nav ul li:nth-child(5n) span {
    background-position: -158px top;
    width: 36px;
}
#homepagearea nav ul li:nth-child(6n) span {
    background-position: -92px top;
    width: 33px;
}
#homepagearea nav ul li:nth-child(7n) span {
    background-position: -158px top;
    width: 36px;
}
#homepagearea nav ul li:nth-child(8n) span {
    background-position: 0px top;
    width: 33px;
}
#homepagearea nav ul li:nth-child(9n) span {
    background-position: 0 top;
    width: 33px;
}
#homepagearea nav ul li:nth-child(1n).active span {
    background-position: right bottom;
}
#homepagearea nav ul li:nth-child(2n).active span {
    background-position: -264px top;
    width: 47px;
}
#homepagearea nav ul li:nth-child(3n).active span {
    background-position: -219px bottom;
    width: 47px;
}
#homepagearea nav ul li:nth-child(4n).active span {
    background-position: -125px bottom;
    width: 33px;
}
#homepagearea nav ul li:nth-child(5n).active span {
    background-position: -158px bottom;
    width: 36px;
}
#homepagearea nav ul li:nth-child(6n).active span {
    background-position: -92px bottom;
    width: 33px;
}
#homepagearea nav ul li:nth-child(7n).active span {
    background-position: -158px bottom;
    width: 36px;
}
#homepagearea nav ul li:nth-child(8n).active span {
    background-position: 0px bottom;
    width: 33px;
}
#homepagearea nav ul li:nth-child(9n).active span {
    background-position: 0 bottom;
    width: 33px;
}
#homepagearea nav ul li a span {
    height: 40px;
    background: url("../images/icons.png") no-repeat scroll right top;
    width: 37px;
    display: block;
    margin: 0 auto 5px;
}
#homepagearea nav ul li a p,
#homepagearea nav ul li button p {
    display: block;
    margin: 0 auto;
    font-size: 15px;
    color: #000000;
}
#homepagearea nav ul li.active a p,
#homepagearea nav ul li.active a:hover p,
#homepagearea nav ul li.active a:active p,
#homepagearea nav ul li.active a:focus p {
    color: #ffffff;
}
#homepagearea nav ul li i {
    font-size: 25px;
    color: #8f9ab8;
    margin-bottom: 5px;
    margin-top: 5px;
}

#homepagearea ul.nav-tabs {
    text-align: center;
    border: none;
    margin: 20px;
}
#homepagearea ul.nav-tabs li {
    display: inline-block;
    float: none;
    margin: auto 20px;
    width: 45%;
}
#homepagearea ul.nav-tabs li a {
    background: -moz-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #ffffff),
        color-stop(100%, #e9edf6)
    );
    background: -webkit-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -o-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -ms-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: linear-gradient(180deg, #ffffff 0%, #e9edf6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e9edf6',GradientType=0 );
    border: 1px solid #c4c5d5;
    box-shadow: 0 0 9px 0 rgba(170, 179, 204, 0.47);
    display: block;
    margin: 0 auto;
    border-radius: 4px;
    font-size: 15px;
    padding: 10px;
    font-weight: bold;
    color: #130f40;
    -webkit-transition: all 0s ease-in-out;
    -moz-transition: all 0s ease-in-out;
    -o-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
}
#homepagearea ul.nav-tabs li.active a,
#homepagearea ul.nav-tabs li.active a:hover,
#homepagearea ul.nav-tabs li.active a:active,
#homepagearea ul.nav-tabs li.active a:focus {
    background: #8f9ab8;
    color: #ffffff;
}
#homepagearea .tab-pane .block1 {
    margin: 15px auto 20px;
}
#homepagearea .tab-pane .block1 .title {
    background: -moz-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #ffffff),
        color-stop(100%, #e9edf6)
    );
    background: -webkit-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -o-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -ms-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: linear-gradient(180deg, #ffffff 0%, #e9edf6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e9edf6',GradientType=0 );
    border: 1px solid #c4c5d5;
    display: block;
    font-size: 17px;
    padding: 5px;
    color: #130f40;
    text-align: center;
}
#homepagearea .tab-pane .block1 input {
    display: block;
    width: 100%;
    height: 40px;
    padding: 0 10px;
    margin: 10px auto;
    border: 1px solid #c4c5d5;
    font-size: 15px;
    color: #000000;
}
#homepagearea .tab-pane .block1 select {
    background: #ffffff url("images/selectarrow.png") no-repeat scroll left
        center;
    border: 1px solid #c4c5d5;
    color: #000000;
    cursor: pointer;
    font-size: 15px;
    height: 40px;
    margin: 0 auto;
    outline: medium none;
    padding: 0 10px;
    position: relative;
    text-overflow: "";
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
}
#homepagearea .tab-pane .block1 input:active,
#homepagearea .tab-pane .block1 input:focus,
#homepagearea .tab-pane .block1 select:active,
#homepagearea .tab-pane .block1 select:focus {
    background: -moz-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #ffffff),
        color-stop(100%, #e9edf6)
    );
    background: -webkit-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -o-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -ms-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: linear-gradient(180deg, #ffffff 0%, #e9edf6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e9edf6',GradientType=0 );
    box-shadow: 0 0 9px 0 rgba(170, 179, 204, 0.47);
}
#homepagearea .tab-pane .block2 {
    margin: 0 auto 20px;
    border: 1px solid #c4c5d5;
}
#homepagearea .tab-pane .block2 .title {
    background: -moz-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #ffffff),
        color-stop(100%, #e9edf6)
    );
    background: -webkit-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -o-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -ms-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: linear-gradient(180deg, #ffffff 0%, #e9edf6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e9edf6',GradientType=0 );
    border-bottom: 1px solid #c4c5d5;
    display: block;
    font-size: 17px;
    padding: 5px;
    color: #130f40;
    text-align: center;
}
#homepagearea .tab-pane .block2 .content {
    padding: 15px 15px 0;
}
#homepagearea .tab-pane .block2 .content label {
    text-align: right;
    margin: 0 auto;
    line-height: 40px;
    font-weight: normal;
    display: block;
    font-size: 14px;
    color: #000000;
}
#homepagearea .tab-pane .block2 .content input {
    display: block;
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #c4c5d5;
    font-size: 15px;
    color: #000000;
}
#homepagearea .tab-pane .block2 .content textarea {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #c4c5d5;
    font-size: 15px;
    color: #000000;
}
#homepagearea .tab-pane .block2 .content input:active,
#homepagearea .tab-pane .block2 .content input:focus,
#homepagearea .tab-pane .block2 .content textarea:active,
#homepagearea .tab-pane .block2 .content textarea:focus {
    background: -moz-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #ffffff),
        color-stop(100%, #e9edf6)
    );
    background: -webkit-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -o-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -ms-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: linear-gradient(180deg, #ffffff 0%, #e9edf6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e9edf6',GradientType=0 );
    box-shadow: 0 0 9px 0 rgba(170, 179, 204, 0.47);
}
#homepagearea .tab-pane .block2 .content textarea.addnote {
    margin: 0 auto 15px;
}
#homepagearea .tab-pane button {
    padding: 5px 60px;
    font-weight: bold;
    color: #fff;
    background-color: #130f40;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    margin: 0 auto 20px;
    display: block;
}
#homepagearea .tab-pane button:hover {
    background-color: #272354;
}
#homepagearea .tab-pane .block3 {
    margin: 0 auto 20px;
    border: 1px solid #c4c5d5;
}
#homepagearea .tab-pane .title {
    cursor: pointer;
}
#homepagearea .tab-pane .block3 .title {
    cursor: pointer;
    background: -moz-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #ffffff),
        color-stop(100%, #e9edf6)
    );
    background: -webkit-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -o-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -ms-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: linear-gradient(180deg, #ffffff 0%, #e9edf6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e9edf6',GradientType=0 );
    border-bottom: 1px solid #c4c5d5;
    display: block;
    font-size: 17px;
    padding: 5px;
    color: #130f40;
    text-align: center;
}
#homepagearea .tab-pane .block3 .content {
    padding: 15px 15px 0;
}
#homepagearea .tab-pane .block3 .content label {
    text-align: right;
    margin: 0 auto;
    line-height: 40px;
    font-weight: normal;
    display: block;
    font-size: 14px;
    color: #000000;
}
#homepagearea .tab-pane .block3 .content .radioarea {
    background-color: #f5f5f5;
    border-radius: 4px;
    height: 40px;
    padding: 6px 10px;
}
#homepagearea .tab-pane .block3 .content label.radio-inline {
    margin: 0 0 0 50px;
    display: inline-block;
    line-height: normal;
    height: auto;
}
#homepagearea .tab-pane .block3 .content label.radio-inline input {
    margin: 7px -20px 0 0;
}
#homepagearea .tab-pane .block3 .content textarea {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #c4c5d5;
    font-size: 15px;
    color: #000000;
}
#homepagearea .tab-pane .block3 .content textarea:active,
#homepagearea .tab-pane .block3 .content textarea:focus {
    background: -moz-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #ffffff),
        color-stop(100%, #e9edf6)
    );
    background: -webkit-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -o-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -ms-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: linear-gradient(180deg, #ffffff 0%, #e9edf6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e9edf6',GradientType=0 );
    box-shadow: 0 0 9px 0 rgba(170, 179, 204, 0.47);
}
#homepagearea .block4 {
    margin: 30px auto;
    border: 1px solid #c4c5d5;
}
#homepagearea .block4 .title {
    background: -moz-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #ffffff),
        color-stop(100%, #e9edf6)
    );
    background: -webkit-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -o-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -ms-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: linear-gradient(180deg, #ffffff 0%, #e9edf6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e9edf6',GradientType=0 );
    border-bottom: 1px solid #c4c5d5;
    display: block;
    font-size: 17px;
    padding: 5px;
    color: #130f40;
    text-align: center;
}
#homepagearea > .toggle {
    cursor: pointer;
    width: fit-content;
    margin-right: auto;
    margin-left: 10px;
}
@media (min-width: 1200px) {
    #homepagearea > .toggle {
        display: none;
    }
    #homepagearea .ul-list .toggle i {
        display: none;
    }
}
#homepagearea > .toggle > i {
    font-size: 25px;
    color: black;
}
#homepagearea .ul-list {
    text-align: center;
    display: flex;
    justify-content: center;
}
@media (max-width: 1199.98px) {
    #homepagearea {
        background: transparent;
        box-shadow: none;
        width: 100%;
        margin-left: 0;
        margin-right: auto;
        border: none;
        position: relative;
    }
    #homepagearea nav {
        background: transparent;
        box-shadow: none;
        border: none;
    }
    #homepagearea .ul-list {
        position: absolute;
        flex-direction: column;
        left: 0;
        top: calc(100% + 6px);
        gap: 0px;
        padding: 10px;
        justify-content: flex-start;
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        overflow: auto;
        z-index: 1000;
        background-color: rgb(51, 51, 51);
        width: 50%;
        display: none;
    }
    #homepagearea .ul-list li {
        border-left: none;
        padding: 5px;
    }
    #homepagearea .ul-list i {
        font-size: 16px;
        color: white;
    }
    #homepagearea .ul-list .logut p {
        display: none;
    }
    #homepagearea .ul-list .toggle i {
        font-size: 25px;
        cursor: pointer;
        color: white;
    }
    #homepagearea .ul-list .toggle:hover {
        font-size: 25px;
        color: white;
        background: rgb(51, 51, 51);
    }
    #homepagearea .ul-list p {
        color: white;
        font-size: 13px;
    }
    #homepagearea .ul-list a {
        padding: 0;
    }
    #homepagearea .ul-list button {
        padding: 0;
    }
    #homepagearea .ul-list li > div {
        padding: 0;
    }
    #homepagearea .ul-list a:hover {
        background: linear-gradient(
            180deg,
            rgb(51, 51, 51) 0%,
            rgba(124, 124, 124, 0.555) 100%
        );
        /* background: linear-gradient( 180deg, rgb(54 198 211) 0%, rgba(124, 124, 124, 0.555) 100% ); */
    }
    #homepagearea .ul-list button:hover {
        background: linear-gradient(
            180deg,
            rgb(51, 51, 51) 0%,
            rgba(124, 124, 124, 0.555) 100%
        );
    }
    #homepagearea .ul-list li > div:hover {
        background: linear-gradient(
            180deg,
            rgb(51, 51, 51) 0%,
            rgba(124, 124, 124, 0.555) 100%
        );
    }
    #homepagearea .ul-list .list-down {
        width: 100%;
    }
    #homepagearea .ul-list .list-down .list-item {
        background: rgba(83, 82, 82, 0.63);
        color: white;
    }
    #homepagearea .ul-list .list-down .list-item:hover {
        color: white;
        background: linear-gradient(
            180deg,
            rgba(83, 82, 82, 0.63) 0%,
            rgba(83, 82, 82, 0.63) 100%
        );
    }
}

#homepagearea .block4 .content {
    padding: 15px 15px 0;
}
#homepagearea .block4 .content .input-group {
    margin: 0 auto 15px;
}
#homepagearea .block4 .content .input-group span {
    padding: 0 10px;
    font-size: 21px;
}
#homepagearea .block4 .content .input-group input.form-control {
    height: 40px;
    padding: 0 10px;
    font-size: 15px;
    color: #000;
}
#homepagearea .block4 .content button {
    height: 40px;
    border-radius: 4px;
    margin: 0 auto 20px;
    padding: 0 40px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    border: none;
    background-color: #130f40;
}
#homepagearea .block4 .content button:hover {
    background-color: #272354;
}
#homepagearea .block4 table.table thead th {
    background-color: #8893b0;
    text-align: center;
    padding: 10px;
    color: #fff;
    border: none;
    font-size: 13px;
}

.group_info .info {
    background-color: #1787e0;
    color: white;
    display: inline-block;
    margin: 5px 0px;
    padding: 0.5rem 1rem;
    border-radius: 3px;
}
.homepagetable form .input-group {
    margin-bottom: 15px;
}
.homepagetable .table {
    overflow: scroll;
}
/* .homepagetable table.table {
    overflow: hidden;
} */
.homepagetable table.table caption {
    color: #000;
    font-size: 16px;
}
.block4 table.table tbody td {
    background-color: #f9f9f9;
    text-align: center;
    font-size: 13px;
    color: #000;
    line-height: normal;
    vertical-align: middle;
    padding: 10px;
}

.homepagetable table.table tbody td img {
    max-width: 75px;
    cursor: pointer;
}

.homepagetable table.table tbody td .pop {
    position: fixed;
    left: 50%;

    width: 700px;
    top: 50%;
    z-index: 1000;
    transform: translate(-50%, -50%);
}
.homepagetable table.table tbody td .pop {
    box-shadow: #555 0 0 10px 0, #777 0 0 25px 0;
}
.homepagetable table.table tbody td .pop img {
    max-width: unset;
    cursor: unset;

    width: 100%;
}

.homepagetable table.table tbody td .id .close {
    position: absolute;
    left: 0;
    width: 30px;
    height: 30px;
    background-color: black;
    color: white;
    justify-content: center;
    align-items: center;
    font-family: "play";

    top: 0;
    display: none;
}
.homepagetable table.table tbody td .pop .close {
    display: flex;
}
.homepagetable table.table tbody td input[type="checkbox"] {
    width: 15px;
    height: 15px;
}

.homepagetable .notice {
    background-color: white;
    border-radius: 5px;
    padding: 25px;
}
.homepagetable .notice p {
    margin: 0;
    padding: 15px 0;
    border-bottom: 1px solid #bbb;
    position: relative;
}
.homepagetable .notice p .notice_head {
    color: #0698cf;
}
.homepagetable .notice p .notice_footer {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.homepagetable .box {
    background-color: white;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 6px;
    border-radius: 5px;
}
.homepagetable .box-2 {
    background-color: white;
    margin-bottom: 20px;
    border-radius: 5px;
    padding: 6px;
    overflow: hidden;
}
.homepagetable .box .col {
    padding: 6px 6px !important;
}
.homepagetable .box .box-child {
    background-color: hsl(207deg 88% 90%);
    padding: 30px 0;
    text-align: center;
    border-radius: 5px;
    position: relative;
}
.homepagetable .box .box-child i {
    color: hsl(207deg 32% 21%);
    font-size: 30px;
    margin-bottom: 5px;
}
.homepagetable .box .box-child h3 {
    font-size: 13px;
    color: #000;
}
.homepagetable .box .box-child .count {
    background-color: hsl(101deg 94% 39%);
    color: white;
    font-size: 14px;
    width: 25px;
    left: 50%;
    transform: translateX(-50%);
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    border-radius: 5px;
    margin: auto;
    margin-top: 5px;
    bottom: 7px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #000000;
    opacity: 1; /* Firefox */
}
:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #000000;
}
::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #000000;
}

/* End homepage */
/* loginpage */
.loginpage {
    background-color: #fff;
    padding: 10px;
}
.loginpage .title {
    background: -moz-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #ffffff),
        color-stop(100%, #e9edf6)
    );
    background: -webkit-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -o-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -ms-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: linear-gradient(180deg, #ffffff 0%, #e9edf6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e9edf6',GradientType=0 );
    border-bottom: 1px solid #c4c5d5;
    display: block;
    font-size: 17px;
    padding: 5px;
    color: #130f40;
    text-align: center;
}
.loginpage .content {
    padding: 15px;
    background-color: #fff;
}
.loginpage .content .input-group span {
    padding: 0 15px;
    font-size: 20px;
}
.loginpage .content .input-group .form-control {
    height: 40px;
    padding: 0 10px;
    font-size: 15px;
    color: #191919;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.loginpage .content .fpass {
    line-height: 35px;
    font-size: 15px;
}
.loginpage .content button {
    height: 35px;
    padding: 0 30px;
    border-radius: 4px;
    font-weight: bold;
    color: #fff;
    border: none;
    font-size: 15px;
    box-shadow: 0 3px 0 0 #1f2270;
    line-height: 35px;
}
/* End loginpage */

/* billspage */
.billspage {
    margin: 30px auto;
    border: 1px solid #c4c5d5;
}
.billspage .title {
    background: -moz-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #ffffff),
        color-stop(100%, #e9edf6)
    );
    background: -webkit-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -o-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -ms-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: linear-gradient(180deg, #ffffff 0%, #e9edf6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e9edf6',GradientType=0 );
    border-bottom: 1px solid #c4c5d5;
    display: block;
    font-size: 17px;
    padding: 5px;
    color: #130f40;
    text-align: center;
}
.billspage .content {
    padding: 15px;
}
.billspage .content .buttonsarea {
    margin: 0 0 30px 0;
}
.billspage .content .buttonsarea a {
    display: inline-block;
    margin: 0 0 0 10px;
    height: 35px;
    padding: 0 20px;
    line-height: 33px;
    font-size: 15px;
}
.billspage .content .buttonsarea a.btn-danger {
    margin: 20px auto 0;
}
.billspage .content .buttonsarea a i.fa {
    margin: 0 0 0 5px;
}
#homepagearea .billspage .content .billsarea table.table thead tr th {
    background: #f5f5f5;
    font-weight: normal;
    vertical-align: middle;
    text-align: center;
    line-height: normal;
    border: 1px solid #eee;
}
.billspage .content .billsarea .clinic_name span {
    display: block;
    font-size: 17px;
    color: #191919;
    line-height: 26px;
}
.billspage .content .billsarea .clinic_name i {
    font-style: normal;
    font-size: 16px;
    color: #555;
    line-height: 26px;
    display: block;
    margin: 5px auto;
}
.billspage .content .billsarea .clinic_name p {
    display: block;
    margin: 0 auto;
    direction: ltr;
    font-size: 16px;
    line-height: 23px;
    color: #666;
}
.billspage .content .billsarea .clinic_logo {
    display: block;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}
.billspage .content .billsarea .clinic_logo img {
    max-height: 120px;
    max-width: 100%;
}
.billspage .content .billsarea .clinic_date {
    font-size: 17px;
    text-align: center;
    color: #444;
    margin: 43px auto;
}
.billspage .content .billsarea .billnum {
    margin: 30px auto;
    color: #130f40;
    padding: 15px;
    font-size: 20px;
    font-weight: normal;
    text-align: center;
    background-color: #f5f6fa;
    border-color: #e6e7eb;
}
.content .billsarea .billnum p {
    color: red;
    text-align: center;
    font-size: 17px;
    display: inline-block;
    margin: 0 0 0 10px;
}
#homepagearea .billspage .content .billsarea table.table tbody tr td.info1,
#homepagearea .billspage .content .billsarea table.table tbody tr td.info2 {
    padding: 10px;
    font-size: 16px;
    color: #130f40;
    line-height: normal;
    vertical-align: middle;
}
/* End billspage */

/* datespage */
.datespage {
    margin: 20px 15px;
    border: 1px solid #c4c5d5;
}
.datespage .title {
    background: -moz-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #ffffff),
        color-stop(100%, #e9edf6)
    );
    background: -webkit-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -o-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -ms-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: linear-gradient(180deg, #ffffff 0%, #e9edf6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e9edf6',GradientType=0 );
    border-bottom: 1px solid #c4c5d5;
    display: block;
    font-size: 17px;
    padding: 5px;
    color: #130f40;
    text-align: center;
}
.datespage .content {
    padding: 15px;
}
.datespage .toparea {
    margin: 0 auto 20px;
}
.datespage .toparea a.btn {
    height: 40px;
    padding: 0;
    line-height: 38px;
    display: block;
}
.datespage .toparea label {
    height: 40px;
    padding: 0;
    margin: 0;
    font-weight: normal;
    font-size: 17px;
    text-align: left;
    display: block;
    color: #000;
}
.datespage .toparea input {
    height: 40px;
    padding: 0 10px;
    font-size: 16px;
    color: #000;
}
.datespage .toparea button {
    display: block;
    height: 40px;
    line-height: 38px;
    width: 100%;
    padding: 0;
    font-weight: bold;
    font-size: 17px;
}
.datespage table.table thead th {
    background-color: #8893b0;
    text-align: center;
    padding: 10px;
    color: #fff;
    border: none;
}
.datespage table.table tbody td {
    background: -moz-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #ffffff),
        color-stop(100%, #e9edf6)
    );
    background: -webkit-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -o-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -ms-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: linear-gradient(180deg, #ffffff 0%, #e9edf6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e9edf6',GradientType=0 );
    border-color: #d9dde6;
    text-align: center;
    font-size: 15px;
    color: #000;
    line-height: normal;
    padding: 10px 5px;
    vertical-align: middle;
}
.datespage table.table tbody td:nth-child(2n) {
    background: -moz-linear-gradient(270deg, #ffffff 0%, #d7dbe6 100%);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #ffffff),
        color-stop(100%, #d7dbe6)
    );
    background: -webkit-linear-gradient(270deg, #ffffff 0%, #d7dbe6 100%);
    background: -o-linear-gradient(270deg, #ffffff 0%, #d7dbe6 100%);
    background: -ms-linear-gradient(270deg, #ffffff 0%, #d7dbe6 100%);
    background: linear-gradient(180deg, #ffffff 0%, #d7dbe6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#d7dbe6',GradientType=0 );
}
.datespage table.table tbody td a {
    display: block;
    height: 30px;
    line-height: 28px;
    padding: 0 15px;
    font-weight: bold;
    font-size: 13px;
}
.datespage table.table tbody td span {
    height: 30px;
    line-height: 30px;
    display: inline-block;
    padding: 0 25px;
}
.datespage .adddate label {
    line-height: 40px;
    padding: 0 15px;
    text-align: right;
    font-size: 16px;
    color: #000;
    font-weight: normal;
}
.datespage .adddate input,
.datespage .adddate select {
    height: 40px;
    padding: 0 10px;
    font-size: 15px;
    color: #000;
}
.datespage .adddate button {
    height: 40px;
    padding: 0 40px;
    font-weight: bold;
    font-size: 15px;
    line-height: 38px;
}
.datespage table.table thead th.viewbg1 {
    background: -moz-linear-gradient(270deg, #1e195f 0%, #130f40 100%);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #1e195f),
        color-stop(100%, #130f40)
    );
    background: -webkit-linear-gradient(270deg, #1e195f 0%, #130f40 100%);
    background: -o-linear-gradient(270deg, #1e195f 0%, #130f40 100%);
    background: -ms-linear-gradient(270deg, #1e195f 0%, #130f40 100%);
    background: linear-gradient(180deg, #1e195f 0%, #130f40 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e195f', endColorstr='#130f40',GradientType=0 );
    padding: 5px 10px;
    vertical-align: middle;
}
.datespage table.table thead th.viewbg2 {
    background: -moz-linear-gradient(270deg, #1e195f 0%, #130f40 100%);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #1e195f),
        color-stop(100%, #130f40)
    );
    background: -webkit-linear-gradient(270deg, #1e195f 0%, #130f40 100%);
    background: -o-linear-gradient(270deg, #1e195f 0%, #130f40 100%);
    background: -ms-linear-gradient(270deg, #1e195f 0%, #130f40 100%);
    background: linear-gradient(180deg, #1e195f 0%, #130f40 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e195f', endColorstr='#130f40',GradientType=0 );
    padding: 10px;
    vertical-align: middle;
    text-align: left;
    direction: ltr;
    padding: 5px 10px;
    font-weight: normal;
}
.datespage table.table thead th.viewbg2 p {
    display: block;
    margin: 5px auto;
    font-size: 16px;
}
a.printico {
    display: inline-block;
    margin: 20px 15px 0 0;
    height: 40px;
    line-height: 38px;
    padding: 0 40px;
    font-size: 19px;
}
/* End datespage */

/* viewlogpage */
.viewlogpage {
    margin: 20px 15px;
    border: 1px solid #c4c5d5;
}
.viewlogpage .viewlogbut {
    background: -moz-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #ffffff),
        color-stop(100%, #e9edf6)
    );
    background: -webkit-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -o-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -ms-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: linear-gradient(180deg, #ffffff 0%, #e9edf6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e9edf6',GradientType=0 );
    border-bottom: 1px solid #c4c5d5;
    padding: 10px;
}
.viewlogpage .viewlogbut button[type="submit"] {
    height: 35px;
    padding: 0 20px;
    border-radius: 4px;
    font-weight: bold;
    border: none;
    font-size: 14px;
    color: #ffffff;
    margin: 0 0 0 15px;
    line-height: 35px;
}
.viewlogpage .viewlogbut button[type="submit"].edit {
    background-color: #00aeef;
    box-shadow: 0 3px 0 0 #0698cf;
}
.viewlogpage .viewlogbut button[type="submit"].edit:hover {
    background-color: #0698cf;
}
.viewlogpage .viewlogbut button[type="submit"].del {
    background-color: #ed1c24;
    box-shadow: 0 3px 0 0 #cf161d;
}
.viewlogpage .viewlogbut button[type="submit"].del:hover {
    background-color: #cf161d;
}
.viewlogpage .viewlogbut button[type="submit"] i.fa {
    margin: 0 0 0 5px;
}
.viewlogpage .content {
    padding: 15px;
}
.viewlogpage .content table.table tbody td {
    font-size: 15px;
    vertical-align: middle;
    color: #191919;
    padding: 10px;
    line-height: normal;
}
/* End viewlogpage */

/* footer */
.doctorepage {
    margin: 20px 15px;
    border: 1px solid #c4c5d5;
}
.doctorepage .sidebar {
    float: right;
    width: 20%;
}
.doctorepage .sidebar span {
    display: block;
    background-color: #333;
    text-align: center;
    font-size: 16px;
    padding: 10px;
    color: #fff;
}
.doctorepage .sidebar p {
    display: block;
    margin: 0 auto;
    font-size: 16px;
    text-align: center;
    background-color: #555;
    color: #fff;
    padding: 5px;
}
.doctorepage .sidebar a {
    background: -moz-linear-gradient(
        270deg,
        #ffffff 0%,
        #e9edf6 100%
    ); /* ff3.6+ */
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #ffffff),
        color-stop(100%, #e9edf6)
    ); /* safari4+,chrome */
    background: -webkit-linear-gradient(
        270deg,
        #ffffff 0%,
        #e9edf6 100%
    ); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(
        270deg,
        #ffffff 0%,
        #e9edf6 100%
    ); /* opera 11.10+ */
    background: -ms-linear-gradient(
        270deg,
        #ffffff 0%,
        #e9edf6 100%
    ); /* ie10+ */
    background: linear-gradient(180deg, #ffffff 0%, #e9edf6 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e9edf6',GradientType=0 ); /* ie6-9 */
    display: block;
    color: #000;
    padding: 10px 15px;
    font-size: 16px;
    border-bottom: 1px solid #c4c5d5;
}
.doctorepage .sidebar a:hover,
.doctorepage .sidebar a:active,
.doctorepage .sidebar a:focus {
    background: -moz-linear-gradient(
        270deg,
        #f0f0f0 0%,
        #dadee7 100%
    ); /* ff3.6+ */
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #f0f0f0),
        color-stop(100%, #dadee7)
    ); /* safari4+,chrome */
    background: -webkit-linear-gradient(
        270deg,
        #f0f0f0 0%,
        #dadee7 100%
    ); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(
        270deg,
        #f0f0f0 0%,
        #dadee7 100%
    ); /* opera 11.10+ */
    background: -ms-linear-gradient(
        270deg,
        #f0f0f0 0%,
        #dadee7 100%
    ); /* ie10+ */
    background: linear-gradient(180deg, #f0f0f0 0%, #dadee7 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f0f0', endColorstr='#dadee7',GradientType=0 ); /* ie6-9 */
}
.doctorepage .sidebar a.active {
    background: -moz-linear-gradient(270deg, #1e195f 0%, #130f40 100%);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #1e195f),
        color-stop(100%, #130f40)
    );
    background: -webkit-linear-gradient(270deg, #1e195f 0%, #130f40 100%);
    background: -o-linear-gradient(270deg, #1e195f 0%, #130f40 100%);
    background: -ms-linear-gradient(270deg, #1e195f 0%, #130f40 100%);
    background: linear-gradient(180deg, #1e195f 0%, #130f40 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e195f', endColorstr='#130f40',GradientType=0 );
    color: #ffffff;
}
.doctorepage .content {
    float: right;
    width: 80%;
    padding: 15px;
    border-right: 1px solid #ddd;
    min-height: 400px;
}
.doctorepage .timetable table.table thead th {
    background-color: #8893b0;
    text-align: center;
    padding: 10px;
    color: #fff;
    border: none;
}
.doctorepage .timetable table.table tbody td {
    background: -moz-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #ffffff),
        color-stop(100%, #e9edf6)
    );
    background: -webkit-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -o-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -ms-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: linear-gradient(180deg, #ffffff 0%, #e9edf6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e9edf6',GradientType=0 );
    border-color: #d9dde6;
    text-align: center;
    font-size: 15px;
    color: #000;
    line-height: normal;
    padding: 10px 5px;
    vertical-align: middle;
}
.doctorepage .timetable table.table tbody td:nth-child(2n) {
    background: -moz-linear-gradient(270deg, #ffffff 0%, #d7dbe6 100%);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #ffffff),
        color-stop(100%, #d7dbe6)
    );
    background: -webkit-linear-gradient(270deg, #ffffff 0%, #d7dbe6 100%);
    background: -o-linear-gradient(270deg, #ffffff 0%, #d7dbe6 100%);
    background: -ms-linear-gradient(270deg, #ffffff 0%, #d7dbe6 100%);
    background: linear-gradient(180deg, #ffffff 0%, #d7dbe6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#d7dbe6',GradientType=0 );
}
.doctorepage .content .blockone {
    margin: 0 auto 30px;
}
.doctorepage .content .blockone label {
    font-weight: normal;
    font-size: 16px;
    color: #000;
}
.doctorepage .content .blockone textarea.form-control {
    padding: 10px;
    font-size: 15px;
    color: #111111;
    background-color: #fcfcfc;
}
.doctorepage .content .blockone .docname {
    display: block;
    margin: 20px auto 0;
    font-size: 15px;
    color: #130f40;
}
.doctorepage .content .blockone .docname i.fa {
    margin: 0 0 0 5px;
    color: #00abd8;
}
/* End doctorepage */

/* footer */
.reports {
    margin: 20px 15px;
    border: 1px solid #c4c5d5;
}
.reports .title {
    background: -moz-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #ffffff),
        color-stop(100%, #e9edf6)
    );
    background: -webkit-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -o-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -ms-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: linear-gradient(180deg, #ffffff 0%, #e9edf6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e9edf6',GradientType=0 );
    border-bottom: 1px solid #c4c5d5;
    display: block;
    font-size: 17px;
    padding: 5px;
    color: #130f40;
    text-align: center;
}
.reports .content {
    padding: 15px;
}
.reports .content form {
    margin: 0 auto 30px;
}
.reports .content label {
    line-height: 40px;
    padding: 0 15px;
    text-align: right;
    font-size: 16px;
    color: #000;
    font-weight: normal;
}
.reports .content input,
.reports .content select {
    height: 40px;
    padding: 0 10px;
    font-size: 15px;
    color: #000;
}
.reports .content button {
    height: 40px;
    padding: 0 40px;
    font-weight: bold;
    font-size: 15px;
    line-height: 38px;
}
.reports .content table.table thead th {
    background-color: #8893b0;
    text-align: center;
    padding: 10px;
    color: #fff;
    border: none;
}
.reports .content table.table tbody td {
    background: -moz-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #ffffff),
        color-stop(100%, #e9edf6)
    );
    background: -webkit-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -o-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -ms-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: linear-gradient(180deg, #ffffff 0%, #e9edf6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e9edf6',GradientType=0 );
    border-color: #d9dde6;
    text-align: center;
    font-size: 15px;
    color: #000;
    line-height: normal;
    padding: 10px 5px;
    vertical-align: middle;
}
.reports .content table.table tbody td:nth-child(2n) {
    background: -moz-linear-gradient(270deg, #ffffff 0%, #d7dbe6 100%);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #ffffff),
        color-stop(100%, #d7dbe6)
    );
    background: -webkit-linear-gradient(270deg, #ffffff 0%, #d7dbe6 100%);
    background: -o-linear-gradient(270deg, #ffffff 0%, #d7dbe6 100%);
    background: -ms-linear-gradient(270deg, #ffffff 0%, #d7dbe6 100%);
    background: linear-gradient(180deg, #ffffff 0%, #d7dbe6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#d7dbe6',GradientType=0 );
}
/* End reports */

/* lastvisit */
.lastvisit {
    color: red;
    font-size: 14px;
    padding: 15px;
}
.lastvisit i.fa {
    color: #666;
    margin: 0 0 0 2px;
}
/* End lastvisit */

/* medicalforms */
.medicalforms {
    margin: 30px auto;
    border: 1px solid #c4c5d5;
}
.medicalforms .title {
    background: -moz-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #ffffff),
        color-stop(100%, #e9edf6)
    );
    background: -webkit-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -o-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -ms-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: linear-gradient(180deg, #ffffff 0%, #e9edf6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e9edf6',GradientType=0 );
    border-bottom: 1px solid #c4c5d5;
    display: block;
    font-size: 17px;
    padding: 5px;
    color: #130f40;
    text-align: center;
}
.medicalforms .content {
    padding: 15px;
}
.medicalforms .content table.table thead th {
    background-color: #8893b0;
    text-align: center;
    padding: 10px;
    color: #fff;
    border: none;
}
.medicalforms .content table.table tbody td {
    background: -moz-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #ffffff),
        color-stop(100%, #e9edf6)
    );
    background: -webkit-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -o-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -ms-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: linear-gradient(180deg, #ffffff 0%, #e9edf6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e9edf6',GradientType=0 );
    border-color: #d9dde6;
    text-align: center;
    font-size: 15px;
    color: #000;
    line-height: normal;
    padding: 10px 5px;
    vertical-align: middle;
}
.medicalforms .content table.table tbody td:nth-child(2n) {
    background: -moz-linear-gradient(270deg, #ffffff 0%, #d7dbe6 100%);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #ffffff),
        color-stop(100%, #d7dbe6)
    );
    background: -webkit-linear-gradient(270deg, #ffffff 0%, #d7dbe6 100%);
    background: -o-linear-gradient(270deg, #ffffff 0%, #d7dbe6 100%);
    background: -ms-linear-gradient(270deg, #ffffff 0%, #d7dbe6 100%);
    background: linear-gradient(180deg, #ffffff 0%, #d7dbe6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#d7dbe6',GradientType=0 );
}
/* End medicalforms */

/* patientsshow */
#patientsshow .sidebar {
    margin: 20px auto;
    border: 1px solid #c4c5d5;
}
#patientsshow .sidebar ul li a {
    display: block;
    background: -moz-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #ffffff),
        color-stop(100%, #e9edf6)
    );
    background: -webkit-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -o-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -ms-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: linear-gradient(180deg, #ffffff 0%, #e9edf6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e9edf6',GradientType=0 );
    padding: 10px;
    font-size: 16px;
    padding: 10px;
    border-bottom: 1px solid #c4c5d5;
    color: #130f40;
}
#patientsshow .sidebar ul li:last-child a {
    border-bottom: none;
}
#patientsshow .sidebar ul li a:hover,
#patientsshow .sidebar ul li a:active,
#patientsshow .sidebar ul li a:focus {
    background: -moz-linear-gradient(270deg, #f0f0f0 0%, #dadee7 100%);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #f0f0f0),
        color-stop(100%, #dadee7)
    );
    background: -webkit-linear-gradient(270deg, #f0f0f0 0%, #dadee7 100%);
    background: -o-linear-gradient(270deg, #f0f0f0 0%, #dadee7 100%);
    background: -ms-linear-gradient(270deg, #f0f0f0 0%, #dadee7 100%);
    background: linear-gradient(180deg, #f0f0f0 0%, #dadee7 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f0f0', endColorstr='#dadee7',GradientType=0 );
}
#patientsshow .sidebar ul li.active a {
    background: #130f40;
    color: #fff;
    border-bottom-color: #130f40;
}
#patientsshow .tablearea {
    margin: 20px auto;
}
#patientsshow .tablearea table.table thead th {
    background-color: #8893b0;
    text-align: center;
    padding: 10px;
    color: #fff;
    border: none;
    font-size: 13px;
}
#patientsshow .tablearea table.table tbody td {
    background: -moz-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #ffffff),
        color-stop(100%, #e9edf6)
    );
    background: -webkit-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -o-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: -ms-linear-gradient(270deg, #ffffff 0%, #e9edf6 100%);
    background: linear-gradient(180deg, #ffffff 0%, #e9edf6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e9edf6',GradientType=0 );
    border-color: #d9dde6;
    text-align: center;
    font-size: 14px;
    color: #000;
    line-height: normal;
    padding: 8px;
}
#patientsshow .tablearea table.table tbody td:nth-child(2n) {
    background: -moz-linear-gradient(270deg, #ffffff 0%, #d7dbe6 100%);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #ffffff),
        color-stop(100%, #d7dbe6)
    );
    background: -webkit-linear-gradient(270deg, #ffffff 0%, #d7dbe6 100%);
    background: -o-linear-gradient(270deg, #ffffff 0%, #d7dbe6 100%);
    background: -ms-linear-gradient(270deg, #ffffff 0%, #d7dbe6 100%);
    background: linear-gradient(180deg, #ffffff 0%, #d7dbe6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#d7dbe6',GradientType=0 );
}
#patientsshow .tablearea .showuserpage span {
    display: block;
    font-size: 15px;
    color: #444;
}
#patientsshow .tablearea .showuserpage span p {
    display: inline-block;
    margin: 0 5px 0 0;
    color: #808ba9;
}
/* End patientsshow */
/* Start view-invoice */
.view-invoice .box-info p {
    margin-bottom: 0px;
    font-size: 14px;
    width: fit-content;
    margin: 0 auto;
    color: #777;
}
.view-invoice .box-info .title {
    font-size: 16px;
}
.view-invoice .status-invoice {
    width: fit-content;
    color: #413bff;
    margin: 0 auto;
    font-weight: bold;
    font-size: 15px;
}
.view-invoice .boxes-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 14px;
}
.view-invoice .boxes-info .box {
    display: flex;
    width: calc(100% / 5 - 8px);

    align-items: center;
    gap: 5px;
}
.view-invoice .boxes-info .box .title {
    background-color: #dddcdc;
    padding: 1px 7px;
    white-space: nowrap;
}
@media (max-width: 991.98px) {
    .view-invoice .boxes-info .box {
        width: calc(100% / 3 - 7px);
    }
}
@media (max-width: 767.98px) {
    .view-invoice .boxes-info .box {
        width: calc(100% / 2 - 5px);
    }
}
@media (max-width: 575.98px) {
    .view-invoice .boxes-info .box {
        width: calc(100%);
    }
}
.view-invoice .footer-invoice {
    color: #413bff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

/* End view-invoice */
/* Start reports */
section.page-reports p {
    font-size: 14px;
}
section.page-reports th {
    font-size: 13px !important;
}
section.page-reports th {
    font-size: 12px !important;
}
@media print {
    .view-contract {
        direction: rtl !important;
    }
    #printContract {
        direction: rtl !important;
    }
    #printTable td,
    #printTable p,
    #printTable th {
        font-size: 12px;
        padding: 3px;
    }
    #printTable .box-total-info {
        font-size: 12px !important;
        padding: 3px;
    }
    #printTable .box-total-info .item {
        margin-bottom: 0px !important;
    }
    .not-print {
        display: none;
    }
    .view-contract .boxes-info .box {
        width: calc(100% / 5 - 8px) !important;
        font-size: 13px;
    }
    .box {
        width: calc(100% / 5 - 8px) !important;
        font-size: 13px !important;
    }
    .view-contract .title-box {
        font-size: 13px;
    }
    p {
        font-size: 13px !important;
    }
    .align-items-center {
        flex-wrap: nowrap;
        width: 100%;
    }
    .align-items-center .col-xs-12 {
        width: 50%;
        font-size: 12px;
    }
    h3 {
        font-size: 14px !important;
    }
    .view-invoice .status-invoice {
        font-size: 11px !important;
    }
    .box-grrey {
        font-size: 12px !important;
    }
    .view-invoice .footer-invoice .fw-bold {
        font-size: 12px !important;
    }

    .view-invoice .box-info p {
        font-size: 12px !important;
    }
}
/* End reports */
/*start view-project */
.view-project .btn-item {
    background: linear-gradient(180deg, #ffffff 0%, #e9edf6 100%);
    color: #3a3c42;
    border: 1px solid #c4c5d5;
    border-radius: 4px;
    outline: none;

    font-size: 14px;
    padding: 15px 0;
    transition: 300ms;
    width: 100%;
    position: relative;
}
.view-project .btn-item:hover {
    background: #c4c5d5;
}
.view-project .btn-item .count {
    left: -10px;
    transition: 300ms;
    top: -3px;
}

/*end view-project */
/* Start Login */
section.login {
    min-height: 100vh;
    width: 100%;
    background-color: rgb(249, 250, 251);
    display: flex;
    align-items: center;
    justify-content: center;
}
section.login .form-login {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background-color: white;
    padding: 25px 55px;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}
section.login .form-login .title {
    color: #7b71c9;
    font-weight: bold;
    margin-bottom: 15px;
}
section.login .form-login .text {
    color: #8f8f8f;
}
section.login .box-login {
    align-items: stretch;
    margin: 0 auto;
}
@media (min-width: 1200px) {
    section.login .box-login {
        max-width: 70%;
    }
}
section.login .form-login .input-group {
    margin-bottom: 15px;
}
section.login .form-login .input-group input {
    padding: 20px 5px;
}
section.login .form-login .input-group .input-group-addon {
    padding: 0px 18px;
}
section.login .form-login .reset-password {
    color: #7b71c9;
    font-size: 16px;
    align-self: flex-start;
    font-weight: bold;
    text-align: start;
}
section.login .form-login .sub {
    background-color: #7b71c9;
    color: white;
    align-self: flex-start;
    margin-bottom: 15px;

    margin: 0 auto;
}
section.login .footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    margin-top: 15px;
    color: white;
}
section.login .footer img {
    width: 50px;
}
/* End Login */
/* start notifications */

section.notifications .notification-wrapper {
    background: white;
    border-radius: 10px;
    box-shadow: 0px 3px 5px rgba(17, 17, 17, 0.15);
    padding: 20px;
}
section.notifications .notification-wrapper .notification-day {
    font-size: 18px;
    line-height: 1;
    margin: 20px 0 10px;
}
section.notifications .notification-wrapper .notification-day:first-of-type {
    margin: 0 0 10px;
}

section.notifications .notification-wrapper .notification-message {
    align-items: center;
    border-bottom: 1px solid #ddd;
    display: flex;
    color: #333;
    padding: 10px 0;
}
section.notifications
    .notification-wrapper
    .notification-message
    .notification-message-title {
    font-weight: bold;
    margin-bottom: 5px;
}
section.notifications
    .notification-wrapper
    .notification-message
    .notification-message-info {
    line-height: 1.4;
    margin-bottom: 5px;
}
section.notifications
    .notification-wrapper
    .notification-message
    .notification-message-time {
    color: #999999;
    line-height: 1;
}
section.notifications
    .notification-wrapper
    .notification-message
    .more-details {
    justify-content: center;
    padding: 0;
    width: 24px;
}
section.notifications .notification-wrapper .notification-message:hover {
    background-color: #f8fff8;
}

section.notifications .notification-header-title {
    align-items: center;
    color: #666666;
    display: flex;
    font-family: Roboto;
    font-size: 24px;
    line-height: 28px;
}

/* End notifications */
/* Satrt view-contract */
.view-contract .box-info p {
    margin-bottom: 0px;
    font-size: 14px;
    width: fit-content;
    margin: 0 auto;
    color: #777;
}
.view-contract .title-box {
    color: black !important;
    font-weight: bold;
}
.view-contract .box-info .title {
    font-size: 16px;
}
.view-contract .status-invoice {
    width: fit-content;
    color: #413bff;
    margin: 0 auto;
    font-weight: bold;
    font-size: 15px;
}
.view-contract .boxes-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 14px;
}
.view-contract .boxes-info .box {
    display: flex;
    width: calc(100% / 5 - 8px);

    align-items: center;
    gap: 5px;
}
.view-contract .boxes-info .box .title {
    background-color: #dddcdc;
    padding: 1px 7px;
    white-space: nowrap;
}
@media (max-width: 991.98px) {
    .view-contract .boxes-info .box {
        width: calc(100% / 3 - 7px);
    }
}
@media (max-width: 767.98px) {
    .view-contract .boxes-info .box {
        width: calc(100% / 2 - 5px);
    }
}
@media (max-width: 575.98px) {
    .view-contract .boxes-info .box {
        width: calc(100%);
    }
}
.view-contract .footer-invoice {
    color: #413bff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

/* End view-contract */
/* Start customers */
section.customers #modalShow p {
    color: black;
    margin: 0;
    background-color: #dddcdc;
    padding: 1px 7px;
    font-size: 14;
}

/* End customers */
/* Start login-clintes */
.login_page {
    min-height: 100vh;
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
}
.login_page * {
    font-family: "Cairo", sans-serif !important;
    direction: rtl;
}
.login_page .box-col {
    width: 50%;
    padding: 88px;
    z-index: 1;
}
.login_page .box-col.box-bg {
    position: relative;
    z-index: 1;
    color: #fff;
}
.login_page .box-col.box-bg .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    object-fit: cover;
}
.login_page .box-col.box-bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    right: 0;
    background-color: rgba(77, 113, 131, 0.18);
}
.login_page .box-col.box-bg .logo-holder {
    display: flex;
    align-items: end;
    justify-content: flex-start;
    font-size: 28px;
}
.login_page .box-col.box-bg .logo-holder .logo-bg {
    width: 100px;
    height: auto;
}
.login_page .box-col.box-bg .text-bg .title {
    font-weight: 700;
    font-size: 45px;
    line-height: 70px;
    padding: 0;
    background-color: transparent;
    border: none;
}
.login_page .box-col.box-bg .text-bg .p {
    font-weight: 500;
    font-size: 30px;
    line-height: 75px;
}
.login_page .box-col.box-bg .text-bg-2 {
    font-weight: 500;
    font-size: 20px;
    line-height: 45px;
}
@media (max-width: 1199.98px) {
    .login_page .box-col {
        width: 100%;
        padding: 12px;
    }
    .login_page .box-col .title {
        text-align: center;
    }
}
.login_page .box-col .form_content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    border: 1px solid #efefef;
    border-radius: 14px;
    gap: 15px;
}
.login_page .box-col .form_content .logo-form {
    width: 50px;
    height: auto;
}
.login_page .box-col .form_content .header_title .title {
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 4px;
    padding: 0;
    background-color: transparent;
    border: none;
}
.login_page .box-col .form_content .header_title .text {
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
    color: #737373;
}
.login_page .box-col .form_content .label {
    font-size: 16px;
    margin-bottom: 10px;
}
.login_page .box-col .form_content .group-inp {
    display: flex;
    align-items: center;
    border: 1px solid #cecece;
    border-radius: 8px;
    font-size: 14px;
    overflow: hidden;
    padding: 0.6rem 1rem;
}
.login_page .box-col .form_content .group-inp .inp {
    flex: 1;
    border: 0;
    outline: 0;
}
.login_page .box-col .form_content .group-inp .box {
    padding-right: 1rem;
}
.login_page .box-col .form_content .group-inp .box .icon {
    width: 24px;
    width: 100%;
    height: auto;
}
.login_page .box-col .form_content .reseat {
    font-size: 14px;
    color: #1993d2;
}
.login_page .box-col .form_content .sub_btn {
    background: #1993d2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45.19px;
    font-size: 16px;
    border-radius: 8px;
    border-color: #1993d2;
}
.login_page .box-col .form_content .sub_btn:hover {
    background-color: rgba(25, 148, 210, 0.7725490196);
    border-color: rgba(25, 148, 210, 0.7725490196);
}
/* end login-clintes */

/* Scrollup */
a.scrollup {
    background-color: #367338;
    bottom: 8px;
    color: #fff;
    cursor: pointer;
    display: none;
    font: 20px/33px FontAwesome !important;
    height: 35px;
    position: fixed;
    right: 20px;
    text-align: center;
    width: 35px;
    z-index: 1000;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
a.scrollup:hover {
    background-color: #225f24;
}
/* End Scrollup */
.box-grrey {
    background-color: #dddcdc;
    padding: 1px 7px;
    white-space: nowrap;
}
.accordion-container .contentBx {
    position: relative;
    margin: 10px 20px;
}

.accordion-container .contentBx .label-name {
    position: relative;
    padding: 10px;
    border-bottom: 1px solid #cfcaca;
    cursor: pointer;
}
.accordion-container .contentBx .label-name .icon-holder {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    font-size: 1em;
}

.accordion-container .contentBx .label-name .icon-holder .to_up {
    display: none;
}

.accordion-container .contentBx.active .label-name .icon-holder .to_up {
    display: block;
}

.accordion-container .contentBx.active .label-name .icon-holder .to_down {
    display: none;
}

.accordion-container .contentBx .content {
    background-color: white;
    position: relative;
    height: 0px;
    overflow: hidden;
    transition: 0.5s;
    overflow-y: auto;
}

.accordion-container .contentBx.active .content {
    height: 150px;
    padding: 10px;
}

.hidden {
    display: none;
}

.inp-container {
    margin-bottom: 10px;
}

.mr {
    margin-right: 5px;
}
.ml {
    margin-left: 5px;
}

.none-outline {
    outline: none;
}

.w-100 {
    width: 100% !important;
}

.bg-moev {
    color: white !important;
    background-image: linear-gradient(to bottom, #9c27b0 0%, #851e96 100%);
}
.bg-moev:hover {
    background-image: linear-gradient(to bottom, #7e1e8e 0%, #851e96 100%);
}

.data-info {
    padding: 5px 10px;
    background-color: #36c6d3;
    color: white;
    border-radius: 4px;
    text-align: center;
}

.max-inp-width {
    max-width: 350px !important;
}

.max-area-width {
    max-width: 500px !important;
}

.white {
    color: white !important;
}
input[readonly] {
    background-color: #eee !important;
}
input[readonly]:focus {
    outline: none !important;
    border: 1px solid #ced4da !important;
    box-shadow: none !important;
}
.form-control {
    font-size: 14px;
}

/* status box style */
.status_box {
    position: relative;
    color: #fff;
    border-radius: 0.25rem;
    box-shadow: 0 0 1px rgb(0 0 0 / 13%), 0 1px 3px rgb(0 0 0 / 20%);
}

.status_box:hover .icon > svg {
    transform: scale(1.1);
}

.status_box .data {
    padding: 10px;
}

.status_box .data > h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 10px;
    white-space: nowrap;
    z-index: 5;
}

.status_box .data > p {
    font-size: 16px;
    z-index: 5;
}

.status_box .icon {
    position: absolute;
    top: 20px;
    left: 15px;
}

.status_box .icon > svg {
    font-size: 50px;
    transition: transform 0.5s;
}

.status_box .more {
    position: relative;
    display: block;
    text-align: center;
    padding: 5px 0;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 10;
    color: #fff;
}

.status_box .more:hover {
    background-color: rgba(0, 0, 0, 0.15);
}

.blue-box {
    background-color: #17a2b8;
}

.success-box {
    background-color: #28a745;
}

.danger-box {
    background-color: #dc3545;
}

.warning-box {
    background-color: #ffc107;
}

.blue-icon {
    color: #148a9d;
}

.success-icon {
    color: #228e3b;
}

.danger-icon {
    color: #bb2d3b;
}

.warning-icon {
    color: #d9a406;
}
.fs-12 {
    font-size: 13px !important;
}
.fit-content {
    width: fit-content !important;
}
.xs-btn-icon {
    font-size: 12px !important;
    padding: 1px 5px !important;
}

.table-inp th,
.table-inp td {
    vertical-align: middle;
    text-align: start;
    white-space: nowrap !important;
}

.bg-light-green {
    background-color: #66e9a991 !important;
}
.text-green {
    color: #388e3c !important;
}
.bg-light-red {
    background-color: #ff08043d !important;
}
.table-inp select {
    width: 200px;
    min-width: 100%;
}
.table-inp input[type="number"] {
    width: 70px;
    margin: auto;
}

.w-320px {
    width: 320px;
}

#printContract {
    direction: rtl !important;
}

/* buttons colors */
.btn-altInfo {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-altInfo:hover {
    background-color: #1392a7;
    border-color: #1392a7;
    color: #fff;
}

.btn-altSuccess {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-altSuccess:hover {
    color: #fff;
    background-color: #157347;
    border-color: #157347;
}

.box-invoice {
    margin-bottom: 8px;
    border-width: 2px;
    border-style: solid;
    border-color: black;
    border-image: initial;
    border-radius: 10px;
    padding: 0px 10px;
}

/* start not shour classes */
.nav li:hover {
    background: #36c6d3;
}
.nav li.active a {
    background: #36c6d3 !important;
}
.navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 12px;
}
#homepagearea nav ul li a {
    display: block;
    margin: 0 auto;
    padding: 4px 16px 4px 16px;
}
.border-0:focus {
    border: 0 !important;
}
.notifyjs-bootstrap-base {
    font-weight: bold;
    padding: 8px 15px 8px 14px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    background-color: #fcf8e3;
    border: 1px solid #fbeed5;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    white-space: nowrap;
    padding-left: 25px;
    background-repeat: no-repeat;
    background-position: 3px 7px;
}
.notifyjs-bootstrap-error {
    color: #b94a48;
    background-color: #f2dede;
    border-color: #eed3d7;
}
.notifyjs-bootstrap-success {
    color: #468847;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}
.notifyjs-bootstrap-info {
    color: #3a87ad;
    background-color: #d9edf7;
    border-color: #bce8f1;
}
.notifyjs-bootstrap-warn {
    color: #c09853;
    background-color: #fcf8e3;
    border-color: #fbeed5;
}

.pw-panel {
    position: fixed;
    width: 100%;
    min-width: 540px;
    z-index: 2000000000;
    border: none;
    background-color: #fff;
    transition: all 0.3s;
    transition-property: right, left, top, bottom;
}
.pw-panel-resizer {
    position: absolute;
    background-color: #f2f2f2;
    cursor: s-resize;
}
.pw-panel-resizer__orientation_top {
    bottom: -8px;
}
.pw-panel-resizer__orientation_bottom {
    top: -8px;
}
.pw-panel-resizer__orientation_bottom,
.pw-panel-resizer__orientation_top {
    left: 0;
    width: 100%;
    height: 8px;
}
.pw-panel-resizer__orientation_left {
    right: -8px;
}
.pw-panel-resizer__orientation_right {
    left: -8px;
}
.pw-panel-resizer__orientation_left,
.pw-panel-resizer__orientation_right {
    height: 100%;
    top: 0;
    width: 8px;
    cursor: e-resize;
}
.pw-panel-resizer__orientation_left ul,
.pw-panel-resizer__orientation_right ul {
    flex-direction: column;
}
.pw-panel-resizer ul {
    height: inherit;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    list-style: none;
}
.pw-panel-resizer ul li {
    margin: 2px;
    height: 4px;
    width: 4px;
    background-color: #70757a;
    border-radius: 50%;
}
.pw-panel-resizer:hover {
    background-color: #e6e6e6;
    opacity: 0.8;
}
.pw-panel__orientation_top {
    max-height: 90vh;
    top: -100%;
    left: 0;
    width: 100%;
    height: 300px;
}
.pw-panel__orientation_bottom {
    max-height: 90vh;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 300px;
}
.pw-panel__orientation_left {
    max-width: 90vw;
    top: 0;
    left: -100%;
    width: 450px;
    height: 100%;
}
.pw-panel__orientation_right {
    max-width: 90vw;
    top: 0;
    right: -100%;
    width: 450px;
    height: 100%;
}
.pw-panel__iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.pw-panel__iframe--resizing {
    outline: 1px solid #f2f2f2;
    pointer-events: none;
}
@media (max-width: 450px) {
    .pw-panel {
        display: none;
    }
}

.notifyjs-corner {
    position: fixed;
    margin: 5px;
    z-index: 999999;
}

.notifyjs-corner .notifyjs-wrapper,
.notifyjs-corner .notifyjs-container {
    position: relative;
    display: block;
    height: inherit;
    width: inherit;
    margin: 3px;
}

.notifyjs-wrapper {
    z-index: 1;
    position: absolute;
    display: inline-block;
    height: 0;
    width: 0;
}

.notifyjs-container {
    display: none;
    z-index: 1;
    position: absolute;
}

.notifyjs-hidable {
    cursor: pointer;
}

[data-notify-text],
[data-notify-html] {
    position: relative;
}

.notifyjs-arrow {
    position: absolute;
    z-index: 2;
    width: 0;
    height: 0;
}
.white {
    color: white !important;
}
.f-12 {
    font-size: 10px;
}
.nowrap {
    white-space: nowrap;
}
label.f-12 {
    min-width: 62px;
    display: inline-block;
}
.img-check2 {
    height: 70px;
    width: 70px;
    margin-bottom: 20px;
}
.img-check {
    height: 70px;
    width: 70px;
    position: relative;
    margin: 8px;
}
.img-check2 input {
    margin-top: 5px;
}
.img-check input {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}
.table {
    color: #000;
}
/* end not shour classes */
.main-navbar {
    z-index: 1111;
    background: #ffffff;
    padding: 10px 0;
    border-bottom: 1px solid #e6e6e6;
    position: relative;
}
.main-navbar .tog-active {
    font-size: 20px;
    color: #9c9c9c;
    height: auto;
    cursor: pointer;
}
.main-navbar .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.main-navbar .logo .img {
    width: auto;
    height: 48px;
}
.main-navbar .logo .text {
    color: #737373;
    white-space: nowrap;
    font-size: 16px;
}
.main-navbar .list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.main-navbar .icon-nav .icon {
    font-size: 20px;
    width: 20px;
}
.main-navbar .icon-nav .main-badge {
    position: absolute;
    right: -10px;
    color: #ffffff;
    top: -10px;
    z-index: 2;
}
.main-navbar .icon-nav .dropdown-toggle {
    position: relative;
}
.main-navbar .icon-nav .dropdown-toggle::after {
    display: none;
}
.main-navbar .info-user {
    padding-right: 2rem;
    border-right: 1px solid #cccccc;
}
.main-navbar .info-user .content::after {
    content: none;
}
.main-navbar .info-user .content .text {
    text-align: left;
    display: flex;
    flex-direction: column;
}
.main-navbar .info-user .content .text .name {
    color: #000000;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.main-navbar .info-user .content .text .dic {
    color: #000000;
    font-size: 12px;
    opacity: 0.5;
}
.main-navbar .info-user .content .img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    border: 1px solid #c1c1c1;
    justify-content: center;
}
.main-navbar .info-user .content .img .icon {
    width: 20px;
    height: auto;
    object-fit: contain;
    border-radius: 100%;
}
.app {
    position: relative;
    min-height: calc(100vh - 66px);
    overflow-x: hidden;
    display: flex;
}
.app .sidebar {
    height: 100%;
    width: 216px;
    z-index: 11;
    background-color: #263948;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 0;
    top: 0;
    transition: 300ms;
}
.app .sidebar .tog-active {
    color: #fff;
    cursor: pointer;
    margin: 20px 21px 9px auto;
    font-size: 20px;
    display: block;
}
.app .sidebar .list {
    padding: 7px;
    margin: 0;
    flex: 1;
    overflow-y: auto;
    height: 100%;
}
.app .sidebar .list .list-item {
    white-space: nowrap;
}
.app .sidebar .list .list-item a {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 14px;
    padding: 11px 8px;
    gap: 7px;
    font-weight: 300;
}
.app .sidebar .list .list-item a svg:not(.arrow),
.app .sidebar .list .list-item a i {
    font-size: 18px;
    color: #fff;
    width: 30px;
    text-shadow: none;
}
.app .sidebar .list .list-item a .arrow {
    margin: 0;
    margin-right: 6px;
    font-size: 14px;
    font-weight: 300;
    transition: transform ease-in-out 0.3s;
}
.app .sidebar .list .list-item a:not(.active):hover {
    cursor: pointer;
    color: #ff9700;
}
.app .sidebar .list .list-item a[aria-expanded="true"] .arrow {
    transform: rotate(90deg);
}
.app .sidebar .list .list-item.active a {
    color: #fff;
    border-radius: 4px;
    background-color: #ff9700;
}
.app .sidebar .list .list-item.active a::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    border-radius: 50px;
    height: 70%;
    right: 6px;
    background-color: #fff;
}
.app .sidebar .list .list-item.active a:hover {
    color: #fff;
}
.app .sidebar .list .item-collapse {
    margin-top: 4px;
    margin-right: 22px;
    list-style: none;
    position: relative;
}
.app .sidebar .list .item-collapse::before {
    content: "";
    position: absolute;
    right: -7px;
    top: 0;
    border-radius: 10px;
    width: 3px;
    height: 100%;
    background-color: #9c9c9c;
}
.app .main-side {
    width: calc(100% - 216px);
    margin: 0 auto 0 0;
    padding: 16px 16px 35px 16px;
    overflow-y: auto;
    transition: 300ms;

}

.app.active .sidebar {
    width: calc(15px + 35px);
}
.app.active .main-side {
    width: calc(100% - 50px);
}
.option-section .a_content {
    position: relative;
}
.option-section .a_content::before {
    content: "";
    position: absolute;
    transform: rotate(180deg);
    width: 6%;
    height: 45px;
    top: 23px;
    right: 4px;
    z-index: 1111;
    border: 1px dashed #999;
    visibility: visible;
    opacity: 1;
}
.option-section {
    display: flex;
    flex-direction: column;
}
.option-section .item {
    padding: 7px 10px;
    border-radius: 4px;
    color: #c2c7d0;
    display: flex;
    gap: 10px;
    position: relative;
    font-size: 13px;
    align-items: center;
}
.option-section .item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.option-section .collapse-border .item::before {
    content: "";
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 1px;
    background-color: #c2c7d0;
}
.option-section .item .arrow-after {
    display: none;
}
.option-section .item[aria-expanded="true"] .arrow-before {
    display: none;
}
.option-section .item[aria-expanded="true"] .arrow-after {
    display: block;
}
.option-section .item .arrow-after,
.option-section .item .arrow-before {
    color: #c2c7d0;
    font-size: 14px;
}
.option-section .item .content-item {
    display: flex;
    gap: 10px;
    align-items: center;
}
.option-section .item .content-item i,
.option-section .item .content-item svg {
    color: #c2c7d0;
    font-size: 16px;
}
.option-section .collapse-border {
    position: relative;
}
.option-section .collapse-border::before {
    content: "";
    position: absolute;
    right: 13.5px;
    top: 0;
    height: calc(100% - 17px);
    width: 1px;
    background-color: #c2c7d0;
}
.option-section .mar-side {
    margin-right: 30px;
}
.main-footer {
    width: calc(100% - 216px);
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px 15px 7px;
    text-align: center;
    background: #ffffff;
    border-top: 1px solid #e6e6e6;
}

.active .main-footer {
    width: calc(100% - 50px);
}
