@font-face {
    font-family: "Mona-Sans";
    font-style: normal;
    font-weight: 400;
    src: url("/assets/fonts/Mona-Sans-RegularWide.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Mona-Sans";
    font-style: normal;
    font-weight: 500;
    src: url("/assets/fonts/Mona-Sans-MediumWide.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Mona-Sans";
    font-style: normal;
    font-weight: 600;
    src: url("/assets/fonts/Mona-Sans-SemiBoldWide.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Mona-Sans";
    font-style: normal;
    font-weight: 700;
    src: url("/assets/fonts/Mona-Sans-BoldWide.ttf") format("truetype");
    font-display: swap;
}

body {
    font-family: "Mona-Sans";
    font-weight: 400 !important;
    -webkit-font-smoothing: antialiased;
}

.btn {
    border-radius: 0px;
    font-weight: 600;
    padding: 7px 11px;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}

.btn:focus {
    box-shadow: none !important;
    outline: none !important;
}

.btn-primary {
    color: #ffffff;
    background-color: #27262E;
    border: 1px solid #27262E;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.active {
    color: #27262E;
    background-color: #ffffff;
    border: 1px solid #27262E;
}

.section-heading {
    margin-bottom: 28px;
}

@media (max-width: 575px) {
    .section-heading {
        margin-bottom: 20px;
    }
}

.section-heading h2 {
    font-size: 30px;
    font-weight: 500;
}

@media (max-width: 991px) {
    .section-heading h2 {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .section-heading h2 {
        font-size: 22px;
    }
}

.row-gap-4 {
    row-gap: 20px;
}

.row-gap-3 {
    row-gap: 16px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-30 {
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .mb-30 {
        margin-bottom: 20px;
    }
}

.mb-40 {
    margin-bottom: 40px;
}

@media (max-width: 575px) {
    .mb-40 {
        margin-bottom: 30px;
    }
}

.mb-50 {
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .mb-50 {
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .mb-50 {
        margin-bottom: 35px;
    }
}

.px-50 {
    padding-left: 50px;
    padding-right: 50px;
}

@media (max-width: 991px) {
    .px-50 {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 575px) {
    .px-50 {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.pt-30 {
    padding-top: 30px;
}

.fw-5 {
    font-weight: 500;
}

.fw-6 {
    font-weight: 600;
}

.fw-7 {
    font-weight: 700;
}

.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

@media (max-width: 575px) {
    .fs-14 {
        font-size: 13px;
    }
}

.fs-16 {
    font-size: 16px;
}

@media (max-width: 575px) {
    .fs-16 {
        font-size: 14px;
    }
}

.fs-18 {
    font-size: 18px;
}

@media (max-width: 575px) {
    .fs-18 {
        font-size: 16px;
    }
}

.fs-20 {
    font-size: 20px;
}

@media (max-width: 991px) {
    .fs-20 {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .fs-20 {
        font-size: 16px;
    }
}

.fs-24 {
    font-size: 24px;
}

@media (max-width: 991px) {
    .fs-24 {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .fs-24 {
        font-size: 16px;
    }
}

.fs-26 {
    font-size: 26px;
}

@media (max-width: 991px) {
    .fs-26 {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .fs-26 {
        font-size: 20px;
    }
}

.fs-28 {
    font-size: 28px;
}

@media (max-width: 991px) {
    .fs-28 {
        font-size: 26px;
    }
}

@media (max-width: 991px) {
    .fs-28 {
        font-size: 22px;
    }
}

a {
    text-decoration: none;
}

.text-gray-200 {
    color: #999999 !important;
}

.main-content {
    max-width: 1300px;
    min-height: 100vh;
    background-color: #ffffff;
    position: relative;
}

.object-fit-cover {
    -o-object-fit: cover;
    object-fit: cover;
}

.view-more-btn {
    width: -moz-fit-content;
    width: fit-content;
    background-color: #ffffff !important;
    border: 1px solid #27262E !important;
    color: #000000;
    padding: 13px 18px;
    border-radius: 30px;
    transition: 0.3s all ease-in-out;
    gap: 20px;
}

.view-more-btn:hover {
    background-color: #27262E !important;
    color: #ffffff !important;
}

.product-list-section .row {
    margin-bottom: 20px !important;
}

.product-list-section .row:last-child {
    margin-bottom: 0px !important;
}

.slick-arrow {
    width: 40px;
    min-width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: #9999991a;
    color: #27262E;
    position: absolute;
    border: none !important;
    top: -43px;
}

@media (max-width: 991px) {
    .slick-arrow {
        width: 36px;
        min-width: 36px;
        height: 36px;
    }
}

.slick-arrow svg {
    fill: #999999;
}

.slick-arrow:hover svg,
.slick-arrow:focus svg,
.slick-arrow.active svg {
    fill: #27262E;
}

.slick-arrow.prev-arrow {
    left: auto;
    right: 66px;
}

@media (max-width: 991px) {
    .slick-arrow.prev-arrow {
        right: 60px;
    }
}

.slick-arrow.next-arrow {
    right: 10px;
}

.banner-section .banner-img {
    aspect-ratio: 3.25;
}

.filter-section {
    padding-bottom: 10px;
    border-bottom: 1px solid #999999;
}

.filter-section .search-icon {
    left: 15px;
    top: 13px;
}

@media (max-width: 576px) {
    .filter-section .search-icon {
        top: 8px;
    }

    .filter-section .search-icon svg {
        width: 16px;
        height: 16px;
    }
}

.filter-section .serach-input {
    background-color: #9999991a;
    border: none !important;
    padding: 16px 16px 15px 50px;
    max-width: 250px;
    border-radius: 10px;
}

@media (max-width: 576px) {
    .filter-section .serach-input {
        padding: 12px 12px 12px 40px;
    }
}

.filter-section .serach-input ::-moz-placeholder {
    color: #999999;
}

.filter-section .serach-input ::placeholder {
    color: #999999;
}

.filter-section .serach-input:focus {
    box-shadow: none !important;
}

.select-all-section {
    background-color: #9999990d;
    padding: 5px 5px;
    border-radius: 10px;
}

.select-all-section .custom-select-box {
    padding: 20px 14px;
    background-color: #ffffff;
    border-radius: 10px;
}

@media (max-width: 991px) {
    .select-all-section .custom-select-box {
        padding: 17px 25px;
    }
}

@media (max-width: 576px) {
    .select-all-section .custom-select-box {
        padding: 14px 20px;
    }
}

.select-all-section .custom-select-options {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: white;
    border-top: none;
    border-radius: 5px;
    overflow-y: auto;
    display: none;
    z-index: 10;
    box-shadow: 0px 1px 6px 0px #00000040;
}

@media (max-width: 991px) {
    .select-all-section .custom-select-options {
        top: 62px !important;
    }
}

@media (max-width: 576px) {
    .select-all-section .custom-select-options {
        top: 55px !important;
    }
}

.select-all-section .custom-select-option {
    padding: 10px;
    cursor: pointer;
}

.select-all-section .custom-select-option:hover {
    background-color: #27262E;
    color: #ffffff !important;
}

.select-all-section .custom-arrow-select {
    right: 30px;
    top: 0;
    bottom: 0;
}

@media (max-width: 576px) {
    .select-all-section .custom-arrow-select {
        right: 22px;
    }
}

.select-all-section .custom-arrow-select.rtl-arrow {
    left: 30px;
    right: auto;
}

.select-all-section .custom-dropdown {
    border-radius: 10px;
    padding: 19px 30px 19px 38px;
}

@media (max-width: 991px) {
    .select-all-section .custom-dropdown {
        padding: 15px 25px;
    }
}

@media (max-width: 576px) {
    .select-all-section .custom-dropdown {
        padding: 12px 20px;
    }
}

.select-all-section .custom-dropdown .dropdown-toggle svg {
    transition: 0.3s all ease-in-out;
}

.select-all-section .custom-dropdown .dropdown-toggle.show svg {
    transform: rotate(180deg);
}

.select-all-section .custom-dropdown .dropdown-toggle::after {
    content: none !important;
}

.select-all-section .form-check {
    padding: 11px 15px 11px 15px;
    border-top: 1px solid #9999994d;
    border-bottom: 1px solid #9999994d;
    min-height: auto !important;
}

.select-all-section .dropdown-menu {
    box-shadow: 0px 1px 6px 0px #00000040;
    padding: 10px;
    border-radius: 5px;
}

.select-all-section .dropdown-menu.show {
    display: table !important;
    width: 100% !important;
    left: 0 !important;
    transform: none !important;
    top: 70px !important;
}

@media (max-width: 991px) {
    .select-all-section .dropdown-menu.show {
        top: 62px !important;
    }
}

@media (max-width: 576px) {
    .select-all-section .dropdown-menu.show {
        top: 55px !important;
    }
}

.select-all-section .form-check-input {
    width: 15px;
    height: 15px;
    min-width: 15px;
    border: 1px solid #999999;
}

.select-all-section .form-check-input:checked {
    background-color: #27262E !important;
    border: 1px solid #27262E !important;
}

.select-all-section .form-check-input:focus,
.select-all-section .form-check-input:active {
    box-shadow: none !important;
}

.all-items-section {
    margin-bottom: 100px;
}

@media (max-width: 991px) {
    .all-items-section {
        margin-bottom: 80px;
    }
}

@media (max-width: 575px) {
    .all-items-section {
        margin-bottom: 60px;
    }
}

.all-items-section .product-card {
    border-radius: 10px;
    padding: 5px;
    box-shadow: 0px 1px 6px 0px #00000040;
}

.all-items-section .product-card .product-all-img {
    max-height: 215px;
    border-radius: 7px;
}

.all-items-section .product-card .product-all-img img {
    aspect-ratio: 1.2555;
    border-radius: 7px;
}

.all-items-section .product-card .product-details {
    padding: 0px 5px 5px 5px;
}

.all-items-section .form-control {
    background-color: #9999991a;
    border: none;
    border-radius: 10px;
    color: #999999;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    padding: 14px 20px;
}

.all-items-section .form-control::-moz-placeholder {
    color: #999999;
}

.all-items-section .form-control::placeholder {
    color: #999999;
}

.all-items-section .form-control:focus {
    box-shadow: none;
}

.page-number {
    margin-bottom: 150px;
}

.page-number .pagination {
    gap: 20px;
}

@media (max-width: 576px) {
    .page-number .pagination {
        gap: 10px;
    }
}

.page-number .page-item {
    border-radius: 10px !important;
}

.page-number .page-item.disabled .page-link {
    color: #999999;
}

@media (max-width: 575px) {
    .page-number .page-item.disabled .page-link {
        font-size: 14px;
        width: auto;
        height: auto;
        min-width: auto;
        border: none !important;
    }
}

.page-number .page-item .page-link {
    border: 1px solid #999999;
    background-color: transparent;
    color: #000000;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 10px !important;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
    box-shadow: none !important;
    transition: 0.3s all ease-in-out;
}

@media (max-width: 991px) {
    .page-number .page-item .page-link {
        font-size: 16px;
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
}

@media (max-width: 575px) {
    .page-number .page-item .page-link {
        font-size: 14px;
        width: auto;
        height: auto;
        min-width: auto;
        border: none !important;
    }
}

.page-number .page-item .page-link:hover,
.page-number .page-item .page-link.active {
    background-color: #27262E;
    color: #ffffff;
    border: 1px solid #27262E;
}

.page-number .prev {
    margin-right: 40px;
    color: #000000;
    transition: 0.3s all ease-in-out;
}

@media (max-width: 575px) {
    .page-number .prev {
        margin-right: 10px;
    }
}

.page-number .prev:hover {
    color: #999999;
}

.page-number .next {
    margin-left: 40px;
    color: #000000;
    transition: 0.3s all ease-in-out;
}

@media (max-width: 575px) {
    .page-number .next {
        margin-left: 10px;
    }
}

.page-number .next:hover {
    color: #999999;
}

.modal ::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.modal ::-webkit-scrollbar-track {
    background: #ffffff;
}

.modal ::-webkit-scrollbar-thumb {
    background: #999999;
}

.modal .gap-20 {
    gap: 20px;
}

.modal .modal-dialog {
    max-width: 1192px;
}

.modal .modal-dialog .modal-content {
    margin: 12px;
}

@media (max-width: 575px) {
    .modal .modal-dialog .modal-content {
        margin: 0;
    }
}

.modal .modal-dialog .modal-content .modal-body .table-details {
    border: 1px solid #999999;
    border-radius: 20px;
    padding: 0px 10px;
}

.modal .modal-dialog .modal-content .modal-body .table-details h2 {
    padding: 15px 10px;
    border-bottom: 1px solid #999999;
    line-height: 1.5;
}

.modal .modal-dialog .modal-content .modal-body .table-details .total-details {
    padding: 0px 10px;
}

.modal .modal-dialog .modal-content .modal-body .table-details .total {
    border-top: 1px solid #999999;
}

.modal .modal-dialog .modal-content .modal-body .table-details .order-btn {
    border-radius: 15px;
}

.modal .modal-dialog .modal-content .modal-body .table-details thead th {
    padding: 10px;
    border-bottom: 1px solid #999999;
}

.modal .modal-dialog .modal-content .modal-body .table-details tbody tr:last-child td {
    border-bottom: none !important;
}

.modal .modal-dialog .modal-content .modal-body .table-details tbody td {
    padding: 10px;
    border-bottom: 1px solid #999999;
}

.modal .modal-dialog .modal-content .modal-body .table-details .product-card-box .product-img {
    max-width: 50px;
    max-height: 50px;
    min-width: 50px;
    aspect-ratio: 1;
    border-radius: 10px;
}

.modal .modal-dialog .modal-content .modal-body .table-details .product-card-box .product-img img {
    aspect-ratio: 1;
    border-radius: 10px;
}

.modal .modal-dialog .modal-content .modal-body .table-details .count-btn {
    padding: 0px 5px;
    border-radius: 20px;
    border: 1px solid #000000;
    max-width: 70px;
}

.modal .modal-dialog .modal-content .modal-body .table-details .count-btn svg {
    min-width: 18px;
    cursor: pointer;
}

.modal-backdrop {
    background-color: #ffffff;
    opacity: 0.97 !important;
}

.navbar {
    padding-top: 15px;
    padding-bottom: 15px;
}

.navbar .navbar-brand {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 575px) {
    .navbar .navbar-brand {
        width: 40px;
        min-width: 40px;
        height: 40px;
    }
}

.navbar .language-dropdown .dropdown-item {
    padding: 4px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
}

.navbar .language-dropdown .dropdown-item:hover {
    background-color: #27262E;
    color: #ffffff;
}

.navbar .language-dropdown .dropdown-item .flag {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 4px;
}

.navbar .language-dropdown .flag {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 5px;
}

@media (max-width: 991px) {
    .navbar .language-dropdown .flag {
        width: 20px;
        height: 20px;
        min-width: 20px;
    }
}

.navbar .language-dropdown .dropdown-btn {
    border: none;
    background-color: transparent;
    font-weight: 500;
    font-size: 16px;
    padding: 0 33px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 991px) {
    .navbar .language-dropdown .dropdown-btn {
        font-size: 14px;
        gap: 6px;
        padding: 0 22px 0 0;
    }
}

.navbar .language-dropdown .dropdown-arrow {
    position: absolute;
    right: 4px;
    top: 0;
    bottom: 0;
    margin: auto;
    pointer-events: none;
}

@media (max-width: 991px) {
    .navbar .language-dropdown .dropdown-arrow {
        width: 16px;
    }
}

.navbar .language-dropdown .dropdown-menu {
    right: 0;
    left: auto;
    max-width: 100px;
    min-width: 100px;
}

.navbar .add-to-cart-btn {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 15px;
    background-color: #27262e12;
    border: none;
}

.navbar .add-to-cart-btn svg {
    fill: #000000;
}

.navbar .add-to-cart-btn .cart-count {
    background-color: #27262E;
    width: 16px;
    height: 16px;
    color: #ffffff;
    top: 9px;
    right: 16px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .navbar .add-to-cart-btn .cart-count {
        top: 2px;
        right: 1px;
    }
}

@media (max-width: 991px) {
    .navbar .add-to-cart-btn {
        width: 40px;
        min-width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .navbar .add-to-cart-btn svg {
        width: 22px;
    }
}

@media (max-width: 360px) {
    .navbar .add-to-cart-btn {
        width: 35px;
        min-width: 35px;
        height: 35px;
    }

    .navbar .add-to-cart-btn svg {
        width: 17px;
    }
}

footer {
    padding: 15px 30px;
    background-color: #27262E;
    color: #ffffff;
}

@media (max-width: 991px) {
    footer {
        padding: 15px;
    }
}

.banner-img img {
    aspect-ratio: 2.25;
}

.category-section .section-heading {
    margin-bottom: 30px;
}

.category-section .category-slider .slick-list {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #27262e08;
}

.category-section .category-slider .slick-slide {
    padding: 0 12px;
}

.category-section .category-slider .category-box {
    background: #f1f1f2;
    border-radius: 15px;
    padding: 10px;
    min-height: 190px;
    box-shadow: #ccdbe8 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}

@media (max-width: 576px) {
    .category-section .category-slider .category-box {
        min-height: 130px;
    }
}

@media (max-width: 576px) {
    .category-section .category-slider .category-box p {
        word-break: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

.category-section .category-slider .category-box .category-img {
    max-width: 100px;
    max-height: 100px;
    min-height: 100px;
    border-radius: 50%;
    aspect-ratio: 1;
}

.category-section .category-slider .category-box .category-img img {
    border-radius: 50%;
    aspect-ratio: 1;
}

@media (max-width: 576px) {
    .category-section .category-slider .category-box .category-img {
        max-width: 60px;
        max-height: 60px;
        min-height: 60px;
        margin-bottom: 10px !important;
    }
}

.product-section {
    margin-bottom: 100px;
}

@media (max-width: 991px) {
    .product-section {
        margin-bottom: 80px;
    }
}

@media (max-width: 576px) {
    .product-section {
        margin-bottom: 60px;
    }
}

.product-section .product-box-section {
    box-shadow: 0px 1px 6px 0px #00000040;
    padding: 10px 10px 20px 10px;
}

.product-section .product-box-section .product-img {
    max-height: 330px;
}

.product-section .product-box-section .product-img img {
    aspect-ratio: 0.8636;
}

.item-details-section .item-details-card {
    padding: 15px 0;
}

.item-details-section .item-details-card .details-img {
    aspect-ratio: 1.22;
    border-radius: 10px;
    overflow: hidden;
}

.item-details-section .item-details-card .slider-nav {
    margin-left: -10px;
    margin-right: -8px;
}

.item-details-section .item-details-card .thumbnail-img {
    aspect-ratio: 1;
    cursor: pointer;
    margin: 0 10px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid transparent;
}

@media (max-width: 360px) {
    .item-details-section .item-details-card .thumbnail-img {
        margin: 0 6px;
    }
}

.item-details-section .item-details-card .read-more-btn {
    font-size: 12px;
    border-radius: 20px;
    padding: 8px 18px;
    background-color: #f2f2f2;
    color: #999999;
}

.item-details-section .slick-current .thumbnail-img {
    border: 1px solid black;
    box-shadow: 0 2px 20px #00000040;
}

.recommended-product-section {
    margin-bottom: 285px;
}

@media (max-width: 575px) {
    .recommended-product-section {
        margin-bottom: 50px;
    }
}

.recommended-product-section .product-slider {
    box-shadow: 0px 1px 6px 0px #00000040;
    padding: 10px 4px;
}

.recommended-product-section .product-slider .slick-slide {
    padding: 0 6px;
}

.recommended-product-section .product-slider .slick-slide .product-card {
    max-width: 285px;
    margin: 0 auto;
}

.recommended-product-section .product-slider .slick-slide .product-card .product-img {
    max-height: 330px;
}

.recommended-product-section .product-slider .slick-slide .product-card .product-img img {
    aspect-ratio: 0.8636;
}

.btn-primary.disabled,
.btn-primary:disabled {
    background-color: #27262E !important;
    border-color: #27262E !important;
}

.page-item.active .page-link {
    background-color: #27262E !important;
    /* Change to your desired color */
    border-color: #27262E !important;
    color: #ffffff !important;
}

.count-modal-btn {
    padding: 0px 5px !important;
}

.order-modal-dialog .modal-content {
    padding: 20px 30px 30px 30px;
    border-radius: 20px;
    border: none;
    box-shadow: 0px 2px 10px 0px #00000040;
    margin: 12px;
}

.add-to-cart-min-w-127px {
    min-width: 127px !important;
}

.add-to-cart-min-w-142px {
    min-width: 142px !important;
}

.slick-dots li {
    width: 8px !important;
    height: 8px !important;
    padding: 0;
}

.slick-dots li button {
    width: 8px !important;
    height: 8px !important;
    padding: 0;
    border-radius: 8px !important;
    background-color: #27262E !important;
    opacity: 0.5 !important;
}

.slick-dots li button:before {
    display: none;
}

.slick-dots li.slick-active {
    width: 24px !important;
    height: 8px !important;
}

.slick-dots li.slick-active button {
    width: 24px !important;
    height: 8px !important;
    background-color: #27262E !important;
    opacity: 1 !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

.active {
    background-color: #27262E !important;
    color: #ffffff !important;
}

.category-arrow {
    background-color: #f9f9f9;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    top: -65px !important;
}

.category-arrow svg {
    fill: #737373;
}

.out-of-stock-text {
    font-size: 0.5em !important;
}

.pwa-support {
    width: 100%;
    max-width: 400px;
    height: auto !important;
    position: fixed !important;
    bottom: 20px;
    z-index: 99999 !important;
    background: white;
    padding: 24px;
    border-radius: 32px;
    box-shadow: 0 7px 8px 0 #848181, 0 0px 11px 0 #000000;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.pwa-support .pwa-heading {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.pwa-support .pwa-text {
    margin-bottom: 16px;
    font-size: 0.875rem !important;
}

.pwa-install-button {
    border-radius: 15px !important;
    color: #ffffff;
    background-color: #27262E;
    border: 1px solid #27262E;
}

.pwa-install-button:hover,
.pwa-install-button:focus,
.pwa-install-button.active {
    color: #ffffff;
}

.pwa-cancel-button {
    background-color: #adb5bd !important;
    color: #000000 !important;
    border-radius: 15px !important;
    padding: 9px 26px !important;
    border: none !important;
    font-weight: 500 !important;
    font-size: 0.875rem !important;
}

.pwa-cancel-button:hover {
    background-color: #d1d5db !important;
    border: none !important;
    color: #000000 !important;
}

.main-content.rtl .category-section .category-slider .prev-arrow {
    left: 10px !important;
    right: auto !important;
}

.main-content.rtl .category-section .category-slider .next-arrow {
    left: 66px !important;
    right: auto !important;
}

.count-product {
    right: -12px;
    top: -3px;
}

 .cursor-default{
    display: none;
}

.shadow-sm{
    display: none;
}