/*
 * LaraClassifier - Classified Ads Web Application
 * Copyright (c) BeDigit. All Rights Reserved
 *
 * Website: https://laraclassifier.com
 *
 * LICENSE
 * -------
 * This software is furnished under a license and may be used and copied
 * only in accordance with the terms of such license and with the inclusion
 * of the above copyright notice. If you Purchased from CodeCanyon,
 * Please read the full License from here - http://codecanyon.net/licenses/standard
 */

/* Your custom CSS here... */

.header .navbar {
    border-bottom: 0;
}


#homepage #getSponsoredPosts {
    display: none;
}

#homepage #getSearchForm {
    background: #f8f9fa;
    margin-top: -20px;
    padding-top: 10px;
}

#category_search_form_container {
    background: #f8f9fa !important;
    margin: -20px auto 20px !important;
    padding-top: 20px;
}

#category_search_form_container .container {
    padding: 20px;
    margin: 0 auto !important;
}

#homepage #getSearchForm>.container {
    margin: 0 auto !important;
    background: transparent !important;
    padding: 10px 0;
}

.breadcrumb-item {
    border: 1px solid;
    padding: 5px;
    color: #ab2564 !important;
    border-radius: 3px;
    position: relative;
    margin-right: 16px;
}

.breadcrumb-item a {
    color: inherit;
}

.breadcrumb-item+.breadcrumb-item::before {
    position: absolute;
    padding-right: 0;
    color: #6c757d;
    content: var(--bs-breadcrumb-divider, ">");
    left: -13px;
}

.search_result_posts_listing {
    position: relative;
    margin-bottom: 15px;
}

.search_result_posts_listing .ribbon-horizontal {
    position: absolute;
    top: -12px;
    right: 5px;
    border-radius: 4px;
    border-right: 0;
    padding: 1px;
    letter-spacing: 0.5px;
    color: #fff;
    z-index: 9;
}

.search_result_posts_listing .ribbon-horizontal.green {
    background: #16a085;
}

.ribbon-horizontal.orange {
    background: #fb8d17;
}

#categoryBadge {
    display: none;
}

.page-content .inner {
    border: none;
    background: none;
}

/* .swiper.main-gallery {
    box-shadow: none;
} */

.safty-tip-card .card-content {
    max-height: 200px;
    overflow-y: scroll;
}

.postadd .btn.t-b.btn-block {
    background: #be206b;
}

.info-row span {
    font-weight: bold;
    color: #be206b;
}

.card-user-info .grid-col .col {
    padding: 0;
    color: #be206b;
    font-weight: bold;
}

a:not(.btn, .icon-color, .footer-nav li a) {
    color: #be206b !important;
}

.p-price-tag {
    background: #be206b;
}

.p-price-tag::before {
    border-top-color: #be206b;
}

.main-gallery .swiper-button-prev::after,
.main-gallery .swiper-button-next::after {
    background: rgb(190, 32, 107);
}

.card-header {
    color: #be206b;
}

#itemsDetailsTabs button {
    color: #be206b;
}

.theme-color {
    color: #be206b;
}

.form-control {
    border-color: #be206b;
}

.title-2 {
    color: #be206b;
}

.reg-sidebar h3 {
    color: #be206b;
}

#signupBtn {
    background: #be206b;
    border: none;
}

.input-group-text {
    border-color: #be206b;
}

.modal-title {
    color: #be206b;
}


[type="submit"] {
    background: #ff469e;
    border: none;
}

.iconbox * {
    color: #be206b !important;
}

.btn-listing {
    background: #be206b;
    color: #fff;
    border: none;
}


.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover,
.pagination>li.page-item.active .page-link {
    background-color: #be206b;
    border-color: #be206b;
    color: #fff;
}

#search button {
    border: none;
    background: #be206b;
}


.animated_border {
    border-color: #be206b !important;
    padding: 3px;
}

.ribbon-horizontal.green+div.animated_border {
    position: relative;
    overflow: hidden;
}

.ribbon-horizontal.green+div.animated_border .border-span:nth-child(1) {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    padding: 0;
    height: 3px;
    background: linear-gradient(to right, #b9b8b9, #be206b);
    animation: animate1 2s linear infinite;
}

.btn-theme {
    background: #be206b;
    color: #fff !important;
    font-weight: bold;
}




#AddMoneyModal .modal-dialog {
    width: 330px;
    max-width: 85%;
}


.add_money_options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.cutstom_radio_input {
    position: relative;
    height: 100px;
    width: 100px;
}

.cutstom_radio_input input {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    opacity: 0;
}

.cutstom_radio_input label {
    position: relative;
    z-index: 0;
    display: flex;
    width: 100%;
    height: 100%;
    margin: 0;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    box-shadow: 0 3px 6px -3px #ccc;
    border-radius: 5px;
    font-size: 18px;
}

.cutstom_radio_input input:checked+label {
    background: #be206b;
    color: #fff;
    box-shadow: 0 3px 7px 3px #ccc;
}







@keyframes animate1 {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.ribbon-horizontal.green+div.animated_border .border-span:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    padding: 0;
    width: 3px;
    background: linear-gradient(to bottom, #b9b8b9, #be206b);
    animation: animate2 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate2 {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

.ribbon-horizontal.green+div.animated_border .border-span:nth-child(3) {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    padding: 0;
    height: 3px;
    background: linear-gradient(to left, #b9b8b9, #be206b);
    animation: animate3 2s linear infinite;
}

@keyframes animate3 {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.ribbon-horizontal.green+div.animated_border .border-span:nth-child(4) {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 0;
    width: 3px;
    background: linear-gradient(to top, #b9b8b9, #be206b);
    animation: animate4 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate4 {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(-100%);
    }
}














@media only screen and (max-width: 991px) {
    .phone_whats_app_btns {
        position: fixed;
        bottom: 0;
        display: flex;
        z-index: 999;
        justify-content: start;
        width: 100%;
        left: 0;
    }

    .phone_whats_app_btns .btn {
        margin: 0;
        border-radius: 0;
        font-size: 18px;
    }
}

/* design for sm */
@media only screen and (max-width: 767px) {

    .search_result_posts_listing .add-title {
        font-size: 13px;
        font-weight: normal;
        padding: 0;
        line-height: 16px;
        display: block;
        display: -webkit-box;
        max-width: 100%;
        max-height: 31px;
        margin: 0 auto 0px;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .search_result_posts_listing .add-title+p {
        display: block;
        display: -webkit-box;
        max-width: 100%;
        max-height: 48px;
        margin: 0 auto 7px;
        font-size: 12px;
        line-height: 15px;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .search-breadcrumb {
        margin-bottom: 20px;
    }

    .carousel {
        height: 115px !important;
    }

    .carousel .right-button {
        right: 0;
    }

    .carousel .left-button {
        left: 0;
    }

    .image-count {
        top: 10px;
        bottom: unset !important;
        right: 0px;
        left: unset !important;
        background: #ccc !important;
        padding: 0 3px !important;
        color: #292b2c !important;
    }

    .photobox {
        padding: 0 !important;
        align-self: center;
    }

    #homepage #getSearchForm .container.mt-3 {
        display: none;
    }

    .navbar-custom-search {
        display: block;
    }

    /* #category_search_form_container {
        margin: 0px auto 20px !important;
    } */
}