.ad-grid-container {
    display: grid;
    grid-template-columns: repeat(3, calc((100% - 48.3333333px) /3));
    grid-gap: 25px;
    margin: 40px 20px;
}

@media screen and (max-width: 992px) {
    .ad-grid-container {
        grid-template-columns: repeat(2, calc(50% - 12.5px));
    }
}

@media screen and (max-width: 768px) {
    .ad-grid-container {
        grid-template-columns: 100%;
    }
}

.ad-grid-item {
    height: 360px;
    border-radius: 10px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    position: relative;
}

.ad-grid-item a {
    text-decoration: none;
}

.ad-grid-item .boosted-ribbon {
    position: absolute;
    top: -24px;
    right: -28px;
}

.ad-grid-item .item-body {
    height: 280px;
    padding: 16px 25px;
    display: flex;
    flex-direction: column;
    color: #FFF;
    border-radius: 10px 10px 0 0;
}

.ad-grid-item .item-body.back-dark {
    background-color: #1D1D79;
}

.ad-grid-item .item-body.back-light {
    background-color: rgba(29, 29, 121, 0.5);
}

.ad-grid-item .item-body .ad-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ad-grid-item .item-body .ad-info>div {
    flex-grow: 1;
    text-align: center;
}

.ad-grid-item .item-body .type-property {
    font-weight: 700;
    font-size: 30px;
    line-height: 32px;
}

.ad-grid-item .item-body .ad-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
}


.ad-grid-item .item-body .posted-by {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
}

.ad-grid-item .item-footer {
    height: 80px;
    padding: 14px;
    color: #000;
}

.ad-grid-item .item-footer .icon {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    margin-bottom: 2px;
}

.ad-grid-item .item-footer .footer-label {
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    margin-right: 3px;
}

.ad-grid-item .item-footer .footer-value {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.empty-ads {
    font-weight: 600;
    font-size: 30px;
    line-height: 40px;
    color: #4B4B4B;
    margin-top: 20px;
    margin-bottom: 200px;
}

.empty-ads span {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #000;
}

/* Pagination */
.pagination {
    user-select: none;
}

.pagination .page-link {
    color: #000;
    font-weight: 300;
    font-size: 16px;
    line-height: 30px;
}

.pagination .page-link:focus {
    box-shadow: 0 0 0 0.25rem rgba(29, 29, 121, 0.25);
}

.pagination .page-item:first-child .page-link {
    border-radius: 10px 0 0 10px;
}

.pagination .page-item:last-child .page-link {
    border-radius: 0 10px 10px 0;
}

.pagination .page-item.active>.page-link {
    color: white;
    border-color: #1D1D79;
    background-color: #1D1D79;
}


/* View Ad */

.back {
    text-decoration: none;
    color: black;
    font-size: 32px;
    font-weight: 900;
}

.back:hover {
    color: #1D1D79;
}

.row-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 30px;
    margin: 35px 0 75px;
}

.row-container .left {
    order: 1;
}

.row-container .right {
    order: 2;
}

@media screen and (max-width: 768px) {
    .row-container {
        grid-template-columns: 1fr;
    }

    .row-container .left {
        order: 2;
    }

    .row-container .right {
        order: 1;
    }
}

.row-container .ad-info {
    background-color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 25px 32px;
}

.row-container .ad-info .heading-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.row-container .ad-info .heading {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
}

.row-container .ad-info .action-buttons {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.row-container .ad-info .action-buttons .btn {
    border-radius: 10px;
    height: 30px;
    width: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
}

.row-container .ad-info .action-buttons .btn.btn-blue {
    font-size: 16px;
    border: 1px solid #3E79CD;
    color: #3E79CD;
    background-color: #FFF;
}

.row-container .ad-info .action-buttons .btn.btn-blue:hover {
    color: #FFF;
    background-color: #3E79CD;
}

.btn.btn-blue {
    font-size: 16px;
    border: 1px solid #3E79CD;
    color: #3E79CD;
    background-color: #FFF;
}

.btn.btn-blue:hover {
    color: #FFF;
    background-color: #3E79CD;
}

.row-container .ad-info .action-buttons .btn.btn-red {
    font-size: 18px;
    padding-top: 4px;
    border: 1px solid #CF0A0A;
    color: #CF0A0A;
    background-color: #FFF;
}

.row-container .ad-info .action-buttons .btn.btn-red:hover {
    color: #FFF;
    background-color: #CF0A0A;
}

.row-container .ad-info .action-buttons .btn.btn-yellow {
    font-size: 16px;
    border: 1px solid #E7D748;
    color: #3E79CD;
    background-color: #FFF;
}

.row-container .ad-info .action-buttons .btn.btn-yellow:hover {
    color: #FFF;
    background-color: #E7D748;
}

.row-container .ad-info .action-buttons .btn.btn-yellow .inquiry-count {
    background-color: #666;
    color: #FFF;
    font-size: 10px;
    height: 18px;
    width: 18px;
    padding-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

@media screen and (max-width: 576px) {
    .row-container .ad-info .heading-wrap {
        display: flex;
        flex-direction: column-reverse;
        align-items: start;
        justify-content: space-between;
    }

    .row-container .ad-info .action-buttons {
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .row-container .ad-info .action-buttons .btn {
        border-radius: 10px;
        height: 30px;
        width: 100%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 8px;
    }
}

.row-container .ad-info ul,
.row-container .contact-info ul {
    padding: 0;
}

.row-container .ad-info ul li,
.row-container .contact-info ul li {
    list-style: none;
    display: flex;
    align-items: start;
    margin-bottom: 16px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    word-break: break-word;
}

.row-container .ad-info li img,
.row-container .contact-info ul li img {
    height: 20px;
    width: 20px;
    margin-right: 8px;
}

.row-container .ad-info li span,
.row-container .contact-info ul li span {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

.row-container .ad-info .inquiry {
    display: flex;
    margin: 32px 0 5px;
}

.row-container .ad-info .inquiry a {
    margin: auto;
    text-decoration: none;
    background-color: #CF0A0A;
    color: white;
    border-radius: 10px;
    padding: 8px 32px;
    font-weight: 600;
    font-size: 14px;
}

.row-container .ad-info .inquiry a:hover {
    background-color: #7B0303;
}

.row-container .ad-info .inquiry-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.row-container .ad-info .inquiry .label {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
    margin-right: 4px;
}

.row-container .inquiry .error-message {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #CF0A0A;
    margin-top: 2px;
    margin-bottom: 10px;
}

.row-container .inquiry .inquired {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #18C615;
}

.row-container .inquiry-form textarea {
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 12px;
    resize: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    width: 100%;
}

.row-container .inquiry-form textarea:focus-visible {
    outline: #00005C solid 2px;
}


.row-container .inquiry-form textarea::-webkit-scrollbar {
    width: 20px;
}

/* Track */
.row-container .inquiry-form textarea::-webkit-scrollbar-track {
    background: white;
}

/* Handle */
.row-container .inquiry-form textarea::-webkit-scrollbar-thumb {
    background-color: #00005C;
    background-clip: padding-box;
    border: 5px solid white;
    border-radius: 100px
}

/* Handle on hover */
.row-container .inquiry-form textarea::-webkit-scrollbar-thumb:hover {
    background: rgba(29, 29, 121, 0.5);
}

.row-container .inquiry-form .count {
    display: flex;
    justify-content: end;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
}

.row-container .inquiry-form .btn {
    background-color: #CF0A0A;
    color: white;
    border-radius: 10px;
    padding: 8px 48px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px;
}

.row-container .right .stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

@media screen and (max-width: 992px) {
    .row-container .right .stats {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .row-container .right .stats {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.row-container .right .stats .stat-item {
    padding: 6px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
}

.row-container .right .stats .stat-item a {
    cursor: pointer;
    text-decoration: none;
    color: #000;
}

.row-container .right .stats .stat-item .bi-red {
    color: #CF0A0A;
}

.row-container .right .owner-info {
    background-color: white;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 14px 22px;
    margin: 24px 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
}

.row-container .right .owner-info .user-picture {
    height: 50px;
    width: 50px;
    min-height: 50px;
    min-width: 50px;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    margin-right: 16px;
    background-color: #EEE;
}

.row-container .right .owner-info .contact-info {
    margin: 15px 0 10px;
}

.row-container .right .owner-info .link {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #CF0A0A;
    cursor: pointer;
    background-color: transparent;
    border: none;
    text-decoration: underline;
    padding: 0;
}

.row-container .right .owner-info .contact-info .label {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}

.row-container .right .action-box {
    background-color: white;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 14px 22px;
    margin: 24px 0;
}

.row-container .right .action-box .label {
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
}

.row-container .right .action-box .actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 15px 0 5px;
}

.row-container .right .action-box .actions .btn {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    border-radius: 10px;
    padding: 8px 12px;
    width: 90%;
}

.row-container .right .action-box .actions .btn.btn-green {
    background-color: white;
    border: 1px solid #60D25E;
    color: #000;
    margin-bottom: 8px;
}

.row-container .right .action-box .actions .btn.btn-green:hover {
    background-color: #60D25E;
    border: 1px solid #60D25E;
    color: white;
}

.row-container .right .action-box .actions .btn.btn-green i {
    margin-right: 8px;
}

.row-container .right .action-box .actions .btn.btn-gray {
    color: #000;
    box-shadow: 0px 0px 0px 1px #D9D9D9 inset;
    padding: 7.5px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.row-container .right .action-box .actions .btn.btn-gray:hover {
    background-color: #D9D9D9;
}

.row-container .right .action-box .actions .btn.btn-gray img {
    max-height: 22px;
    max-width: 22px;
    margin-right: 3px;
}

@media screen and (max-width: 768px) {
    .row-container .right .action-box .actions {
        flex-direction: row;
    }

    .row-container .right .action-box .actions .btn.btn-green {
        margin-bottom: 0px;
        margin-right: 4px;
    }

    .row-container .right .action-box .actions .btn.btn-gray {
        margin-left: 4px;
    }
}

@media screen and (max-width: 576px) {
    .row-container .right .action-box .actions {
        flex-direction: column;
    }

    .row-container .right .action-box .actions .btn.btn-green {
        margin-bottom: 8px;
        margin-right: 0px;
    }

    .row-container .right .action-box .actions .btn.btn-gray {
        margin-left: 0px;
    }
}

.custom-modal-report,
.custom-modal-request {
    border: 1px solid #000;
}

.custom-modal-report .modal-header,
.custom-modal-request .modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

.custom-modal-report .modal-title,
.custom-modal-request .modal-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
}

.custom-modal-report .modal-body .content {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
    margin: 0;
}

.custom-modal-request .modal-body .content {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    margin: 0;
}

.custom-modal-request .modal-body .content .bold {
    font-weight: 500;
}

.custom-modal-report .modal-body .error-message,
.custom-modal-request .modal-body .error-message {
    position: absolute;
    top: -20px;
    width: 100%;
    display: flex;
    justify-content: center;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #CF0A0A;
}

.custom-modal-request .modal-body .form-control {
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    padding: 10px 20px;
}

.custom-modal-request .modal-body .form-control-group {
    position: relative;
    margin: 30px 0;
    width: 100%;
    max-width: 300px;
}

.custom-modal-request .modal-body .form-control-group .form-control {
    padding-left: 60px;
    border-radius: 10px;
}


.custom-modal-request .modal-body .form-control-group .addon {
    position: absolute;
    top: 1px;
    left: 1px;
    background-color: #F1F1F1;
    color: rgba(0, 0, 0, 0.6);
    width: 50px;
    height: calc(100% - 1.5px);
    border-radius: 10px 0 0 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}

.custom-modal-report .modal-body .btn,
.custom-modal-request .modal-body .btn {
    background-color: #CF0A0A;
    color: white;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    padding: 8px 32px;
    border-radius: 10px;
    margin-bottom: 10px;
}


.custom-modal-report .modal-body .custom-select {
    margin: 30px 0 15px;
}

.custom-modal-report .modal-body .custom-select .select-selected {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    color: #000;
}

.custom-modal-report .modal-body .custom-textarea {
    width: 100%;
    resize: none;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 18px 12px;
    border: none;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.custom-modal-report .modal-body .custom-textarea:focus-visible {
    outline: #00005C solid 2px;
}

.custom-modal-report .modal-body .custom-textarea::-webkit-scrollbar {
    width: 20px;
}

/* Track */
.custom-modal-report .modal-body .custom-textarea::-webkit-scrollbar-track {
    background: white;
}

/* Handle */
.custom-modal-report .modal-body .custom-textarea::-webkit-scrollbar-thumb {
    background-color: #00005C;
    background-clip: padding-box;
    border: 5px solid white;
    border-radius: 100px
}

/* Handle on hover */
.custom-modal-report .modal-body .custom-textarea::-webkit-scrollbar-thumb:hover {
    background: rgba(29, 29, 121, 0.5);
}

.custom-modal-report .modal-body .count {
    display: flex;
    justify-content: end;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    margin-right: 5px;
}

.custom-modal-confirm {
    border: 1px solid #000;
}

.custom-modal-confirm .modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

.custom-modal-confirm .modal-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
}

.custom-modal-confirm .modal-body {
    padding: 25px 30px;
}

.custom-modal-confirm .modal-body .content {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

.custom-modal-confirm .modal-body .content-bold {
    font-weight: 600;
}

.custom-modal-confirm .modal-body .btn {
    color: white;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    padding: 16px 32px;
    border-radius: 10px;
    margin: 10px 8px
}

.custom-modal-confirm .modal-body .btn.btn-cancel {
    background-color: #808080;
}

.custom-modal-confirm .modal-body .btn.btn-cancel:hover {
    background-color: #D9D9D9;
}

.custom-modal-confirm .modal-body .btn.btn-confirm {
    background-color: #CF0A0A;
}

.custom-modal-confirm .modal-body .btn.btn-confirm:hover {
    background-color: #7B0303;
}


/* Similar Ads */

.similar-ads-container {
    margin-bottom: 35px;
}

.similar-ads-container .heading {
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
}

.similar-ads-container .similar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 25px;
}

@media screen and (max-width: 992px) {
    .similar-ads-container .similar-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .similar-ads-container .similar-grid {
        grid-template-columns: 1fr;
    }
}

.similar-grid-item {
    height: 245px;
    border-radius: 10px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.similar-grid-item a {
    text-decoration: none;
}

.similar-grid-item .item-body {
    height: 180px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    color: #FFF;
}

.similar-grid-item .item-body.back-dark {
    background-color: #1D1D79;
}

.similar-grid-item .item-body.back-light {
    background-color: rgba(29, 29, 121, 0.5);
}

.similar-grid-item .item-body .ad-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.similar-grid-item .item-body .ad-info>div {
    flex-grow: 1;
    text-align: center;
}

.similar-grid-item .item-body .type-property {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
}

.similar-grid-item .item-body .ad-title {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}


.similar-grid-item .item-body .posted-by {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.similar-grid-item .item-footer {
    height: 80px;
    padding: 8px 16px;
    color: #000;
}

.similar-grid-item .item-footer .icon {
    width: 14px;
    height: 14px;
    margin-right: 5px;
    margin-bottom: 2px;
}

.similar-grid-item .item-footer .footer-label {
    font-weight: 700;
    font-size: 12px;
    line-height: 26px;
    margin-right: 3px;
}

.similar-grid-item .item-footer .footer-value {
    font-weight: 500;
    font-size: 12px;
    line-height: 26px;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* MANAGE ADS */

.manage-container {
    margin: 50px auto;
}

.manage-header {
    margin-bottom: 20px;
}

.manage-header .back {
    font-weight: 700;
    font-size: 30px;
    line-height: 20px;
    margin-right: 12px;
}

.manage-header .heading {
    font-weight: 700;
    font-size: 30px;
    line-height: 20px;
    margin-right: 10px;
}


.manage-header .btn {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #FFF;
    background-color: #CF0A0A;
    padding: 16px 14px;
    display: flex;
    align-items: center;
}

.manage-header .btn i {
    margin-right: 8px;
}

.ads-container-header {
    border-top: 2px solid #0000BA;
    padding: 25px 0 40px;
    display: grid;
    grid-template-columns: 1fr auto;
}

.ads-container-header .heading {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    margin-bottom: 4px;
}

.ads-container-header .subheading {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000;
}

.ads-container-header .subheading a {
    font-weight: 500;
    color: #CF0A0A;
}

.ads-container-header .actions-container {
    display: flex;
    justify-content: center;
    align-self: center;
    gap: 20px;
}

.ads-container-header .boost-package-container {
    position: relative;
}

.ads-container-header .boost-package-field {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    padding: 14px 60px 14px 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    text-align: left;
    user-select: none;
}

.ads-container-header .boost-package-addon {
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    background-color: #CF0A0A;
    color: #FFF;
    border-radius: 0 10px 10px 0;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
}

.ads-container-header .search {
    min-width: 350px;
}

.ads-container-header .search-field {
    position: relative;
}

.ads-container-header .search-field .form-control {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    padding: 14px 20px 14px 44px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}

.ads-container-header .search-field .addon {
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.ads-container-header .search-field .form-control::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 1200px) {
    .ads-container-header .search {
        min-width: 250px;
    }
}

@media screen and (max-width: 992px) {
    .ads-container-header {
        grid-template-columns: 1fr;
    }

    .ads-container-header .search {
        min-width: 300px;
    }

    .ads-container-header .actions-container {
        order: -1 !important;
        margin-bottom: 25px;
        width: 100%;
        justify-content: space-between;
    }
}

@media screen and (max-width: 768px) {
    .ads-container-header .search {
        min-width: 300px;
    }

    .ads-container-header .actions-container {
        display: flex;
        flex-direction: column-reverse;
    }
}

@media screen and (max-width: 576px) {
    .ads-container-header .search {
        min-width: 100%;
    }
}

.ad-list-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px 15px;
    margin-bottom: 35px;
}

.ad-list-item {
    width: 100%;
    min-height: 200px;
    display: grid;
    grid-template-columns: 450px 1fr;
}

.ad-list-item .ad-preview {
    border-radius: 10px 0 0 10px;
    padding: 15px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    position: relative;
}

.ad-list-item .ad-preview .boosted-ribbon {
    position: absolute;
    top: -24px;
    right: -28px;
}

.ad-list-item .ad-preview.preview-dark {
    background-color: #1D1D79;
}

.ad-list-item .ad-preview.preview-light {
    background-color: rgba(29, 29, 121, 0.5);
}

.ad-list-item .ad-preview>div {
    flex-grow: 1;
    text-align: center;
    color: #FFF;
}

.ad-list-item .ad-preview .type-property {
    max-width: 250px;
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
}

.ad-list-item .ad-preview .ad-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.ad-list-item .ad-info {
    background-color: #FFF;
    border-radius: 0 10px 10px 0;
    border: 1px solid #000;
    border-left: none;
    padding: 20px;
    /* display: grid;
    grid-template-columns: 1fr 60px; */
    display: flex;
    flex-direction: column;
}

.ad-list-item .ad-info .details {
    /* background-color: lightblue; */
    /* display: flex;
    flex-direction: column; */
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr 60px;

}

.ad-list-item .ad-info .ad-details-wrap {
    flex-grow: 1;
}

.ad-list-item .ad-info .ad-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 15px;
}

.ad-list-item .ad-info .ad-details-item {
    display: flex;
    align-items: start;
    max-height: 50px;
}

.ad-list-item .ad-info .ad-details-item .label {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
}

.ad-list-item .ad-info .ad-details-item .label .label-break {
    display: none !important;
}


.ad-list-item .ad-info .ad-details-item .label img {
    height: 18px;
    width: 18px;
    margin-right: 4px;
}

.ad-list-item .ad-info .ad-details-item .data {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}

.ad-list-item .ad-info .actions {
    /* border: 1px solid black; */
    display: flex;
    /* flex-wrap: wrap; */
}

.ad-list-item .ad-info .actions .btn {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    padding: 14px 16px;
    border-radius: 10px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}


.ad-list-item .ad-info .actions .btn.btn-update {
    color: #3E79CD;
    box-shadow: 0px 0px 0px 1px #3E79CD inset;
}

.ad-list-item .ad-info .actions .btn.btn-update:hover {
    color: #FFF;
    background-color: #3E79CD;
}

.ad-list-item .ad-info .actions .btn.btn-delete {
    color: #CF0A0A;
    box-shadow: 0px 0px 0px 1px #CF0A0A inset;
}

.ad-list-item .ad-info .actions .btn.btn-delete:hover {
    color: #FFF;
    background-color: #CF0A0A;
}

.ad-list-item .ad-info .actions .btn.btn-inquiries {
    color: #000;
    box-shadow: 0px 0px 0px 1px #E7D748 inset;
    padding: 12px 16px;
}

.ad-list-item .ad-info .actions .btn.btn-inquiries:hover {
    background-color: #E7D748;
}

.ad-list-item .ad-info .actions .btn.btn-inquiries .inquiry-count {
    background-color: #666;
    color: #FFF;
    font-size: 12px;
    line-height: 10px;
    height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-left: 8px;
}

.ad-list-item .ad-info .actions .btn.btn-boost {
    color: #000;
    box-shadow: 0px 0px 0px 1px #60D25E inset;
}

.ad-list-item .ad-info .actions .btn.btn-boost:hover {
    color: #FFF;
    background-color: #60D25E;
}

.ad-list-item .ad-info .actions .btn.btn-share {
    color: #000;
    box-shadow: 0px 0px 0px 1px #D9D9D9 inset;
    padding: 7.5px 12px;
}

.ad-list-item .ad-info .actions .btn.btn-share:hover {
    background-color: #D9D9D9;
}

.ad-list-item .ad-info .actions .btn.btn-share img {
    max-height: 33px;
    max-width: 33px;
}

.ad-list-item .ad-info .ad-switch-wrap {
    display: flex;
    justify-content: end;
    order: 1 !important;
}

.ad-list-item .ad-info .ad-switch {
    height: 24px;
    width: 50px;
    border-radius: 12px;
    appearance: none;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 0px 1px #CCC inset;
    background-color: #FFF;
    background-position: 2px center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
    background-size: 20px 20px;
    transition: background-position .15s ease-in-out;
    cursor: pointer;
}

.ad-list-item .ad-info .ad-switch:checked {
    box-shadow: none;
    background-color: #1D1D79;
    background-position: 28px center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.budget-item {
    order: 1 !important;
}

.date-item {
    order: 2 !important;
}

.location-item {
    order: 3 !important;
}

.view-item {
    order: 4 !important;
}

.custom-modal-inquiries {
    border: 1px solid #000;
}

.custom-modal-inquiries .modal-header {
    border-bottom: none;
    padding: 25px 35px;
    padding-bottom: 0;
    color: #000;
    align-items: start;
}

.custom-modal-inquiries .modal-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
}

.custom-modal-inquiries .modal-header .subheading {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

.custom-modal-inquiries .modal-header .subheading-bold {
    font-weight: 600;
}

.custom-modal-inquiries .modal-body {
    padding: 15px 35px 25px;
}

.custom-modal-inquiries .no-inquiries {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
}

.custom-modal-inquiries .no-inquiries .boost-span {
    font-weight: 600;
    color: #60D25E;
}

.custom-modal-inquiries .no-inquiries .manage-span {
    font-weight: 600;
    color: #898989;
    text-decoration: underline;
    cursor: pointer;
}

.inquiries-container .inquiry-item {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    padding: 20px;
}

.inquiries-container .inquiry-item:not(:last-child) {
    margin-bottom: 25px;
}

.inquiry-item .inquiry-header {
    display: flex;
    align-items: start;
}

.inquiry-item .inquiry-header .user-info>div {
    flex-wrap: wrap;
}

.inquiry-item .inquiry-header .user-pic {
    height: 40px;
    width: 40px;
    min-height: 40px;
    min-width: 40px;
    background-color: #CCC;
    border-radius: 50%;
    margin-right: 8px;
    border: 1px solid #000;
}


.inquiry-item .inquiry-header .user-name {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    margin-right: 15px;
}

.inquiry-item .inquiry-header .date-time {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.5);
}

.inquiry-item .inquiry-header .user-contact,
.inquiry-item .inquiry-header .user-email {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    margin-right: 15px;
}
.inquiry-item .inquiry-header .user-data { 
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    word-break: break-word;
}

.inquiry-item .inquiry-header .user-contact img {
    height: 18px;
    margin-right: 4px;
}

.inquiry-item .inquiry-header .user-email img {
    height: 24px;
    margin-right: 4px;
}

.inquiry-item .inquiry-body {
    max-height: 50px;
    background-color: #EEF5FF;
    border-radius: 10px;
    margin-top: 10px;
    padding: 4px 8px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.8);
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
}

.inquiry-item .inquiry-body.collapsed {
    max-height: 100%;
    text-overflow: unset;
    overflow: visible;
    -webkit-line-clamp: unset;
}

.inquiry-item .view-more.hidden {
    visibility: hidden !important;
    /* display: none !important; */
}

.inquiry-item .view-more {
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    color: #000000;
    display: flex;
    justify-content: end;
    align-items: center;
    margin: 4px 8px;
    cursor: pointer;
    user-select: none;
}


.inquiry-item .view-more .icon {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transition: .3s transform ease-in-out;
    margin-left: 4px;
}

.inquiry-item .view-more.collapsed .icon {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    transition: .3s transform ease-in-out;
}

.inquiry-item .inquiry-footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    margin-top: 10px;
}



.inquiry-item .inquiry-footer .btn {
    font-weight: 600;
    font-size: 12px;
    line-height: 20px;
    color: #000000;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFF;
}

.inquiry-item .inquiry-footer .btn:not(:first-child) {
    margin-left: 15px;
}

@media screen and (max-width: 400px) {
    .inquiry-item .inquiry-footer {
        flex-direction: column;
    }

    .inquiry-item .inquiry-footer .btn {
        width: 100%;
    }

    .inquiry-item .inquiry-footer .btn:first-child {
        margin-bottom: 15px;
    }

    .inquiry-item .inquiry-footer .btn:not(:first-child) {
        margin-left: 0;
    }
}

.inquiry-item .inquiry-footer .btn.btn-mark-read {
    border: 1px solid #3E79CD;
    color: #3E79CD;
}


.inquiry-item .inquiry-footer .btn.btn-mark-read i {
    font-size: 18px;
    margin-right: 8px;
}

.inquiry-item .inquiry-footer .btn.btn-mark-unread {
    border: 1px solid #3E79CD;
    color: #FFF;
    background-color: #3E79CD;
}


.inquiry-item .inquiry-footer .btn.btn-mark-unread i {
    font-size: 18px;
    margin-right: 8px;
}

.inquiry-item .inquiry-footer .btn.btn-mark-read:hover {
    color: #FFF;
    background-color: #3C79CD;
}

.inquiry-item .inquiry-footer .btn.btn-mark-unread:hover {
    background-color: #2A5CA2;
}

.inquiry-item .inquiry-footer .btn.btn-delete-inquiry {
    border: 1px solid #CF0A0A;
    color: #CF0A0A;
}

.inquiry-item .inquiry-footer .btn.btn-delete-inquiry i {
    font-size: 14px;
    margin-right: 8px;
}

.inquiry-item .inquiry-footer .btn.btn-delete-inquiry:hover {
    color: #FFF;
    background-color: #CF0A0A;
}


@media screen and (max-width: 1200px) {
    .ad-list-item {
        grid-template-columns: 350px 1fr;
    }
}

@media screen and (max-width: 992px) {
    .ad-list-container {
        grid-template-columns: repeat(2, calc(50% - 7.5px));
    }

    .ad-list-item .ad-info .ad-details {
        grid-template-columns: 1fr;
    }

    .ad-list-item .ad-info .ad-details-item .label .label-break {
        display: block !important;
    }

    .ad-list-item .ad-info .actions {
        margin-top: 12px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px 0;
    }

    .ad-list-item {
        grid-template-columns: 1fr;
    }

    .ad-list-item .ad-preview {
        border-radius: 10px 10px 0 0;
        padding: 15px 30px;
        height: 200px;
    }

    .ad-list-item .ad-info {
        background-color: #FFF;
        border-radius: 0 0 10px 10px;
        border: 1px solid #000;
        border-top: none;
    }

    .date-item {
        order: 3 !important;
    }

    .location-item {
        order: 2 !important;
    }
}

@media screen and (max-width: 768px) {
    .ad-list-container {
        grid-template-columns: 1fr;
    }
}

.custom-modal-boost {
    border: 1px solid #000;
}

.custom-modal-boost .modal-header {
    border-bottom: 0;
    padding: 16px 16px 0;
}

.custom-modal-boost .modal-header .modal-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    color: #000000;
}

.custom-modal-boost .modal-body {
    padding: 25px 30px;
}

.custom-modal-boost .modal-body .content {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

.custom-modal-boost .modal-body .content-bold {
    font-weight: 600;
}

.custom-modal-boost .modal-body .empty-package {
    background-color: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
    padding: 20px;
    border-radius: 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

.custom-modal-boost .modal-body .boost-options {
    margin-bottom: 40px;
}

.custom-modal-boost .modal-body .boost-option-item {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 70px;
    margin-bottom: 16px;
}

.custom-modal-boost .modal-body .boost-option-wrap {
    position: relative;
}

.custom-modal-boost .modal-body .boost-option-label {
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    padding: 14px 80px 14px 20px;
    color: #000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}

.custom-modal-boost .modal-body .boost-option-count {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 60px;
    border-radius: 0 10px 10px 0;
    background-color: #1d1d79;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
}

.custom-modal-boost .modal-body .boost-check-label {
    height: 30px;
    width: 30px;
    border-radius: 20px;
    border: 3px solid #808080;
    cursor: pointer;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.custom-modal-boost .modal-body .btn-check:checked+.boost-check-label {
    border: 3px solid #CF0A0A;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23CF0A0A'/%3e%3c/svg%3e");
}

.custom-modal-boost .modal-body .btn-check:disabled+.boost-check-label {
    border: 3px solid #AAA;
    cursor: default;
}

.custom-modal-boost .modal-body .actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 10px 0;
}

.custom-modal-boost .modal-body .btn {
    color: white;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    padding: 16px 32px;
    border-radius: 10px;
    width: 210px;
}

.custom-modal-boost .modal-body .btn.btn-package {
    background-color: #60D25E;
}

.custom-modal-boost .modal-body .btn.btn-package:hover {
    background-color: #316A30;
}

.custom-modal-boost .modal-body .btn.btn-cancel {
    background-color: #808080;
}

.custom-modal-boost .modal-body .btn.btn-cancel:hover {
    background-color: #D9D9D9;
}

.custom-modal-boost .modal-body .btn.btn-individual {
    background-color: #CF0A0A;
}

.custom-modal-boost .modal-body .btn.btn-individual:hover {
    background-color: #7B0303;
}

.custom-modal-share {
    border: 1px solid #000;
}

.custom-modal-share .modal-header {
    border-bottom: 0;
    padding: 16px 16px 0;
}

.custom-modal-share .modal-header .modal-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    color: #000000;
}

.custom-modal-share .modal-body {
    padding: 25px 40px 15px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 576px) {
    .custom-modal-share .modal-body {
        padding: 25px 25px 15px;
    }
}

@media screen and (max-width: 400px) {
    .custom-modal-share .modal-body {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 320px) {
    .custom-modal-share .modal-body {
        grid-template-columns: repeat(2, 1fr);
    }
}

.custom-modal-share .icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.custom-modal-share .icon-container.show-more-icons {
    display: flex;
}

.custom-modal-share .icon-container.hidden-more-icons {
    display: none;
}

.custom-modal-share .icon-container:last-child {
    margin-right: 0;
}

.custom-modal-share .icon-container .icon {
    height: 60px;
    width: 60px;
    min-width: 60px;
    min-height: 60px;
    margin-bottom: 8px;
}

.custom-modal-share .icon-container .view-more {
    height: 60px;
    width: 60px;
    min-width: 60px;
    min-height: 60px;
    background-color: #D9D9D9;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    text-align: center;
    color: #444;
    cursor: pointer;
    margin-bottom: 8px;
}

.custom-modal-share .icon-container.hide-more {
    display: none;
}

.custom-modal-share .icon-container .label {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
}

/* BOOST */

.boost-header {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 30px;
    line-height: 20px;
    padding-bottom: 35px;
    margin-bottom: 25px;
    border-bottom: 2px solid #0000BA;
}

.boost-header,
.boost-header a {
    color: #000;
}

.boost-heading {
    font-weight: 700;
    font-size: 26px;
    line-height: 20px;
    color: #000;
    margin-bottom: 20px;
}

.boost-heading.dark {
    color: #1D1D79;
    margin-top: 50px;
}

.boost-list {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #585858;
    padding-left: 1rem;
    margin-bottom: 45px;
}

.boost-list li a {
    color: #1D1D79;
}


.boost-packages {
    margin: 0 40px;
    width: 100%;
    max-width: 400px;
    background-color: lightblue;
    display: grid;
    grid-template-columns: 1fr 160px;
    border: 1px solid #CCC;
    border-radius: 10px;
    overflow: hidden;
}

.boost-packages .header {
    background-color: #1D1D79;
    color: #FFF;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
}

.boost-packages .data-package,
.boost-packages .data-remaining {
    background-color: #FFF;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    border-top: 1px solid #CCC;
}


@media screen and (max-width: 576px) {
    .boost-packages {
        margin: 0 auto;
        grid-template-columns: 1fr 1fr;
    }
}

.boost-ad-wrap {
    display: flex;
    flex-direction: row;
}

.boost-ad.ad-grid-item {
    width: 400px;
}

.boost-info {
    margin-left: 50px;
}

.boost-info-item {
    margin-bottom: 25px;
}

.boost-info-label {
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 10px;
}

.boost-info-data {
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
}

@media screen and (max-width: 768px) {
    .boost-list {
        font-size: 16px;
        line-height: 22px;
    }

    .boost-ad-wrap {
        flex-direction: column;
    }

    .boost-ad.ad-grid-item {
        width: 300px;
        height: 290px;
    }

    .boost-ad.ad-grid-item .item-body {
        height: 220px;
    }

    .boost-ad.ad-grid-item .item-body .type-property {
        font-size: 26px;
        line-height: 28px;
    }

    .boost-ad.ad-grid-item .item-body .ad-title {
        font-size: 16px;
        line-height: 16px;
    }

    .boost-ad.ad-grid-item .item-footer {
        height: 70px;
    }

    .boost-ad.ad-grid-item .item-footer .footer-label,
    .boost-ad.ad-grid-item .item-footer .footer-value {
        font-size: 12px;
        line-height: 20px;
    }

    .boost-info {
        margin-top: 25px;
        margin-left: 0;
    }
}

.boost-wrap {
    margin: 0 40px;
}

.boost-wrap .heading {
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
}

.boost-wrap ul {
    list-style-type: none;
    padding-left: 30px;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 40px;
}

.boost-wrap ul .bold {
    font-weight: 500;
}

.boost-wrap .payment-methods li {
    display: flex;
    align-items: center;
}

.boost-wrap .payment-methods li p {
    margin-bottom: 0;
}

.boost-wrap .payment-methods li img {
    height: 30px;
    width: 30px;
    margin-right: 8px;
    border-radius: 5px;
}

.boost-plans {
    display: flex;
    flex-direction: row;
    align-items: center;
}


.boost-plan-item {
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    background-color: white;
    padding: 14px 10px;
    width: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 32px;
    margin-bottom: 32px;
}

.boost-plan-item:last-child {
    margin-right: 0 !important;
}

.boost-plan-item .price {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

.boost-plan-item .plan {
    font-weight: 700;
    font-size: 30px;
    line-height: 20px;
    color: #00005C;
    margin: 16px 0;
}

.boost-plan-item .description {
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
}

.boost-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin: 0 30px 32px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}

.boost-pricing img {
    width: 100%;
    background-size: cover;
}

@media screen and (max-width: 768px) {
    .boost-pricing {
        margin: 0 auto 32px;
    }
}

.boost-disclaimer {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: rgba(0, 0, 0, 0.8);
}


@media screen and (max-width: 992px) {
    .boost-wrap {
        margin: 0;
    }
}

@media screen and (max-width: 768px) {
    .boost-wrap ul {
        font-size: 16px;
        padding-left: 0;
    }

    .boost-plans {
        flex-direction: column;
    }

    .boost-plan-item {
        margin-right: 0 !important;
    }

    .boost-disclaimer {
        font-size: 16px;
        line-height: 20px;
    }
}

.boost-form {
    margin: 0 40px 100px;
    max-width: 830px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
}

.boost-form .span-two {
    display: flex;
    align-items: center;
}

.boost-form .span-two .field-container:first-child {
    margin-right: 25px;
}

.boost-form .field-container {
    margin-bottom: 25px;
    width: 100%;
}

.boost-form .field-container div.d-flex.align-items-center:first-child {
    flex-wrap: wrap;
}

.boost-form .form-label {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    min-width: 100px;
}

.boost-form .error-message {
    font-weight: 400;
    font-size: 12px;
    color: #CF0A0A;
    margin-bottom: 0.5rem;
    margin-left: 6px;
}

.boost-form .select-selected {
    color: #000;
}

.boost-form .select-items {
    overflow-y: initial;
}

.boost-form .form-control {
    border: none;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    padding: 12px 20px;
}

.boost-form .form-control::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.boost-form .form-control.error,
.boost-form .custom-select.error .select-selected {
    border: 0.8px solid #CF0A0A;
}

.boost-form .form-control-group {
    position: relative;
}

.boost-form .form-control-group .form-control {
    padding-left: 60px;
}


.boost-form .form-control-group .addon {
    position: absolute;
    top: 1px;
    left: 1px;
    background-color: #F1F1F1;
    color: rgba(0, 0, 0, 0.6);
    width: 50px;
    height: calc(100% - 1.5px);
    border-radius: 10px 0 0 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}

.boost-form .btn-upload {
    color: #000;
    background-color: #C2C2C2;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 12px;
    cursor: pointer;
}

.boost-form .uploaded-receipt {
    display: none;
    justify-content: space-between;
    align-items: center;
    border: 3px dashed rgba(0, 0, 92, 0.5) !important;
    background-color: rgba(0, 0, 92, 0.1);
    color: #000;
    margin-bottom: 12px;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 500;
}

.boost-form .uploaded-receipt.file-uploaded {
    display: flex;
}

.boost-form .uploaded-receipt a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.boost-form .uploaded-receipt span {
    margin-left: 12px;
    cursor: pointer;
}

.boost-form .upload-note {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.5);
}

.boost-form .submit-form {
    grid-column: 1 / 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.boost-form .btn-submit {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    color: #FFFFFF;
    background-color: #CF0A0A;
    padding: 12px 150px;
    border-radius: 20px;
}

@media screen and (max-width: 992px) {
    .boost-form {
        margin: 0 0 100px;
        column-gap: 25px;
        max-width: 100%;
    }
}


@media screen and (max-width: 768px) {
    .boost-form {
        grid-template-columns: 1fr;
    }

    .boost-form .submit-form {
        grid-column: 1 / 2;
    }

    .boost-form .btn-submit {
        padding: 12px 80px;
    }

}

.payment-wrap {
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, 0.6);
    margin: 30px 0 50px;
}

.payment-wrap .payment-header {
    display: grid;
    grid-template-columns: repeat(6, calc(100%/6));
    border-bottom: 2px solid #000;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
}

.payment-wrap .payment-header div {
    padding: 14px 20px;
    border-left: 2px solid #000;
}

.payment-wrap .payment-header div:first-child {
    border-left: none;
}

.payment-header .status-header {
    display: flex !important;
    align-items: center;
}

.payment-item .label .status-tooltip,
.payment-wrap .payment-header .status-tooltip {
    position: relative;
    padding: 0 !important;
    border-left: none !important;
    margin: 0 5px;
}

.status-tooltip .tooltiptext {
    transition: opacity 0.5s;
    opacity: 0;
    visibility: hidden;

    width: 250px;
    background-color: #E5E5EE;
    border: 1px solid #7272A4;
    border-radius: 10px;
    padding: 8px;
    margin-left: -200px;

    position: absolute;
    z-index: 2;
    bottom: calc(100% + 5px);
    left: 50%;
}

.status-tooltip .tooltiptext p {
    text-align: left;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #000;
    margin-bottom: 0;
    user-select: none;
}

.status-tooltip .tooltiptext p .bold {
    font-weight: 700;
}

.status-tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}


.status-tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: 70px;
    border-width: 5px;
    border-style: solid;
    border-color: #7272A4 transparent transparent transparent;
}

.payment-item {
    display: grid;
    grid-template-columns: calc(100%/6) calc(200%/3) calc(100%/6);
    border-top: 1px solid #000;
}

.payment-item:nth-child(2) {
    border-top: none;
}

.payment-item .item {
    padding: 14px 20px;
    border-left: 2px solid #000;
}

.payment-item .item:first-child {
    border-left: none;
}

.payment-item-wrap {
    display: grid;
    grid-template-columns: 50% 50%;
}

.payment-item .sub-item {
    display: grid;
    grid-template-columns: 50% 50%;
}

.payment-item .sub-item .item:first-child {
    border-left: 2px solid #000;
}

.payment-item .sub-item {
    display: grid;
    grid-template-columns: 50% 50%;
}

.payment-item .item .label {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 5px;
    display: none;
}

.payment-item .item .data {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.payment-item .item a {
    text-decoration: none;
    color: #1D1D79;
    font-weight: 700;
}

.payment-item .item .rejection-note {
    font-style: italic;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #CF0A0A;
}

@media screen and (max-width: 992px) {
    .payment-wrap .payment-header {
        display: none;
    }

    .payment-item {
        grid-template-columns: calc(100%/4) calc(100%/2) calc(100%/4);
    }

    .payment-item .item {
        border-left: none;
    }

    .payment-item-wrap {
        grid-template-columns: 100%;
    }

    .payment-item .sub-item .item:first-child {
        border-left: none;
    }

    .payment-item .item .label {
        display: block;
    }

    .payment-item .label.status-header {
        display: flex !important;
        align-items: center;
    }

}

@media screen and (max-width: 768px) {
    .payment-item {
        grid-template-columns: 100%;
    }

    .status-tooltip .tooltiptext {
        margin-left: -30px;
        width: 200px;
    }

    .status-tooltip .tooltiptext::after {
        margin-left: -75px;
    }
}

/* POST / UPDATE AD */

.post-header {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 30px;
    line-height: 20px;
    padding-bottom: 35px;
    margin-bottom: 10px;
    border-bottom: 2px solid #0000BA;
}

.post-header,
.post-header a {
    color: #000;
}

.post-subheading {
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    color: #000000;
}

.post-container {
    margin: 40px 0;
    display: grid;
    grid-template-columns: 1fr 560px;
    gap: 28px;
}

.post-container .post-form .heading {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 18px;
}

.post-container .post-form .field-container {
    margin-bottom: 25px;
}

.post-container .post-form .form-label {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    margin-bottom: 10px;
    margin-right: 5px;
}

.post-container .post-form .error-message {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #CF0A0A;
    margin-bottom: 10px;
}

.post-container .post-form .error-message.below {
    margin-top: 10px;
    margin-right: 5px;
}

.post-container .post-form .field-hint {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.post-container .post-form .radio-check-group {
    display: flex;
    align-items: center;
}

.post-container .post-form .btn.btn-rdo-label {
    background-color: #FFF;
    color: #CF0A0A;
    border: 1px solid #CF0A0A;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    padding: 16px 32px;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.post-container .post-form .btn-check:checked+.btn.btn-rdo-label {
    background-color: #7B0303;
    color: #FFF;
    border: 1px solid #7B0303;
}

.post-container .post-form .btn-rdo-label {
    margin-right: 15px;
}

.post-container .post-form .form-select.error+.select-selected {
    border: 1px solid #CF0A0A;
}

.post-container .post-form .select-items {
    overflow-y: auto;
}

.post-container .post-form .field-container.error .custom-select-location .select-selected {
    border: 1px solid #CF0A0A;
}

.post-container .post-form .form-control {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 12px 20px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #000;
}

.post-container .post-form .form-control.error {
    border: 1px solid #CF0A0A;
}

.post-container .post-form .form-control::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.post-container .post-form .field-count {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 10px;
    margin-right: 4px;
}

.post-container .post-form .range-check {
    margin-bottom: 10px;
}

.post-container .post-form .range-check .form-check-input {
    margin: 0 5px 0;
    border: 1px solid #000;
}

.post-container .post-form .range-check .form-check-input:checked {
    background-color: #1D1D79;
}

.post-container .post-form .range-check .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 92, 0.25);
}

.post-container .post-form .range-check .form-check-label {
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #000000;
    user-select: none;
}

.post-container .post-form .range-fields {
    display: grid;
    grid-template-columns: 1fr min-content 1fr;
    gap: 10px;
    margin-bottom: 8px;
}

.post-container .post-form .range-fields.not-range .hide-not-range {
    display: none !important;
}

.post-container .post-form .form-control-group {
    position: relative;
}

.post-container .post-form .form-control-group.addon-left .form-control {
    padding-left: 60px;
}

.post-container .post-form .form-control-group.addon-left .addon {
    position: absolute;
    top: 1px;
    left: 1px;
    background-color: #F1F1F1;
    color: rgba(0, 0, 0, 0.6);
    width: 50px;
    height: calc(100% - 1.5px);
    border-radius: 10px 0 0 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}

.post-container .post-form .form-control-group.addon-right .form-control {
    padding-right: 60px;
}

.post-container .post-form .form-control-group.addon-right .addon {
    position: absolute;
    top: 1px;
    right: 1px;
    background-color: #F1F1F1;
    color: rgba(0, 0, 0, 0.6);
    width: 60px;
    height: calc(100% - 1.5px);
    border-radius: 0 10px 10px 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}

.post-container .post-form textarea.form-control {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    resize: none;
    overflow-y: auto;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.post-container .post-form textarea:focus-visible {
    outline: #00005C solid 2px;
}


.post-container .post-form textarea::-webkit-scrollbar {
    width: 20px;
}

/* Track */
.post-container .post-form textarea::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
.post-container .post-form textarea::-webkit-scrollbar-thumb {
    background-color: #00005C;
    background-clip: padding-box;
    border: 5px solid white;
    border-radius: 100px
}

/* Handle on hover */
.post-container .post-form textarea::-webkit-scrollbar-thumb:hover {
    background: rgba(29, 29, 121, 0.5);
}

.post-container .form-buttons {
    grid-column: 1/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-container .form-buttons .btn {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #FFF;
    padding: 16px 32px;
    margin: 0 15px;
}

.post-container .form-buttons .btn-cancel {
    background-color: #808080;
}

.post-container .form-buttons .btn-confirm {
    background-color: #CF0A0A;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-container .form-buttons .btn-confirm span {
    margin-left: 8px;
    font-size: 20px;
}

.post-container .post-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.post-container .preview-card {
    width: 100%;
    max-width: 560px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    overflow: hidden;
}

.post-container .preview-card .preview-body {
    height: 350px;
    background-color: #F3F3F3;
}

.preview-card .preview-body.show-default .default-preview {
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.6);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.preview-card .preview-body .default-preview {
    display: none;
}

.post-container .preview-card .preview-body.preview-light:not(.show-default) {
    background-color: #8D8DBB;
    color: #FFF;
}

.post-container .preview-card .preview-body.preview-dark:not(.show-default) {
    background-color: #1D1D79;
    color: #FFF;
}

.preview-card .preview-body .preview-main {
    display: flex;
    height: 100%;
    flex-direction: column;
    padding: 25px;
}

.preview-card .preview-body.show-default .preview-main {
    display: none;
}

.preview-body .preview-main .posted-by {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
}

.preview-body .preview-main .preview-ad-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preview-body .preview-main .preview-ad-info>div {
    flex-grow: 1;
    flex-basis: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    max-width: 420px;

}

.preview-body .preview-main .preview-ad-info .type-property {
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
}

.preview-body .preview-main .preview-ad-info .title {
    align-items: start;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    word-wrap: break-word;
    display: inline-block;
}

.preview-footer {
    padding: 20px;
    background-color: #FFF;
    border-top: 1px solid rgba(0, 0, 0, 0.6);
    height: 100px;
}

.preview-footer .icon {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    margin-bottom: 2px;
}

.preview-footer .footer-label {
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    margin-right: 3px;
}

.preview-footer .footer-value {
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.custom-modal-info {
    border: 1px solid #000;
}

.custom-modal-info .modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

.custom-modal-info .modal-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
}

.custom-modal-info .modal-body {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    padding: 50px 20px;
}

@media screen and (max-width: 1200px) {
    .post-container {
        grid-template-columns: 1fr 400px;
    }

    .preview-body .preview-main .preview-ad-info .title {
        max-width: 360px;
    }
}

@media screen and (max-width: 992px) {
    .post-container {
        grid-template-columns: 1fr;
    }

    .post-container .form-buttons {
        grid-column: 1/2;
    }
}

@media screen and (max-width: 768px) {
    .post-container {
        grid-template-columns: 100%;
    }

    .preview-body .preview-main .preview-ad-info .title {
        max-width: 320px;
    }
}

@media screen and (max-width: 576px) {
    .preview-body .preview-main .posted-by {
        font-size: 16px;
        line-height: 24px;
    }

    .preview-body .preview-main .preview-ad-info>div {
        flex-basis: auto;
    }

    .preview-body .preview-main .preview-ad-info .title {
        max-width: 300px;
    }

}

@media screen and (max-width: 450px) {
    .post-container .post-form .radio-check-group {
        flex-direction: column;
    }

    .post-container .post-form .btn.btn-rdo-label {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;

    }

    .post-container .post-form .range-fields {
        grid-template-columns: 1fr;
    }

    .post-container .form-buttons {
        flex-direction: column;
    }

    .post-container .form-buttons .btn {
        width: 100%;
        margin: 10px 0;
    }

}