@import url(../css/all.min.css);
@import url(../css/bootstrap.css);
@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Roboto:wght@100..900&display=swap');

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}

:root {
    --main-color: #AD4958;
    --sub-color: #28323C;
    --sec-padding: 80px 0;
}

body {
    font-family: 'Almarai', 'Roboto', sans-serif;
    background-color: #F6F6F6;
    font-size: 16px;
    font-weight: 400;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Almarai', 'Roboto', sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0;
}

p {
    margin: 0;
}

html,
button,
input,
select,
textarea {
    color: #222;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

img {
    vertical-align: middle;

}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}


a,
button {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

p {
    margin: 0;
}

a {
    cursor: pointer !important;
    text-decoration: none !important;
}

a:hover,
a:active,
a:focus,
a:visited {
    text-decoration: none !important;
}

input,
textarea,
a,
button {
    outline: none !important;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.main-wrapper {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    display: flex
}

.menu-toggle .main-wrapper {
    -webkit-transition: -webkit-transform .0s ease;
    transition: -webkit-transform .0s ease;
    transition: transform .0s ease;
    transition: transform .0s ease,
    -webkit-transform .0s ease;
}


/* Style Aside Menu */

.aside_menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 250px;
    background: #fff;
    z-index: 999;
    transition: width .2s;
    box-shadow: 0 2px 4px rgb(165 163 174 / 30%)
}

.logo-site {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.logo-site a {
    display: inline-block;
}

.logo-site img {
    max-width: 160px;
}

.type-user {
    position: relative;
    width: 15px;
    height: 15px;
    border: 2px solid #000;
    border-radius: 50%;
}

.type-user:before {
    content: "";
    background: #000;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.menu-toggle {
    cursor: pointer;
    transition: .2s;
    display: flex;
    align-items: center;
    top: 5px;
    position: relative;
    font-size: 13px;
    color: rgb(0 0 0 / 60%);
}

.main_menu {
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.main_menu > li {
    padding: 0 20px;
}

.main_menu > li > a {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    color: #000;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 400;
    position: relative;
    padding: 9px 16px;
}

.main_menu > li.active a {
    background: var(--main-color);
    border-radius: 6px;
    color: #fff;
    font-weight: 700;
}

.main_menu > li > a > svg {
    font-size: 20px;
}

.main_menu > li.active a svg path {
    stroke: #fff;
}

.logout {
    position: absolute;
    bottom: 20px;
}

.logout a {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    color: var(--sub-color);
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 400;
    position: relative;
    padding: 10px 36px;
}

.logout a svg {
    font-size: 20px;
}

.aside_menu::-webkit-scrollbar {
    width: 4px;
}

.aside_menu::-webkit-scrollbar-track {
    background: transparent;
}

.aside_menu::-webkit-scrollbar-thumb {
    background-color: #E5EAEE;
    border-radius: 4px;
    opacity: 0;
}

/* Style Content Body */

.content-body {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-right: 270px;
    background: rgb(130 130 130 / 5%);
    transition: width .2s;
    margin-bottom: 20px;
}

.main-content {
    margin-top: 75px;
    position: relative;
    min-height: calc(100vh - 65px);
}

.back-head {
    position: relative;
    padding: 20px;

}

.back-head a {
    color: var(--main-color);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Style Stac Site */

.sec_head {
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #E2E8F0;
}

.sec_head h2 {
    color: #2A313C;
    font-size: 18px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}


.btn-site {
    height: 40px;
    font-size: 15px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    justify-content: center;
    background: var(--main-color);
    width: max-content;
    position: relative;
    overflow: hidden;
}

.btn-site-click {
    height: 40px;
    font-size: 15px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    justify-content: center;
    background-color: #c1a776;
    width: max-content;
    position: relative;
    overflow: hidden;
}

.btn-site:before {
    background: #EBEBEB;
    position: absolute;
    content: "";
    top: 0;
    height: 100%;
    left: -10px;
    width: 0%;
    transform: skew(-10deg);
    transition-duration: .6s;
    z-index: 0;
}


.btn-site span {
    color: #fff;
    position: relative;
    font-weight: 400;
    text-transform: uppercase;
}



/* Style Main Header */

.main-header {
    position: fixed;
    width: calc(100% - 290px);
    top: 10px;
    left: 20px;
    height: 65px;
    background: #fff;
    border-radius: 6px;
    z-index: 99;
    box-shadow: 0 2px 4px rgb(165 163 174 / 30%);
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding-right: var(--bs-gutter-x, 1rem);
    padding-left: var(--bs-gutter-x, 1rem);
}

.dta-content h5 {
    color: #2A313C;
    font-size: 18px;
}

.lst-menu ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lst-menu li a {
    position: relative;
}

.hamburger {
    display: none;
}

.icon-notification {
    background: url(../images/bell.svg);
    background-size: 100% 100% !important;
    width: 25px;
    height: 25px;
    display: block;
}

.tg-notif span {
    background: #EA5455;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    position: absolute;
    right: -7px;
    top: -4px;
}

.lst-proflie figure {
    margin-bottom: 0;
    background: var(--main-color);
    border-radius: 50%;
    width: 35px;
    height: 35px;
}

.lst-proflie figure img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.lst-proflie .type-account {
    background: #28C76F;
    border: 3px solid #fff;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    position: absolute;
    bottom: -3px;
    right: -1px;
}

.icon-menu {
    background: url(../images/menu.svg);
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    display: block;
}

/* Style Main Body */

.cont-body {
    position: relative;
    width: calc(100% - 20px);
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(75, 70, 92, 0.1);
}

.form-search {
    display: flex;
    align-items: center;
    gap: 25px;
    width: 70%;
}

.form-search .form-group {
    position: relative;
    flex: 1;
}

.form-search .form-control {
    border: 1px solid var(--main-color);
    border-radius: 6px;
    background-color: #fff;
    height: 40px;
}

.form-search input.form-control {
    padding-right: 35px
}

.form-select {
    padding: 0.375rem 0.75rem 0.375rem 2.25rem;
    background-position: left 0.75rem center;
}

.icon-search {
    background: url(../images/search.svg);
    background-size: 100% 100% !important;
    width: 19px;
    height: 19px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%)
}

.item-camel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 24px;
    background: #FFFAFA;
    box-shadow: 0 0 6px rgb(173 73 88 / 25%)
}

.dta-camel {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dta-camel figure {
    margin-bottom: 0;
    width: 100px;
}

.dta-camel figure img {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    object-fit: cover;
}

.dta-camel h5 {
    color: #000000;
    font-size: 18px;
    margin-bottom: 10px;
}

.dta-camel p {
    color: #7E7E7E;
    font-weight: 700;
    font-size: 14px;
}

.dta-camel p span {
    color: #000000;
}

.ph-camel p {
    color: var(--main-color);
    font-weight: 700;
    font-size: 17px;
}

.ph-camel p span {
    color: #000000;
    font-weight: 400;
}

.status {
    background: #EE4C4C;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 13px;
    color: #fff;
    font-weight: 700;
}

.status.safe {
    background: #51D285
}

.opt-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.opt-item .icon {
    background-size: 100% 100% !important;
    width: 18px;
    height: 18px;
    display: block;
}

.opt-item li a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-paper {
    background: #2895C7
}

.btn-paper_list {
    background: #ecc42f
}

.btn-edit {
    background: #28C76F
}

.btn-delete {
    background: #EA5455
}

.icon-paper {
    background: url(../images/papers-text.svg);
}

.icon-edit {
    background: url(../images/edit.svg);
}

.icon-delete {
    background: url(../images/trash.svg);
}

table {
    width: 100%;
    table-layout: auto;
    border-collapse: separate;
    border-spacing: 1px 20px
}

tr {
    box-shadow: 0 0 6px rgb(173 73 88 / 25%);
    border-radius: 24px;
}

tr td {
    padding: 20px;
    background: #FFFAFA;

}

tr td:first-child {
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px
}

tr td:last-child {
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px
}

/* Style Add Page */

.form-add {
    position: relative;
}

.form-add .d-flex {
    width: 80%;
    margin: 0 auto 10px;
    gap: 40px;
}

.form-add .d-flex .form-group {
    flex: 0 0 auto;
    width: calc(50% - 20px);
}

.form-add .form-group {
    position: relative;
}

.form-add .form-group > label {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--main-color);
}

.form-add .form-control {
    border: 1px solid var(--main-color);
    height: 38px;
    border-radius: 50px;
}

.form-control::placeholder {
    color: #A0AEC0;
    font-size: 15px;
}

.icon-upload {
    background: url(../images/cloud-upload.svg);
    background-size: 100% 100% !important;
    width: 18px;
    height: 18px;
    display: block;
}

.upload-box input {
    display: none
}

.label-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-radius: 24px;
    padding: 20px;
    cursor: pointer;
    border: 1px dashed var(--main-color);
}

.label-content figure {
    background: #F6EBEC;
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.label-content p {
    color: #2A313C;
    font-size: 15px;
    margin-bottom: 5px;
}

.label-content small {
    color: #A0AEC0;
    font-size: 11px;
    display: block;
}

.form-add ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px
}

.form-add .btn-site {
    padding: 8px 40px;
}

.btn-cancel {
    background: rgba(168, 170, 174, 0.16)
}

.btn-cancel span {
    color: #A8AAAE;
}

#diseases_table thead tr {
    box-shadow: 0 0 6px rgb(173 73 88 / 100%);
}

.table > :not(:last-child) > :last-child > * {
    border-bottom-color: currentColor;
    border: 0;
    padding: 15px 10px;
}


.cont-add-treatment {
    border: 10px solid rgb(206 206 206 / 40%);
    padding: 40px;
    border-radius: 10px;
}

.cont-add-treatment .form-group {
    margin-bottom: 25px;
    width: 70%;
}

.form-add .cont-add-treatment .form-control {
    border: 1px solid var(--main-color);
    height: 45px;
    border-radius: 10px;

}

.form-add .cont-add-treatment textarea.form-control {
    height: 180px;
}

.dose-row {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 70%;
}

.btns-add {
    display: flex;
    gap: 5px
}

.btns-add button {
    height: 45px;
    border-radius: 10px;
    width: 90px;
}


.item-treatments {
    padding: 20px;
    border: 10px solid rgb(206 206 206 / 40%);
    border-radius: 10px;
    margin-top: 25px;
}

.head-card {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgb(206 206 206 / 40%);
}

.head-card ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.head-card ul li button {
    border-radius: 10px;
}

.dta-treatment {
    margin-bottom: 20px;
}

.dta-treatment > div:not(:last-child) {
    margin-bottom: 20px;
}

.dta-treatment > div strong {
    color: #000;
    font-size: 17px;
    margin-bottom: 5px;
}

.dta-treatment > div p {
    color: rgb(0 0 0 / 70%);
    font-size: 15px;
    line-height: 1.7;
}

.item-statics .d-flex:not(:last-child) {
    margin-bottom: 20px;
}

.item-statics .d-flex > div {
    flex: 1;
}

.item-statics h6 {
    color: #2A313C;
    font-size: 15px;
}

.item-statics p {
    color: #AD4958;
    font-size: 40px;
}

/* Style Profile */

.cont-info,
.thumb-profile {
    position: relative;
    padding: 20px;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 4px 18px rgb(75 70 92 / 10%);
    height: 100%;
}

.item-info {
    background: #FFFAFA;
    border: 0.2px solid #56030F;
    box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
    padding: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.item-info figure {
    width: 40px;
    height: 40px;
    background: var(--main-color);
    border-radius: 4px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-user {
    background: url(../images/user.svg);
    background-size: 100% 100% !important;
    width: 25px;
    height: 25px;
    display: block;
}

.txt-info > div {
    width: 100px;
    text-align: center;
}

.txt-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 44px);
    gap: 15px;
}

.txt-info h5 {
    color: var(--main-color);
    font-size: 20px;
    width: 50%;
}

.txt-info p {
    color: #000000;
    font-size: 20px;
    width: 50%;
}

.status-gender {
    background: #FF6CB5;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 13px;
    color: #fff;
    font-weight: 700;
}

.status-condition {
    background: #51D285;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 13px;
    color: #fff;
    font-weight: 700;
}

.head-cont {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.head-cont h5 {
    color: #2A313C;
    font-size: 18px;
}

.icon-zoom {
    background: url(../images/zoom-in.svg);
    background-size: 100% 100% !important;
    width: 19px;
    height: 19px;
    display: block;
}

.thumb-profile figure img {
    border-radius: 8px;
}


/* Style Sign */

.login-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
}

.bg-pic {
    position: relative;
    right: 0;
    top: 0;
    width: 60%;
    min-height: 160vh;
    background: url(../images/bg.svg);
    background-size: 100% 100%;
}

.cont-login {
    position: relative;
    width: 40%;
    padding: 100px;
}

.thumb-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.head-login {
    margin-bottom: 30px;
}

.head-login h3 {
    color: #242424;
    font-size: 26px;
    margin-bottom: 5px;
}

.head-login p {
    color: #718096;
    font-size: 15px;
}

.form-login .form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-login .form-group > label {
    color: var(--main-color);
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 700;
}

.form-login .form-control {
    border: 1px solid var(--main-color);
    border-radius: 50px;
    height: 38px;
}

.form-login .form-control::placeholder {
    color: #CBD5E0;
    font-size: 15px;
}

.forgot-password {
    color: #2A313C;
    font-size: 13px;
    position: absolute;
    top: 0;
    left: 0;
}

.forgot-password:hover {
    color: var(--main-color);
}

.form-login .btn-site {
    width: 100%;
    height: 38px;
    border-radius: 50px;
}

.inp-cbx {
    display: none;
}

.form-login .form-group > label.cbx {
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    display: flex;
    gap: 5px;
}

.cbx p {
    color: #718096;
    font-size: 15px;
    font-weight: 400;
}

.cbx span {
    display: inline-block;
    vertical-align: middle;
    border: 0;
    transform: translate3d(0, 0, 0);
}

.cbx span {
    position: relative;
    width: 17px;
    height: 17px;
    border: 1px solid #CBD5E0;
    border-radius: 3px;
    transform: scale(1);
    vertical-align: middle;
    transition: all 0.2s ease;
    top: 0;
}

.cbx span svg {
    position: absolute;
    z-index: 1;
    top: 4px;
    left: 2px;
    fill: none;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
}

.cbx span:before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--main-color);
    display: block;
    transform: scale(0);
    opacity: 1;
    border-radius: 50%;
    transition-delay: 0.2s;
}

.cbx span {
    margin-left: 8px;
}

.cbx span:after {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    height: 0;
    width: 100%;
    background: var(--main-color);
    transform-origin: 0 0;
    transform: scaleX(0);
}

.cbx:hover span {
    border-color: var(--main-color);
}

.inp-cbx:checked + .cbx span {
    border-color: var(--main-color);
    background: var(--main-color);
    animation: check 0.6s ease;
}

.inp-cbx:checked + .cbx span svg {
    stroke-dashoffset: 0;
}

.inp-cbx:checked + .cbx span:before {
    transform: scale(2.2);
    opacity: 0;
    transition: all 0.6s ease;
}

.inp-cbx:checked + .cbx span {
    color: #B9B8C3;
    transition: all 0.3s ease;
}

.inp-cbx:checked + .cbx span:after {
    transform: scaleX(1);
    transition: all 0.3s ease;
}

@keyframes check {
    50% {
        transform: scale(1.2);
    }
}

.sign-other {
    position: relative;
    text-align: center;
}

.sign-other .sec-register a {
    color: #718096;
    font-size: 15px;
    display: block;
}

.sign-other p {
    color: #A0AEC0;
    font-size: 13px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.sign-other p:before,
.sign-other p:after {
    content: "";
    background: #DBDADE;
    width: 45%;
    height: 0.2px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.sign-other p:after {
    right: 0;
    left: auto;
}

.sign-other li {
    margin-bottom: 20px;
}

.sign-other li a.btn-site {
    background: #EDF2F7;
    height: 38px;
    width: 100%;
    border-radius: 30px;
}

.sign-other li a.btn-site span {
    color: #1A202C;
    display: flex;
    align-items: center;
    gap: 10px
}

.icon-mic {
    background: url(../images/mic.svg);
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
}

.icon-hierarchy {
    background: url(../images/hierarchy.svg);
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
}

/* Style Overview */

.cont-overview {
    position: relative;
    width: calc(100% - 20px);
}

.card-overview {
    position: relative;
    background: #fff;
    padding: 25px 14px;
    height: 100%;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(75, 70, 92, 0.1);
}

.card-wlc h5 {
    font-size: 24px;
    color: #2A313C;
    margin-bottom: 10px;
}

.card-wlc p {
    color: #718096;
    font-size: 20px;
}

.card-stats > div {
    display: flex;
    align-items: center;
}

.head-overview {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.head-overview h6 {
    color: #2A313C;
    font-size: 24px;
}


.head-overview span {
    color: #A0AEC0;
    font-size: 15px;
    cursor: pointer;
}

.head-overview a {
    color: var(--main-color);
    font-size: 25px;
}

.head-overview .form-control {
    width: 140px;
}

.lst-stats {
    gap: 60px;
    flex-wrap: wrap
}

.item-stats {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.item-stats figure {
    background: rgba(173, 73, 88, 0.08);
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 0;
}

.item-stats strong {
    color: #2A313C;
    font-size: 60px;
    display: block;
    line-height: 1;
}

.item-stats p {
    color: #718096;
    font-size: 15px;
}

.cont-overview .row > * {
    margin-bottom: 25px;
}

.card-table table {
    border-collapse: collapse;
    width: 100%;
}

.card-table td,
#customers th {
    padding: 12px;
}

.card-table tr {
    border-radius: 8px;
}

.card-table tr td {
    background: #FBF7F7;
}

.card-table tr:nth-child(even) td {
    background-color: #fff;
}

.card-table tr:hover {
    background-color: #ddd;
}

.card-table th {
    padding: 12px;
    background-color: var(--main-color);
    color: white;
}

.card-table tr td:first-child,
.card-table tr th:first-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.card-table tr td:last-child,
.card-table tr th:last-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.item-doctor {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    background: #F7EFF0;
    padding: 15px;
    border-radius: 8px;
}

.item-doctor:last-child {
    margin-bottom: 0;
}

.item-doctor figure {
    margin-bottom: 0;
    position: relative;
    background: var(--main-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.item-doctor figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
}

.item-doctor figure:before {
    content: "";
    background: #28C76F;
    border: 3px solid #fff;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.item-doctor h6 {
    color: #2A313C;
    font-size: 15px;
}

.item-doctor p {
    color: #AD4958;
    font-size: 40px;
}

.lst-purifier {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.item-purifier {
    position: relative;
    padding: 20px;
    border-radius: 16px;
    background: #fff;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(165, 163, 174, 0.3);
    flex: 0 0 auto;
    width: calc(50% - 10px);
}

.item-purifier h4 {
    margin-bottom: 15px;
    color: var(--main-color);
    text-align: center;
    font-size: 32px;

}

.tot-purifier {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tot-purifier > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 0 0 auto;
    width: calc(50% - 7.5px);
    background: rgba(173, 73, 88, 0.17);
    border-radius: 11px;
    padding: 4px 8px;
    margin: 1px;
}

.tot-purifier > div h5 {
    color: #000000;
    font-size: 15px;
}

.tot-purifier > div span {
    color: #AD4958;
    font-size: 60px;
    font-weight: 700;
}

.dta-prog {
    width: calc(100% - 220px);
}

.chart-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.item-purifier .chart-container {
    margin-top: 20px;
}

.donut-chart {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: relative;
}

.item-purifier .donut-chart {
    width: 90px;
    height: 90px;
}

.donut-chart::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.center-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    z-index: 2;
}

.legend {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: calc(100% - 230px)
}

.item-purifier .legend {
    width: calc(100% - 130px)
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 700;
}

.legend-item span.circle {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-item.salim {
    color: #4CAF50;
}

.legend-item.salim .circle {
    background: #4CAF50;
}

.legend-item.marid {
    color: #F44336;
}

.legend-item.marid .circle {
    background: #F44336;
}

/**/

.form-disease {
    position: relative;
    padding: 40px 0;
    width: 80%;
    margin: 0 auto;
}

.form-disease .form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-disease .form-group > label {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--main-color);
}

.form-disease .form-control {
    border: 1px solid var(--main-color);
    height: 38px;
    border-radius: 50px;
}

.form-disease textarea.form-control {
    height: 180px;
    border-radius: 15px;
}

.form-control::placeholder {
    color: #A0AEC0;
    font-size: 15px;
}

.d-row {
    display: flex;
    gap: 20px;
    align-items: end;
}

.d-row .form-group {
    flex: 0 0 auto;
    width: 29%;
}

.add-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.remove-row {
    width: 38px;
    height: 38px;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 30px;
}

.radio input[type=radio] {
    opacity: 0;
    width: 0;
    height: 0;
}

input[type="radio"],
input[type="checkbox"] {
    margin-top: 1px;
    line-height: normal;
    cursor: pointer;
    box-sizing: border-box;
}

.radio label,
.checkbox label {
    display: inline-block;
    cursor: pointer;
    position: relative;
    padding-right: 25px;
    margin-left: 15px;
    min-width: 17px;
    min-height: 17px;
    margin-right: 0;
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 0;
}

.radio.radio-success input[type=radio]:checked + label:before {
    border-color: var(--main-color);
}

.radio input[type=radio]:checked + label:before {
    border-width: 5px;
}

.radio label:before {
    bottom: 2.5px;
    border-radius: 99px;
    -webkit-transition: border 0.3s 0s cubic-bezier(0.455, 0.03, 0.215, 1.33);
    transition: border 0.3s 0s cubic-bezier(0.455, 0.03, 0.215, 1.33);
}

.radio label:before,
.checkbox label:before {
    box-sizing: border-box;
    content: "";
    display: inline-block;
    width: 17px;
    height: 17px;
    margin-left: 10px;
    position: absolute;
    right: 0px;
    background-color: #fff;
    border: 1px solid #cdcece;
}

.table-disease {
    margin-top: 50px;
}

.table-disease table {
    border-spacing: 0px 0px;
    margin-bottom: 30px;
}

.table-disease tr {
    border-radius: 8px;
}

.table-disease tr th {
    padding: 20px;
}

.table-disease tr td:first-child,
.table-disease tr td:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Style Details */

.section_hero {
    position: relative;
    padding: 150px 0;
    background-size: 100% !important;
    background-position: center !important;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section_hero:before {
    content: "";
    background: #840a1c;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .6;
}
.txt-hero {
    position: relative;
    text-align: center;
}
.txt-hero h1 {
    color: #fff;
    font-size: 40px;
    margin-bottom: 10px;
}

.txt-hero p {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
}
.txt-hero span {
    text-decoration: underline;
}

.section_data_medical {
    position: relative;
    padding: 80px 0;
}
.dta-medical {
    position: relative;
    padding: 30px;
    border-radius: 10px;
    background: #f4e9eb;
    display: flex;
    gap: 20px;
    width: 80%;
    margin: 0 auto;
}

.dta-medical figure {
    width: 33.333334%;
    margin-bottom: 0;
}

.dta-medical figure img {
    border: 3px solid #56030f;
    border-radius: 10px;
    width: 100%;
    height: 100%;
}
.lst-medical {
    width: 67.333334%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.lst-medical > div {
    background: #fff;
    border: 0.1px solid #56030F;
    box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
    padding: 16px;
    border-radius: 8px;
    width: calc(50% - 15px);
    display: flex;
    align-items: center;
    gap: 8px;
}
.lst-medical > div strong {
    color: #ad4957;
    font-size: 20px;
    flex: 1;
}
.lst-medical > div p {
    color: #000000;
    font-size: 20px;
    flex: 1;
}

.medical-record {
    width: 80%;
    margin: 80px auto;
}
.head-medical {
    margin-bottom: 20px;
}
.head-medical p {
    color: #000;
    font-weight: 600;
    font-size: 18px;
}
.item-medical {
    position: relative;
    padding: 10px;
    border-radius: 10px;
    background: #fefaf8;
    border: 2px solid #ec501c;
    margin-bottom: 20px;
}
.item-medical.item-treatment {
    background: #f9fdfb;
    border: 2px solid #28c66e;
}
.item-medical.item-strike {
    background: #f7f8fd;
    border: 2px solid #6475e9;
}

.hd-med {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.hd-med h6,
.hd-med time {
    color: #54030f;
    font-size: 18px;
    font-weight: 600;
}

.info-medical {
    display: flex;
    gap: 40px;
}

.sec-medi {
    flex: 1;
}
.sec-medi > div {
    display: flex;
    gap: 10px;
}
.sec-medi > div:not(:last-child) {
    margin-bottom: 15px;
}
.sec-medi strong {
    color: #54030f;
    font-size: 18px;
    font-weight: 600;
}
.sec-medi p {
    color: #000;
    font-size: 16px;
}

.sec-medi span {
    background: #51d184;
    color: #fff;
    font-size: 17px;
    padding: 5px 10px;
    border-radius: 50px;
}


footer {
    position: relative;
    padding: 25px 0;
    background: #54030f;
}
.cont-bt {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cont-bt p {
    color: #fff;
}
.cont-bt ul {
    display: flex;
    align-items: center;
    gap: 15px;
}
.cont-bt li a {
    color: #fff;
}





