/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

/*
   * Remove text-shadow in selection highlight:
   * https://twitter.com/miketaylr/status/12228805301
   *
   * Customize the background color to match your design.
   */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
   * A better looking default horizontal rule
   */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
   * Remove the gap between audio, canvas, iframes,
   * images, videos and the bottom of their containers:
   * https://github.com/h5bp/html5-boilerplate/issues/440
   */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
   * Remove default fieldset styles.
   */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

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

a {
    text-decoration: none !important;
}

/*
   * Allow only vertical resizing of textareas.
*/

textarea {
    resize: vertical;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    background-color: #f7f8f9;
}


/* color */
:root {
    --primary: #750008;
    --secondary: #222222;
}

/* =============================  header ================================= */


.header_section {
    position: relative;
    background: #ebedf4;
    border-bottom: 1px solid #f0f5f9;
    z-index: 2;
}

.homepage {
    border: none;
}

.homepage .dropdown-toggle {
    color: #fff !important;
}

.homepage .nav-link {
    color: #fff;
}


.header_section .dropdown-toggle {
    border: none !important;
    background: transparent;
    font-size: 14px;
    outline: none !important;
    color: #333333;
    font-weight: 600;
}

.header_section .dropdown-menu {
    border: none;
    border-radius: 6px;
    padding: 10px;
}

.dropdown-menu[data-bs-popper] {
    top: 44px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
    overflow-y: auto;
    padding: 0.25em 0.5em;
    max-height: 220px;
    max-width: 40ch;
    z-index: 5;
}

.header_section .dropdown-item {
    padding: 8px 10px;
    background: transparent !important;
    font-size: 14px;
}

.header_section .dropdown-item:hover {
    color: var(--primary);
}

.dropdown-section-header {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.navbar-brand img {
    max-height: 80px;
    width: auto;
}


/* width */
.navbar-nav .dropdown-menu::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.navbar-nav .dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.navbar-nav .dropdown-menu::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
.navbar-nav .dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.section-title .title {
    margin: 0;
    text-transform: uppercase;
    font-size: 24px;
    color: #212121;
}

.dropdown-toggle::after {
    display: none;
}


/* =============================  banner ================================= */

.banner_section {
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner_section:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
}

.banner_form {
    position: relative;
    z-index: 1;
}


.banner_section h1 {
    margin: 0;
    position: relative;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

.banner_section p {
    font-size: 17px;
}

.banner_section h2 {
    color: #222;
    font-size: 19px;
    font-weight: 400;
}

.banner_section .form-control {
    padding: 18px 12px;
    border: none !important;
    border-radius: 6px 0px 0px 6px;
    font-size: 15px;
    font-weight: 400;
    outline: none !important;
    box-shadow: none !important;
}

.banner_section .btn-primary {
    background: #fff;
    border-color: #fff;
    border-radius: 0px 6px 6px 0px;
    padding: 13px 18px;
    color: #222;
}

.banner_section.btn-check:checked+.btn,
.banner_section.btn.active,
.banner_section.btn.show,
.banner_section .btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: #222 !important;
    background-color: #fff !important;
    border-color: #fff !important;
}

.cursor_pointer {
    cursor: pointer;
}

.select2-container--bootstrap-5 .select2-selection {
    /* border: none !important; */
    border-radius: 0px;
    font-size: 15px;
    font-weight: 400;
    outline: none !important;
    box-shadow: none !important;
    height: 50px !important;
    border-right: 1px solid #ddd !important;
}

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

.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field {
    outline: none !important;
    box-shadow: none !important;
}

select+.select2-container--bootstrap-5 {
    z-index: 1;
    width: 100% !important;
}


/* =============================  Categories ================================= */
.top_categories {
    margin-top: -58px;
    position: relative;
    z-index: 0;
}

.category_title a {
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.category_box {
    height: 100% !important;
    border-right: 1px solid #e8e8e8;
    border-left: 1px solid #ffffff;
    display: block;
    padding: 20px 10px;
}


.section_title {
    font-weight: 600;
    font-size: 22px;
    color: #333;
}

.section_heading .sub_title {
    font-size: 16px;
    font-weight: 400;
    position: relative;
    padding-left: 35px;
    color: #333;
}

.section_heading .sub_title:before {
    position: absolute;
    top: 8px;
    left: 0;
    content: "";
    width: 30px;
    height: 1px;
    background-color: #adadad;
}

.category_section .category_item {
    background: #ffffff;
    padding: 15px;
    border-radius: 6px;
    height: 100%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .06);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    min-height: 165px;
    border: 1px solid #edebeb;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category_img img {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.category_section .category_item:hover,
.services_section .category_item:hover {
    box-shadow: 0 0 11px rgba(33, 33, 33, .2);
    border: 1px solid #75000847;
    /* background: #7500080f; */
}

.category_section .category_item:hover .category_img img,
.top_categories .category_box:hover .category_img img,
.services_section .category_item:hover .category_img img {
    transform: scale(1.2);
}

.services_section .category_item {
    background: #ffffff;
    padding: 15px;
    border-radius: 6px;
    height: 100%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .06);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    border: 1px solid #c9c9c9;
}

.category_section .category_name,
.services_section .category_name {
    color: #1b1b1b;
    font-weight: 400;
    font-size: 15px;
}


.view_all {
    font-size: 15px;
    color: #750008;
}

.cashback-tag {
    position: absolute;
    top: -7px;
    right: 10px;
}

.cashback-tag span {
    position: relative;
    display: block;
    text-align: center;
    background: #750008;
    font-size: 12px;
    line-height: 1;
    padding: 5px 7px;
    border-top-right-radius: 8px;
    color: white;
    font-weight: 500;
}

.cashback-tag span:before,
.cashback-tag span:after {
    position: absolute;
    content: "";
}

.cashback-tag span:before {
    height: 6px;
    width: 6px;
    left: -6px;
    top: 0;
    background: #750008;
}

.cashback-tag span:after {
    height: 6px;
    width: 8px;
    left: -8px;
    top: 0;
    border-radius: 8px 8px 0 0;
    background: #750008;
}

/* ============================= Team Member ================================= */
.team_members {
    border: 1px solid rgb(240 240 240);
    border-radius: 20px;
    background: #fff;
    padding: 15px;
}

.team_info h4 {
    margin: 0;
    font-size: 16px;
    color: #353535;
    font-weight: 700;
    padding-bottom: 4px;
}

.team_info p {
    margin: 0;
    font-size: 14px;
    color: #383838;
    font-weight: 400;
}

.member_photo img {
    border-radius: 12px;
}

/* ============================= Footer ================================= */
.footer-section {
    padding: 20px 0px;
    background: #262626;
}

.footer_menu ul li a {
    color: #ddd;
}

.footer_menu ul li {
    display: inline-block;
    padding-right: 20px;
}

.footer_menu ul li a:hover {
    color: #fff;
}

.copyright {
    background: #222121;
    border-top: 1px solid #303030;
}

.copyright p {
    font-size: 13px;
}


/* ============================= Login ================================= */
.sign-section {
    padding: 152px 0px;
}

.sign-section .login_card {
    max-width: 26rem;
    margin: auto;
    padding: 24px;
}

.sign-section .card-body h2 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.sign-section .form-label {
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

.sign-section .form-control {
    padding: 12px 10px;
    font-size: 14px;
    outline: none !important;
    box-shadow: none !important;
}

.form-control::placeholder {
    color: #b7b7b7;
    font-size: 13px;
}

.sign-section .btn-primary {
    padding: 10px 5px;
    font-weight: 500;
    text-transform: uppercase;
    background: var(--primary);
    border-color: var(--primary);
}

.sign-section .btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.sign-section .input-group-text {
    background: #fff;
    font-size: 14px;
}

.sign-section a {
    color: #2196F3;
}

.toggle-password,
.toggle-password2 {
    width: 50px;
    padding: 0;
    text-align: center;
    justify-content: center;
    cursor: pointer;
}


.cart_item tr td {
    font-size: 13px;
    color: #777;
    border: none;
    padding: 7px 0px;
}

.cart_item tr td a {
    color: #F44336;
    font-size: 13px;
}

.cart_price {
    border-top: 1px solid #EEE;
}

.cart_price td {
    font-size: 15px;
    color: #333;
}


.cart_price p {
    font-size: 13px;
    color: #888;
    text-align: justify;
}

.cart_btn .btn {
    padding: 10px 5px;
    font-size: 15px;
    font-weight: 400;
    background: #e4e4e4;
    border: none !important;
    color: #222;
}


.cart_btn .btn-secondary {
    background: var(--primary);
    color: #fff;
}

.cart_btn .btn-check:checked+.btn,
.cart_btn .btn.active,
.cart_btn .btn.show,
.cart_btn .btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: #fff !important;
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}



.note_modal .modal-header {
    background: #dce1e7;
    padding: 20px 16px;
}

.note_modal .modal-content {
    border: none !important;
    border-radius: 12px !important;
}

.note_modal .modal-title {
    font-size: 17px;
    font-weight: 500;
}

.note_modal textarea.form-control {
    border: 1px solid #888;
    outline: none !important;
    box-shadow: none !important;
}

.note_modal .btn-primary {
    padding: 15px 0px;
    background: var(--primary);
    border: none !important;
}

.note_modal .btn-primary:hover {
    background: var(--secondary);
}


.checkout_section .item_list {
    border-bottom: 1px solid #EEE;
}

.checkout_section .accordion-header button {
    color: #212121;
    background: transparent !important;
    font-size: 15px;
    border: none !important;
    box-shadow: none !important;
    padding-bottom: 20px !important;
}

.checkout_section .item_info p {
    color: #424242;
    font-size: 13px;
    font-weight: 400;
    line-height: 26px;
    margin: 0;
}

.checkout_section .item_info {
    margin-bottom: 20px !important;
}

.choose_item .item_info {
    border-right: 1px solid #EEE;
}

.counter-button {
    border: 1px solid #75000852;
    color: var(--primary);
    font-size: 19px;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #7500080a;
}

.counter-number {
    padding: 0;
    text-align: center;
    width: 45px;
    margin: 0px 3px;
    height: 31px;
    border: 1px solid #7500080a;
    border-radius: 4px;
    background: #70010e17;
    outline: none !important;
    box-shadow: none !important;
}

.counter-number::-webkit-outer-spin-button,
.counter-number::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


.counter-number [type=number] {
    -moz-appearance: textfield;
}

.total_item_price p {
    display: inline-block;
    background: #7f06122e;
    padding: 6px 12px;
    border-radius: 3px;
    font-size: 12px;
}

.item_list .form-check-label {
    border: 2px solid var(--primary);
    color: var(--primary);
    display: inline-block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 27px !important;
    height: 26px;
    border-radius: 6px;
    padding: 0;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
}

.item_list .form-check label::before {
    content: "+";
    z-index: -1;
}

.item_list .form-check-input:checked+label::before {
    content: "✔";
}

.sidebar_wrapper,
.cart_summary,
.choose_item {
    box-shadow: 0 3px 6px 0 #00000003;
}

.rounded.service_sidebar {
    box-shadow: 0 3px 6px 0 #00000003;
}


.service_sidebar h4 {
    font-size: 17px;
    color: #121212db;
    line-height: 28px;
}

.service_sidebar h4 {
    font-size: 17px;
    color: #121212db;
    line-height: 28px;
    font-weight: 600;
}


.service_sidebar .form-check-label {
    font-size: 15px;
    color: #383838;
    font-weight: 500;
    margin-bottom: 4px;
}

.service_sidebar .form-check-label span {
    color: #868686;
    font-size: 13px;
    font-weight: 400;
}

.form-check-input {
    margin-top: 4px;
}

.sidebar_wrapper .title {
    font-size: 17px;
    color: #121212db;
    line-height: 28px;
    font-weight: 600;
}

.form-control {
    padding: 10px 10px;
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid #e0dcdc;
    font-size: 14px;
}

.form-control:focus {
    border-color: #740008;
}

.banner_form .btn-check:checked+.btn,
.banner_form .btn.active,
.banner_form .btn.show,
.banner_form .btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: #121212 !important;
    background-color: #ffffff !important;
    border-color: #ffffff !important;
}

.page_content p {
    margin: 0;
    margin-bottom: 18px;
    line-height: 30px;
    font-size: 15px;
    color: #121212;
    font-weight: 400;
    text-align: justify;
}

.page_content h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-name {
    line-height: 29px;
}

.accordion-button:not(.collapsed) {
    color: #75000e;
}

.accordion-style .card {
    background: transparent;
    box-shadow: none;
    margin-bottom: 15px;
    margin-top: 0 !important;
    border: none;
}

.accordion-style .card:last-child {
    margin-bottom: 0;
}

.accordion-style .card-header {
    border: 0;
    background: none;
    padding: 0;
    border-bottom: none;
}

.accordion-style .btn-link {
    color: #ffffff;
    position: relative;
    background: #740008;
    border: 1px solid #740008;
    display: block;
    width: 100%;
    font-size: 16px;
    border-radius: 3px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    text-align: left;
    white-space: normal;
    box-shadow: none;
    padding: 15px 55px;
    text-decoration: none;
}

.accordion-style .btn-link:hover {
    text-decoration: none;
}

.accordion-style .btn-link.collapsed {
    background: #ffffff;
    border: 1px solid #74000826;
    color: #4b4a4a;
    border-radius: 3px;
}

.accordion-style .btn-link.collapsed:after {
    background: none;
    border-radius: 3px;
    content: "+";
    left: 16px;
    right: inherit;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    height: 26px;
    transform: none;
    width: 26px;
    top: 15px;
    text-align: center;
    background-color: #740008;
    color: #fff;
}

.accordion-style .btn-link:after {
    background: #fff;
    border: none;
    border-radius: 3px;
    content: "-";
    left: 16px;
    right: inherit;
    font-size: 20px;
    font-weight: 600;
    height: 26px;
    line-height: 26px;
    transform: none;
    width: 26px;
    top: 15px;
    position: absolute;
    color: #740008;
    text-align: center;
}

.accordion-style .card-body {
    padding: 20px;
    border-top: none;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    font-size: 15px;
    line-height: 27px;
    color: #444;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: #fff !important;
    background-color: #740008 !important;
    border-color: #740008;
}

.payment_methods img {
    aspect-ratio: 1.66666;
    display: inline-block;
    background: no-repeat center/100% 100%;
}

.btn-primary {
    background: #740008;
    border-color: #740008;
}

.btn-primary:hover {
    background: #740008;
    border-color: #740008;
    color: #fff !important;
}

.btn {
    padding: 10px 10px;
}

.btn-back {
    padding: 2px 5px !important;
}

.select2-selection__choice {
    background-color: #7B000C !important;
}

.saved_address .btn-secondary {
    border: 1px solid #7a000c;
    background: transparent;
    color: #7a000c;
}

.saved_address .btn-secondary:hover {
    background: transparent;
    color: #7a000c;
}

.payment_methods .form-check {
    background: #f7f8f9;
    padding-top: 6px;
    padding-bottom: 6px;
    border-radius: 4px;
}

.payment_methods .form-check-input[type=radio] {
    width: 18px;
    height: 18px;
    margin-left: -9px;
    margin-right: 10px;
}

.checkout_section .title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}


.checkout-header {
    border-bottom: 0.4rem solid #7a000c;
    background: #fff;
    padding: 16px;
    border-radius: 10px;
}

.time_schedule h3 {
    font-size: 18px;
    font-weight: 500;
    color: #333;

}

.form-check-input:checked {
    background-color: #7a000c;
    border-color: #7a000c;
}

.extra_direc p {
    margin: 0;
    font-size: 14px;
}

.address h3,
.cart_selected_item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.selected_address {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    gap: 8px;
}

.selected_address p {
    margin: 0;
}

.order-section td {
    padding: 0.75rem 0.75rem !important;
    vertical-align: middle;
}

.order-section .card-header {
    background: transparent;
    padding: 15px;
    border-bottom: 1px solid #EEE;
}

.order-section .card-header .card-title {
    font-size: 20px;
    font-weight: 500;
}

.order-section .card {
    border: 1px solid #EEE;
}

.order-section th {
    background: #f7f8f9 !important;
}


.badge {
    padding: 3px 5px;
    font-weight: 600;
    font-size: 12px;
    border-radius: 3px;
    min-width: 65px;
}

.order_pagination .page-link {
    font-size: 14px;
    color: #333 !important;
    font-weight: 600;
    min-width: 42px;
    text-align: center;
    min-height: 42px;
    justify-content: center;
    align-items: center;
    display: flex;
    margin: 0px 3px;
    border-radius: 5px !important;
    outline: none !important;
    box-shadow: none !important;
}

/* ============================= Abotu us ================================= */

.about_content .content h3 {
    font-size: 15px;
    font-weight: 600;
}

/* =============================  how it work ================================= */
.work_step .step {
    font-size: 20px;
    width: 40px;
    height: 40px;
    background: #dadada;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b2b2b;
    border-radius: 2px;
}

.work_step .content h3 {
    font-size: 18px;
    font-weight: 500;
    color: #222;
}

.work_step .content {
    width: 500px;
}

.work_step .content p {
    font-size: 15px;
    color: #555;
}

/* ============================= Testimonial ================================= */


.testimonial__nav ul li {
    cursor: pointer;
}

.testimonial_content p {
    font-size: 17px;
    line-height: 29px;
    font-weight: 400;
    margin-bottom: 0;
    color: #222;
}

.testimonial_content .quote-mark {
    font-weight: 900;
    color: rgba(0, 0, 0, .8);
    font-size: 36px;
    font-style: italic;
}

.card {
    border: 1px solid #EEE;
    border-radius: 12px;
}

.user_profile .card-title {
    display: block;
    margin: 0 0 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 500;
    color: #333;
}


.card.user_profile h2 {
    font-size: 16px;
    color: #222;
    font-weight: 600;
}

.caption-badge {
    width: 89px !important;
}

/* navbar menu active */
.header_section .nav-item a.active {
    font-weight: bold;
    color: #750008 !important;
}


.ajaxSeachBox {
    background: #fff;
    border-radius: 6px;
    position: absolute;
    top: 58px;
    right: 0;
    left: 0;
    max-width: 648px;
    max-height: 500px;
    overflow-y: auto !important;
    margin: auto;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f0f0f0;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}


.ajaxSeachBox ::-webkit-scrollbar {
    width: 5px;
    height: 10px;
}

.ajaxSeachBox ::-webkit-scrollbar-thumb {
    background-color: #888;
}

.ajaxSeachBox ::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}


.ajaxSeachBox .content h3 {
    font-size: 14px;
    color: #7b000c;
    margin: 0;
}

.ajaxSeachBox .content p {
    font-size: 13px;
    color: #222;
}

.ajaxSeachBox ul li {
    border-bottom: 1px solid #EEE;
}

.ajaxSeachBox ul li:last-child {
    border-bottom: 0px;
}

.ajaxSeachBox ul li a {
    padding: 15px;
    display: block;
}

.ajaxSeachBox ul li a:hover {
    background: #f5f5f5;
}


.ajaxSeachBox .icon {
    display: block;
    position: absolute;
    right: 0;
    top: 10px;
}


.modal-header {
    padding: 20px 20px;
    border-color: #efefef;
}

.modal-title {
    font-size: 16px;
    color: #222;
    font-weight: 600;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
}

#loginModal .input-group-text {
    background: #fff;
    font-size: 15px;
    font-weight: 500;
}


/* Arabic Language css */

:root[dir="rtl"] .banner_section .btn-primary {
    border-radius: 6px 0px 0px 6px !important;
}

:root[dir="rtl"] .banner_section .form-control {
    border-radius: 0px 6px 6px 0px !important;
}

:root[dir="rtl"] #loginModal .form-control {
    border-radius: 6px 0px 0px 6px;
}

:root[dir="rtl"] #loginModal .input-group-text {
    border-radius: 0px 6px 6px 0px !important;
    border-left: 0;
}

:root[dir="rtl"] #loginModal .toggle-password,
:root[dir="rtl"] .sign-section .toggle-password {
    border-radius: 6px 0px 0px 6px !important;
    border-right: 0;
    border-left: 1px solid #ddd !important;
}

:root[dir="rtl"] input#password-field {
    border-radius: 0px 6px 6px 0px !important;
}


:root[dir="rtl"] .section_heading .sub_title:before {
    right: 0;
}

:root[dir="rtl"] .section_heading .sub_title {
    padding-right: 35px;
}


:root[dir="rtl"] .sign-section .form-control {
    border-radius: 6px 0px 0px 6px;
}

:root[dir="rtl"] .password-field1,
:root[dir="rtl"] .password-field2 {
    border-radius: 0px 6px 6px 0px !important;
}

:root[dir="rtl"] .sign-section .input-group-text {
    border-radius: 0px 6px 6px 0px;
    border-left: 0;
}

:root[dir="rtl"] .choose_item .item_info {
    border-left: 1px solid #EEE;
    border-right: 0;
}

:root[dir="rtl"] .profile-section .toggle-password,
:root[dir="rtl"] .profile-section .toggle-password2 {
    border-radius: 0px;
    border-right: 0;
}

:root[dir="rtl"] .profile-section input[type="password"] {
    border-radius: 0px;
}
:root[dir="rtl"] .work_step.ps-3{
    padding-left: 0rem !important;
    padding-right: 1rem !important;
}
:root[dir="rtl"] .payment_methods .form-check-label {
    padding-right: 26px;
}
:root[dir="rtl"] .payment_methods .form-check-input[type=radio] {
    float: right;
}
:root[dir="rtl"] .rating-rtl .caption {
    float: left;
    margin-top: 20px;
    display: block;
    /* width: 100%; */
}

:root[dir="rtl"] .rating-lable {
    text-align: right;
    width: 100%;
}
:root[dir="rtl"] .bs4-order-tracking li:after {
    right: -35%;
}



/* ==========================================================================
        Apps sections
     ========================================================================== */

.apps_content h3 {
    width: 450px;
    font-weight: 600;
    font-size: 50px;
    line-height: 60px;
    color: #333333;
    margin-bottom: 20px;
}

.apps_content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #666;
}

.assurance_wrapper {
    background: #eff4f7;
    padding: 20px;
    border-radius: 12px;
}

.assurance_heading h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
    color: #333333;
    margin-top: 5px;
}

.assurance_content h4 {
    margin: 0;
    color: #333;
    margin-bottom: .35em;
    font-size: 1.25rem;
}

.assurance_content p {
    margin: 0;
    color: #666;
    line-height: 1.2rem;
    font-size: 13px;
}

.assurance_content {
    max-width: 410px;
    margin: auto;
}

.assurance_link a {
    color: #7b000c;
}

.assurance_top img {
    -o-object-fit: contain;
    object-fit: contain;
    height: 5rem;
    width: 5rem;
}

.assurance_top h2 {
    font-size: 19px;
    color: #333;
    font-weight: 600;
}

.assurance_articel h5 {
    margin: 0;
    font-size: 15px;
    color: #333;
    font-weight: 600;
}

.assurance_articel p {
    font-size: 13px;
    color: #333;
    max-width: 23rem;
    margin: auto;
}


.offer_img:hover img {
    box-shadow: 0 0 11px rgba(33, 33, 33, .2) !important;
    transition: box-shadow .15s ease-in-out;
}

.offer_view {
    background: #ffffff;
    padding: 15px;
    border-radius: 6px;
    height: 100%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .06);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer_view:hover {
    box-shadow: 0 0 11px rgba(33, 33, 33, .2) !important;
    transition: box-shadow .15s ease-in-out;
}

.offer_view a {
    color: #750008;
    font-size: 15px;
    font-weight: 500;
}

/* ==========================================================================
     Helper classes
     ========================================================================== */

/*
   * Hide visually and from screen readers
   */

.hidden,
[hidden] {
    display: none !important;
}

.visually-hidden {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
    /* 1 */
}

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    white-space: inherit;
    width: auto;
}

/*
   * Hide visually and from screen readers, but maintain layout
   */

.invisible {
    visibility: hidden;
}

/*
   * Clearfix: contain floats
   *
   * The use of `table` rather than `block` is only necessary if using
   * `::before` to contain the top-margins of child elements.
   */

.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
}

.clearfix::after {
    clear: both;
}

/* ==========================================================================
     EXAMPLE Media Queries for Responsive Design.
     These examples override the primary ('mobile first') styles.
     Modify as content requires.
     ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
     Print styles.
     Inlined to avoid the additional HTTP request:
     https://www.phpied.com/delay-loading-your-print-css/
     ========================================================================== */

@media print {

    *,
    *::before,
    *::after {
        background: #fff !important;
        color: #000 !important;
        /* Black prints faster */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]::after {
        content: " (" attr(href) ")";
    }

    abbr[title]::after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
    a[href^="#"]::after,
    a[href^="javascript:"]::after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}


.dropdown-menu .active {
    background-color: #750008;
    color: white;
}

.dropdown-menu .active .dropdown-item {
    color: white;
}

.navbar-collapse li .nav-link span.count-item {
    position: absolute;
    height: 20px;
    width: 20px;
    background: var(--primary);
    text-align: center;
    border-radius: 50%;
    font-size: 11px;
    color: #fff;
    top: 27px;
    /* right: 10px; */
    line-height: 21px;
    z-index: 1;
}

.modal.fade .modal-dialog.modal-dialog-zoom {
    -webkit-transform: translate(0, 0) scale(0.8);
    transform: translate(0, 0) scale(0.8);
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.modal.show .modal-dialog.modal-dialog-zoom {
    -webkit-transform: translate(0, 0) scale(1);
    transform: translate(0, 0) scale(1);
}

.modal.modal-static .modal-dialog.modal-dialog-zoom {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

.sidebar-list {
    font-size: 15px;
    font-weight: 400;
}

.sidebar-list.list-group-item.active {
    z-index: 2;
    background-color: #7a000c !important;
    border-color: #7a000c !important;
}
