* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.3;
    color: #000;
    background-color: #fff;
}

img {
    display: inline-block;
    height: auto;
}

a {
    text-decoration: none;
    display: inline-block;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}


.header_container {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    padding: 10px 15px;
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: -24px auto;
    padding: 10px 15px;
    display: block;
}

.spacing {
    padding: 40px 0;
}

/* /////////////////////////////////////////////////////////////////////////
//////////////////////         Header       /////////////////////////////
////////////////////////////////////////////////////////////////////////// */



.header_wrapper {
    min-height: 101px;
}

.header {
    top: 0;
    position: fixed;
    width: 100%;
    right: 0;
    left: 0;
    background: #fff;
    box-shadow: 0 -1px 4px 0 rgb(26 26 26 / 8%),
        0 4px 8px 0 rgb(26 26 26 / 12%);
    z-index: 6;
}

.header_logo {
    display: flex;
    align-items: center;
}

.header_logo {
    display: flex;
    align-items: center;
}

.header_logo .logo {
    /* width: 100%;
    max-width: 200px; */
}

.header_logo .logo img {
    max-width: 150px;
}


.header_wrapper .header .search {
    margin-left: 30px;
    display: flex;
    justify-content: space-around;
}

.header_logo .search a {
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 15px;
}

.header_logo a i {
    margin-right: 10px;
    font-size: 25px;
}

.header_logo a.ad {
    align-self: center;
    background-color: #bf1f31;
    border-radius: 10px;
    color: #fff !important;
    transition: background-color .3s;
    padding: 6px 24px;
    width: max-content;
    font-size: 14px;
}
.header_logo a.ad:hover {
    background-color: #42ad6e;
}

.header_logo a.search_icon {
    color: #1a1a1a;
    padding: 0 10px;
    font-weight: 600;
    display: none;
}

.header_nav ul {
    display: flex;
    list-style: none;
}

.header_nav ul li {
    margin: 0 5px;
}

.header_nav ul li a span {
    display: block;
    margin-top: 3px;
}

.header_nav ul li a {
    color: #000;
    text-align: center;
    font-size: 15px;
    padding: 5px 10px;
    position: relative;
    text-transform: capitalize;
}

.header_nav ul li a:hover {
    color: #bf1f31;
}


.header_nav ul li a i {
    font-size: 25px;
}


.header_nav ul li a:after {
    position: absolute;
    width: 100%;
    content: "";
    left: 0;
    border: 1px solid #bf1f31;
    width: 0px;
    top: 100%;
    opacity: 0;
    transition: all 0.3s ease;

}

.header_nav ul li a:hover:after {
    opacity: 1;
    transition-property: width, opacity;
    transition: all 0.3s ease;

    width: 100%;
}

.header.alert{
    width: 98%;
    margin: auto;
}

/* ////////////////////////////// header End ////////////////////////////////// */


@media (max-width:575px) {
    .jumbotron {
        padding: 15px 0px;
        margin-bottom: 15px;
    }
}



.body_content {
    width: 100%;
}

.top_categories_wrap {
    padding-top: 40px;
}

.search_container {
    background-color: #fff;
    border-radius: 4px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
    margin-top: 30px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
        rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    position: relative;
}

.search_container form {
    font-size: 15px;
}
@media (max-width:575px) {
    .search_container form {
        margin-bottom: 30px;
    } 
}
@media (max-width:480px) {
    .search_container form {
        margin-bottom: 35px;
    } 
}

.search_container form .form_field {
    margin: 10px 0;
    padding: 0 16px;
    display: flex;
    align-items: center;
}

.search_container form .search {
    display: flex;
    width: 100%;
    position: relative;
}

.search_container form .search .form_field {
    width: 100%;
    max-width: 33%;
    background: #cad1d9;
}

.search_container form .form_field.radio input[type='radio'] {
    width: 20px;
    height: 20px;
    margin: 0 10px;
}

.search_container form .form_field.radio {
    display: flex;
    align-items: center;
}

.search_container form .form_field.radio label {
    margin-bottom: 0;
}

.search_container form .search .form_field button {
    background: transparent;
    width: 100%;
    text-align: left;
    font-size: 14px;
    border: none;
    min-height: 40px;
    cursor: pointer;
}

.search_container form .search .form_field:first-child {
    border-right: 1px solid #aaa;
    margin-right: 0;
}

.search_container form .search .form_field button i {
    font-size: 20px;
    vertical-align: middle;
}

.search_container form .search .form_field button i:last-child {
    float: right;
}

.search_container form .search .form_field i:first-child {
    padding-right: 10px;
}

.search_container form .search .form_field input {
    border: none;
    width: 100%;
    outline: none;
    font-size: 14px;
    min-height: 40px;
    background: transparent;
    padding: 10px 15px;
}

.search_container form .search .form_field select {
    background: #cad1d9;
    border-color: #cad1d9;
}

.search_container form .form_field.price button {
    padding: 10px 16px;
    color: #1a1a1a;
    border-radius: 16px;
    border: 1px solid #cad1d9;
    background: transparent;
    cursor: pointer;
    position: relative;
}

.search_container form .form_field.price {
    position: relative;
}

.search_container .form_field.price.hide {
    visibility: hidden;
    opacity: 0;
}


.search_container .form_field.price .price_range {
    width: 100%;
    position: absolute;
    top: 100%;
    background: #fff;
    max-width: 450px;
    padding: 16px 20px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    margin-top: 10px;
    border-radius: 4px;
    display: none;
    z-index: 2;
}

.search_container .form_field.price .price_range .form {
    display: flex;
    width: 100%;
}


.search_container .form_field.price .price_range .form .form_field label {
    display: block;
    padding-bottom: 5px;
}

.search_container .form_field.price .price_range .form .form_field {
    display: block;
    padding: 0 10px;
    position: relative;
}

.search_container .form_field.price .price_range .form .form_field input[type="number"] {
    position: relative;
    min-height: 38px;
    outline: none;
    border: 1px solid #aaa;
    padding: 5px 15px 5px 10px;
    width: 100%;
    border-radius: 4px;
}

.search_container .form_field.price .price_range .form .form_field i {
    position: absolute;
    top: 56%;
    right: 15px;
    color: #aaa;
}

.search_container .form_field.price .price_range .wip_off {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 1px solid #aaa;
    margin-top: 20px;
}

.search_container form .form_field.price.open .price_range {
    display: block;
    right: auto;
    left: 0;
}

.search_container .form_field i {
    color: #7a8896;
}

.search_result_wrap {
    position: absolute;
    top: 100%;
    background: #fff;
    z-index: 2;
    padding: 15px 20px;
    width: 100%;
    box-shadow: rgb(0 0 0 / 16%) 0px 10px 36px 0px, rgb(0 0 0 / 6%) 0px 0px 0px 1px;
    display: none;
}

.search_container form .search.open .search_result_wrap {
    display: flex;
}

.search_result_wrap .search_menu {
    border-right: 1px solid #e6ebef;
    margin-right: 10px;
    width: 100%;
    max-width: 30%;
}


.search_result_wrap .search_menu ul li,
.search_result_wrap .search_result ul li {
    padding: 0 16px;
}

.search_result_wrap .search_menu ul li a,
.search_result_wrap .search_result ul li a {
    padding: 11px 8px;
    font-size: 16px;
    display: block;
    color: #1a1a1a;
}

.search_result_wrap .search_menu ul li a:hover,
.search_result_wrap .search_result ul li a:hover,
.search_result_wrap .search_menu ul li a.active {
    color: #bf1f31;
    font-weight: bold;
    background: #fef0e9;
    border-radius: 5px;
}




.search_result_wrap .search_menu ul li a i:last-child {
    float: right;
    display: none;
}

.search_result_wrap .search_result {
    width: 100%;
}

.search_result_wrap .search_result ul {
    display: none;
}

@media (min-width: 992px) {
    .search_result_wrap .search_result ul.active {
        display: block;
    }
}

.search_result_wrap .search_menu ul li a i:first-child,
.search_result_wrap .search_result ul li a i:first-child {
    margin-right: 16px;
}

.search_result_wrap .search_menu ul li a:hover i:last-child,
.search_result_wrap .search_menu ul li a.active i:last-child {
    display: block;
}

.search_container .search_resuts {
    position: absolute;
    width: 100%;
    bottom: -15px;
    margin: auto;
    text-align: center;
    padding: 0 7px;
    left: 0;
}



.search_container .search_resuts button {
    background-color: #00ab4c;
    padding: 10px 16px;
    border: 1px solid #00ab4c;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
}


.top_categories_wrap .order_place {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.top_categories_wrap .order_place a {
    background-color: #bf1f31;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    display: flex;
    width: max-content;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.top_categories_wrap .order_place a i {
    margin-left: 10px;
    font-size: 20px;
}

h3 {
    font-size: 24px;
    padding: 10px 0;
}



.top_categories_wrap .top_categories .cards {
    display: inline-block;
    position: relative;
    max-width: 90%;
}

.top_categories_wrap .top_categories .cards a h4 {
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
    font-size: 20px;
    color: #fff;
    padding: 15px 10px;
    text-transform: capitalize;
}

.top_categories_wrap .slick-dots li.slick-active button:before {
    opacity: .75;
    color: blue;
    width: 10px;
    height: 10px;
    background: blue;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.top_categories_wrap .slick-dots li button:before {
    opacity: .40;
    color: #aaa;
    width: 10px;
    height: 10px;
    background: #aaa;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.top_categories_wrap .categories {
    background: #f4f6f7;
    padding: 20px 0;
}

.top_categories_wrap .categories .container {
    display: flex;
    flex-wrap: wrap;
}

.top_categories_wrap .categories .categories_text {
    width: 100%;
    max-width: 24%;
    border-bottom: 1px solid #aaa;
    padding-bottom: 10px;
    margin-bottom: 20px;
    /* box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    margin-right: 10px;
    border-radius: 5px; */
}

.top_categories_wrap .categories .categories_text h4 {
    font-size: 18px;
    padding: 10px 10px;
}

.categories .categories_text ul {}

.top_categories_wrap .categories .categories_text ul li a {
    font-size: 14px;
    color: #000;
    display: block;
    padding: 6px 10px;
    text-transform: capitalize;
}

.categories .categories_text ul li {
    /* padding: 0 5px; */
}

.categories .categories_text ul li a:hover {
    color: #bf1f31;
    font-weight: bold;
    transition: all 0.3s ease;
}

@media (min-width: 992px) {
    .top_categories_wrap .categories .categories_text:nth-last-child(-n+4) {
        border: none;
    }
}

@media (min-width: 768px) {
    .top_categories_wrap .categories .categories_text:nth-last-child(-n+3) {
        border: none;
    }
}

@media (min-width: 576px) {
    .top_categories_wrap .categories .categories_text:nth-last-child(-n+2) {
        border: none;
    }
}

/* ///////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////// Footer ///////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////// */

footer.footer {
    background-color: #474747;
    color: #fff;
}

.footer .footer_menu {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer .footer_menu .section h3 {
    font-size: 16px;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
    text-transform: uppercase;
    margin-top: 0;
}

.footer .footer_menu .section {
    width: 100%;
    max-width: 25%;
    padding: 10px 15px;
}

.footer .footer_menu .section ul {
    padding: 20px 0;
    text-align: left;
}

@media (max-width:575px) {
    .footer .footer_menu .section ul {
        padding: 10px 0;
    }
}

.footer .footer_menu .section ul li a {
    color: #fff;
    display: block;
    padding: 5px 0;
    display: inline-block;
}

.footer .footer_menu .section .content_details li i {
    padding-right: 10px;
}

.footer .footer_menu .section .content_details li {
    display: flex;
}

.footer .footer_menu .section ul li {
    margin-bottom: 5px;
}

.footer .footer_menu .section ul li a:hover {
    color: #bf1f31;
    transition: all 0.3s ease;
}

.footer .footer_menu .section ul li p a {
    background-color: #bf1f31;
    padding: 12px 15px;
    border-radius: 10px;
    margin-top: 15px;
    line-height: 1;
    display: block;
    width: 100%;
    max-width: 140px;
    color: #fff !important;
    text-align: center;
}

.footer .footer_menu .section ul li p a:hover {
    background-color: #499f6c;
}

.footer .group {
    padding: 15px 5px;
    border: 1px solid #fff;
    border-right: 0;
    border-left: 0;
}

.footer .group ul {
    display: flex;
    flex-wrap: wrap;
}

.footer .group ul li:first-child {
    margin-right: 10px;
    font-weight: 600;
}

.footer .group ul li a {
    padding: 2px 5px;
    color: #fff;
}

.footer .group ul li a:hover {
    color: #bf1f31;
    transition: all 0.3s ease;
}


.store ul li a img {
    width: 100%;
    max-width: 150px;
}


.copyright {
    align-items: center;
}

.footer .copyright p {
    text-align: center;
}

.footer .copyright .social {
    text-align: center;
    padding: 10px 0;
    text-transform: capitalize;
}

.footer .copyright .social ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .copyright .social ul li {
    margin: 5px;
}

.footer .copyright .social ul li a {
    color: rgb(255, 255, 255);
    font-size: 20px;
    padding: 10px;
    border: 1px solid;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #00ab4c;
    border-color: #00ab4c;
    border-radius: 10px;
}

.footer .copyright .social ul li a:hover {
    color: #bf1f31;
    border-color: #bf1f31;
    transition: all 0.3s ease;
    background-color: #fff;
}

.mobile_button {
    display: none;
}

/* //////////////////////////////// *****Footer End **** ///////////////////////////// */

@media (min-width: 992px) {
    .back_button {
        display: none;
    }
}


/* Header Responsive */

@media (max-width: 1200px) {
    .dashboard_login .col-md-6.offset-md-3.align-items-center {
        flex: 100%;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .dashboard_login .extra-padding-6 {
        padding: 14px 5px;
    }
    .social-media{
        display: block !important;
    }
    .google-icon{
        display:block !important;
        text-align:center;
        margin: 0 0 10px 0;
    }
    .fb-icon{
        display:block !important;
        text-align:center;
    }
}



@media (max-width: 1080px) {
    .login-9 .login-9-warp {
             width: 300px;
    }
}

@media (max-width: 1024px) {
    .footer .footer_menu .section {
        max-width: 33.33%;
    }
}



@media (max-width: 991px) {
    .mobile_button {
        display: flex;
        align-items: center;
        justify-content: center;
    }
   

    .header_logo {
        width: 100%;
        justify-content: space-between;
    }

    nav.header_nav {
        position: absolute;
        width: 100%;
        top: 100%;
        background: #fff;
        z-index: 2;
        left: 0;
        right: 0;
        height: 100vh;
        border-top: 2px solid #000;
        left: -100%;
        transition: all 0.3s cubic-bezier(0.25, 0.1, 0.6, 0.55);
    }

    .menu_open nav.header_nav {
        left: 0;
    }

    .header_nav ul {
        flex-direction: column;
        padding: 20px 15px;
    }

    .header_nav ul li a {
        display: flex;
        width: 100%;
        text-align: left;
        align-items: center;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 14px;
    }


    .header_nav ul li a i {
        font-size: 20px;
        padding-right: 10px;
        color: #00ab4c;
    }

    .header_nav ul li a:after {
        display: none;
    }

    .header_nav ul li a:hover {
        color: #bf1f31;
    }

    .header_logo .search .mobile_button a {
        color: #bf1f31;
        transition: all 0.3s ease;
        width: 30px;
        height: auto;
        padding: 5px;
    }

    .header_logo .search .mobile_button a.close {
        display: none;
        transition: all 0.3s ease;
    }

    .menu_open .header_logo .search .mobile_button a.open {
        display: none;
    }

    .menu_open .header_logo .search .mobile_button a.close {
        display: block;
        opacity: 1;
    }

    .header_wrapper .header .search {
        justify-content: space-between;
        width: 70%;
    }

    .header_logo .search .mobile_button a i {
        margin: 0;
    }

    .footer .footer_menu .section {
        max-width: 33.33%;
    }

    .top_categories_wrap .categories .categories_text {
        max-width: 33.33%;
    }

    .search_container form .search {
        flex-wrap: wrap;
    }

    .search_container form .search .form_field {
        max-width: 100%;
    }

    .search_result_wrap {
        top: 0;
        right: -100%;
        position: fixed;
        z-index: 99;
        display: block !important;
        overflow: auto;
        height: 100%;
        transition: all 0.4s ease;
    }

    .search_container form .search.open .search_result_wrap {
        right: 0;
    }

    .search_result_wrap .search_menu {
        max-width: 100%;
    }

    .search_result_wrap .search_result>ul {
        width: 100%;
        max-width: 100%;
        position: fixed;
        top: 0;
        background: #fff;
        z-index: 999;
        height: 100%;
        right: -100%;
        transition: all 0.4s ease;
        display: block;
    }

    .search_result_wrap .search_result>ul.show {
        right: 0;
    }

    .search_result_wrap .search_menu ul li,
    .search_result_wrap .search_result ul li {
        padding: 10px 0px;
        border-bottom: 1px solid #cac5c5;
    }

    .back_button {
        display: flex;
        width: 100%;
        justify-content: center;
        background: #fff;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
        position: relative;
        padding: 10px 10px;
        align-items: center;
        color: #bf1f31;
    }

    .back_button h3 {
        margin: 0;
    }

    .back_button i {
        position: absolute;
        left: 0;
        padding: 10px 20px;
        margin-left: 10px;
        display: inline-block;
        font-size: 20px;
        cursor: pointer;
    }

    .search_result_wrap .search_menu ul li a i:last-child {
        display: block;
        color: inherit;
    }

    .search_result_wrap .search_result ul li {
        padding-left: 10px;
        padding-right: 10px;
    }

    .search_result_wrap .search_result ul li.back_button {
        margin-bottom: 15px;
    }

    .header_nav ul li a {
        padding: 10px 10px;
        box-shadow: 0px 1px 0px 0px #aaa;
        border-radius: 0;
    }

    .header_nav ul li {
        margin: 5px 0;
    }

}


@media (max-width: 767px) {
    .top_categories_wrap .categories .categories_text {
        max-width: 50%;
    }

    .footer .footer_menu .section {
        max-width: 50%;
    }

    .search_container {
        padding: 20px 10px;
    }

    .search_container form .form_field.radio {
        padding: 0;
        justify-content: center;
        align-items: center;
    }

    .search_container form .form_field.radio label {
        margin: 0
    }

    .dashboard_login .extra-padding-6 {
        /* padding: 30px 10px; */
    }

    .sign-in-form .forgot-password {
        position: static !important;
        text-align: left !important;
        margin: 10px 0 !important;
    }

}

@media (max-width: 575px) {

    .header_logo a.search_icon {
        display: none;
    }

    .header_wrapper .header .search {
        width: auto;
        margin: 0;
    }


    .mobile_button {
        padding-left: 20px;
    }

    .header_logo .logo {
        max-width: 110px;
    }

    .header_logo .logo img {
        width: 100%;
    }

    .header_container {
        padding: 10px;
    }

    .img {
        width: 100%;
    }

    .header_logo .logo img {
        width: 100%;
    }

    .mobile_button {
        padding-left: 10px;
    }

    .header_logo a.ad i {
        font-size: 14px;
    }

    .top_categories_wrap .top_categories .cards a img {
        width: 100%;
    }

    .top_categories_wrap .top_categories .slick-slide {
        margin: 0 auto importent;
        text-align: center;
    }


    .top_categories_wrap .categories .categories_text {
        max-width: 100%;
    }

    .top_categories_wrap .categories .categories_text:nth-last-child(-n+1) {
        border: none;
    }

    .footer .footer_menu .section {
        max-width: 100%;
    }
   

    .footer .group ul li {
        margin: 0 5px;
    }

    .copyright .social h3{
        margin-top: 10px;
    }

    .search_result_wrap {
        padding: 10px;
    }

    .back_button h3 {
        font-size: 20px;
    }

    .back_button i {
        padding: 10px;
    }

    .search_result_wrap .search_menu ul li a,
    .search_result_wrap .search_result ul li a {
        padding: 5px 10px;
        position: relative;
    }

    .search_result_wrap .search_menu ul li a i:last-child {
        padding-top: 2px;
        position: absolute;
        right: 0;
        top: 50%;
        padding-right: 10px;
        transform: translateY(-50%);
    }

    .search_container .search_resuts {
        bottom: -23px;
    }

    .dashboard_login .socail-btn a {
        width: 100%;
        margin: 5px 0;
    }
}

@media (max-width:360px) {
    .header_logo a.ad {
        max-width: 125px;
    }
}


.panel.panel-default {
    padding: 20px;
    background: #f4f4f4;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
} 
/* for search */
.search-container {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 8px;
    width: 325px;
}


@media only screen and (max-width: 850px) {
    .search-container{
        width: 280px;
    }
  }

  @media only screen and (max-width: 720px) {
    .search-container{
        width: 180px;
    }
  }


  @media only screen and (max-width: 520px) {
    .search-container{
        width: 150px;
    }
  }
  @media only screen and (max-width: 468px) {
    .search-container{
        width: 70px;
    }
  }

  @media only screen and (max-width: 362px) {
    .search-container{
        display: none;
    }
  }


.search-icon {
    padding: 0 8px;
}

.search-input {
    border: none;
    outline: none;
     width: 100%;

}
.cover {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
    /* max-width: 800px; Adjust as needed */
    margin: 0 auto;
  }

  .left,
  .right {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
  }

  .scroll-images {
    display: flex;
    gap: 10px; 
    transition: transform 0.3s ease-in-out;
    overflow-x: scroll;
    
  }
  .scroll-images::-webkit-scrollbar {
    display: none;
  }

  .child {
    width: 100px;  
    /* height: 150px;   */
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .child-img {
    width: 50px;  
    height: 50px;  
    object-fit: contain;
  }
  .image-name {
    margin-top: 5px; 
    font-size: 14px;  
  }

  /*  Add styles for the buttons */
  .left {
    color: #000;
  }

  .right {
    color: #000;
  }
  .card {
    border-radius: 10px;  
    /* margin: 12px 0px;  */
    border: 1.5px solid rgb(8, 8, 8);
    min-height: 340px; 
    margin-top: 30px;
    max-width: 202px !important;
  }
  .card-img-top{
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    /* height: 110px; */
    max-width: 200px !important;
    box-shadow: 2px 2px 2px #8080809e;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }
 
.location {
    display: flex;
    align-items: center;  
}

.location img {
    margin-right: 20px; 
    margin-left: 5%;
    height: 20px;  
    width: 20px;  
}
.small {
    font-size: 12px; 
    /* min-height: 80px; */
     
}
.clocktimelisting{
     margin-top: 15%;
     display: flex;
     align-items: center;
         
}
.clock-icon {
    margin-right: 20px; 
    margin-left: 5%; 
}
.card-img-index{
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;

}
.cardindex{
    border-radius: 10px;  
    margin: 20px; 
    border: 1.5px solid rgb(8, 8, 8); 

}
.card-title-listing{
    color: red;
}
.favorite-image {
    width: 30px; 
    height: 30px; 
    margin-right: 10px; 
     
        
  }
  /* .listingg{
    display: flex;  
    align-items: center;
  } */
  .card-image-container {
    text-align: right;
    margin-top: -21px;
    margin-bottom: 5px;
    

  }
  .inlineblock{
    display: flex;
    margin-bottom: 2%;
  }
 .gap{
    margin-left: 4%;
    padding-right: 35%;
 }
 .radio{ 
    
    margin-left: 16%;
 }
 .radio1{
    margin-left: 8%;
    padding-top: 2%;
 }
 .radio2{
    margin-left: 2%;
    padding-top: 2%;
 } 
 .radio3{
    margin-left: -4%;
    padding-top: 2%;
 }
 .sidebar{
    margin-left: 10%;
 }

 .localisation{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid rgb(233, 8, 8);
    padding: 5px 8px;
    border-radius: 30px;
    position: relative;
 }

 .localisation-dropdown{
    padding: 10px 5px 5px 5px;
    border: 1px solid red;
    position: absolute;
    z-index: 99;
    margin: 0 30px;
    top: 65px;
    left: 0;
    right: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    line-height: 28px;
    display: none;
 }
 .localisation-dropdown-value{
    margin-bottom: 0px !important;
    padding: 5px 10px;
    /* border: 1px solid rgb(5, 202, 5); */
    border-radius: 30px;
     
 }
 .dropdown-select{
    border: 1px solid rgb(6, 223, 6);
    /* padding: 5px 8px !important; */
    border-radius: 10px;
 }
 .categorystyle{
    padding: 4% 3%;
    border-radius: 18px;
 }
 .subcategorystyle{
    padding: 4% 19%;
    border-radius: 18px;
 }
 .brandstyle{
    padding: 4% 28%;
    border-radius: 18px;
 }
 .filter{
    border-radius: 25px;
    padding: 14px;
    margin-left: 48px;
    width: 64%;
    border: 1px solid black;
    margin-bottom: 5px;
 }
.reset{
    border-radius: 21px;
    
    margin-left: 54px;
    width: 59%;
    border: 1px solid black;
    margin-bottom: 5px;
    overflow: hidden; 
    background-color: #585656;
    color: white;
}

.category-dropdown{
    padding: 5px 15px 0 15px;
    margin: 0 20px;
    border: 1px solid rgb(46, 44, 44);
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    border-radius: 50px;
}
.Pertinence{
    display: flex;
    flex-direction: column;

}
/* CSS for the custom alert messages */
.custom-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 9999;
}

.alert-content {
    display: flex;
    align-items: center;
}

.alert-icon {
    font-size: 24px;
    margin-right: 10px;
}

.alert-text {
    font-size: 16px;
}




/*+++++++++++++++++++++++++++++++++++++++ New Navbar design ++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

  