@charset "utf-8";
/*..............Embaded fonts..............*/
@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=DM+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&family=DM+Serif+Display:ital@0;1&family=Damion&family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Kumbh+Sans:wght@100;200;300;400;500;600;700;800;900&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Urbanist:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    --poppins: "Poppins", sans-serif;
    --font-awesome: "Font Awesome 6 Free";
    --body-paragraph-color: #696969;
    --primary-color: #cba135;
    --secondary-color: #1e1e1e;
    --light-yellow: #fff9eb;
    --white: #fff;
    --black: #000;
    --common-transition: all 0.3s ease 0s;
}

/*..............common styles..............*/
body {
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.2;
    font-family: var(--poppins);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: capitalize;
    line-height: 1;
    margin: 0 0 25px;
    padding: 0;
}

h1 {
    font-size: 130px;
}

h2 {
    font-size: 50px;
}

h3 {
    font-size: 42px;
}

h4 {
    font-size: 32px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

p {
    margin: 0 0 25px;
    line-height: 1.5;
    color: var(--body-paragraph-color);
}

img {
    max-width: 100%;
}

a,
img {
    border: 0;
    text-decoration: none;
    outline: none;
}

a,
a:link,
a:visited,
a:focus,
a:hover {
    color: var(--body-font-color);
    outline: none;
    text-decoration: none;
    transition: all 0.3s ease 0s;
    display: block;
}

a:hover {
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* .container-fluid{padding: 0;} */

input,
textarea,
select {
    outline: none;
}

input[type="submit"] {
    font-weight: 500;
    transition: all 0.3s ease 0s;
    outline: none;
    border: 0;
    color: var(--white);
    padding: 12px 25px;
    border-radius: 35px;
}

input:focus {
    outline: 0 !important;
    box-shadow: inherit !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 9999s ease-in-out 0s;
}

.slick-prev,
.slick-next {
    z-index: 9;
}

.common-padding {
    padding: 100px 0;
}

.common-padding-top-bottom {
    padding-top: 100px;
    padding-bottom: 100px;
}

.common-padding-left-right {
    padding-left: 100px;
    padding-right: 100px;
}

/* .pad-top{padding-top: 180px;} */
.pad-bottom {
    padding-bottom: 250px;
}

/* -- Container adjustment -- */
@media only screen and (min-width: 1700px) {
    .container {
        max-width: 1430px;
    }
}

/* -- Container adjustment -- */

/* --- for placeholder color --- */

.form-control::-moz-placeholder {
    color: #7d7d7d;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #7d7d7d;
}

.form-control::-webkit-input-placeholder {
    color: #7d7d7d;
}

/* --- for placeholder color --- */

/* --- Button Styles --- */
a.btn,
.btn {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    text-transform: capitalize;
    border-radius: 50px;
    background: linear-gradient(180deg, #e5b63a 0%, #bc9328 100%);
    color: #ffff;
    position: relative;
    padding: 17px 63px;
    border-radius: 50px;
    border: 1px solid transparent;
}

a.btn:hover,
.btn:hover {
    background: linear-gradient(180deg, #e5b63a 100%, #bc9328 0%);
    color: var(--white);
    border: 1px solid var(--primary-color);
}

a.btn.white,
.btn.white {
    background: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

a.btn.white:hover,
.btn.white:hover,
a.btn.white.active,
.btn.white.active {
    background: linear-gradient(180deg, #e5b63a 0%, #bc9328 100%);
    color: var(--white);
    border: 1px solid var(--primary-color);
}

a.btn.black,
.btn.black {
    background: #696969;
    color: var(--white);
    border: 1px solid transparent;
}

a.btn.black:hover,
.btn.black:hover {
    background: linear-gradient(180deg, #e5b63a 0%, #bc9328 100%);
    color: var(--black);
    border: 1px solid var(--secondary-color);
}

/* --- Button Styles --- */

/*..............common styles..............*/

/*.............. Splash Screen ..............*/

/*.............. Splash Screen ..............*/
.banner-sec {
    position: relative;
    overflow-y: hidden;
}

.banner-img {
    position: relative;
    height: 100vh;
}

.banner-img img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-img::after {
    content: "";
    background: url(../images/splash-effect-2.svg) center no-repeat;
    background-size: cover;
    position: absolute;
    top: -120px;
    left: 0;
    right: 0;
    z-index: 4;
    width: 100%;
    height: 370px;
}

.banner-img::before {
    content: "";
    background: url(../images/splash-effect-1.svg) center no-repeat;
    background-size: cover;
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    z-index: 4;
    width: 100%;
    height: 370px;
}

.banner-sec::after {
    content: "";
    background: #1e1e1ee3;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.banner-sec::before {
    content: "";
    background: radial-gradient(65.16% 65.16% at 50% 50.39%,
            rgba(30, 30, 30, 0) 0%,
            rgba(30, 30, 30, 0.5) 100%);
    mix-blend-mode: overlay;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.logo a {
    display: block;
}

/*.............. Splash Screen ..............*/

/*.............. Login Screen ..............*/

.inner-content-wrap {
    position: relative;
    height: 100vh;
    padding: 85px 30px !important;
    display: flex;
    justify-content: center;
}

.inner-content-wrap::after {
    content: "";
    background: #000000c7;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.inner-banner-content {
    position: relative;
    z-index: 2;
}

.inner-banner-content .inner-logo {
    max-width: 347px;
    margin: 0 0 120px;
}

.inner-banner-content .inner-logo a {
    display: block;
}

.inner-banner-content .inner-banner-info {
    margin: 0 0 100px;
}

.inner-banner-content .inner-banner-info h1 {
    color: var(--primary-color);
    margin: 0 0 30px;
    font-size: clamp(40px, 6.5vw, 43px);
}

.inner-banner-content .inner-banner-info h2 {
    color: var(--white);
    margin: 0 0 10px;
}

.inner-banner-content .inner-banner-info h4 {
    color: var(--white);
}

.inner-banner-content .inner-banner-info h5 {
    color: var(--white);
    font-weight: 400;
    margin: 0;
}

.inner-info-bottom p {
    color: var(--white);
    margin: 0 0 30px;
}

.inner-info-bottom .btn {
    border-radius: 50px;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 17px 40px;
}

.inner-sec .col-lg-7 {
    height: 100vh;
    overflow: auto;
}

.inner-info {
    margin-left: 138px;
    width: 100%;
    max-width: 765px;

    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 100px;
    padding-top: 60px;
}

.inner-info .inner-info-head {
    margin: 0 0 50px;
}

.inner-info .inner-info-head h2 {
    color: var(--secondary-color);
    margin: 0 0 24px;
    font-weight: 400;
    line-height: 1.2;
}

.inner-info .inner-info-head p {
    color: #a6a6a6;
    margin: 0;
}

.inner-info-form .form-floating {
    margin: 20px 0;
    position: relative;
}

/* .inner-info-form .form-floating:last-child{margin:0;} */
.inner-info-form .form-floating>.form-control {
    border-radius: 15px;
    border: 1px solid #d8cfb9;
    padding: 10px;
}

.inner-info-form .form-floating>label {
    color: #7d7d7d;
    font-size: 18px;
}

.form-floating>.form-control-plaintext~label::after,
.form-floating>.form-control:focus~label::after,
.form-floating>.form-control:not(:placeholder-shown)~label::after,
.form-floating>.form-select~label::after {
    height: 1em;
}

.inner-info-form .form-floating>.inner-info-form .form-control-plaintext~label,
.inner-info-form .form-floating>.form-control:focus~label,
.inner-info-form .form-floating>.form-control:not(:placeholder-shown)~label,
.inner-info-form .form-floating>.form-select~label {
    transform: scale(1) translateY(-25px) translateX(10px);
    color: #7d7d7d;
    font-size: 18px;
    padding: 10px;
    color: #cba135;
}

.inner-info-form .form-floating>.form-control-plaintext:focus,
.inner-info-form .form-floating>.form-control-plaintext:not(:placeholder-shown),
.inner-info-form .form-floating>.form-control:focus,
.inner-info-form .form-floating>.form-control:not(:placeholder-shown) {
    padding: 10px 60px 10px 10px;
    border: 1px solid #696969;
}

.inner-info-form .form-floating a.hide {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.form-bottom-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 70px;
}

.form-bottom-wrap label {
    color: #d8cfb9;
}

.form-bottom-wrap .form-check {
    padding: 0;
}

.form-bottom-wrap .form-check-input {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    margin: 0 10px 0 0;
    border: 1px solid #d8cfb9;
}

.form-bottom-wrap .form-check-input:focus {
    border-color: #d8cfb9;
}

.form-bottom-wrap .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: transparent;
}

.form-bottom-wrap a {
    color: var(--primary-color);
}

.submit-btn .btn {
    width: 100%;
    border-radius: 50px;
}

.page-bottom-content {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-49%);
    /* text-align: center;
    margin-top: 130px; */
}

.page-bottom-content p {
    font-size: 16px;
    color: #d8cfb9;
    margin: 0;
}

.page-bottom-content p a {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
}

.page-bottom-content a.bottom-gray {
    color: #d8cfb9;
    font-size: 16px;
}

/*.............. Login Screen ..............*/

/*.............. Not Accepted by Admin Page ..............*/
.large-popup-wrap {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.large-popup-wrap::after {
    content: "";
    background: url(../images/yellow-effect.svg) center no-repeat;
    background-size: cover;
    position: absolute;
    bottom: -140px;
    left: 0;
    right: 0;
    width: 100%;
    height: 460px;
    z-index: 1;
    opacity: 0.2;
}

.large-popup-wrap::before {
    content: "";
    background: url(../images/yellow-effect-top.svg) center no-repeat;
    background-size: cover;
    position: absolute;
    top: -140px;
    left: 0;
    right: 0;
    width: 100%;
    height: 460px;
    z-index: 1;
    opacity: 0.2;
}

.large-popup-wrap .popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-49%, -49%);
    text-align: center;
    z-index: 2;
    max-width: 786px;
}

.large-popup-wrap .popup-content a.popup-logo {
    display: block;
    margin: 0 0 60px;
}

.large-popup-wrap .popup-content .icon-wrap {
    border-radius: 30px;
    border: 1px solid #e0e0e0;
    background: #f8f8f8;
    padding: 50px;
    width: fit-content;
    margin: 0 auto 70px;
}

.large-popup-wrap .popup-content h3 {
    color: var(--primary-color);
    font-weight: 400;
}

.large-popup-wrap .popup-content h3 strong {
    color: #696969;
    font-weight: 500;
}

.large-popup-wrap .popup-content h4 {
    color: #696969;
    text-transform: none;
    font-weight: 300;
    line-height: 1.2;
}

/*.............. Not Accepted by Admin Page ..............*/

/*.............. Succesfully Changed Password Page ..............*/

.large-popup-wrap .popup-content a.btn {
    width: 100%;
    border-radius: 50px;
    margin: 40px 0 0;
}

/*.............. Succesfully Changed Password Page ..............*/

/*.............. Email Varification Page ..............*/
.inner-info .inner-info-head p a {
    display: inline-block;
    color: var(--primary-color);
}

.inner-info-wrap {
    display: flex;
    flex-direction: column;
    min-height: 80vh;
    justify-content: center;
}

.varification-input {
    max-width: 500px;
}

.varification-input ul {
    display: flex;
    align-items: center;
}

.varification-input ul li {
    padding: 0 8px;
    color: var(--black);
    font-weight: 700;
    font-size: 24px;
}

.varification-input ul li span {
    width: 24px;
    height: 5px;
    display: block;
    background: #000;
}

.varification-input ul li:first-child {
    padding-left: 0;
}

.varification-input ul li:last-child {
    padding-right: 0;
}

.varification-input ul li input {
    width: 65px;
    height: 80px;
    padding: 24px;
    border-radius: 15px;
    border: 1px solid #d8cfb9;
    font-size: 24px;
}

.varification-input ul li input::placeholder {
    font-size: 24px;
}

.varification-input a.btn {
    width: 100%;
    margin: 40px 0 0;
    border-radius: 50px;
}

/*.............. Email Varification Page ..............*/

/*.............. Sign Up Page ..............*/

.form-floating>.form-select {
    padding: 10px 10px 10px 20px;
    color: #696969;
    border-radius: 15px;
    border: 1px solid #d8cfb9;
}

.form-floating>.form-select:focus {
    box-shadow: none;
    border-color: #696969;
}

/*.............. Sign Up Page ..............*/

/* -- Prescriber Status page -- */
.progress-bar {
    margin: 0 0 70px;
}

.progress-bar ul {
    display: flex;
    align-items: center;
}

.progress-bar ul li {
    width: 20%;
    position: relative;
}

.progress-bar ul li::after {
    content: "";
    background: #e0e0e0;
    position: absolute;
    width: 100%;
    height: 6px;
    border-radius: 20px;
    top: 50%;
    transform: translateY(-49%);
    left: -1px;
    z-index: 1;
}

.progress-bar ul li.active::after,
.progress-bar ul li.complete::after {
    background: #cba135;
}

.progress-bar ul li.active span {
    border: 1px solid #cba135;
    background: var(--light-yellow);
}

.progress-bar ul li.complete span {
    background: var(--primary-color);
    color: var(--white);
}

.progress-bar ul li span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 18px;
    border: 1px transparent;
    color: var(--black);
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    position: relative;
    z-index: 2;
}

/* -- Prescriber Status page -- */

/* -- Id Verification page -- */
.upload-outer-wrap {
    padding: 16px;
    border: 2px dashed #d8cfb9;
    border-radius: 15px;
    margin: 0 0 24px;
    position: relative;
}

.upload-outer-wrap input[type="file"] {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 3;
}

.file-choose label {
    color: #a6a6a6;
    margin-bottom: 30px;
}

.upload-outer-wrap.mb-40 {
    margin: 0 0 40px;
}

.upload-inner-wrap {
    padding: 16px;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.upload-inner-wrap .upload-info {
    display: flex;
    align-items: center;
}

.upload-inner-wrap .upload-info .image-holder {
    padding: 22px 34px;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
}

.upload-inner-wrap .upload-info .info {
    padding-left: 26px;
}

.upload-inner-wrap .upload-info .info h5 {
    color: var(--black);
    margin: 0 0 10px;
}

.upload-inner-wrap .upload-info .info p {
    margin: 0;
}

.upload-inner-wrap a.btn.upload {
    border-radius: 50px;
    border: 1px solid #cba135;
    background: var(--light-yellow);
    color: var(--primary-color);
    padding: 12px 52px;
    font-weight: 600;
}

.upload-inner-wrap a.btn:hover {
    background: var(--white);
}

.verification-button {
    text-align: center;
    margin: 0 0 40px;
}

.verification-button {
    font-size: 16px;
    color: #d8cfb9;
}

/* -- Id Verification page -- */

/* -- Gallery Permission Modal -- */
.modal-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 99;
    display: block;
    align-items: center;
    justify-content: center;
    overflow-y: scroll;
}

.modal-wrap {
    max-width: 786px;
    width: 100%;
    background: var(--white);
    padding: 20px;
    border-radius: 30px;
    margin: 30px auto;
    pointer-events: auto;
}

.modal-wrap .modal-inner {
    border: 2px dashed #d8cfb9;
    text-align: center;
    border-radius: 30px;
    padding: 30px;
}

.modal-wrap .modal-inner .image-holder {
    padding: 24px;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    background: #f8f8f8;
    display: inline-block;
    margin: 0 0 24px;
}

/* .modal-wrap .modal-inner .image-holder img {
    width: 130px;
    height: 130px;
} */
.modal-wrap .modal-inner p.yellow {
    color: var(--primary-color);
    margin: 0 0 16px;
}

.modal-wrap .modal-inner .modal-button-wrap {
    display: flex;
    align-items: center;
    width: 100%;
}

.modal-wrap .modal-inner .modal-button-wrap .btn {
    width: 100%;
    margin: 0 10px;
}

/* -- Gallery Permission Modal -- */

/* -- Face Scan Page -- */
.upload-inner-wrap.complete {
    background: var(--light-yellow);
}

/* -- Face Scan Page -- */

/* -- Dashboard Page -- */
.sidebar {
    background: #1e1e1e;
    padding: 40px 20px;
    min-height: 100vh;
    overflow-y: scroll;
}

.sidebar::-webkit-scrollbar {
    width: 0px;
}

.sidebar .inner-logo {
    margin: 0 0 40px;
}

.sidebar .inner-logo a {
    display: block;
}

.sidebar-list ul {
    display: block;
}

.sidebar-list ul li {
    position: relative;
    border-radius: 50px 0 0 50px;
}

.sidebar-list ul li::after {
    content: "";
    position: absolute;
    background: url(../images/sidebar-shape.svg) no-repeat center;
    background-size: contain;
    width: 36px;
    height: 121px;
    top: 48.5%;
    transform: translateY(-50%);
    right: 0px;
    z-index: 9;
    opacity: 0;
}

.icon-only .sidebar-list ul li::after {
    display: none;
}

.sidebar-list ul li a {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #696969;
    font-weight: 500;
    padding: 18px 20px 23px;
}

.sidebar-list ul li a img {
    margin-right: 10px;
    max-width: 20px;
    height: 20px;
}

.sidebar-list ul li:hover,
.sidebar-list ul li.active {
    background: linear-gradient(0deg,
            hsla(43, 65%, 45%, 1) 0%,
            hsla(44, 77%, 56%, 1) 100%);
}

.sidebar-list ul li:hover::after,
.sidebar-list ul li.active::after,
.sidebar .nav:not(.sub-menu)>.nav-item[aria-expanded="true"]:after {
    opacity: 1;
}

.sidebar-list ul li:hover a,
.sidebar-list ul li.active a {
    color: var(--white);
}

.sidebar .nav .nav-item .nav-link svg {
    margin-left: auto;
    position: relative;
    z-index: 22;
}

.sidebar-list ul li:hover a img,
.sidebar-list ul li.active a img,
.sidebar .nav:not(.sub-menu)>.nav-item[aria-expanded="true"]>.nav-link img {
    filter: brightness(0) invert(1);
}

.sidebar-list hr {
    border-top: rgb(89 89 89 / 20%) solid;
    text-align: center;
    margin: 0 auto;
    width: 205px;
    opacity: 0.8;
}

/* -- 16.01.2024 -- */
small.help-block {
    color: red;
    font-size: 14px;
}

.text-red-600 {
    color: red !important;
}

.form-floating.search-adj span {
    width: 100%;
}

.form-floating.search-adj span input {
    border: 1px solid #696969;
    padding: 20px;
    border-radius: 15px;
}

li.menu-item-has-children {
    position: relative;
}

ul.sub-menu {
    position: absolute;
    top: 60px;
    left: 20px;
    right: 0;
    z-index: 99;
}

ul.sub-menu li {
    padding: 10px 0;
}

ul.sub-menu li a {
    padding: 0 20px;
}

ul.sub-menu li:hover {
    background: transparent;
}

ul.sub-menu li:hover a,
ul.sub-menu li a.active {
    color: hsla(43, 65%, 45%, 1);
}

ul.sub-menu li::after {
    content: none;
}

/*======================dashboard================================*/

.page-body-wrapper {
    min-height: calc(100vh - 77px);
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    padding-left: 0;
    padding-right: 0;
    padding-top: 77px;
}

.content-wrapper {
    padding: 30px;
    width: 100%;
    -webkit-flex-grow: 1;
    flex-grow: 1;
}

.container-scroller {
    overflow: hidden;
}

.navbar {
    font-weight: 400;
    transition: background 0.25s ease;
    -webkit-transition: background 0.25s ease;
    -moz-transition: background 0.25s ease;
    -ms-transition: background 0.25s ease;

    /* Navbar color variations */
}

.navbar .navbar-menu-wrapper .navbar-nav {
    flex-direction: row !important;
    margin-left: auto;
}

.navbar .navbar-brand-wrapper {
    background: #1e1e1e;
    transition: width 0.25s ease, background 0.25s ease;
    -webkit-transition: width 0.25s ease, background 0.25s ease;
    -moz-transition: width 0.25s ease, background 0.25s ease;
    -ms-transition: width 0.25s ease, background 0.25s ease;
    width: 265px;
    height: 77px;
}

.navbar .navbar-brand-wrapper .navbar-brand {
    color: #27367f;
    font-size: 1.5rem;
    margin-right: 0;
    padding: 0.25rem 0;
}

.navbar .navbar-brand-wrapper .navbar-brand.brand-logo-mini {
    display: none;
}

.icon-only .navbar .navbar-brand-wrapper .navbar-brand.brand-logo-mini {
    display: inline-block;
}

.icon-only .navbar .navbar-brand-wrapper .brand-logo {
    display: none;
}

.navbar .navbar-brand-wrapper .navbar-brand:active,
.navbar .navbar-brand-wrapper .navbar-brand:focus,
.navbar .navbar-brand-wrapper .navbar-brand:hover {
    color: #1b2658;
}

.navbar .navbar-brand-wrapper .navbar-brand img {
    width: 100%;
    max-width: 184px;
    margin: auto;
    vertical-align: middle;
}

.navbar .navbar-brand-wrapper .brand-logo-mini {
    padding-left: 0;
    text-align: center;
}

.navbar .navbar-brand-wrapper .brand-logo-mini img {
    width: calc(70px - 30px);
    max-width: 100%;
    margin: auto;
}

.navbar .navbar-menu-wrapper {
    background: #ffffff;
    transition: width 0.25s ease;
    -webkit-transition: width 0.25s ease;
    -moz-transition: width 0.25s ease;
    -ms-transition: width 0.25s ease;
    color: #6c7383;
    padding: 0 30px;
    width: calc(100% - 265px);
    height: 77px;
}

.right-sec-wrapper {
    /* border-bottom: 1px solid #d9d9d9; */
    padding: 0px 0 0px;
    /* background: var(--white); */
    height: 100%;
}

.trtment-img {
    margin-top: 15px;
    text-align: left;
}

.trtment-img img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

@media (max-width: 991px) {
    .navbar .navbar-menu-wrapper {
        width: calc(100% - 224px);
        height: 77px;
        padding-left: 15px;
        padding-right: 11px;
        background: #1e1e1e;
    }
}

.navbar .navbar-menu-wrapper .navbar-toggler {
    border: 0;
    color: inherit;
    font-size: 1.25rem;
    padding: 0;
    border-radius: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar .navbar-menu-wrapper .navbar-toggler:not(.navbar-toggler-right) {
    transform: rotate(0deg);
    -webkit-transition: transform 0.3s linear;
    -moz-transition: transform 0.3s linear;
    -ms-transition: transform 0.3s linear;
    -o-transition: transform 0.3s linear;
    transition: transform 0.3s linear;
}

@media (max-width: 991px) {
    /* .navbar .navbar-brand-wrapper .navbar-brand.brand-logo {
        display: none;
    } */

    .navbar .navbar-brand-wrapper .navbar-brand.brand-logo-mini {
        display: none;
    }
}

@media (max-width: 991px) {
    .navbar .navbar-menu-wrapper .navbar-toggler.navbar-toggler-right {
        padding-left: 15px;
        padding-right: 0;
    }
}

.navbar .navbar-menu-wrapper .navbar-nav .nav-item.nav-profile img {
    width: 60px;
    height: 60px;
    border-radius: 15px;
}

.profile-active span {
    width: 18px;
    height: 18px;
    border-radius: 15px;
    border: 4px solid #fff;
    background: #00bc62;
    display: block;
}

.profile-active {
    position: absolute;
    bottom: 6px;
    right: 68%;
}

/* Sidebar */
.sidebar {
    min-height: calc(100vh - 77px);
    background: #1e1e1e;
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    padding: 0;
    width: 265px;
    z-index: 11;
    transition: width 0.25s ease, background 0.25s ease;
    -webkit-transition: width 0.25s ease, background 0.25s ease;
    -moz-transition: width 0.25s ease, background 0.25s ease;
    -ms-transition: width 0.25s ease, background 0.25s ease;
}

.sidebar .nav {
    /*  overflow: hidden;*/
    flex-wrap: nowrap;
    flex-direction: column;
    margin-bottom: 60px;
}

.sidebar .nav .nav-item {
    -webkit-transition-duration: 0.25s;
    -moz-transition-duration: 0.25s;
    -o-transition-duration: 0.25s;
    transition-duration: 0.25s;
    transition-property: background;
    -webkit-transition-property: background;
    position: relative;
}

.sidebar .nav .nav-item .collapse {
    z-index: 999;
}

.sidebar .nav .nav-item .nav-link {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    white-space: nowrap;

    color: #696969;
    font-weight: 500;

    -webkit-transition-duration: 0.45s;
    -moz-transition-duration: 0.45s;
    -o-transition-duration: 0.45s;
    transition-duration: 0.45s;
    transition-property: color;
    -webkit-transition-property: color;
}

.sidebar .nav .nav-item .nav-link i {
    color: inherit;
}

.sidebar .nav .nav-item .nav-link i.menu-icon {
    font-size: 1rem;
    line-height: 1;
    margin-right: 1rem;
    color: #6c7383;
}

.sidebar .nav .nav-item .nav-link i.menu-icon:before {
    vertical-align: middle;
}

.sidebar .nav .nav-item .nav-link i.menu-arrow {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-left: auto;
    margin-right: 0;
    color: #686868;
}

.sidebar .nav .nav-item .nav-link i.menu-arrow:before {
    content: "\e649";
    font-family: "themify";
    font-style: normal;
    display: block;
    font-size: 0.687rem;
    line-height: 10px;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.sidebar .nav .nav-item .nav-link .menu-title {
    color: inherit;
    display: inline-block;
    font-size: 0.875rem;
    line-height: 1;
    vertical-align: middle;
}

.sidebar .nav .nav-item .nav-link .badge {
    margin-left: auto;
}

.sidebar .nav .nav-item .nav-link[aria-expanded="true"] i.menu-arrow:before {
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

/*.sidebar .nav .nav-item.active > .nav-link {
  background: #4B49AC;
  position: relative;
}*/

.sidebar .nav .nav-item.active>.nav-link i,
.sidebar .nav .nav-item.active>.nav-link .menu-title,
.sidebar .nav .nav-item.active>.nav-link .menu-arrow,
.sidebar .nav:not(.sub-menu)>.nav-item[aria-expanded="true"]>.nav-link {
    color: #fff;
}

.sidebar .nav .nav-item.active>.nav-link i.menu-arrow::before {
    content: "\e64b";
}

.sidebar .nav .nav-item:hover>.nav-link i,
.sidebar .nav .nav-item:hover>.nav-link .menu-title,
.sidebar .nav .nav-item:hover>.nav-link .menu-arrow {
    color: #fff;
}

.sidebar .nav:not(.sub-menu) {
    margin-top: 1.45rem;
    margin-left: 1rem;
    /*  margin-right: 1rem;*/
}

.sidebar .nav:not(.sub-menu)>.nav-item {
    margin-top: 0.2rem;
}

.sidebar .nav:not(.sub-menu)>.nav-item:hover>.nav-link,
.sidebar .nav:not(.sub-menu)>.nav-item:hover[aria-expanded="true"] {
    background: linear-gradient(0deg,
            hsla(43, 65%, 45%, 1) 0%,
            hsla(44, 77%, 56%, 1) 100%);
    border-radius: 50px 0 0 50px;
}

.sidebar .nav:not(.sub-menu)>.nav-item>.nav-link {
    margin: 0;
}

.sidebar .nav:not(.sub-menu)>.nav-item[aria-expanded="true"] {
    background: linear-gradient(0deg,
            hsla(43, 65%, 45%, 1) 0%,
            hsla(44, 77%, 56%, 1) 100%);
    color: #fff;
}

.sidebar .nav.sub-menu {
    margin-bottom: 0;
    margin-top: 0;
    list-style: none;
    padding: 0.25rem 0 0 3.07rem;
    background: #4b49ac;
    padding-bottom: 12px;
}

.sidebar .nav.sub-menu .nav-item {
    padding: 0;
}

.sidebar .nav.sub-menu .nav-item::before {
    content: "";
    width: 5px;
    height: 5px;
    position: absolute;
    margin-top: 16px;
    border-radius: 50%;
    background: #b2b2b2;
}

.sidebar .nav.sub-menu .nav-item .nav-link {
    color: #fff;
    padding: 0.7rem 1rem;
    position: relative;
    font-size: 0.875rem;
    line-height: 1;
    height: auto;
    border-top: 0;
}

.sidebar .nav.sub-menu .nav-item .nav-link:hover {
    color: #ffffff;
}

.sidebar .nav.sub-menu .nav-item .nav-link.active {
    color: #ffffff;
    background: transparent;
}

/* style for off-canvas menu*/
@media screen and (max-width: 991px) {
    .sidebar-offcanvas {
        position: fixed;
        max-height: calc(100vh - 77px);
        top: 77px;
        bottom: 0;
        overflow: auto;
        right: -265px;

        -webkit-transition: all 0.25s ease-out;
        -o-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    .sidebar-offcanvas.sidebar-open {
        right: 0;
    }
}

/*main panel*/
.main-panel {
    transition: width 0.25s ease, margin 0.25s ease;
    width: calc(100% - 265px);
    min-height: calc(100vh - 77px);
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.icon-only .sidebar-list {
    width: 70px;
}

.icon-only .navbar .navbar-brand-wrapper {
    width: 70px;
}

.icon-only .sidebar .nav .nav-item .nav-link .menu-title {
    display: none;
}

.icon-only .navbar .navbar-menu-wrapper,
.icon-only .main-panel {
    width: calc(100% - 70px);
}

.icon-only .sidebar-list ul li a {
    padding: 11px 20px 11px;
}

.count-indicator {
    border-radius: 15px;
    background: #f8f8f8;
    position: relative;
    padding: 10px;
}

.count-indicator i {
    font-size: 30px;
    color: #000;
}

.count-indicator .count {
    position: absolute;
    left: 52%;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    top: 13px;
    border: 2px solid #f8f8f8;
    background: #cba135;
}

.navbar .navbar-menu-wrapper .navbar-nav .nav-item {
    margin: 0 16px;
}

.noti-dropdown {
    position: relative;
    margin-right: 33px !important;
}

.noti-dropdown-menu {
    display: none;
    background: #fff;
    box-shadow: 0px 0px 3px #ccc;
    padding: 9px;
    position: absolute;
    left: 0;
    min-width: 232px;
}

.noti-dropdown:hover .noti-dropdown-menu {
    display: block;
}

.dropdown-menu-right {
    position: absolute !important;
    font-size: 0.9rem;
    margin-top: 0;
    left: auto !important;
    top: 70px !important;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #dadada;
    background: #fff;
    box-shadow: 0px 10px 20px 0px rgba(74, 53, 0, 0.1);
    min-width: 239px;
}

.dropdown-menu-right ul li a {
    font-size: 15px;
    margin-bottom: 15px;
}

.dropdown-menu-right ul li a:hover {
    color: var(--primary-color);
}

.dropdown-menu-right ul li:last-child a {
    font-weight: 600;
    color: var(--primary-color);
}

.nav-profile.dropdown a {
    display: flex;
    align-items: center;
}

.profile-info {
    margin-left: 20px;
}

.profile-info>h4 {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 0px;
    color: #1e1e1e;
}

.profile-info p {
    font-size: 14px;
    color: #696969;
    margin-bottom: 0;
}

.dropdown-toggle::after {
    background: url(../images/arrow-down.svg);
    background-position: center;
    background-repeat: no-repeat;
    border: 0;
    width: 13px;
    height: 13px;
    position: absolute;
    right: -20px;
    top: 27%;
    background-size: contain;
}

.prfile-nm {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.prfile-nm span {
    font-size: 20px;
    color: var(--body-paragraph-color);
    font-weight: 400;
}

/*content wrapper*/
/*.dashboard-left-text {width: 60%; }*/
.dashboard-left-text h3 {
    font-weight: 600;
}

.dashboard-left-text h5 a {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: underline;
}

.dashboard-left-text h5 {
    color: var(--body-paragraph-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.dashboard-card {
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    background: #f8f8f8;
    padding: 30px;
    display: flex;
    margin-bottom: 30px;
    min-height: 198px;
}

.dashboard-card .img-card {
    margin-right: 30px;
}

.Prescription-info h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

.Prescription-info p {
    font-size: 18px;
    color: var(--body-paragraph-color);
    max-width: 500px;
    margin-bottom: 0px;
}

.Prescription-info a {
    text-decoration-line: underline;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 30px;
}

.dashboard-card:hover {
    border: 1px solid #cba135;
    background: var(--light-yellow);
    box-shadow: 0px 10px 20px 0px rgba(74, 53, 0, 0.1);
}

.dashboard-right-text {
    margin-left: auto;
}

.dashboard-right-text ul {
    display: flex;
}

.dashboard-right-text ul li {
    margin-right: 20px;
}

/*patient*/
.srch-form label {
    color: #cba347;
    font-size: 18px;
    margin-bottom: 10px;
}

.srch-form form input {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #d8cfb9;
    height: 60px;
    padding: 20px;
    color: #656565;
}

.form-check-inline {
    margin-left: 1rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 34px !important;
}

.mb-4 {
    margin-bottom: 30px !important;
}

.patient-table .card {
    padding: 0;
    border: 0;
}

.patient-table .card .card-body {
    border-radius: 8px;
    background: #fff;
    box-shadow: 0px 0px 30px 0px rgba(74, 53, 0, 0.05);
}

.table-patient .table tr th,
.table-patient .table tr td {
    color: #000000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 25px 12px;
    white-space: nowrap;
    vertical-align: middle;
}

.table-patient .table tr th {
    font-weight: 600;
    color: #000000;
    text-transform: capitalize;
}

.dataTables_info {
    font-size: 16px;
}

.table-patient {
    overflow-y: auto;
}

.table-patient .table thead {
    position: sticky;
    top: 0;
    background: #fff;
}

.action-buttons a {
    width: 26px;
}

.fixed-top {
    z-index: 98;
}

/* -- Terms And Condition Page -- */
.term-wrap {
    padding: 30px 0 70px;
}

.term-wrap h3 {
    color: var(--black);
    font-weight: 600;
    margin: 0 0 30px;
}

.term-wrap h4 {
    color: #696969;
    margin: 0 0 20px;
    font-weight: 500;
}

.term-wrap ul li {
    padding: 0 0 15px 20px;
    color: #696969;
    position: relative;
}

.term-wrap ul li:after {
    content: "";
    background: var(--primary-color);
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    top: 5px;
    left: 0;
}

.term-wrap ul li:last-child {
    padding: 0 0 0 20px;
}

/* -- Terms And Condition Page -- */

/* -- New Prescribtion Page -- */
.patient-detail-wrap {
    margin: 0 0 20px;
    color: #696969;
}

.patient-detail-wrap .patient-search {
    border-radius: 15px;
    border: 1px solid #d8cfb9;
    padding: 30px;
}

.patient-detail-wrap .patient-search p:last-child {
    margin: 0;
}

.search-input label {
    display: block;
    margin: 0 0 10px;
    font-weight: 500;
}

.search-input input {
    border-radius: 15px;
    border: 1px solid #d8cfb9;
    padding: 17px 30px 17px 50px !important;
    width: 100%;
    background: url(../images/search.svg) no-repeat;
    background-size: 24px;
    background-position: center left 20px;
}

.search-input input::placeholder {
    color: #d8cfb9;
    font-size: 18px;
    font-weight: 400;
}

.patient-info {
    margin: 40px 0 0;
}

.patient-info p {
    color: #a6a6a6;
}

.patient-info p:last-child {
    margin: 0;
}

.table-patient.h-auto.medicine-adj table {
    border-radius: 8px;
    box-shadow: 0px 0px 30px 0px rgba(74, 53, 0, 0.05);
}

.table-patient.h-auto.medicine-adj tr:last-child {
    border: none;
}

.table-patient.h-auto.medicine-adj tr:last-child td {
    border: none;
}

a.add-row {
    display: inline-block;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

a.add-row img {
    max-width: 23px;
}

.medicine-comment {
    margin: 40px 0 0;
}

.medicine-comment label {
    display: block;
    padding: 0 0 10px;
    color: #696969;
    font-size: 20px;
    font-weight: 500;
}

.medicine-comment textarea {
    padding: 10px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #d8cfb9;
    height: 216px;
}

.medicine-buttons-wrap {
    margin: 30px 0 0;
    display: flex;
    justify-content: space-between;
}

/* -- New Prescribtion Page -- */

/* -- Profile Info Page -- */
.profile-head h3 {
    color: var(--black);
    margin: 0 0 30px;
}

.profile-form .inner-form h4 {
    color: #696969;
    margin: 0 0 20px;
}

.inner-form {
    border-bottom: 1px solid #d9d9d9;
    padding: 50px 0;
}

.inner-form p {
    margin: 0 0 40px;
}

.change-logo-wrap span {
    color: var(--primary-color);
    font-size: 18px;
    margin: 0 0 20px;
    display: block;
}

.change-logo-wrap .logo-input {
    display: flex;
    align-items: center;
    position: relative;
    margin: 0 0 40px;
}

.change-logo-wrap .logo-input .image-holder {
    border: 2px dashed #d8cfb9;
    padding: 10px;
    border-radius: 20px;
    margin-right: 30px;
    max-width: 244px;
}

.change-logo-wrap .logo-input .image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.change-logo-wrap .logo-input a.btn {
    background: var(--light-yellow);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 17px 0;
    width: calc(100% - 257px);
}

.change-logo-wrap .logo-input input {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    opacity: 0;
}

.profile-image-sec h4 {
    color: #696969;
}

.profile-image-sec p {
    color: #a6a6a6;
}

.profile-image-wrap {
    border-radius: 15px;
    border: 1px solid #dadada;
    box-shadow: 0px 10px 20px 0px rgba(74, 53, 0, 0.1);
    padding: 40px;
}

.profile-img {
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    background: #f8f8f8;
    padding: 6px;
    max-width: 166px;
    margin: 0 auto 30px;
}

.profile-img .image-holder {
    padding: 100% 0 0 0;
    position: relative;
}

.profile-img .image-holder img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.profile-image-wrap a.btn.white {
    width: 100%;
    padding: 17px 0;
}

/* -- Profile Info Page -- */

/* -- Add Patient -- */
.valid-result {
    margin-top: 50px;
}

.valid-result h4 {
    color: #696969;
}

.valid-result p {
    color: #696969;
    margin-bottom: 10px;
}

.note {
    display: flex;
    align-items: flex-start;
}

.note span {
    display: inline-block;
    margin-right: 10px;
    color: #696969;
}

.note p {
    color: #696969;
}

/*new Prescription*/
.status {
    border-radius: 15px;
    padding: 14px;
    font-weight: 600;
    text-align: center;
    width: auto;
    display: inline-block;
}

.status-nw {
    background: var(--primary-color);
    color: var(--white);
}

.status-cmplt {
    background: var(--light-yellow);
    border: 1px solid var(--primary-color);
    color: var(--black);
}

.srch-form form select {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #d8cfb9;
    /* height: 60px; */
    padding: 20px;
    color: #656565;
    background: url(../images/yellow-arrow.svg) no-repeat;
    background-position: center right 20px;
    appearance: none;
}

.srch-form form .hasDatepicker {
    padding: 20px 20px 20px 16px !important;
    /* background: url(../images/calendar.svg); */
    background-position: 4%;
    background-repeat: no-repeat;
}

.otp-send p {
    font-size: 16px;
    color: #d8cfb9;
    margin-bottom: 0;
}

.otp-send p a {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
}

/*electric Prescription*/
.form-group {
    margin-bottom: 15px;
}

.ll table thead tr th {
    background: var(--primary-color);
    color: #fff;
    font-size: 20px;
    padding: 25px 30px;
}

.ll table thead tr th,
.ll table tbody tr td {
    white-space: nowrap;
}

.ll .table {
    border-radius: 8px 8px 0px 0px;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0px 0px 30px 0px rgba(74, 53, 0, 0.05);
    margin-bottom: 30px;
}

.ll .table tbody tr td {
    padding: 25px 30px;
    border: 0;
}

.ll h4 {
    color: var(--body-paragraph-color);
    font-weight: 500;
}

.ll p {
    word-wrap: break-word;
}

#importPatientsModal button.close {
    background: transparent;
    border: 0;
    font-size: 20px;
}

#importPatientsModal button.close span {
    font-size: 30px;
}

/* -- Sign In Page -- */
.sign-in-wrap {
    max-width: 786px;
    margin: 0 auto;
}

.sign-in-input {
    border: 1px solid #cba135;
    border-radius: 25px;
    box-shadow: 0px 8px 20px 0px rgba(74, 53, 0, 0.05);
}

.sign-in-head {
    background: linear-gradient(180deg, #e5b63a 0%, #bc9328 100%);
    border-radius: 25px 25px 0px 0px;
    padding: 32px 40px 46px;
}

.sign-in-head h3 {
    color: #fff;
    margin: 0 0 10px;
}

.sign-in-head h4 {
    margin: 0;
    color: #fff;
    font-weight: 400;
}

.email-input {
    padding: 40px;
    border-radius: 25px;
    background: var(--white);
    margin-top: -20px;
}

.email-input .form-control {
    padding: 16px 20px;
}

.email-input .form-control::placeholder {
    color: #d8cfb9;
}

.sign-in-button {
    padding: 40px 0 30px;
}

.sign-in-button input {
    background: #696969;
    color: var(--white);
    width: 100%;
    padding: 17px 0;
}

.or-wrap {
    position: relative;
    text-align: center;
    margin: 30px 0;
}

.or-wrap::before {
    content: "";
    background: #696969;
    height: 1px;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

.or-wrap span {
    padding: 0 20px;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.sign-in-button a.btn.google {
    width: 100%;
    background: transparent;
    color: #cba135;
    border: 1px solid #cba135;
    border-radius: 50px;
}

.sign-in-button a.btn.google img {
    margin-right: 15px;
    max-width: 23px;
}

.sign-in-button a.btn.google:hover {
    background: var(--yellow);
    color: var(--white);
}

/* -- Sign In Page -- */

/* -- Registration Page -- */
.registration-wrap {
    max-width: 1330px;
    margin: 0 auto;
}

.registration-wrap .registration-info h5 {
    margin: 0 0 20px;
}

.registration-wrap .registration-info p {
    margin: 0;
}

.registration-input ul {
    display: flex;
    flex-wrap: wrap;
}

.registration-input ul li {
    width: 50%;
    padding: 10px;
}

.registration-input ul li select.form-control {
    background-image: url(../images/yellow-down.svg);
    background-repeat: no-repeat;
    background-position: center right 20px;
    background-size: 18px;
}

.address-wrap {
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #cba135;
    box-shadow: 0px 8px 20px 0px rgba(74, 53, 0, 0.05);
    margin: 0 0 30px;
}

.address-info {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.address-info .top-part h5 {
    color: #1e1e1e;
    margin: 0 0 32px;
}

.address-info .top-part p {
    margin: 0;
}

.address-info .bottom-part button.btn {
    background: var(--white);
    border: 1px solid var(--yellow);
    color: var(--yellow);
    margin: 0 0 15px;
}

.address-info .bottom-part a {
    color: #e5b63a;
    text-decoration: underline;
}

.address-info .bottom-part .form-check {
    display: flex;
    align-items: center;
    padding: 0;
    margin-top: 20px;
}

.address-info .bottom-part .form-check input {
    width: 30px;
    height: 30px;
    border: 1px solid #696969;
    border-radius: 8px;
    margin: 0 15px 0 0;
}

.address-info .bottom-part .form-check input:checked {
    background-color: #cba135;
}

.address-info .bottom-part .form-check label {
    color: #696969;
}

.address-input ul {
    display: block;
}

.address-input ul li {
    width: 100%;
    padding-bottom: 20px;
}

.address-input ul li:last-child {
    padding-bottom: 0;
}

.address-input ul li input.form-control {
    padding: 14px 20px;
}

.address-input ul li input.form-control::placeholder {
    color: #d8cfb9;
}

.address-bottom-btn a.btn {
    padding: 17px 36px;
}

/* -- Registration Page -- */
.modal-backdrop {
    z-index: 40;
}

table.dataTable thead th,
table.dataTable tbody td {
    border-bottom: 1px solid #dee2e6;
}

table.dataTable.no-footer {
    border-bottom: 0;
    width: 100% !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: var(--primary-color);
    color: var(--white) !important;
    border: 1px solid var(--primary-color);
}

.dataTables_wrapper .dataTables_paginate .paginate_button,
.dataTables_wrapper .dataTables_info o {
    font-size: 14px;
}

.edit-delete-icons {
    display: flex;
    justify-content: flex-end;
}

.edit-delete-icons .del {
    background: red;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.edit-delete-icons .del svg {
    color: #fff;
}

.edit-delete-icons .editt {
    background: #1e1e1e;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    color: #fff;
    font-size: 13px;
}

.status-reject {
    background: #e9969e;
    border: 1px solid red;
    color: var(--black);
}

#ManageModal .modal-dialog {
    max-width: 786px;
}

input[type="date"] {
    padding: 10px 18px 10px 10px !important;
}

.doctor-img {
    position: relative;
    padding-bottom: 70%;
    margin-bottom: 26px;
}

.doctor-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    object-fit: cover;
}

.doctor-text {
    text-align: center;
}

.doctor-text .btn {
    width: 100%;
}

.form-check-flex {
    display: flex;
    align-items: center;
}

.Clinicians-wdth {
    max-width: 2230px;
    margin: 0 auto;
}

/*=========================media queries===============================*/
@media only screen and (max-width: 1600px) {
    h3 {
        font-size: 36px;
    }

    h4 {
        font-size: 25px;
    }

    /*  dashboard responsive  */

    .dashboard-card .img-card {
        margin-right: 3px;
        max-width: 70px;
        flex: 0 0 70px;
    }

    .Prescription-info p {
        max-width: 430px;
        font-size: 16px;
    }

    .Prescription-info h5 {
        font-size: 16px;
    }

    .inner-info {
        margin-left: 120px;
        max-width: 685px;
    }

    .inner-banner-content .inner-banner-info h1 {
        font-size: 40px;
    }

    /*  dashboard responsive  */
}

@media only screen and (max-width: 1440px) {
    .inner-info {
        margin-left: 60px;
    }

    .common-padding {
        padding: 80px;
    }

    .inner-banner-content .inner-banner-info h1 {
        font-size: 30px;
        line-height: 1.4;
    }
}

@media only screen and (max-width: 1366px) {

    .table-patient .table tr th,
    .table-patient .table tr td {
        font-size: 16px;
        padding: 25px 20px;
    }

    /* .table-patient .table tr td img {
        max-width: 20px;
    } */
}

@media only screen and (max-width: 1280px) {
    body {
        font-size: 15px;
    }

    .inner-info {
        max-width: 640px;
        margin-left: 20px;
    }

    h2 {
        font-size: 42px;
    }
}

@media only screen and (max-width: 1200px) {

    a.btn,
    .btn {
        padding: 17px 50px;
    }
}

@media only screen and (max-width: 1024px) {
    .prfile-nm span {
        font-size: 16px;
    }

    h4 {
        font-size: 20px;
    }

    .noti-dropdown {
        margin-right: 16px !important;
    }

    .profile-info>h4 {
        font-size: 16px;
    }

    .page-bottom-content {
        bottom: 0;
    }

    .inner-info {
        margin-left: 0;
        padding: 0 24px;
    }
}

@media only screen and (max-width: 991px) {

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin: 0 0 16px;
    }

    .navbar .navbar-brand-wrapper {
        width: 224px;
        padding: 10px;
    }

    .navbar .navbar-menu-wrapper .navbar-nav .nav-item.nav-profile img {
        width: 43px;
        height: 43px;
    }

    .prfile-nm span,
    .prfile-nm {
        font-size: 16px;
    }

    .main-panel {
        margin-left: 0;
        width: 100%;
    }

    .nav-profile.dropdown {
        margin-right: 45px !important;
    }

    .dashboard-card {
        padding: 30px 16px;
    }

    .Prescription-info p {
        max-width: 300px;
        font-size: 16px;
        word-break: break-word;
    }

    .dashboard-card .img-card {
        margin-right: 3px;
        max-width: 60px;
        flex: 0 0 60px;
    }

    .Prescription-info a {
        margin-top: 16px;
        font-size: 16px;
    }

    .dashboard-left-text h5 {
        margin-bottom: 16px;
    }

    .status {
        font-size: 14px;
        padding: 12px;
    }

    .ll table thead tr th {
        font-size: 17px;
        padding: 16px 30px;
    }

    /* -- Page Responsive -- */
    .common-padding {
        padding: 40px;
    }

    .inner-info {
        margin: 0 auto;
        padding: 20px 0 50px;
    }

    .inner-info .inner-info-head {
        margin: 0 0 30px;
    }

    .inner-content-wrap {
        height: 50vh;
    }

    .inner-banner-content .inner-logo,
    .inner-banner-content .inner-banner-info {
        margin: 0 0 30px;
    }

    .inner-info-bottom p {
        margin: 0 0 10px;
    }

    .inner-info-wrap {
        min-height: auto;
    }

    .profile-form .row .col-lg-3 {
        order: 1;
    }

    .profile-form .row .col-lg-9 {
        order: 2;
    }

    .profile-image-wrap {
        margin: 0 0 20px;
    }

    .inner-sec .col-lg-7 {
        height: 100vh;
    }
}

/* -- Page Responsive -- */

@media only screen and (max-width: 767px) {
    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 30px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 18px;
    }

    .prfile-nm,
    .profile-info,
    .dropdown-toggle::after {
        display: none;
    }

    .dropdown-menu-right {
        right: -69px;
        left: inherit !important;
    }

    .noti-dropdown {
        margin-right: 16px !important;
    }

    .sidebar-list ul li a {
        padding: 15px 20px;
    }

    .sidebar-list ul li::after {
        width: 27px;
        height: 88px;
    }

    .nav-profile.dropdown {
        margin-right: 16px !important;
    }

    .content-wrapper {
        padding: 30px 15px;
    }

    .dashboard-card {
        min-height: auto;
    }

    .dashboard-card .img-card {
        margin-right: 8px;
        max-width: 50px;
        flex: 0 0 50px;
    }

    .srch-form .btn {
        width: 49%;
        margin-top: 10px;
        padding: 17px 13px;
    }

    .dashboard-left-text h4 span {
        color: var(--primary-color);
        font-weight: 600;
        display: inline-block;
        margin-top: 8px;
    }

    .dashboard-right-text ul {
        flex-wrap: wrap;
    }

    .dashboard-right-text ul li {
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }

    .search-input input {
        padding: 17px 20px 17px 44px !important;
        background-position: center left 14px;
    }

    .medicine-buttons-wrap a {
        width: 100%;
        margin-bottom: 10px;
    }

    .medicine-buttons-wrap {
        flex-wrap: wrap;
    }

    .patient-detail-wrap .patient-search {
        padding: 30px 15px;
    }

    /* -- Page Responsive -- */
    .common-padding {
        padding: 20px;
    }

    .inner-content-wrap {
        height: 75vh;
    }

    .inner-info-form .form-floating>.form-control {
        border-radius: 15px;
        border: 1px solid #d8cfb9;
        padding: 10px;
        min-height: auto;
        height: 45px;
        padding: 10px;
        font-size: 14px;
    }

    .inner-info-form .form-floating>label {
        padding: 10px;
    }

    .inner-info-form .form-floating>.inner-info-form .form-control-plaintext~label,
    .inner-info-form .form-floating>.form-control:focus~label,
    .inner-info-form .form-floating>.form-control:not(:placeholder-shown)~label,
    .inner-info-form .form-floating>.form-select~label {
        font-size: 14px;
    }

    .inner-banner-info,
    .inner-info-bottom,
    .inner-info .inner-info-head {
        text-align: center;
    }

    .inner-banner-content .inner-logo {
        margin: 0 auto 50px;
    }

    .form-bottom-wrap {
        display: block;
        margin: 0 0 30px;
    }

    .inner-info-form .form-floating {
        margin: 0 0 20px;
    }

    .form-bottom-wrap .form-check {
        display: flex;
        align-items: center;
        margin: 0 0 10px;
    }

    .form-bottom-wrap .form-check-input {
        width: 20px;
        height: 20px;
        border-radius: 5px;
    }

    .page-bottom-content {
        left: 0;
        right: 0;
        transform: translateX(0);
        text-align: center;
    }

    .varification-input ul li input {
        width: 45px;
        height: 50px;
        padding: 13px;
        border-radius: 10px;
        border: 1px solid #d8cfb9;
        font-size: 15px;
    }

    .large-popup-wrap .popup-content .icon-wrap {
        margin: 0 auto 30px;
        padding: 20px;
    }

    .large-popup-wrap .popup-content {
        position: absolute;
        top: 10px;
        left: 10px;
        right: 10px;
        transform: translate(0%, 15%);
        text-align: center;
        z-index: 2;
        max-width: 786px;
    }

    .large-popup-wrap .popup-content .icon-wrap img {
        max-width: 70px;
    }

    .inner-sec .py-5 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .form-floating>.form-select {
        min-height: auto;
        height: 50px;
    }

    .progress-bar {
        margin: 0 0 30px;
    }

    .progress-bar ul li span {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }

    .submit-btn {
        margin: 0 0 20px;
    }

    .upload-outer-wrap {
        padding: 10px;
    }

    .upload-inner-wrap {
        padding: 10px;
        display: block;
        text-align: center;
    }

    .upload-inner-wrap .upload-info {
        text-align: center;
        display: block;
    }

    .upload-inner-wrap .upload-info .image-holder {
        padding: 10px;
        width: fit-content;
        margin: 0 auto 20px;
    }

    .upload-inner-wrap .upload-info .info {
        padding-left: 0;
        margin: 0 0 20px;
    }

    .modal-bg .modal-wrap,
    .modal-bg .modal-wrap .modal-inner {
        padding: 10px;
    }

    .modal-bg .modal-wrap .modal-inner .modal-button-wrap {
        display: block;
    }

    .modal-bg .modal-wrap .modal-inner .modal-button-wrap .btn {
        margin: 0 auto 10px;
    }

    .change-logo-wrap .logo-input {
        display: block;
    }

    .change-logo-wrap .logo-input .image-holder {
        margin-right: 0;
    }

    .change-logo-wrap .logo-input .image-holder img {
        width: 100%;
    }

    .change-logo-wrap .logo-input a.btn {
        width: 100%;
        margin: 20px 0 0;
    }

    .inner-banner-content {
        top: 20%;
    }

    .table-patient .table tr th,
    .table-patient .table tr td {
        padding: 25px 18px;
    }

    a.btn,
    .btn {
        font-size: 16px;
        padding: 17px 14px;
    }

    .addDescription,
    .removeDescription {
        font-size: 0 !important;
        border-radius: 50%;
        padding: 10px !important;
        margin-top: -18px;
    }

    .addDescription span svg,
    .removeDescription span svg {
        font-size: 16px;
    }

    /* -- Page Responsive -- */

    .btn.reject-btn:hover {
        background: #c74040 !important;
        color: #fff !important;
    }

    .btn.reject-btn {
        background: #fff !important;
        border: 1px solid #c74040 !important;
        color: #c74040 !important;
    }

    .medicine-tab .nav-pills .nav-link.active,
    .medicine-tab .nav-pills .nav-link:hover {
        background-color: var(--primary-color);
        color: #fff;
        border: 1px solid var(--primary-color);
    }

    .medicine-tab .nav-pills .nav-item {
        margin-right: 20px;
    }

    .medicine-tab .nav-pills .nav-link {
        border: 1px solid var(--black);
        padding: 11px 31px;
        border-radius: 10px;
        color: #000;
    }

    .select2-container .select2-selection--single {
        height: auto;
    }

    .select2-container--default .select2-selection--single {
        border: 0 !important;
    }

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 34px;
    }

    .select2-container--open {
        border: 0;
    }

    .form-switch .form-check-input {
        height: 25px;
        margin-right: 14px;
        width: 3em;
    }

    .form-switch .form-check-input:checked {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

    .form-switch label {
        display: inline-block;
        vertical-align: middle;
        margin-top: 6px;
    }

    .text-editor.form-floating label:after {
        display: none;
    }

    .text-editor.form-floating label {
        margin-top: -12px;
    }

    .medicine-tab .tab-pane {
        border-radius: 8px;
        background: #fff;
        box-shadow: 0px 0px 30px 0px rgba(74, 53, 0, 0.05);
        padding: 30px 15px;
    }

    .swal2-confirm {
        background: var(--primary-color) !important;
    }

    .dashboard-card .img-card {
        margin-right: 8px;
        max-width: 50px;
        flex: 0 0 50px;
    }

    .srch-form .btn {
        width: 49%;
        margin-top: 10px;
        padding: 17px 13px;
    }

    .dashboard-left-text h4 span {
        color: var(--primary-color);
        font-weight: 600;
        display: inline-block;
        margin-top: 8px;
    }

    .dashboard-right-text ul {
        flex-wrap: wrap;
    }

    .dashboard-right-text ul li {
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }

    .search-input input {
        padding: 17px 20px 17px 44px !important;
        background-position: center left 14px;
    }

    .medicine-buttons-wrap a {
        width: 100%;
        margin-bottom: 10px;
    }

    .medicine-buttons-wrap {
        flex-wrap: wrap;
    }

    .patient-detail-wrap .patient-search {
        padding: 30px 15px;
    }

    /* -- Page Responsive -- */
    .common-padding {
        padding: 20px;
    }

    .inner-content-wrap {
        height: 75vh;
    }

    .inner-info-form .form-floating>.form-control {
        border-radius: 15px;
        border: 1px solid #d8cfb9;
        padding: 10px;
        min-height: auto;
        height: 45px;
        padding: 10px;
        font-size: 14px;
    }

    .inner-info-form .form-floating>label {
        padding: 10px;
    }

    .inner-info-form .form-floating>.inner-info-form .form-control-plaintext~label,
    .inner-info-form .form-floating>.form-control:focus~label,
    .inner-info-form .form-floating>.form-control:not(:placeholder-shown)~label,
    .inner-info-form .form-floating>.form-select~label {
        font-size: 14px;
    }

    .inner-banner-info,
    .inner-info-bottom,
    .inner-info .inner-info-head {
        text-align: center;
    }

    .inner-banner-content .inner-logo {
        margin: 0 auto 50px;
    }

    .form-bottom-wrap {
        display: block;
        margin: 0 0 30px;
    }

    .inner-info-form .form-floating {
        margin: 0 0 20px;
    }

    .form-bottom-wrap .form-check {
        display: flex;
        align-items: center;
        margin: 0 0 10px;
    }

    .form-bottom-wrap .form-check-input {
        width: 20px;
        height: 20px;
        border-radius: 5px;
    }

    .page-bottom-content {
        left: 0;
        right: 0;
        transform: translateX(0);
        text-align: center;
    }

    .varification-input ul li input {
        width: 45px;
        height: 50px;
        padding: 13px;
        border-radius: 10px;
        border: 1px solid #d8cfb9;
        font-size: 15px;
    }

    .large-popup-wrap .popup-content .icon-wrap {
        margin: 0 auto 30px;
        padding: 20px;
    }

    .large-popup-wrap .popup-content {
        position: absolute;
        top: 10px;
        left: 10px;
        right: 10px;
        transform: translate(0%, 15%);
        text-align: center;
        z-index: 2;
        max-width: 786px;
    }

    .large-popup-wrap .popup-content .icon-wrap img {
        max-width: 70px;
    }

    .inner-sec .py-5 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .form-floating>.form-select {
        min-height: auto;
        height: 50px;
    }

    .progress-bar {
        margin: 0 0 30px;
    }

    .progress-bar ul li span {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }

    .submit-btn {
        margin: 0 0 20px;
    }

    .upload-outer-wrap {
        padding: 10px;
    }

    .upload-inner-wrap {
        padding: 10px;
        display: block;
        text-align: center;
    }

    .upload-inner-wrap .upload-info {
        text-align: center;
        display: block;
    }

    .upload-inner-wrap .upload-info .image-holder {
        padding: 10px;
        width: fit-content;
        margin: 0 auto 20px;
    }

    .upload-inner-wrap .upload-info .info {
        padding-left: 0;
        margin: 0 0 20px;
    }

    .modal-bg .modal-wrap,
    .modal-bg .modal-wrap .modal-inner {
        padding: 10px;
    }

    .modal-bg .modal-wrap .modal-inner .modal-button-wrap {
        display: block;
    }

    .modal-bg .modal-wrap .modal-inner .modal-button-wrap .btn {
        margin: 0 auto 10px;
    }

    .change-logo-wrap .logo-input {
        display: block;
    }

    .change-logo-wrap .logo-input .image-holder {
        margin-right: 0;
    }

    .change-logo-wrap .logo-input .image-holder img {
        width: 100%;
    }

    .change-logo-wrap .logo-input a.btn {
        width: 100%;
        margin: 20px 0 0;
    }

    .inner-banner-content {
        top: 20%;
    }

    .table-patient .table tr th,
    .table-patient .table tr td {
        padding: 25px 7px;
        font-size: 14px;
    }

    .table-patient {
        overflow-y: inherit;
    }

    a.btn,
    .btn {
        font-size: 16px;
        padding: 17px 14px;
    }

    .dashboard-right-text ul li a {
        width: 100%;
    }

    .addDescription,
    .removeDescription {
        font-size: 0 !important;
        border-radius: 50%;
        padding: 10px !important;
        margin-top: -18px;
    }

    .addDescription span svg,
    .removeDescription span svg {
        font-size: 16px;
    }

    .doctor-info .btn {
        width: 100%;
    }

    /* -- Page Responsive -- */
}

small.help-block,
.text-red-600 {
    color: red;
    display: block;
}

.btn.reject-btn:hover {
    background: #c74040 !important;
    color: #fff !important;
}

.btn.reject-btn {
    background: #fff !important;
    border: 1px solid #c74040 !important;
    color: #c74040 !important;
}

.medicine-tab .nav-pills .nav-link.active,
.medicine-tab .nav-pills .nav-link:hover {
    background-color: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
}

.medicine-tab .nav-pills .nav-item {
    margin-right: 20px;
}

.medicine-tab .nav-pills .nav-link {
    border: 1px solid var(--black);
    padding: 11px 31px;
    border-radius: 10px;
    color: #000;
}

.select2-container .select2-selection--single {
    height: auto;
}

.select2-container--default .select2-selection--single {
    border: 0 !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 34px;
}

.select2-container {
    width: 100% !important;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    height: 38px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px !important;
}

.form-switch .form-check-input {
    height: 25px;
    margin-right: 14px;
    width: 3em;
}

.form-switch .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-switch label {
    display: inline-block;
    vertical-align: middle;
    margin-top: 6px;
}

.text-editor.form-floating label:after {
    display: none;
}

.text-editor.form-floating label {
    margin-top: -12px;
}

.medicine-tab .tab-pane {
    border-radius: 8px;
    background: #fff;
    box-shadow: 0px 0px 30px 0px rgba(74, 53, 0, 0.05);
    padding: 30px 15px;
}

.swal2-confirm {
    background: var(--primary-color) !important;
}

.datepicker {
    width: 300px;
    z-index: 999 !important;
}

.datepicker table td,
.datepicker table th {
    width: 40px;
    height: 40px;
}