
/*** Spinner Start ***/
body{
    font-family: "Cairo", serif !important;

}
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

 .back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}
/*** Spinner End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.border-secondary {
    transition: 0.5s;
}



/*** Topbar Start ***/
.fixed-top {
    transition: 0.5s;
    background: var(--bs-white);
    border: 0;
}

.topbar {
    padding: 20px;
    /* border-radius: 230px 100px; */
    border-radius: 100px;
}

.topbar .top-info {
    font-size: 15px;
    line-height: 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.topbar .top-link {
    font-size: 15px;
    line-height: 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.topbar .top-link a {
    letter-spacing: 1px;
}

.topbar .top-link a small:hover {
    color: var(--bs-secondary) !important;
    transition: 0.5s;
}

.topbar .top-link a small:hover i {
    color: var(--bs-primary) !important;
}
/*** Topbar End ***/

/*** Navbar Start ***/
.navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    font-size: 16px;
    transition: .5s;
    font-weight: bold;
    color: #000;
}

.navbar {
    height: 100px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

div,p,h1,h2,h3,h4,h5,h6,button,a{
    font-family: "Cairo", serif !important;
    text-decoration: none;
}
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: #ffbe1c;
    color: #fff ;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    /* background: var(--bs-light) !important; */
    border-radius: 10px !important;
    transition: .5s;
    opacity: 1;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .8);
}
/*** Navbar End ***/



/*** Service ***/
.service-item .bg-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/bg-icon.png) center center no-repeat;
    background-size: cover;
}

.shadows{
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
    border-radius: 8px;
}

/*** Hero Header ***/
.hero-header {

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 535px;
}

.carousel-item {
    position: relative;
}

.carousel-item a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
    background: linear-gradient(rgba(255, 181, 36, 0.7), rgba(255, 181, 36, 0.7));
}

.carousel-control-next,
.carousel-control-prev {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    border: 1px solid var(--bs-white);
    background: var(--bs-primary);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-next {
    margin-right: 20px;
}

.carousel-control-prev {
    margin-left: 20px;
}

.page-header {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/cart-page-header-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .hero-header,
    .page-header {
        margin-top: 106px !important;
    }
}

@media (max-width: 992px) {
    .hero-header,
    .page-header {
        margin-top: 26px   !important;
    }
}
/*** Hero Header end ***/


/*** featurs Start ***/
.featurs .featurs-item .featurs-icon {
    position: relative;
    width: 120px;
    height: 120px;
}

.featurs .featurs-item .featurs-icon::after {
    content: "";
    width: 35px;
    height: 35px;
    background: var(--bs-secondary);
    position: absolute;
    bottom: -10px;
    transform: translate(-50%);
    transform: rotate(45deg);
    background: var(--bs-secondary);

}
/*** featurs End ***/


/*** service Start ***/
.service .service-item .service-content {
    position: relative;
    width: 287px;
    height: 160px;
    top: -50%;
    left: 50%;
    transform: translate(-50%, -25%);

}

.rounded-bottom{
    height: 100px !important;
}
/*** service End ***/


/*** Fruits Start ***/
.fruite .tab-class .nav-item a.active {
    background: var(--bs-secondary) !important;
}

.fruite .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

.fruite .fruite-categorie .fruite-name {
    line-height: 40px;
}

.fruite .fruite-categorie .fruite-name a {
    transition: 0.5s;
}

.fruite .fruite-categorie .fruite-name a:hover {
    color: var(--bs-secondary);
}

.fruite .fruite-item {
    height: 100%;
    transition: 0.5s;
}
.fruite .fruite-item:hover {
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}

.fruite .fruite-item .fruite-img {
    overflow: hidden;
    transition: 0.5s;
    border-radius: 10px 10px 0 0;
}

.fruite .fruite-item .fruite-img img {
    transition: 0.5s;
}

.fruite .fruite-item .fruite-img img:hover {
    transform: scale(1.3);
}
/*** Fruits End ***/


/*** vesitable Start ***/
.vesitable .vesitable-item {
    height: 100%;
    transition: 0.5s;
}

.vesitable .vesitable-item:hover {
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}

.vesitable .vesitable-item .vesitable-img {
    overflow: hidden;
    transition: 0.5s;
    border-radius: 10px 10px 0 0;
}

.vesitable .vesitable-item .vesitable-img img {
    transition: 0.5s;
}

.vesitable .vesitable-item .vesitable-img img:hover {
    transform: scale(1.2);
}

.vesitable .owl-stage {
    margin: 50px 0;
    position: relative;
}

.vesitable .owl-nav .owl-prev {
    position: absolute;
    top: -8px;
    right: 0;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;

}

.vesitable .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.vesitable .owl-nav .owl-next {
    position: absolute;
    top: -8px;
    right: 88px;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

.vesitable .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
/*** vesitable End ***/


/*** Banner Section Start ***/
.banner .banner-btn:hover {
    background: var(--bs-primary);
}
/*** Banner Section End ***/

.dashboard {
    display: flex
;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #f4f4f4;
    position: relative;
    overflow: hidden;
}

/* Dashboard Container */
.dashboard-container {
    display: flex;
    position: relative;
    z-index: 1;
}

/* Sidebar */
.dashboard-sidebar {
    position: relative;
    z-index: 1;
    width: 98%;
    height: auto;
    margin: 0 auto 1rem;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 1rem 0;
}

.dashboard-sidebar h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #ffffff;
}

.dashboard-sidebar ul {
    list-style: none;
    padding: 0;
}

.dashboard-sidebar ul li {
    margin: 10px 0;
}

.dashboard-sidebar ul li a.active {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 20px !important;
    position: relative;
    background-color: #81c408 !important;
    width: 92%;
    margin: auto;
    cursor: pointer !important;
    border-radius: 12px;
}

.dashboard-sidebar ul li a {
    color: #000 ;
    text-decoration: none;
    cursor: pointer !important;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 4px;
    position: relative;
    width: 92%;
    margin: auto;
    border-radius: 12px;
}

.dashboard-sidebar ul li a:active {
    color: #2e7d32;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Main Content */
.dashboard-content {
    flex: 1;
    padding: 0 20px;
}

/* Playlists */
.playlists {
    margin-top: 20px;
}

/* Card Container */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}


/*** Facts Start ***/
/* .counter {
    height: 100%;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.counter i {
    font-size: 60px;
    margin-bottom: 25px;
}

.counter h4 {
    color: var(--bs-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.counter h1 {
    margin-bottom: 0;
} */
/*** Facts End ***/

#add_buttn_fixed2 {
    position: fixed;
    z-index: 1000;
    bottom: 12%;
    right: 2%;
    border-radius: 20px;
    background-color: #000000 !important;
    color: white;
    padding: 10px 15px 7px 14px;
    font-size: 22px;
    cursor: pointer;
    font-size: 14px;
}
#add_buttn_fixed1 {
    position: fixed;
    z-index: 1000;
    bottom: 3%;
    right: 2%;
    border-radius: 20px;
    background-color: #27be51  !important;
    color: white;
    padding: 10px 15px 7px 14px;
    font-size: 22px;
    cursor: pointer;
    font-size: 14px;
}

.avatar-update-container .picture {
    width: 106px;
    height: 106px;
    background-color: #d8d1c9;
    border: 3px solid #d3d3d3;
    color: #FFFFFF;
    border-radius: 50%;
    margin: 5px auto;
    overflow: hidden;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}

.avatar-update-container .picture-lab {
    width: 60% !important;
    height: 100% !important;
    border-radius: 10px;
    background-color: transparent !important;
    border: 0px solid #d3d3d3 !important;
}

.avatar-update-container .picture-src {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-update-container .picture input[type="file"] {
    cursor: pointer;
    display: block;
    width: 100%;
    height: 200px;
    left: 0;
    opacity: 0 !important;
    position: absolute;
    top: 0;
}

.form-country {
    border: 1px solid #81c408;
    padding: .5rem;
    border-radius: .5rem;
    margin-block: 1rem;
    text-align: center;
}

.bachground{
    background-color: #ffb524 !important;
    /* background: url(../img/bg-round.png), url(../img/bg-round-2.png), url(../img/bg-square.png), url(../img/bg-line.png), url(../img/bg-bottom-hero.png); */
    background-position: 0px 40%, right 0 top 0, left 50% top 0, left 50% top 50%, center bottom -1px;
    background-repeat: no-repeat;


    /* background: url(../img/bg-round.png), url(../img/bg-round-2.png), url(../img/bg-square.png), url(../img/bg-line.png), url(../img/bg-bottom-footer.png);
    background-position: 0px 112px, right 0 bottom 0, left 50% top 80px, left 50% bottom 0, top center;
    background-repeat: no-repeat; */

}
/*** testimonial Start ***/
.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    right: 0;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 88px;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
/*** testimonial End ***/


/*** Single Page Start ***/
.pagination {
    display: inline-block;
}

.pagination a {
    color: var(--bs-dark);
    padding: 10px 16px;
    text-decoration: none;
    transition: 0.5s;
    border: 1px solid var(--bs-secondary);
    margin: 0 4px;
}

.pagination a.active {
    background-color: var(--bs-primary);
    color: var(--bs-light);
    border: 1px solid var(--bs-secondary);
}

.pagination a:hover:not(.active) {background-color: var(--bs-primary)}

.nav.nav-tabs .nav-link.active {
    border-bottom: 2px solid var(--bs-secondary) !important;
}
/*** Single Page End ***/


/*** Footer Start ***/
.footer .footer-item .btn-link {
    line-height: 35px;
    color: rgba(255, 255, 255, .5);
    transition: 0.5s;
}

.footer .footer-item .btn-link:hover {
    color: var(--bs-secondary) !important;
}

.footer .footer-item p.mb-4 {
    line-height: 35px;
}
/*** Footer End ***/




.login_web .sectionLogin{
    position: relative !important;
    /* transform: translateY(-12%) !important; */
    /* z-index: 99 !important; */
    background-color: #fff !important;
    border-radius: 25px;
    box-shadow: 0px 0px 10px #00000024;
    width: 50%;
    text-align: center;
    margin: auto;
    padding: 27px 8px;
    height: 100%;
}

.login_web .sectionprofile{
    position: relative !important;
    /* transform: translateY(-12%) !important; */
    /* z-index: 99 !important; */
    background-color: #fff !important;
    border-radius: 25px;
    box-shadow: 0px 0px 10px #00000024;
    text-align: center;
    margin: auto;
    padding: 27px 8px;

}

.login_web .sectionregister{
    position: relative !important;
    /* transform: translateY(-30%) !important; */
    /* z-index: 99 !important; */
    background-color: #fff !important;
    border-radius: 25px;
    box-shadow: 0px 0px 10px #00000024;
    width: 40%;
    text-align: center;
    margin: auto;
    padding: 27px 8px;

}

.sectionregister .inner {
    border-radius: 5px;
    overflow: hidden;
}
.inner h1{
    font-size: 20px;
    font-weight: 800;
    margin: 33px 0;
    color: #3d552b;
}
@media (max-width: 575px) {
    .login_web .sectionLogin{
        width: 100% !important;
    }
    .login_web .sectionregister{
        width: 100% !important;
    }
    .screen{
        font-size: 20px !important;
    }
}

.field-icon {
    float: left;
    margin-left: 12px;
    margin-top: -60px;
    position: relative;
    width: 27px !important;
    height: 21px;
  }

  .field-icon2 {
    float: right;
    margin-right: 12px;
    margin-top: -33px;
    position: relative;
    width: 27px !important;
    height: 21px;
  }




/* - jquery ui datepicker - */

.search_all_invoice .datepicker {
    width: 100% !important;
    border-radius: 15px !important;
}

.datepicker {
    border: 0px !important;
    background-color: #3d552b;
    border-radius: 6px;
    padding: 3px 5px 3px 5px;
    margin: 3px;
}

.datepicker table tr th {
    background-color: transparent;
    border: 0px;
    color: aliceblue;
    font-size: 16px;
}

.datepicker table tr .dow {
    font-size: small;
    color: #d2f0ff;
    font-weight: 300;
    font-size: 18px;
}

.ui-datepicker th {
    font-size: small;
    color: #d2f0ff;
    font-weight: 400;
}

.datepicker table tr td {
    width: 34px;
    text-align: center;
    font-size: 17px;
    height: 34px;
    border: 0px;
    border-radius: 50%;
    background-color: transparent;
    color: #c1dcff;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.datepicker table tr td.old,
.datepicker table tr td.new {
    color: #5f9efb;
}

.datepicker table tr td.today {
    width: 34px;
    height: 34px;
    background-color: white;
    color: var(--main-color);
    border: 0px;
}

.datepicker table tr td.active.active {
    background-color: #10558e;
}

.datepicker table tr td.day:hover,
.datepicker thead tr:first-child th:hover,
.datepicker table tr td span:hover {
    background-color: white;
    color: #2abaff;
}

.datepicker-dropdown:after,
.datepicker-dropdown:before {
    display: none;
}
