@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body,
input,
textarea,
button {
    font-family: "Tajawal", sans-serif;
    direction: rtl;
}

.container {
    padding: 0 15px;
    position: relative;
}

.items-list-parent {
    margin-bottom: 40px;
    padding: 0 30px;
}

.items-list-parent h2 {
    font-size: 27px;
    font-weight: 700;
    color: #444;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.items-list-parent h2::before {
    content: "";
    display: block;
    width: 5px;
    height: 25px;
    background: #4bae4f;
    border-radius: 5px;
}

.items-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
}

@media (max-width: 575.98px) {
    .items-list {
        padding: 0 15px;
    }
}

.items-list > div {
    width: calc(25% - 23px);
}

@media (max-width: 1199.98px) {
    .items-list > div {
        width: calc(33.3333333333% - 23px);
    }
}

@media (max-width: 767.98px) {
    .items-list > div {
        width: calc(50% - 23px);
    }
}

@media (max-width: 575.98px) {
    .items-list > div {
        width: 100%;
    }
}

.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    margin-top: 0 !important;
    transition: all 0.3s ease-in-out;
}

.loading-screen {
    position: absolute;
    top: 0;
    left: 0;
    backdrop-filter: blur(10px);
    width: 100% !important;
    height: 100%;
    display: flex;
    justify-content: center;
    padding-top: 100px;
    z-index: 3;
}

.loading-screen-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.loading-screen-inner img {
    height: 150px;
}

.loading-text {
    text-align: center;
    font-size: 25px;
    font-weight: 600;
}

.header {
    padding-top: 50px;
    margin-bottom: 30px;
}

.header .header-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header .header-top .logo {
    margin-bottom: 20px;
}

.header .header-top .logo img {
    height: 50px;
}

.header .header-top h1 {
    font-size: 26px;
    color: #000;
    margin-bottom: 5px;
}

.header .header-top p {
    color: #7c818a;
    font-size: 16px;
}

.header .navbar-2 {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    background: #fafafc;
    box-shadow: 0px 4px 14px 0px rgba(148, 148, 148, 0.12);
    align-items: center;
    margin-top: 30px;
}

.header .navbar-2 .menu {
    max-width: calc(100% - 230px);
}

.header .navbar-2 .menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    width: 100%;
    padding-bottom: 20px;
}

.header .navbar-2 .menu ul li a {
    color: #666;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

.header .navbar-2 .search {
    position: relative;
    height: 42px;
}

.header .navbar-2 .search button {
    background: none;
    border: none;
    opacity: 0.4;
    position: absolute;
    right: 5px;
    top: 14px;
}

.header .navbar-2 .search button img {
    height: 17px;
}

.header .navbar-2 .search input {
    height: 100%;
    width: 100%;
    border-radius: 4px;
    background: #ececec;
    border: none;
    padding: 10px 30px;
    font-family: "Tajawal";
}

@media (max-width: 575.98px) {
    .header .navbar-2 .search {
        display: none;
    }
}

.navbar-1 {
    padding: 0 15px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.navbar-1-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.navbar-1-inner .date span {
    color: #7c818a;
    font-size: 16px;
}

.navbar-1-inner .menu {
    padding-bottom: 10px;
}

.navbar-1-inner .menu ul {
    list-style: none;
    display: flex;
    gap: 15px;
    max-width: 500px;
}

.navbar-1-inner .menu ul a {
    text-decoration: none;
    font-size: 16px;
    color: #7c818a;
    padding: 20px 15px;
    display: block;
    white-space: nowrap;
}

.navbar-1-inner .actions {
    display: flex;
    gap: 20px;
}

.navbar-1-inner .actions button {
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.navbar-1-inner .actions button img {
    width: 25px;
    height: 25px;
}

.navbar-1-inner .actions button span {
    color: #7c818a;
    font-size: 16px;
}

.navbar-1-inner .actions a {
    text-decoration: none;
    font-size: 16px;
    margin-left: 15px;
    background: #2980b9;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-1-inner .actions a img {
    width: 20px;
    height: 20px;
}

.navbar-1-inner .actions a:hover {
    background: #3498db;
    transform: translateY(-10px);
}

@media (max-width: 767.98px) {
    .navbar-1-inner {
        padding-top: 15px;
    }

    .navbar-1-inner .date {
        order: 1;
    }

    .navbar-1-inner .actions {
        order: 2;
    }

    .navbar-1-inner .menu {
        order: 3;
        width: 100%;
    }

    .navbar-1-inner .menu ul a {
        padding: 10px 5px;
        font-size: 13px;
    }
}

.scroll-bar {
    overflow-x: auto;
    /* Style for the scrollbar thumb */
}

.scroll-bar::-webkit-scrollbar {
    height: 7px;
}

.scroll-bar::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

.scroll-bar::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 6px;
}

.scroll-bar::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

.order-card {
    background: #f7f7f7;
    box-shadow: 0px 3.4427156448px 3.4427156448px 0px rgba(0, 0, 0, 0.05);
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.order-card .top {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #dadada;
}

.order-card .top .item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.order-card .top .item span {
    color: #000;
    font-size: 13.771px;
    font-weight: 500;
}

.order-card .top .item-2 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.order-card .top .item-2 span {
    color: #666;
    font-size: 14px;
}

.order-card .top .item-2 strong {
    background: #4bae4f;
    border-radius: 2px;
    color: #fff;
    font-weight: normal;
    font-size: 12px;
    line-height: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 5px;
}

.order-card .top ul.items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-card .top ul.items li {
    display: flex;
    gap: 10px;
}

.order-card .top ul.items li img {
    width: 20px;
}

.order-card .top ul.items li span {
    color: #666;
    font-size: 15px;
}

.order-card .middle {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.order-card .middle .product {
    display: flex;
    gap: 10px;
}

.order-card .middle .product img {
    width: 32px;
    height: 30.608px;
    object-fit: cover;
    border-radius: 5px;
}

.order-card .middle .product .product-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.order-card .middle .product .product-info strong {
    color: #242d3c;
    font-weight: 500;
    font-size: 15px;
}

.order-card .middle .product .product-info span {
    color: #666;
    font-size: 15px;
}

.order-card .bottom {
    margin-top: auto;
}

.order-card .bottom button {
    border: none;
    background: #27ae60;
    cursor: pointer;
    outline: none;
    padding: 10px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 5px;
}

.order-card .bottom button img {
    width: 30px;
    height: 30px;
}

.order-card .bottom button span {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.order-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.order-item .image {
    padding: 3px;
    border: 1px solid #eee;
    border-radius: 5px;
    width: 70px;
    height: 70px;
}

.order-item .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.order-item .text h3 {
    margin-bottom: 5px;
    font-size: 16px;
}

.total-orders {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 20px;
    margin-bottom: 30px;
    background: #fafafa;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.total-orders > div {
    width: calc(25% - 19px);
}

.empty-orders {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
    margin-bottom: 30px;
    /*background: #fafafa;*/
    /*box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;*/
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.empty-orders img {
    height: 150px;
    width: auto;
    margin-bottom: 15px;
}

.empty-orders h3 {
    font-size: 25px;
    font-weight: bold;
}

.product-card {
    border-radius: 8px;
    background: #EEE;
    overflow: hidden;
    flex-direction: column;
    display: flex;
}

.product-card .image {
    height: 200px;
}

.product-card .image img {
    height: 100%;
    width: 100%;
}

.product-card .text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 6px;
    padding: 15px;
}

.product-card .text h3 {
    color: #666;
    font-size: 20px;
    font-weight: 500;
}

.product-card .text span {
    color: #4BAE4F;
    font-size: 16px;
    font-weight: 500;
}

.pagination-parent {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

.pagination {
    display: inline-block;
}

.page-item {
    display: inline;
}

.page-link {
    color: black;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.page-item.active .page-link {
    background-color: #4CAF50;
    color: white;
}

.page-link:hover:not(.active) {
    background-color: #ddd;
}

.footer {
    background: #ebebeb;
    margin-top: 60px;
    padding: 20px 30px;
}

.footer .footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer .footer-inner .email {
    color: #7C818A;
    font-size: 20px;
}

.footer .footer-inner a {
    color: #666;
    font-size: 20px;
    text-decoration: none;
}

/*# sourceMappingURL=style.css.map */
