@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #00ab6b;
    --primary-dark: #008f58;
    --primary-light: #e6f7f0;
    --accent-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-bg: #0f172a;
    --card-bg: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.12);
}

body {
    font-family: 'Cairo', system-ui, -apple-system, sans-serif !important;
    direction: rtl;
    text-align: right;
    font-weight: 400;
    font-size: 15px;
    background-color: #f4f6f9;
    color: var(--text-primary);
    padding-top: 75px;
    padding-bottom: 0px !important;
}

/* Header & Navigation Styling */
#header {
    background: linear-gradient(135deg, #00ab6b 0%, #008f58 100%) !important;
    box-shadow: 0 4px 20px rgba(0, 171, 107, 0.2);
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    width: 100%;
    backdrop-filter: blur(10px);
}

.navbar-brand img {
    height: 42px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 14px !important;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    transform: translateY(-1px);
}

/* Modern Card Layout */
.adListDiv {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    padding: 16px;
    margin-bottom: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.adListDiv:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 171, 107, 0.4);
}

.adListDivImg {
    border-radius: var(--radius-sm);
    overflow: hidden;
    background-color: #f1f5f9 !important;
    position: relative;
}

.adListDivImg img {
    border-radius: var(--radius-sm);
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease !important;
}

.adListDiv:hover .adListDivImg img {
    transform: scale(1.08) !important;
    opacity: 0.95;
}

.adListDivTitle {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary) !important;
    line-height: 1.5;
    margin-top: 8px;
    margin-bottom: 10px;
    display: block;
}

.adListDivTitle:hover {
    color: var(--primary-color) !important;
}

.adListDivTags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--text-secondary);
    padding-top: 8px;
    border-top: 1px dashed var(--border-color);
}

.adListDivTags span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Badges */
.adListDivLabel {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.adListDivLabel.yellow {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.adListDivLabel.red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.adListDivLabel.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

/* Custom Search Box */
#searchForm {
    position: relative;
    margin-bottom: 24px;
}

#searchForm input {
    border-radius: 30px;
    padding: 14px 24px 14px 60px;
    font-size: 15px;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

#searchForm input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 171, 107, 0.15);
}

#searchForm button {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: background 0.2s ease;
}

#searchForm button:hover {
    background: var(--primary-dark);
}

/* Category Filter Badges */
.allCityHarajInner {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.allCityHarajInner .btn {
    border-radius: 20px;
    font-size: 13px;
    padding: 6px 16px;
    background: #fff;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-weight: 600;
    transition: all 0.25s ease;
}

.allCityHarajInner .btn:hover, .allCityHarajInner .btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 171, 107, 0.25);
}

/* Floating Bottom Navigation for Mobile */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 62px;
    background: #ffffff;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
    z-index: 999;
    border-top: 1px solid var(--border-color);
}

.mobile-bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 600;
    text-decoration: none !important;
    gap: 3px;
    transition: color 0.2s ease;
}

.mobile-bottom-nav-item i {
    font-size: 18px;
}

.mobile-bottom-nav-item.active, .mobile-bottom-nav-item:hover {
    color: var(--primary-color);
}

.mobile-bottom-nav-item.add-btn {
    background: var(--primary-color);
    color: #ffffff !important;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    margin-top: -20px;
    box-shadow: 0 4px 12px rgba(0, 171, 107, 0.4);
    flex: none;
}

@media (max-width: 991px) {
    .mobile-bottom-nav {
        display: flex;
    }
}

/* Action Buttons */
.btn-whatsapp {
    background-color: #25d366 !important;
    color: #fff !important;
    font-weight: 700;
    border-radius: var(--radius-sm);
    box-shadow: 0 3px 8px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #1ebe57 !important;
}

.btn-call {
    background-color: #0284c7 !important;
    color: #fff !important;
    font-weight: 700;
    border-radius: var(--radius-sm);
}

.btn-call:hover {
    background-color: #0369a1 !important;
}

a, a:hover, a:focus, input, select, textarea, button, .btn {
    text-decoration: none !important;
    outline: none !important;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
}
.close{
    position: absolute;
    left:0px;
}
.btn {
    font-weight: 700;
    padding: 0.43rem 0.75rem 0.321rem 0.75rem;
}
.form-control {
    color: #000;
}
.form-control-lg {
    padding: 0.7rem 1rem 0.5rem 1rem;
    font-size: 15px;
}
.btn-lg {
    padding: 0.8rem 1rem 0.576rem 1rem;
    font-size: 16px;
    line-height: 1.5;
}
.container-fluid {
    padding-right: 30px;
    padding-left: 30px;
}
select.form-control {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    padding-left: 30px;
    background: #fff url(img/caret.jpg) no-repeat 10px 50%;
}

#header {
    background-color: #007bff !important;
    -webkit-box-shadow: 0 0.25rem 0.125rem 0 rgba(0,0,0,0.05);
    box-shadow: 0 0.25rem 0.125rem 0 rgba(0,0,0,0.05);
    position: fixed;
    z-index: 6;
    top: 0;
    right: 0;
    width: 100%;
}
.navbar-brand {
    padding: 0;
    margin: 0;
    margin-left: 1rem;
}
.bg-light {
    background-color: transparent !important;
}
.navbar {
    padding: 0;
}
.dropdown-toggle::after {
    vertical-align: 0;
}
.navbar-light .navbar-nav .nav-link {
    color: rgba(255, 255, 255, .8);
    font-weight: 700;
    font-size: 16px;
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
    color: #fff;
}
.navbar-light .navbar-nav .nav-link.disabled {
    color: rgb(255, 255, 255, .3);
}
.navbar-light .navbar-nav .show > .nav-link, .navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .nav-link.active {
    color: rgba(255, 255, 255, 0.9);
}
.navbar-expand-lg .navbar-nav .nav-link {
    padding: 19px 15px 17px;
}
.dropdown-item {
    padding: 0.35rem 15px 0.25rem 15px;
    text-align: right;
}
#advancedSearch {
    margin: 0 0 30px;
}

.allCityHaraj {
    margin-top: 30px;
    display: grid;
    margin-bottom: 10px;
}
.allCityHaraj a.btn {
    margin: 0 0 5px 2px;
    font-weight: 400;
}
.allCityHarajInner {
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #fff;
    unicode-bidi: embed;
}
#searchForm {
    position: relative;
    margin: 0 0 20px;
}
#searchForm > button {
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 14px;
    padding-bottom: 7px;
    font-size: 17px;
    opacity: .3;
    color: #000;
}
#userBtn a#userMenu {
    background: rgba(255,255,255,.25) !important;
    color: #fff !important;
}
#userBtn a#userMenu:hover, .show#userBtn a#userMenu {
    background: rgba(255,255,255,1) !important;
    color: #007bff !important;
}
#userBtn a#userMenu::after {
    display: none;
}
.addPost, addPost:hover {
    color: #fff !important;
    background-color: #28a745 !important;
    border-color: #28a745 !important;
}
.addPost:focus, .addPost.focus {
    box-shadow: none !important;
}
@media (max-width: 1024px) {
    .addPost span { display: none; }
    .navbar-expand-lg .navbar-nav .nav-link { padding: 19px 10px 17px; }
}
.navbar-toggler {
    padding: 0.55rem 1rem 0.6rem 1rem;
    font-size: 20px;
    line-height: 1.5;
    border: none;
    background: rgba(255,255,255,.25);
    color: #fff !important;
}
.navbar-toggler i {
    position: relative;
    top: 4px;
}
@media (min-width: 992px) {
    #mobileMenu { display: none !important; }
}
@media (max-width: 991px) {
    ul.navbar-nav { padding: 0; margin: 10px 0; }
    .navbar-expand-lg .navbar-nav .nav-link { padding: 12px 10px 10px; }
    .navbar-brand img { max-height: 40px; margin: 10px 0; }
    #userBtn .btn-lg, #userBtn > button {
        padding: 9px 10px;
        font-size: 14px;
        float: right;
        margin: 0 5px 0 0;
        line-height: 1;
    }
    #userBtn > button {
        padding: 7px 10px 13px;
    }
    #userBtn .dropdown-menu {
        top: 38px;
    }
}
@media (max-width: 575px) {
    #header .container-fluid { padding-right: 15px; padding-left: 15px; }
}
form#cities {
    float: left;
    margin: 0 0 0 5px;
}
.moreOptions > a.btn {
    float: left;
}
.moreOptions {
    display: table;
    width: 100%;
    text-align: left;
    margin: 0 0 15px;
}
.allCatsList {
    float: right;
    width: 100%;
    text-align: right;
}
#catList {
    overflow-x: auto;
    margin: 0;
    position: relative;
    white-space: nowrap;
    min-height: 48px;
}
#catList:last-child {
    margin: 0;
}
#catList a.btn {
    font-weight: 400;
}
#catList > div {
    margin: 0px;
    padding: 0px;
    direction: rtl;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow-y: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.adListDiv {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 10px;
    margin: 0 0 10px;
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
}
span.adListDivLabel {
    position: absolute;
    top: -22px;
    right: -50px;
    color: #fff;
    transform: rotate(45deg);
    transform-origin: 0 0;
    width: 100px;
    text-align: center;
    z-index: 5;
    padding: 2px 0;
}
span.adListDivLabel i {
    font-size: 10px;
}
span.adListDivLabel.red {
    background: red;
}
span.adListDivLabel.yellow {
    background: orange;
}
.adListDivImg {
    float: right;
    width: 90px;
    height: 90px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    background: #f1f5f9 !important;
    margin: 0 0 0 12px;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
}
.adListDivImg img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 9px;
    display: block;
}
.adListDivImg .delBtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}
.adListDiv:hover .adListDivImg .delBtn {
    opacity: 1;
}
a.adListDivTitle {
    display: block;
    font-size: 19px;
    font-weight: 700;
    color: #000;
    margin: 5px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    padding: 0 0 0 10px;
}
a.adListDivTitle:hover {
    color: #007bff;
}
.adListDivTags {
    display: table;
    width: calc(100% - 100px);
    font-size: 14px;
}
.adListDivTags > span {
    width: 50%;
    display: block;
    float: right;
    color: #888;
    padding: 1.5px 0;
}
.adListDivTags > span a {
    color: #888;
}
.adListDivTags > span a:hover {
    text-decoration: underline !important;
}
#allAds > div:nth-child(4n+4) .adListDiv, #allAds > div:nth-child(4n+3) .adListDiv {
    background: #eaf4fe;
}
#footer {
    background: #343a40;
    padding: 50px 0;
    color: #adb5bd;
    border-bottom: 6px solid #212529;
}
ul.footerLinks {
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.footerLinks li a {
    display: block;
    color: #dee2e6;
    font-size: 16px;
    padding: 5px 10px;
}
ul.footerLinks li a:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #fff;
}
ul.footerLinks li a .fa-star {
    color: yellow;
}
ul.footerLinks li a .fa-apple {
    color: #bbbbbb;
}
ul.footerLinks li a .fa-android {
    color: #a4c639;
}
#footer p {
    margin: 0 0 5px;
    font-size: 15px;
}
#footer p a {
    color: #fff;
}
#footer p .fa-heart {
    color: red;
}
.homeMobileTableRow {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.pushmenu-wrap-open .pushmenu-close {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 4;
}
@media (max-width: 991px) {
    #allAds > div:nth-child(4n+4) .adListDiv, #allAds > div:nth-child(4n+3) .adListDiv { background: #fff; }
    #allAds > div:nth-child(even) .adListDiv { background: #eaf4fe; }
    #footer { display: none; }
}
@media (max-width: 767px) {
    .allCatsList { width: 100%; }
    .homeMobileTableRow { display: table; }
    .wrap #content { display: table-header-group; }
    #advancedSearch { margin: 30px 0; }
    .wrap #sidebar {
        position: fixed;
        top: 0;
        right: -100%;
        background: #fff;
        width: 300px;
        z-index: 4;
        box-shadow: 0 0 40px rgba(0,0,0,.2);
        padding-top: 60px;
        height: 100%;
        overflow-x: auto;
        padding-bottom: 20px;
            -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
    }
    .wrap .pushmenu-open#sidebar {
        right: 0;
    }
}
@media (max-width: 574px) {
    #footer p:first-child { margin-top: 15px; }
}
@media (max-width: 480px) {
    .adListDivTags > span { font-size: 12px; }
    .adListDivTags > span:nth-child(1), .adListDivTags > span:nth-child(3) { width: 40%; }
}
.allcatsImgs {
    display: table;
    width: 100%;
}
.allcatsImgs > a {
    width: calc(33.3333333% - 3.5px);
    display: block;
    float: right;
    margin-bottom: 5px;
    border: 1px solid #dee2e6;
    background: #fff;
    border-radius: 3px;
    padding: 3px;
}
.allcatsImgs > a:nth-child(3n+3), .allcatsImgs > a:nth-child(3n+2) {
    margin-right: 5px;
}
.allcatsImgs > a img {
    width: 100%;
    height:72px;
}
@media (max-width: 767px) {
    .allcatsImgs > a { width: calc(25% - 5px); }
    .allcatsImgs > a:nth-child(3n+3), .allcatsImgs > a:nth-child(3n+2) { margin-right: 0; }
    .allcatsImgs > a:nth-child(4n+4), .allcatsImgs > a:nth-child(4n+3), .allcatsImgs > a:nth-child(4n+2) { margin-right: 5px; }
}
.modal-header .close {
    padding: 1.4rem 1rem 1rem;
    margin: -1rem auto -1rem -1rem;
}
.modal-footer > :not(:first-child) {
    margin-left: 0;
    margin-right: .25rem;
}
.modal-footer > :not(:last-child) {
    margin-right: 0;
    margin-left: .25rem;
}
.form-check {
    padding-left: 0;
    padding-right: 1.75rem;
}
.custom-control-label::before {
    left: auto;
    right: 0;
    top: 0.1rem;
}
.custom-control-label::after {
    left: auto;
    right: 0;
    top: 0.1rem;
}
.custom-control-label {
    padding-right: 25px;
}
.modal-footer {
    justify-content: flex-start;
}
h1.pageTitle {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.alert {
    padding: 0.8rem 1.25rem 0.701rem 1.25rem;
}
.entryContent {
    font-size: 18px;
    line-height: 1.8;
}
.entryContent h1, .entryContent h2, .entryContent h3, .entryContent h4, .entryContent h5, .entryContent h6 {
    font-weight: 700;
}
#userProfile {
    margin: 0px 58px 30px 0;
}
#userProfile img {
    float: right;
    max-width: 117px;
    margin: 0 -78px 0 20px;
    border-radius: 0.25rem;
}
.userProfileMeta {
    margin: 0 0 10px;
    font-size: 14px;
}
.userProfileMeta > span {
    display: inline-block;
    margin: 0 0 0 10px;
    color: #666;
}
#userProfile h1.pageTitle {
    margin: 0 0 10px;
}
@media (max-width: 767px) {
    #userProfile { margin: 58px 0 30px 0; text-align: center; }
    #userProfile img { float: none; margin: -78px auto 20px auto; display: table; }
}
#userSettings {
    margin-bottom: 20px;
}
#userSettings a {
    margin-bottom: 10px;
}
.mrb {
    margin-bottom: 30px;
}
#allMsgs th {
    border-top: none;
}
.table td {
    vertical-align: middle;
}
.cardMsg {
    margin-right: 1.5625rem;
}
.cardMsg img {
    float: right;
    border-radius: 0.25rem;
    width: 50px;
    height: 50px;
    margin: 0 -2.8125rem 0 1rem;
}
#addTqeem {
    font-size: 17px;
}
.cardMsg .card-text {
    font-size: 17px;
}
#followTable input[type="checkbox"] {
    position: relative;
    margin: 6px 0 0;
}
.userFollow {
    margin: 30px 0 0;
}
.notiList {
    padding: 0;
}
.calcOmola input {
    width: 70px;
    display: inline;
    margin: 0 5px;
    text-align: center;
}
.calcOmola {
    margin: 30px 0;
}
.allBanks .card-body p {
    margin: 3px 0;
}
.allBanks .card {
    margin-bottom: 10px;
}
#postMeta .card-body {
    padding: .6rem 1.25rem .4rem;
}
#postMeta .card-body > span {
    float: right;
    width: 33.333333333333%;
    margin: 3px 0;
    font-size: 15px;
}
#postConent {
    font-size: 21px;
    line-height: 2;
}
#postConent img {
    border-radius: 0.25rem;
    max-width: 100%;
    margin: 0 auto;
    display: inherit;
}

#photos {
    display: none;
    text-align:center;
}
#photos img{
    width: 320px;
    height: 200px;
    margin-bottom:10px;

}
.upphoto{
    text-align: center;
    min-height:270px;
}
.upphotoactive{
    background: #eee;
    border: 1px solid #ccc;


}

.back{
    float:left;
}
.hidden{
    display: none;
}
.btn-danger{
    color:#fff !important;
}


.progress{
    margin-bottom:20px;
}



.replyhead > span > div {
    display: inline-block;
}
.replyhead {
    margin: -19px -19px 15px -19px;
    background: rgba(0,0,0,.04);
    padding: 15px;
}
.replyentry p {
    margin: 0;
}
.postUser .dropdown-menu {
    text-align: right;
}
.postUser .dropdown-menu {
    text-align: right;
    width: 220px;
}
.postUser .dropdown-menu textarea {
    margin: 0 0 10px;
}

.postIcons {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    padding-bottom: 1rem;
    padding-top: 1rem;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
    margin: 15px 0;
}
.postIcons span, .postIcons a {
    color: #aaaaaa;
    font-size: 20px;
}


.related {
    display: inline-block;
    width: 100%;
}
.relatedItem {
    width: 200px;
    padding: 5px;
    float: right;
}

.relatedItem img {
    width: 200px;
    height: 150px;
}

.close{
    margin-left:0px !important;
}

.pull-left{
    float: left;
}

.nav-tabs > li {
    float: right;
    margin-bottom: -1px;
}
.nav-tabs > li > a {
    margin-right: 4px;
}
.userMSG {
    display: table;
    width: 100%;
    line-height: 32px;
}
.userImg {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    margin-left: 15px;
}
.userMSG button {
    padding: 7px 10px 5px;
}
.msgalt1 {
    margin: 10px 0;
}
.msgalt1 .userImg {
    float: right;
    width: 32px;
    height:32px;
}
.msgalt1 h4 {
    margin: 2px 0 5px;
    font-weight: 700;
    font-size: 14px;
}
.msgalt1 p {
    font-size: 11px;
    margin: 0;
    line-height: 1;
}
.msgcont{
    height:600px;
    width: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    padding-left:20px;
}
.msgalt1 .alert {
    margin: 10px 0 0 0;

}


.nav-tabs {
    border-bottom: none;
    margin: 0 0 15px;
    padding: 0;
}
.nav-tabs > li {
    margin-bottom: 0;
    margin-right: 5px;

}
.nav-tabs > li > a {
    margin-right: 0;
    border: 1px solid #eee;
    border-radius: 3px;
    font-family: stcb;
    color: #333;
    padding:10px 30px;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    color: #000;
    
    background-color: #f1c25a !important;
    border: 1px solid #f1c25a !important;
    border-bottom-color: #f1c25a;
}
.badge{
    padding:5px 10px !important;
    line-height: 15px;
    float: left;
}

@media(max-width: 575px){
    a.adListDivTitle {
        font-size: 15px;
    }
    #postMeta .card-body > span {
        width: 50%;
    }
}

@media(max-width: 400px){
    #postMeta .card-body > span {
        width: 100%;
    }
    .adListDivTags > span:nth-child(2) {
        display: none;
    }
}

/* Fix Select and Option Text Visibility Across All Browsers */
select, .hsb-select, .search-select-main, .filter-select {
    color: #0f172a !important;
    background-color: #ffffff !important;
    font-weight: 700 !important;
}
select option, option {
    color: #0f172a !important;
    background-color: #ffffff !important;
    font-weight: 700 !important;
}