/** Global Styles */
:root {
    --color-green: #0b6860;
    --color-blue-light: #0b3e8a;
    --color-blue-dark: #0d2d6c;
    --color-blue-dark2: #061d38;
    --color-light: #f5f7f7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    background-color: var(--color-light);
}

a, a:hover {
    text-decoration: none;
}

::selection {
    background: var(--color-green);
    color: var(--bs-white);
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background-color: var(--color-light);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--color-green);
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-light);
}

.loader img {
    height: 50px;
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

.totop__btn {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 999999;
    display: none;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    background-color: var(--color-blue-light);
    color: var(--bs-white);
    font-size: 1.3rem;
    border-radius: 3px;
    opacity: 0.7;
    transition: all 0.5s ease-in-out 0s;
}

.totop__btn:hover {
    color: var(--bs-white);
    opacity: 1;
}

.whatsapp__btn {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    bottom: 1.3rem;
    left: 1.5rem;
    background-color: #00e676;
    color: var(--bs-white);
    font-size: 1.7rem;
    width: 60px;
    height: 60px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 0.125rem 0.125rem -0.125rem rgba(31, 27, 45, .08), 0 0.25rem 0.75rem rgba(31, 27, 45, .08);
    transition: all 0.5s ease-in-out 0s;
}

.whatsapp__btn:hover {
    color: var(--bs-white);
    opacity: 0.7;
}

.whatsapp__btn span {
    top: 10px;
    right: 0px;
    width: 10px;
    height: 10px;
}

/** Header Styles */
.header {
    height: 4.5rem;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
    background-color: var(--color-light);
    box-shadow: 0 0.125rem 0.125rem -0.125rem rgba(31, 27, 45, .08), 0 0.25rem 0.75rem rgba(31, 27, 45, .08);
    transition: all 0.5s ease-in-out 0s;
}

.scroll__header::after {
    content: "";
    position: absolute;
    height: 2px;
    bottom: 0px;
    right: 0;
    background-color: var(--color-blue-light);
    width: 100%;
    animation-name: scroll-header-border;
    animation-duration: 600ms;
}

@keyframes scroll-header-border {
    0% {
        width: 0%;
    }

    25% {
        width: 25%;
    }

    50% {
        width: 50%;
    }

    75% {
        width: 75%;
    }

    100% {
        width: 100%;
    }
}

.logo {
    height: 2.5rem;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
    height: 100%;
    width: 100%;
}

.navbar .menu {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar .menu li {
    padding: 0 1.3rem;
}

.link__nav {
    color: var(--bs-dark);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease-in-out 0s;
}

.link__nav:hover, .navbar .menu li .active {
    color: var(--color-green);
    padding-bottom: 0.3rem;
    border-bottom: 1px solid var(--color-green);
    opacity: 0.8;
}

.open_nav__btn {
    font-size: 1.4rem;
    line-height: 40px;
    color: var(--bs-white);
    display: none;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: var(--color-green);
    transition: all 0.2s ease-in-out 0s;
}

.open_nav__btn:hover, .open_nav__btn:focus {
    color: var(--color-green);
    opacity: 0.8;
}

.close_nav__btn {
    font-size: 1.8rem;
    color: var(--color-green);
    display: none;
    transition: all 0.2s ease-in-out 0s;
}

.close_nav__btn:hover, .close_nav__btn:focus {
    color: var(--color-green);
    opacity: 0.8;
}

.lang__btn {
    color: var(--color-blue-light);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease-in-out 0s;
}

.lang__btn:hover {
    color: var(--color-blue-dark2);
}

.login__btn {
    background-color: var(--color-blue-dark);
    color: var(--bs-white);
    font-size: 1rem;
    border-radius: 5px;
    padding: 0.3rem 1rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--color-blue-dark);
    transition: all 0.2s ease-in-out 0s;
}

.login__btn:hover {
    background-color: transparent;
    color: var(--color-blue-dark);
}

@media (max-width: 991px) {
    .open_nav__btn {
        display: flex;
    }

    .navbar {
        position: fixed;
        z-index: 10000;
        width: 0;
        top: 0;
        bottom: 0;
        left: -100px;
        background-color: var(--color-light);
        display: none;
        text-align: center;
        padding: 1rem 1rem;
        box-shadow: 0 0.125rem 0.125rem -0.125rem rgba(31, 27, 45, .08), 0 0.25rem 0.75rem rgba(31, 27, 45, .08);
        transition: all 8s ease-in-out 5s;
    }

    .nav-active {
        position: relative;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        background-color: #0e0d0d7c;
    }

    .nav-active .navbar {
        display: block;
        left: 0;
        width: 50%;
    }

    .nav-active .close_nav__btn {
        display: flex;
    }

    .navbar .menu {
        display: block;
        margin-bottom: 2rem;
    }

    .navbar .menu li {
        padding-block: 0.7rem;
    }
}

@media (max-width: 509px) {
    .nav-active .navbar {
        width: 80%;
    }
}

/** Hero Styles*/
#hero {
    padding-block: 10.5rem 6rem;
    background-image: url(../assets/images/hero-bg.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: cover;
}

#hero h1 {
    font-size: 2.8rem;
    color: var(--color-green);
    text-decoration: underline;
    margin-bottom: 0.6rem;
}

#hero h2 {
    font-size: 2.8rem;
    color: var(--color-blue-light);
    margin-bottom: 0.6rem;
}

#hero p {
    font-size: 1.3rem;
    color: var(--bs-dark);
    margin-bottom: 0.6rem;
}

.search__hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-block: 2rem;
}

.search__hero .input__box {
    background: var(--bs-white);
    border: 1px solid #d2deec;
    border-radius: 50px;
    padding: 0.4rem 1rem;
    display: flex;
    align-items: center;
}

.search__hero .input__box input, .search__hero .input__box input::placeholder {
    border: none;
    outline: none;
    background: transparent;
    color: #8598ac;
    font-size: 1rem;
    width: 100%;
}

.search__hero .input__box i {
    color: #8598ac;
    font-size: 1rem;
}

.search__hero button {
    background-color: var(--color-green);
    color: var(--bs-white);
    font-size: 1rem;
    border-radius: 5px;
    padding: 0.3rem 1rem;
    font-weight: 500;
    margin-right: 1rem;
    border: 1px solid var(--color-green);
    transition: all 0.2s ease-in-out 0s;
}

.search__hero button:hover {
    background-color: var(--color-light);
    color: var(--color-green);
    border: 1px solid var(--color-green);
}

@media (max-width: 767px) {

    #hero {
        padding-block: 6.5rem 2rem;
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    #hero h2 {
        font-size: 2.3rem;
    }

    #hero p {
        font-size: 1.2rem;
    }

    .search__hero {
        display: block;
    }

    .search__hero button {
        margin-top: 1rem;
    }
}

/**Serves styles*/
#serv {
    background-color: var(--color-green);
    background-image: url(../assets/images/bg-serv.png);
    padding-block: 5rem;
}

.serv__title {
    font-size: 2.8rem;
    color: var(--bs-white);
    text-align: center;
    margin-bottom: 1.5rem;
}

.serv__title span {
    position: relative;
    z-index: 100;
}

.serv__title h1 span::after {
    content: "";
    position: absolute;
    bottom: 20px;
    right: 0;
    left: -10px;
    height: 1rem;
    z-index: -1;
    width: 115%;
    background-color: var(--color-blue-dark);
}

#serv .card {
    border-radius: 3px;
    position: relative;
    background-image: url(../assets/images/bg-card.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 2rem;
    border: none;
}

#serv .card::after {
    content: "";
    position: absolute;
    border-radius: 2px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    height: 0.6rem;
    width: 80%;
    background-color: var(--color-blue-dark);
}

.type__serv {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-blue-light);
    margin-bottom: 0.8rem;
}

#serv .card-text {
    color: #757575;
    font-size: 0.9rem;
}

.time__serv {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--bs-dark);
    margin-bottom: 0.8rem;
}

.btn__serv {
    background-color: var(--color-blue-light);
    color: var(--bs-white);
    font-size: 0.8rem;
    border-radius: 5px;
    padding: 0.3rem 1rem;
    font-weight: 500;
    border: 1px solid var(--color-blue-light);
    transition: all 0.2s ease-in-out 0s;
}

.btn__serv:hover {
    background-color: var(--color-light);
    color: var(--color-blue-light);
    border: 1px solid var(--color-blue-light);
}

/**about Styles*/
#about {
    padding-block: 4rem;
}

.about__title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.about__title h1 {
    font-size: 2.5rem;
    color: var(--bs-dark);
    text-align: center;
    font-weight: 500;
}

.about__title>h1>span {
    color: var(--color-blue-light);
    text-decoration: underline;
}

.about__title>span {
    display: inline-block;
    margin-top: 0.7rem;
    border-radius: 5px;
    height: 0.5rem;
    width: 8rem;
    background-color: var(--color-blue-dark);
}

.about__text {
    text-align: center;
    color: #6b6b6b;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

#about .card {
    background: transparent;
    border: none;
    border-radius: 0;
    text-align: center;
}

.about__items {
    position: relative;
}

.about__items::after {
    content: "";
    position: absolute;
    top: 93px;
    right: 0px;
    left: 0px;
    width: 100%;
    z-index: -1;
    border-bottom: 0.4rem dashed #d1ddec;
}

.about__num {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    background-color: var(--color-blue-light);
    color: var(--bs-white);
    font-size: 4rem;
    font-weight: 600;
    outline: 20px solid var(--color-light);
    margin: 28px;
}

#about .card-title {
    font-size: 1.5rem;
    color: var(--bs-dark);
}

#about .card-text {
    font-size: 1rem;
    color: #6b6b6b;
}

@media (max-width: 767px) {
    .about__title h1 {
        font-size: 2rem;
    }

    .about__text {
        font-size: 1rem;
    }

    #about .card-title, #about .card-text {
        background: var(--color-light);
    }

    .about__items::after {
        top: 0;
        right: 50%;
        left: 0px;
        height: 100%;
        width: auto;
        z-index: -1;
        border-right: 0.4rem dashed #d1ddec;
        border-bottom: none;
    }
}

/**About2 Styles*/
#about2 {
    background-color: var(--color-green);
    background-image: url(../assets/images/hero-bg.png);
    background-position: center left;
    padding-top: 3rem;
}

.about2__title {
    font-size: 2.8rem;
    color: var(--bs-white);
    text-align: center;
    margin-bottom: 1.5rem;
}

.about2__title span {
    position: relative;
    z-index: 100;
}

.about2__title h1 span::after {
    content: "";
    position: absolute;
    bottom: 20px;
    right: 0;
    left: -10px;
    height: 1rem;
    z-index: -1;
    width: 100%;
    background-color: var(--color-blue-dark);
}

#about2 .card-text {
    font-size: 1rem;
    color: var(--bs-white);
    text-align: justify;
}

.about2__btns {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    margin-block: 2rem;
}

.more__btn {
    background-color: var(--color-blue-light);
    color: var(--bs-white);
    font-size: 1.1rem;
    border-radius: 5px;
    padding: 0.3rem 1rem;
    font-weight: 500;
    margin-left: 1rem;
    border: 1px solid var(--color-blue-light);
    transition: all 0.2s ease-in-out 0s;
}

.more__btn:hover {
    background-color: var(--color-light);
    color: var(--color-blue-light);
}

.contact__btn {
    background-color: var(--color-blue-dark);
    color: var(--bs-white);
    font-size: 1.1rem;
    border-radius: 5px;
    padding: 0.3rem 1rem;
    font-weight: 500;
    border: 1px solid var(--color-blue-dark);
    transition: all 0.2s ease-in-out 0s;
}

.contact__btn:hover {
    background-color: var(--color-light);
    color: var(--color-blue-dark);
}

/**Styles Reviews*/
#reviews {
    padding-top: 4rem;
}

.reviews__title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.reviews__title h1 {
    font-size: 2.5rem;
    color: var(--bs-dark);
    text-align: center;
    font-weight: 500;
}

.reviews__title>h1>span {
    color: var(--color-blue-light);
    text-decoration: underline;
}

.reviews__title>span {
    display: inline-block;
    margin-top: 0.7rem;
    border-radius: 5px;
    height: 0.5rem;
    width: 8rem;
    background-color: var(--color-blue-dark);
}

.reviews__items {
    margin-top: 7.5rem;
}

#reviews .card {
    border-radius: 3px;
    box-shadow: 0 0.200rem 0.200rem -0.200rem rgba(31, 27, 45, .08), 0 0.25rem 0.75rem rgba(31, 27, 45, .08);
    border: none;
    position: relative;
    margin-bottom: 7.5rem;
}

#reviews .card::after {
    content: "";
    position: absolute;
    border-radius: 10px;
    bottom: 0px;
    top: 0;
    right: 0px;
    height: 100%;
    width: 0.4rem;
    background-color: var(--color-blue-dark);
}

#reviews .img-thumbnail {
    border-radius: 50%;
    margin-top: -90px;
    margin-bottom: 1rem;
}


.reviews__stars {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.reviews__stars i {
    color: var(--color-blue-dark);
    font-size: 1rem;
    margin-inline: 0.1rem;
}

#reviews .card-text {
    font-size: 0.9rem;
    color: #757575;
}

#reviews .bi-chat-square-quote {
    color: var(--color-blue-dark);
    font-size: 4rem;
    margin-bottom: 1rem;
}

/**Footer Styles*/
.footer {
    background-color: var(--color-blue-dark2);
    background-image: url(../assets/images/hero-bg.png);
    background-position: center left;
    padding-block: 3rem 1rem;
}

.footer h4 {
    color: var(--bs-white);
    margin-bottom: 1rem;
    margin-right: 0.5rem;
    position: relative;
    z-index: 20;
}

.footer h4::after {
    content: "";
    position: absolute;
    bottom: 10px;
    right: 0;
    left: -10px;
    height: 1rem;
    z-index: -1;
    width: 50%;
    background-color: var(--color-green);
}

.footer .footer-contact {
    margin-bottom: 30px;
}

.footer .footer-contact p {
    line-height: 26px;
}

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

.footer .footer-contact ul li {
    padding: 8px 0;
}

.footer .footer-contact ul li:first-child {
    padding-top: 0;
}

.footer .footer-contact ul a {
    color: var(--bs-white);
    transition: 0.5s;
    padding-right: 0px;
}

.footer .footer-contact ul a:hover {
    color: var(--color-light);
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-right: 9px;

}

.footer .footer-links ul li {
    padding: 8px 0;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: var(--bs-white);
    transition: 0.5s;
    padding-right: 0px;
}

.footer .footer-links ul a:hover {
    color: var(--color-light);
    padding-right: 8px;
}

.footer .social-links a {
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--bs-white);
    color: var(--bs-white);
    margin-top: 10px;
    margin-right: 10px;
    border-radius: 50%;
    text-align: center;
    width: 30px;
    height: 30px;
    transition: 0.5s;
}

.footer .social-links a i {
    line-height: 0;
}

.footer .social-links a:hover {
    background: var(--color-green);
}

/**Login Page Styles*/

.login__page {
    background-color: #223976;
    background-image: url(../assets/images/hero-bg.png);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: cover;
    padding-block: 3rem;
}

.login__page .card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 0.200rem 0.200rem -0.200rem rgba(31, 27, 45, .08), 0 0.25rem 0.75rem rgba(31, 27, 45, .08);
}

.right__login {
    background-color: #0d2639;
    border-radius: 0px 8px 8px 0px;
    text-align: left;
    padding: 0.5rem 0.5rem 0.5rem 0rem;
}

.logo__login {
    height: 2.2rem;
    filter: brightness(0) invert(1);
}

.login__page .btn__signup {
    background-color: var(--color-light);
    color: var(--color-blue-dark);
    font-size: 0.9rem;
    border-radius: 5px;
    padding: 0.3rem 1rem;
    font-weight: 500;
    border: 1px solid var(--color-blue-dark);
    transition: all 0.2s ease-in-out 0s;
}

.login__page .btn__signup:hover {
    background-color: var(--color-blue-dark);
    color: var(--bs-white);
}

.form__login {
    padding-top: 3rem;
}

.form__login h1 {
    font-size: 1.6rem;
    color: var(--bs-dark);
    margin-bottom: 1rem;
}

.form__login h1 span {
    color: var(--color-green);
    text-decoration: underline;
}

.form__login p {
    color: #737373;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.form__login .form-control {
    border-radius: 5px;
    border: 1px solid #dedede;
    height: 2.7rem;
    direction: rtl;
}

.form__login .form-control:focus {
    box-shadow: none;
    border-color: #00756c;
    background-color: #f9fcfd;
}

.password__hide i {
    font-size: 1.1rem;
    margin-right: 0.3rem;
    color: var(--color-green);
    transition: all 0.2s ease-in-out 0s;

}

.password__hide i:hover {
    opacity: 0.8;
}

.login__page button {
    background-color: var(--color-blue-dark);
    color: var(--bs-white);
    font-size: 1rem;
    border-radius: 5px;
    padding: 0.4rem 1.8rem;
    font-weight: 500;
    margin-left: 1.3rem;
    border: 1px solid var(--color-blue-dark);
    transition: all 0.2s ease-in-out 0s;
}

.login__page button:hover {
    background-color: var(--color-light);
    color: var(--color-blue-dark);
}

/***********************************************/
/**Dashboard Styles*/

.db__header {
    padding-inline: 17.813rem 1.5rem;
    height: 4.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2;
    background-color: var(--bs-white);
    box-shadow: 0 0.125rem 0.125rem -0.125rem rgba(31, 27, 45, .08), 0 0.25rem 0.75rem rgba(31, 27, 45, .08);
    transition: all 0.5s ease-in-out 0s;
}

.db__search {
    display: flex;
}

.db__search .form-control {
    border-radius: 5px;
    border: 1px solid transparent;
    background-color: #f2f7f9;
    border-radius: 0px 6px 6px 0;
    height: 2.6rem;
    direction: rtl;
}

.db__search .form-control:focus {
    box-shadow: none;
    border-color: var(--color-blue-dark);
    border-left: none;
}

.db__search .btn {
    height: 2.6rem;
    background-color: var(--color-blue-dark);
    color: var(--bs-white);
    border-radius: 6px 0px 0px 6px;
    margin-right: -1px;
    padding-inline: 1.1rem;
    transition: all 0.5s ease-in-out 0s;
}

.db__search .btn:hover {
    background-color: var(--color-blue-dark2);
}

.db__navbar {
    display: flex;
}

/**Notifications*/
.db__navbar .notifications {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 0.7rem;
}

.db__navbar .notifications .btn {
    outline: none;
    border: none;
    color: var(--color-green);
    font-size: 1.5rem;
}

.db__navbar .notifications .dropdown-menu {
    border-color: #e9edf4;
    border-bottom: 10px solid var(--color-green);
    background: var(--bs-white);
    border-radius: 6px;
    transform: translate3d(40%, 50px, 0px) !important;
    /* top: 5px !important;
    right: -16.8rem !important;
    767
     */
    width: 18rem;
    padding-top: 0;
    box-shadow: 0 0.125rem 0.125rem -0.125rem rgba(31, 27, 45, .08), 0 0.25rem 0.75rem rgba(31, 27, 45, .08);
}

.db__navbar .notifications .dropdown-menu:before {
    content: "";
    width: 13px;
    height: 13px;
    background: var(--color-green);
    position: absolute;
    top: -7px;
    right: 50%;
    transform: rotate(45deg);
    border-top: 1px solid var(--color-green);
    border-left: 1px solid var(--color-green);
}

@media (max-width: 767px) {
    .db__navbar .notifications .dropdown-menu {
        transform: translate3d(-36%, 50px, 0px) !important
    }
}

@media (max-width: 436px) {
    .db__navbar .notifications .dropdown-menu {
        transform: translate3d(50%, 50px, 0px) !important;
    }

    .db__navbar .notifications .dropdown-menu:before {
        right: 56%;
    }
}



.db__navbar .notifications .dropdown-menu .drop-heading {
    text-align: center;
    background-color: var(--color-green);
    color: var(--bs-white);
    border-radius: 6px 6px 0 0;
    padding-block: 0.6rem;
    display: flex;
    justify-content: center;
}

.db__navbar .notifications .dropdown-menu .drop-body {
    overflow: scroll;
    height: 15rem;
}

.db__navbar .notifications .dropdown-menu .drop-body::-webkit-scrollbar {
    display: none;
}

.db__navbar .notifications .dropdown-menu .drop-body .dropdown-item {
    white-space: normal;
    border-bottom: 1px solid #f2f7f9
}

.db__navbar .notifications .dropdown-menu .drop-body .dropdown-item:hover {
    background-color: #f2f7f9;
}

.db__navbar .notifications .dropdown-menu .drop-body .dropdown-item i {
    color: var(--color-blue-dark);
}

.db__navbar .notifications .drop-body .notification-label {
    color: var(--color-blue-dark2);
    width: 5rem;
    font-size: 1rem;
    text-align: right;
    width: 100%;
}

/**User Avatar*/
.db__navbar .user__avatar .btn, .db__navbar .user__avatar .btn:focus {
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
    border: none;
    background-color: #f2f7f9;
    border-radius: 6px;
}

.db__navbar .user__avatar .btn h6 {
    margin-bottom: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-blue-light);
}

.db__navbar .user__avatar .btn i {
    color: var(--color-blue-dark);
    margin-left: 0.5rem;
}

.db__navbar .user__avatar .dropdown-menu {
    border-color: #e9edf4;
    background: var(--bs-white);
    border-radius: 6px;
    top: 5px !important;
    left: 10px !important;
    box-shadow: 0 0.125rem 0.125rem -0.125rem rgba(31, 27, 45, .08), 0 0.25rem 0.75rem rgba(31, 27, 45, .08);
}

.db__navbar .user__avatar .dropdown-menu:before {
    content: "";
    width: 13px;
    height: 13px;
    background: var(--bs-white);
    position: absolute;
    top: -7px;
    left: 20px;
    transform: rotate(45deg);
    border-top: 1px solid #e9edf4;
    border-left: 1px solid #e9edf4;
}

.db__navbar .user__avatar .dropdown-item {
    text-align: right;
    color: var(--color-blue-dark);
}

.db__navbar .user__avatar .dropdown-item:hover, .db__navbar .user__avatar .dropdown-item:focus {
    color: var(--bs-white);
    background-color: var(--color-blue-dark);
}

/**Sidebar Styles*/
.db__sidebar {
    width: 270px;
    background-color: var(--bs-white);
    background-image: url(../assets/images/hero-bg.png);
    background-position: left center;
    background-size: cover;
    box-shadow: 0 0.125rem 0.125rem -0.125rem rgba(31, 27, 45, .08), 0 0.25rem 0.75rem rgba(31, 27, 45, .08);
    transition: all 0.5s ease-in-out 0s;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 3;
}

.sidebar__header {
    text-align: center;
    padding: 1.2rem;
}

.sidebar__content {
    height: 75vh;
    overflow: scroll;
    padding: 1rem;
    margin-block: 2rem;
}

.sidebar__content::-webkit-scrollbar {
    width: 3px;
}

.sidebar__content::-webkit-scrollbar-track {
    background-color: var(--color-light);
}

.sidebar__content::-webkit-scrollbar-thumb {
    background-color: var(--color-blue-light);
}


.sidebar__content .nav-item {
    margin-block: 0.4rem;
}


.sidebar__content .nav-link {
    padding-inline: 0.5rem;
    border-bottom: 1px solid #e9edf4;
    transition: all 0.5s ease-in-out 0s;
    color: var(--color-blue-light);
    font-size: 1.1rem;
    text-align: right;
    border-radius: 6px;
}

.sidebar__content .nav-item .active, .sidebar__content .nav-link:hover {
    background-color: #e9edf4;
    border-right: 8px solid var(--color-blue-dark);
    color: var(--color-blue-dark2);
}

.sidebar__content .nav-link i {
    color: var(--color-green);
    margin-left: 2rem;
    font-size: 1.3rem;
}

.sub__items ul {
    text-align: right;
    list-style: disc;
    margin-top: 1rem;
    padding-inline: 0.9rem 0.5rem;
    margin-right: 2.1rem;
    border-right: 1px solid #eee;
    display: none;
}

.sub__items ul li {
    padding-block: 0.4rem;
}

.sub__items ul li::marker {
    color: var(--color-blue-dark);
}

.sub__items ul li a {
    color: var(--color-green);
}

.sub__items ul li a:hover, .sub__items ul li .active__sub {
    color: var(--color-blue-light);
}

.show__sub ul {
    display: block;
}

.last__update {
    color: var(--color-blue-dark2);
    position: relative;
}

.last__update::after {
    content: "";
    width: 1px;
    height: 100%;
    background-color: var(--color-blue-dark);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1.5rem;
    z-index: 0;
}

.last__update li {
    background-color: transparent;
    position: relative;
    /* z-index: 4; */
}

.last__update li i {
    position: relative;
    color: var(--color-blue-dark);
    background-color: #fff;
    z-index: 1;
}

/****footer******/
.db__client .footer {
    position: relative;
    z-index: 5;
    margin-top: 1rem;
}


@media (max-width: 991px) {
    .db__header {
        padding-inline: 0.5rem;
    }

    .db__navbar .notifications .dropdown-menu {
        /* top: 5px !important;
        right: -50% !important;
        width: 20rem; */
    }

    .db__navbar .notifications .dropdown-menu:before {
        left: 8rem
    }

    .db__search {
        display: none;
    }

    .db__sidebar {
        position: fixed;
        z-index: 10000;
        width: 0;
        top: 0;
        bottom: 0;
        left: -100px;
        right: 0;
        background-color: var(--color-light);
        display: none;
        text-align: center;
        padding: 1rem 1rem;
        box-shadow: 0 0.125rem 0.125rem -0.125rem rgba(31, 27, 45, .08), 0 0.25rem 0.75rem rgba(31, 27, 45, .08);
        transition: all 8s ease-in-out 5s;
    }

    .nav-active .db__sidebar {
        display: block;
        left: 0;
        width: 100%;
    }

    .nav-active .close_nav__btn {
        display: flex;
    }
}



/**db-content*/
.db-content {
    padding-inline: 17.813rem 1.5rem;
}

.content__header {
    padding-block: 1rem 0rem;
    color: var(--color-blue-dark);
    border-bottom: 1px solid #e9edf4;
}

.breadcrumb-item+.breadcrumb-item::before {
    float: right;
    margin-left: 0.7rem;
    content: "\F22D";
    font-family: bootstrap-icons !important;
}

.breadcrumb-item a, .breadcrumb-item a:hover {
    color: var(--color-green) !important;
}

.content__header .page-title {
    font-size: 1.3rem;
}

@media (max-width: 991px) {
    .db-content {
        padding-inline: 0.5rem;
    }
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-accent-bg: var(--bs-white);
    color: #93a5b8;
}

.table>:not(caption)>*>* {
    background-color: #f9fbfc;
    border-bottom-width: 0;
    color: #93a5b8;
}

.page-link, .page-link:focus {
    background: transparent;
    border: 0;
    color: #93a5b8;
    box-shadow: none !important;
    font-weight: 600;
    border-radius: 0 !important;
}

.active>.page-link, .page-link.active, .page-link:hover {
    background: transparent;
    color: #5c6f7a;
}

.previous, .next {
    color: #5c6f7a;
}

/*add order**/
.sw-main {
    display: flex;
    justify-content: center;
}

.step-anchor {
    width: 95%;
    justify-content: center;
}

.step-anchor .nav-item {
    position: relative;
    list-style: none;
    width: 20%;
}

.step-anchor .nav-item::before {
    position: absolute;
    content: '';
    background-color: #e5e9eb;
    right: 0;
    height: 0.3rem;
    width: 100%;
}

.step-anchor .nav-item::after {
    position: absolute;
    top: -0.5rem;
    right: 0;
    content: "\f287";
    color: #a7b1bb;
    /* content: "\f26a"; */
    font-size: 1.2rem;
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.step-anchor .active::before {
    background-color: var(--color-green);
}

.step-anchor .active::after {
    color: var(--color-green);
    right: -1px;
}

.step-anchor .done::after {
    content: "\f26a";
    background-color: white;
    border-radius: 50%;
}

.step-anchor .nav-link {
    color: var(--bs-dark);
    font-weight: bold;
    border: none !important;
    outline: none !important;
}

.step-anchor .nav-link:hover, .step-anchor .active .nav-link {
    color: var(--color-green);
}

@media (max-width: 991px) {
    .step-anchor {
        width: 95%;
        display: block;
    }

    .step-anchor .nav-item {
        width: 100%;
    }

    .step-anchor .nav-link {
        padding-top: 1rem;
        padding-right: 1rem;
    }
}

.panel-tabs li a {
    background-color: var(--color-light);
    color: var(--color-blue-light);
    border: 1px solid var(--color-blue-light);
    font-size: 0.8rem;
    border-radius: 5px;
    padding: 0.3rem 1rem;
    font-weight: 500;
    margin: 0.5rem;
    transition: all 0.2s ease-in-out 0s;
}

.panel-tabs li a:hover, .panel-tabs li .active {
    border: 1px solid var(--color-blue-light);
    background-color: var(--color-blue-light);
    color: var(--bs-white);
}

.table .active td {
    --bs-table-accent-bg: var(--bs-table-hover-bg);
    color: var(--bs-table-hover-color);
}

.in__message {
    background-color: #f4f5f6;
    color: #90aab7;
    position: relative;
}

.in__message:before {
    content: "";
    width: 13px;
    height: 13px;
    background: #f4f5f6;
    position: absolute;
    top: 12px;
    right: -5px;
    transform: rotate(45deg);
}

.out__message {
    background-color: #fbfcfd;
    color: #90aab7;
    position: relative;
}

.out__message:before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fbfcfd;
    position: absolute;
    bottom: 12px;
    left: -5px;
    transform: rotate(45deg);
}

.send textarea, .send textarea:focus {
    background-color: #f4f5f6;
    border-radius: 10px;
    color: var(--color-blue-dark);
    font-size: 1rem;
    border: none;
}

.send .btn {
    outline: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-blue-light);
}

.send .btn:hover{
    color: var(--color-blue-dark);
}