@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800&display=swap');

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

body {
    font-family: 'Cairo', sans-serif !important;
    direction: rtl;
    color: #000000;
    background-color: #fff;
    text-align: right;
    font-size: 14px;
    overflow-x: hidden;
    width: 100%;
    font-weight: 400;
}

/* variables  */
:root {
    --main_color: #02DCCF;
    --sec_color: #08302B;
    --main_trans: .3s all;
    --main_shadow: 0px 6.650102138519287px 5.32008171081543px 0px #00000007;
}

/* basics  */
.flex_center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex_between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex_end {
    display: flex;
    justify-content: end;
    align-items: center;
}

.main_btn {
    background-color: var(--main_color);
    border-radius: 7px;
    color: #fff;
}

/* colors  */
.white_color {
    color: #fff !important;
}

.black_color {
    color: #000000;
}

.main_color {
    color: var(--main_color) !important;
}

.sec_color {
    color: var(--sec_color);
}

.third_color {
    color: #005248;
}

.gray_color {
    color: #8C8C8C;
}

.main_bg {
    background-color: var(--main_color);
}

.sec_bg {
    background-color: var(--sec_color);
}

/* fonts  */
.fs-10 {
    font-size: 10px;
}

.fs-11 {
    font-size: 11px;
}

.fs-12 {
    font-size: 12px;
}

.fs-13 {
    font-size: 13px;
}

.fs-14 {
    font-size: 14px;
}

.fs-15 {
    font-size: 15px;
}

.fs-16 {
    font-size: 16px;
}

.fs-17 {
    font-size: 17px;
}

.fs-18 {
    font-size: 18px;
}

.fs-19 {
    font-size: 19px;
}

.fs-20 {
    font-size: 20px;
}

.fs-21 {
    font-size: 21px;
}

.fs-22 {
    font-size: 22px;
}

.fw-4 {
    font-weight: 400 !important;
}

.fw-5 {
    font-weight: 500 !important;
}

.fw-6 {
    font-weight: 600 !important;
}

.fw-7 {
    font-weight: 700 !important;
}

.absolute {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.br-50 {
    border-radius: 50%;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit !important;
}

/* start header  */
header {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

header .nav-link {
    position: relative;
    color: #fff !important;
    font-size: 16px;
}

header .nav-link::before {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    bottom: -1px;
    right: 0;
    transition: var(--main_trans);
    background-color: #fff;
}

header .nav-link.active {
    border-bottom: 1px solid #fff;
}

header .nav-link:hover::before {
    width: 100%;
}

header .nav-item.login .nav-link {
    color: var(--main_color) !important;
}

.shadow_image {
    position: absolute;
    width: 100%;
    height: 280px;
    bottom: 0;
    z-index: 1;
    left: 0;
}

.shadow_image_footer {
    position: absolute;
    width: 100%;
    height: 280px;
    bottom: 150%;
    z-index: 1;
    left: 0;
    top: 0% !important;
    transform: rotate(180deg);
}

.image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header .header_content h1 {
    font-size: 40px;
}

header .header_content span {
    opacity: .6;
    width: 63%;
    text-align: center;
    margin: auto;
    display: flex;
    margin-top: 20px;
    line-height: 1.9;
}

header .content_image {
    margin-top: -60px;
}

/* new order  */
#new_order .order_image {
    width: 160px;
    height: 160px;
}

#new_order .order_desc {
    width: 40%;
    margin: auto;
}

.order_cards .single_order {
    border: 1px dashed #374B5C;
    border-radius: 14px;
    padding: 30px 10px;
    position: relative;
    height: 265px;
}

.order_cards .single_order::before {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    bottom: 0px;
    right: 0;
    transition: var(--main_trans);
    background-color: var(--main_color);
    border-radius: 14px;
}

.order_cards .single_order:hover:before {
    width: 100%;
    z-index: -1;
    top: 0;
}

.order_cards .single_order .card_image {
    width: 120px;
    height: 90px;
}

.order_cards .single_order .card_image {
    margin-bottom: 15px;
}

.order_cards .single_order .card_title {
    margin-bottom: 15px;
}

/* packages  */
#packages {
    background-color: #D9D9D963;
}

#packages .pachage_image {
    width: 160px;
    height: 140px;
}

.single_package {

    width: 270px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 1px 19px 23px 1px #33333326;
    padding: 35px 30px;
    transition: var(--main_trans);
}

.single_package:hover {
    transform: translate(-10px, -10px);
    box-shadow: 1px 19px 23px 1px #33333363;
}

.single_package.first_package {
    margin-bottom: 80px;
}

/* optinions  */
.op_image {
    width: 120px;
    height: 120px;
}

.op_image2 {
    width: 200px;
    height: 200px;
}

.single_op_image {
    position: relative;
    background-color: var(--main_color);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    overflow: hidden;
}

.single_op_image:nth-child(3) {
    width: 120px;
    height: 120px;
    margin-top: -30px;
}

.single_op_image img {
    position: absolute;
    width: 70px !important;
    height: 75px !important;
    bottom: -1px;
    left: 17%;
}

.single_op_image:nth-child(3) img {
    width: 90px !important;
    height: 95px !important;
}

.op_desc {
    width: 60%;
    margin: auto;
    text-align: center;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    display: none !important;
}

.dark_gray {
    color: #5C5C5C;
}

/* market  */
.single_market {
    position: relative;
    width: 220px;
    background-color: #fff;
    border-radius: 14px;
    padding: 30px 10px 15px 10px;
    box-shadow: 3px 6px 13px 1px #33333327;
    transition: var(--main_trans);
}

.rate_abs {
    position: absolute;
    bottom: -40px;
    right: 40px;
}

.single_market .market_image {
    width: 95px;
    height: 95px;
}

.single_market:hover {
    transform: translate(-5px, -5px);
    box-shadow: 1px 19px 23px 1px #33333363;
}

.rate {
    color: #FFCE00;
}

.market_rate .add {
    width: 20px;
    height: 20px;
    background-color: var(--main_color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 17px;
}

.showAllMarket,
.market_cards {
    margin-top: 70px;
}

.app_image {
    width: 250px;
    height: 90px;
    object-fit: cover;
}

.app_image img {
    object-fit: contain;
}

.app_main_image {
    width: 70%;
}

.shadow_image_footer {
    top: 0;
}

.border-bottom {
    border-bottom: 1px solid #4c4c4c9a !important;
}

.single_social {
    border: 1px solid #ffffff3d;
    border-radius: 3px;
    padding: 5px;
    width: 30px;
    height: 30px;
}

.social_media {
    position: absolute;
    left: 40px;
}

.social_media svg {
    font-size: 20px;
}

footer {
    padding-top: 240px;
}

.header_content {
    min-height: 320px;
}

.single_order {
    border-radius: 3px;
    box-shadow: 0px 0px 10px #33333334;
}

.single_order.pending {
    background-color: #02DCCF1C;
}

.single_order.cancelled {
    background-color: #FF82824F;
}

.single_order.completed {
    background-color: #14FF0045;
}

.single_order .order_image {
    width: 175px;
    height: 105px;
    margin: auto;
}

.order_details {
    background-color: #02DCCF1C;
}

.order_details .order_image {
    width: 400px;
    height: 300px;
}

.order_details .single_image {
    width: 40px;
    height: 40px;
}

.order_details .single_image img {
    object-fit: contain !important;
}


.steps .single_step {
    position: relative;
    width: 150px;
}

.steps .single_step .circle_step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #D1D5DB;
    padding: 5px;
}

.circled {
    background-color: #D1D5DB;
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

/* .steps .single_step .circle_step.active{
    box-shadow: 0px 0px 10px #33333332;
    border: 7px solid #fff;
    background-color: #346cf6;
} */
.steps .single_step .line {
    content: "";
    position: absolute;
    left: -39%;
    width: 78%;
    top: 33%;
    border: 1px solid #D1D5DB;
}

.steps .single_step .line.active {}

.steps .single_step .step_name {
    color: #D1D5DB;
    font-size: 13px;
}

.single_step.active .circle_step {
    border: 3px solid var(--sec_color);
}

.single_step.active .step_name {
    color: var(--sec_color);
    font-weight: 600;
}

.complete_head {
    border: 1px solid #8C8C8C;
    width: 75%;
    margin: auto;
}

.complete_head .location_image {
    width: 40px;
    height: 40px;
}

.single_car {
    border: 1px solid #D1D5DB;
    border-radius: 3px;
    width: 260px;
    height: 260px;
    position: relative;
}

.single_car .choose_car {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
}

.single_car:has(.choose_car:checked) {
    border: 2px solid var(--main_color);
}

#coupon .modal-dialog {
    min-width: 900px;
}

.default_input {
    position: relative;
    height: 55px;
    border-radius: 10px;
    border: 1px solid #D1D5DB;
}

.default_input::placeholder {
    color: #D1D5DB;
}

.confirm_copon,
.login_place {
    position: absolute;
    left: 4%;
    color: var(--main_color);
    top: 60%;
    font-size: 15px;
    border-right: 2px solid #D1D5DB;
    padding-right: 20px;
}

.payment_method {
    height: 100px;
    border: 1px solid #CCCDCE;
    border-radius: 8px;
}

.payment_method input[type="radio"] {
    accent-color: #000;
    width: 15px;
    height: 15px;
}

.payment_image {
    width: 90px;
    height: 90px;
}

.payment_image2 {
    width: 70px;
    height: 70px;
}

.success_image {
    width: 180px;
    height: 180px;
}

.packages_cards .col-md-4:nth-last-child(2) {
    transform: translateY(50px);
}

.white_bg {
    background-color: #fff !important;
}

.single_profile {
    border: 1px solid #8C8C8C;
    border-radius: 4px;
    position: relative;
    padding: 15px 20px;
    margin-bottom: 25px;
}

.profile_left {
    position: absolute;
    left: 20px;
    top: 37%;
    font-size: 22px;
}

.order-step-num {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background: var(--main-color, #02DCCF);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.profile_icon {
    width: 45px;
    height: 45px;
}

.upload_profile_image {
    width: 155px;
    height: 155px;
    border-radius: 50%;
}

.uplaod_image {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    top: 0;
    left: 0;
    opacity: 0;
}

#image-preview {
    border-radius: 50%;
}

.upload_icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #D9D9D9;
    position: absolute;
    bottom: -10px;
    left: 59%;
    font-size: 20px;
}

.border_btn {
    border: 1px solid var(--main_color);
    color: var(--main_color);
}

.content_paragraph {
    line-height: 1.9;
}

.gray_bg {
    background-color: #F5F5F5;
}

.filter_opration input {
    accent-color: cadetblue;
    width: 15px;
    height: 15px;
}

.fa-star.active {
    color: #FF8A00;
}

.fa-star {
    color: #CCCCCC;
}

.add_to_shop {
    transition: var(--main_trans);
    width: 35px;
    height: 35px;
    background-color: #F2F2F2;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.market-image {
    width: 150px;
    height: 150px;
}

.filter_opration .single_market {
    position: relative;
}

.filter_opration .single_market:hover {
    border: 1px solid var(--main_color);
    box-shadow: 0px 0px 10px #02dcce33;
}

.filter_opration .single_market:hover .add_to_shop {
    background-color: var(--main_color);
    color: #fff;
}

.add_to_fav,
.show_market {
    transition: var(--main_trans);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #F2F2F2;
    opacity: 0;
    cursor: pointer;
}

.filter_opration .single_market:hover .show_market,
.filter_opration .single_market:hover .add_to_fav {
    opacity: 1;
}

.add_to_fav {
    position: absolute;
    top: 15px;
    right: 15px;
}

.show_market {
    position: absolute;
    top: 55px;
    right: 15px;
}

.add_to_fav svg.active {
    color: var(--main_color);
}

.cart_table {
    border: 1px solid #D1D5DB;
    padding-top: 15px;
    padding-bottom: 20px;
}

.cart_table .table_head,
.single_row {
    border-bottom: 1px solid #D1D5DB;
    padding-bottom: 10px;
}

.table_image {
    width: 65px;
    height: 65px;
}

.table_cel {
    width: 25%;
}

.table_qty {
    width: 100px;
    border: 1px solid #E6E6E6;
    border-radius: 20px;
    padding: 4px;
}

.increase,
.decrease {
    background-color: #F2F2F2;
    width: 18px;
    height: 25px;

    border-radius: 50%;
}

.remove_row {
    width: 20px;
    height: 20px;
    border: 1px solid #D1D5DB;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
}

.remove_row svg {
    font-size: 11px;
    color: #D1D5DB;
}

.work_image {
    width: 100%;
    height: 220px;
    border-radius: 4px;
}

.work_image img {
    border-radius: 4px;
}

.offer_price .before::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 1px;
    background-color: red;
    top: 10px;
}

.single_aim {
    position: relative;
}

.single_aim .circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--main_color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.single_aim .circle svg {
    color: #fff !important;
    font-size: 39px;
}

.circle_center {
    position: absolute;
    width: 206px;
    right: 94px;
    top: -23%;
}

#auth {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

#auth .auth_image {
    width: 450px;
    height: 450px;
}

#auth .top_left_image {
    position: absolute;
    top: 0;
    left: 0;
    height: 25%;
}

#auth .bottom_center_image {
    position: absolute;
    bottom: -15%;
    left: 33%;
    width: 50%;
    height: 40%;
}

#auth .form_abs_image {
    position: absolute;
    top: -78%;
    right: -8%;

}

#auth .bottom_left_image {
    position: absolute;
    bottom: -12%;
    left: 0%;
    width: 40%;
    height: 30%;
}


#otpContainer .otp-input {
    width: 60px;
    height: 60px;
    border-radius: 3px;
    background-color: #FBFBFB;
    border: 0.5px solid #14224A;
    margin: 0 12px;
    text-align: center;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    font-size: 18px;
}

#auth input,
#auth textarea {
    color: var(--main_color);
}

#auth input:focus,
#auth textarea:focus {
    border-color: var(--main_color);
}


#contact input,
#contact textarea {
    color: var(--main_color);
}

#contact input:focus,
#contact textarea:focus {
    border-color: var(--main_color);
}


.pac-target-input {
    position: absolute;
    left: 40% !important;
    top: 36px !important;
    width: 20% !important;
    font-family: 'Cairo', sans-serif !important;
}

.order_location_marker {
    width: 25px;
    height: 25px;
}

.current_wallet {
    background: linear-gradient(192.51deg, #035546 9.08%, rgba(2, 220, 207, 0) 222.81%);
    border-radius: 5px;
}

.wallet_circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--main_color);
}

.wallet_circle img {
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.wallet_gift {
    margin-right: 100px;
}

.wallet_btn,
.wallet_btn:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.single_finance {
    border: 1px solid #8C8C8C;
    border-radius: 3px;
}

.wallet_circle_2 {
    width: 60px;
    height: 60px;
}

.wallet_circle_2 img {
    width: 35px;
    height: 35px;
}

#send_gift .modal-dialog {
    max-width: 850px;
    margin: 1.75rem auto;
}

.gift_input {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0px;
    text-align: center;
}

.send_gift_image {
    width: 300px;
    height: 300px;
}

.contact_info {
    box-shadow: 0px 0px 56px 0px #00260314;
    border-radius: 3px;
    padding: 10px;
}

.contact_info .singel_contact {
    border-bottom: 1px solid #ccc;
    padding-bottom: 14px;
    margin-bottom: 25px;
}

.contact_icon {
    width: 45px;
    height: 45px;
}


.toggle_bar {
    display: none;
    cursor: pointer;
    color: #fff;
    font-size: 32px;
    position: relative;
    /* transform: translate(-40vw, 26px); */
}

.profile_icon img {
    width: 100%;
}

.address_above {
    width: 100%;
    margin-bottom: 0;
    margin-top: -58px;
    position: relative;
    z-index: 1000;
    min-height: 58px;
}


#otpContainer {
    direction: ltr;
}

/* media query  */
@media(max-width:768px) {
    .collapse:not(.show) {
        display: block !important;
    }

    .navbar {
        transition: var(--main_trans);
        position: fixed;
        transform: translateX(100%);
        right: 0;
        top: 0;
        background: #61ddd0;
        z-index: 99;
        height: 100%;
        justify-content: space-around;
        align-items: start;
    }

    .navbar.active {
        transform: translateX(0%);
    }

    .toggle_bar {
        display: block;
    }

    header .header_content h1 {
        font-size: 23px;
    }

    header .content_image {
        margin-top: 0;
        width: 224px;
        margin-bottom: 69px;
    }

    header .header_content span {
        width: 90%;
    }

    #new_order .order_desc {
        width: 80%;
    }

    #packages .pachage_image {
        margin: auto;
    }

    .single_package.first_package {
        margin-bottom: 15px;
    }

    .left_hand_col {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .swiper-button-next img,
    .swiper-button-prev img {
        width: 35px;
        height: 35px;
    }

    .op_desc {
        width: 60%;
    }

    .op_desc span {
        width: 13px;
    }

    .single_op_image {
        width: 45px !important;
        height: 45px !important;
    }

    .single_op_image img {
        width: 35px !important;
        height: 35px !important;
    }

    .single_op_image:nth-child(3) img {
        width: 35px !important;
        height: 35px !important;
    }

    .market_cards {
        flex-direction: column !important;
    }

    .market_cards .single_market {
        margin-bottom: 15px;
    }

    .app_image {
        width: 180px;
    }

    .app_main_image {
        margin: auto !important;
    }

    .copy_rights .gray_color {
        margin-bottom: 80px;
    }

    .social_media {
        position: absolute;
        left: 53px;
        top: 80px;
    }

    .main_btn.w-25 {
        width: 70% !important;
    }

    #cart #table {
        overflow-x: auto !important;
    }

    .cart_table {
        min-width: 700px !important;
    }

    .aims {
        flex-direction: column !important;
    }

    .aims .circle_center {
        display: none !important;
    }

    .single_aim {
        margin-bottom: 14px;
    }

    #auth .auth_image {
        width: 250px;
        height: 250px;
    }

    #auth .top_left_image {
        height: 12%;
    }

    #auth {
        min-height: 93vh;
    }

    #auth .form_abs_image {
        position: absolute;
        top: -73%;
        right: -8%;
        width: 65%;
        height: 63%;
    }

    #auth .bottom_center_image {
        position: absolute;
        bottom: -28%;
        left: 17%;
        width: 100%;
        height: 48%;
    }

    #otpContainer .otp-input {
        width: 40px;
        height: 40px;
    }

    #auth .bottom_left_image {
        width: 100%;
    }

    .order_details .order_image {
        width: 268px;
        height: 200px;
        margin: auto;
    }

    .steps .single_step .circle_step {
        width: 35px;
        height: 35px;
    }

    .delete_acc {
        flex-direction: column !important;
    }

    .btn-danger.w-25 {
        width: 75% !important;
        margin-top: 15px !important;
    }

    .steps .single_step .step_name {
        font-size: 10px;
    }

    .steps .single_step .line {
        display: none !important;
    }

    .order_details {
        padding-right: 10px !important;
        padding-left: 10px !important;
    }

    .complete_head {
        padding-right: 10px !important;
        padding-left: 10px !important;
    }

    .wallet_circle img {
        width: 50px;
        height: 50px;
    }

    .send_gift_image {
        width: 200px;
        height: 200px;
        margin: auto;
        display: flex;
        margin-top: 17px;
    }

    .wallet_circle {
        width: 70px;
        height: 70px;
    }

    .wallet_gift {
        margin-right: 20px;
    }
}

.collapse:not(.show) {
    display: block !important;
}

.card_desc {
    font-size: 12px;
}