body {
    background: #f2f4f5;
    overflow-x: hidden;
}

.adNewPage,
.adNewLayout,
.adNewMain,
.adNewSide {
    min-width: 0;
}

.adNewPage {
    padding: 120px 16px 40px;
    box-sizing: border-box;
}

.adNewLayout {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 22px;
    box-sizing: border-box;
}

.adNewMain {
    min-width: 0;
}

.adNewSide {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.adNewGalleryCard,
.adNewInfoCard,
.adNewSellerCard,
.adNewNotice {
    background: #fff;
    border: 1px solid #e1e8ea;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0, 47, 52, 0.07);
}

.adNewGalleryCard {
    position: relative;
    overflow: hidden;
}

.adNewGallery {
    position: relative;
    height: 520px;
    background: #eef2f3;
}

.adNewSlide {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
}

.adNewSlide.is-active {
    display: block;
}

.adNewSlide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    cursor: zoom-in;
}

.adNewGalleryBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;

    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #003b49;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    margin: 0;
    font-size: 0;
    line-height: 1;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.adNewGalleryBtn::before {
    display: block;
    color: #003b49;
    font-size: 34px;
    line-height: 1;
    font-weight: 700;
    transform: translateY(-1px);
}

.adNewGalleryPrev::before {
    content: "‹";
}

.adNewGalleryNext::before {
    content: "›";
}

.adNewGalleryBtn span {
    display: none;
}

.adNewGalleryBtn:hover {
    transform: translateY(-50%) scale(1.04);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.adNewGalleryBtn:active {
    transform: translateY(-50%) scale(0.98);
}

.adNewGalleryPrev {
    left: 18px;
}

.adNewGalleryNext {
    right: 18px;
}

.adNewGalleryCounter {
    position: absolute;
    right: 16px;
    bottom: 16px;
    background: #fff;
    color: rgba(0, 47, 52, 0.86);
    padding: 7px 12px;
    border-radius: 999px;
    font-weight: 700;
}

.adNewThumbs {
    display: flex;
    gap: 10px;
    padding: 14px;
    overflow-x: auto;
}

.adNewThumb {
    position: relative;
    width: 82px;
    height: 64px;
    flex: 0 0 auto;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
    background: #eef2f3;
    cursor: pointer;
}

.adNewThumb.is-active {
    border-color: #002f34;
}

.adNewThumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Image preloaders */
.adNewSlide.is-image-loading::before,
.adNewThumb.is-image-loading::before,
.adNewLightboxImageWrap.is-image-loading::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            110deg,
            #eef3f4 8%,
            #f8fbfc 18%,
            #eef3f4 33%
        );
    background-size: 200% 100%;
    animation: adNewImageSkeleton 1.2s linear infinite;
}

.adNewSlide.is-image-loading::after,
.adNewThumb.is-image-loading::after,
.adNewLightboxImageWrap.is-image-loading::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 38px;
    height: 38px;
    margin-left: -19px;
    margin-top: -19px;
    border-radius: 50%;
    border: 4px solid rgba(0, 47, 52, 0.14);
    border-top-color: #002f34;
    animation: adNewImageSpin 0.85s linear infinite;
}

.adNewSlide.is-image-loading img,
.adNewThumb.is-image-loading img,
.adNewLightboxImageWrap.is-image-loading img {
    opacity: 0;
}

.adNewSlide.is-image-loaded img,
.adNewThumb.is-image-loaded img,
.adNewLightboxImageWrap.is-image-loaded img {
    opacity: 1;
    transition: opacity 0.22s ease;
}

@keyframes adNewImageSkeleton {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@keyframes adNewImageSpin {
    to {
        transform: rotate(360deg);
    }
}

.adNewNoPhoto {
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #557076;
    font-size: 17px;
    font-weight: 700;
    background: #eef2f3;
}

.adFavoriteBtn {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.adFavoriteBtn:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.adFavoriteBtn:active {
    transform: scale(0.96);
}

.adFavoriteBtn.is-loading {
    pointer-events: none;
    opacity: 0.65;
}

.adFavoriteIcon {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: #00313a;
    stroke-width: 1.8;
    transition: fill 0.15s ease, stroke 0.15s ease, transform 0.15s ease;
}

.adFavoriteBtn.is-active .adFavoriteIcon {
    fill: #e00000;
    stroke: #e00000;
}

/* Info card */
.adNewInfoCard {
    margin-top: 22px;
    padding: 26px;
}

.adNewMetaRow {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #607d82;
    font-size: 13px;
    line-height: 1.35;
    margin-bottom: 12px;
}

.adNewTitle {
    margin: 0;
    color: #002f34;
    font-size: 28px;
    line-height: 1.22;
    font-weight: 800;
}

.adNewPrice {
    margin-top: 18px;
    color: #002f34;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 800;
}

.adNewPrice span {
    display: block;
    margin-top: 6px;
    font-size: 15px;
    color: #607d82;
    font-weight: 600;
}

.adNewDivider {
    height: 1px;
    background: #e1e8ea;
    margin: 24px 0;
}

.adNewDetails h2,
.adNewDescription h2,
.adNewSellerCard h2 {
    margin: 0 0 16px;
    color: #002f34;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 800;
}

.adNewDetailsGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.adNewDetailItem {
    padding: 14px;
    border-radius: 12px;
    background: #f7fafb;
    border: 1px solid #e5ecee;
}

.adNewDetailItem div {
    margin-bottom: 6px;
    color: #607d82;
    font-size: 13px;
    line-height: 1.35;
}

.adNewDetailItem strong {
    color: #002f34;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 800;
}

.adNewDescription div {
    white-space: pre-line;
    color: #002f34;
    font-size: 15px;
    line-height: 1.6;
}

/* Bottom actions */
.adNewBottomActions {
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 47, 52, 0.12);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.adNewBottomActions .adNewBottomMeta {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
    color: #55757b;
    font-size: 14px;
    line-height: 1.35;
}

.adNewBottomActions .adReportOpenBtn {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;

    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;

    color: #002f34;
    font-size: 14px;
    line-height: 1.35;
    text-decoration: underline;
    cursor: pointer;
    white-space: nowrap;
}

.adNewBottomActions .adReportOpenBtn:hover {
    color: #d71920;
}

.adNewBottomActions .adReportFlag {
    color: #d71920;
    font-size: 15px;
    line-height: 1;
}

/* Seller */
.adNewSellerCard {
    padding: 22px;
}

.adNewSeller {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.adNewSellerAvatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #002f34;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adNewSellerAvatar img {
    width: 30px;
    height: 30px;
}

.adNewSellerName {
    color: #002f34;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 800;
}

.adNewSellerDate {
    margin-top: 4px;
    color: #607d82;
    font-size: 13px;
    line-height: 1.35;
}

.adNewSellerPriceBox {
    margin: 18px 0 14px;
    padding: 22px 18px;
    background: #f6f7f7;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #edf1f2;
}

.adNewSellerPriceMain {
    color: #002f34;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 900;
}

.adNewSellerPriceSub {
    margin-top: 8px;
    color: #607d82;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
}

.adNewContactBtn,
.adNewBtn {
    min-height: 48px;
    padding: 0 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #002f34;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    box-sizing: border-box;
    margin-top: 10px;
}

.adNewContactBtnLight {
    background: #fff;
    color: #002f34;
    border: 2px solid #002f34;
}

.adNewSellerCard .adNewContactBtn,
.adNewSellerCard .adNewMessageBtn,
.adNewSellerCard .adNewPhoneBtn,
.adNewSellerCard .adNewPhoneRevealBtn {
    width: 100%;
    min-height: 48px;
    margin-top: 10px;
    padding: 0 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

.adNewSellerCard .adNewMessageBtn {
    background: #002f34;
    color: #fff;
    border: 2px solid #002f34;
}

.adNewSellerCard .adNewMessageBtn:hover,
.adNewSellerCard .adNewMessageBtn:focus,
.adNewSellerCard .adNewMessageBtn:active {
    background: #00474e;
    color: #fff;
    border-color: #00474e;
}

.adNewSellerCard .adNewPhoneBtn,
.adNewSellerCard .adNewPhoneRevealBtn {
    background: #fff;
    color: #002f34;
    border: 2px solid #002f34;
}

.adNewSellerCard .adNewPhoneBtn:hover,
.adNewSellerCard .adNewPhoneRevealBtn:hover,
.adNewSellerCard .adNewPhoneBtn:focus,
.adNewSellerCard .adNewPhoneRevealBtn:focus {
    background: #002f34;
    color: #fff;
    border-color: #002f34;
}

.adNewSellerCard .but,
.adNewSellerCard .adNewMessageBtn.but {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 10px;
    box-sizing: border-box;
}

/* Location */
.adNewLocationCard {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f7fbfc 0%, #edf6f7 100%);
    border: 1px solid #dfeaec;
    box-shadow: 0 10px 28px rgba(0, 47, 52, 0.07);
}

.adNewLocationCard::before {
    content: "";
    position: absolute;
    right: -46px;
    top: -46px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(0, 47, 52, 0.055);
}

.adNewLocationCard::after {
    content: "";
    position: absolute;
    left: -42px;
    bottom: -48px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(35, 229, 219, 0.16);
}

.adNewLocationSoftInner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.adNewLocationSoftIcon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 14px;
    background: #002f34;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(0, 47, 52, 0.15);
}

.adNewLocationSoftIcon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.adNewLocationSoftText {
    min-width: 0;
    padding-top: 2px;
}

.adNewLocationSoftText strong {
    display: block;
    color: #002f34;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 850;
}

.adNewLocationSoftText span {
    display: block;
    margin-top: 5px;
    color: #607d82;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 650;
}

/* Preview */
.adNewPreviewTop {
    position: fixed;
    top: 86px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff3bf;
    color: #002f34;
    border: 1px solid #ffd54d;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(0, 47, 52, 0.13);
}

.adNewPreviewBack {
    min-height: 34px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    background: #002f34;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.adNewPreviewBack:hover {
    background: #00474e;
}

/* Notice */
.adNewNotice {
    max-width: 620px;
    margin: 0 auto;
    padding: 40px 28px;
    text-align: center;
}

.adNewNoticeIcon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #fff3bf;
    color: #002f34;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 34px;
    font-weight: 900;
}

.adNewNotice h1 {
    margin: 0 0 12px;
    color: #002f34;
    font-size: 26px;
    line-height: 1.25;
}

.adNewNotice p {
    margin: 0 0 22px;
    color: #607d82;
    font-size: 15px;
    line-height: 1.45;
}

/* Lightbox */
.adNewLightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 20, 24, 0.94);
    padding: 64px 72px;
    box-sizing: border-box;
}

.adNewLightbox.is-open {
    display: flex;
}

body.adNewLightboxOpen {
    overflow: hidden;
}

.adNewLightboxImageWrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adNewLightboxImageWrap.is-image-loading::before {
    background:
        linear-gradient(
            110deg,
            rgba(255, 255, 255, 0.08) 8%,
            rgba(255, 255, 255, 0.18) 18%,
            rgba(255, 255, 255, 0.08) 33%
        );
    background-size: 200% 100%;
}

.adNewLightboxImageWrap.is-image-loading::after {
    border-color: rgba(255, 255, 255, 0.2);
    border-top-color: #ffffff;
}

.adNewLightboxImage {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.adNewLightboxClose {
    position: fixed;
    top: 22px;
    right: 24px;
    z-index: 2;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #002f34;
    font-size: 32px;
    line-height: 1;
    font-weight: 400;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.adNewLightboxClose:hover {
    background: #eef6f7;
}

.adNewLightboxArrow {
    position: fixed;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #002f34;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.adNewLightboxArrow:hover {
    background: #eef6f7;
}

.adNewLightboxPrev {
    left: 24px;
}

.adNewLightboxNext {
    right: 24px;
}

.adNewLightboxCounter {
    position: fixed;
    left: 50%;
    bottom: 22px;
    z-index: 2;
    transform: translateX(-50%);
    min-width: 58px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #002f34;
    font-size: 14px;
    font-weight: 900;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

/* Report button / modal */
.adReportOpenBtn {
    margin-top: 18px;
    border: 0;
    background: transparent;
    color: #386070;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: underline;
}

.adReportOpenBtn:hover {
    color: #002f3a;
}

.adReportOpenBtn.is-reported {
    color: #7d939b;
    cursor: default;
    text-decoration: none;
}

.adReportFlag {
    color: #d93025;
}

.adReportModal[hidden] {
    display: none;
}

.adReportModal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.adReportModalOpened {
    overflow: hidden;
}

.adReportModalDialog {
    width: min(680px, 100%);
    background: #fff;
    border-radius: 6px;
    padding: 48px 52px 44px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

.adReportClose {
    position: absolute;
    right: 22px;
    top: 18px;
    border: 0;
    background: transparent;
    color: #00333d;
    font-size: 46px;
    line-height: 1;
    cursor: pointer;
}

.adReportTitle {
    font-size: 34px;
    font-weight: 800;
    color: #002f3a;
    margin-bottom: 24px;
}

.adReportSubTitle {
    font-size: 14px;
    color: #386070;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.adReportOption {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    color: #002f3a;
    margin: 20px 0;
    cursor: pointer;
}

.adReportOption input {
    width: 20px;
    height: 20px;
}

.adReportSubmitBtn {
    width: 100%;
    height: 58px;
    margin-top: 30px;
    border: 0;
    border-radius: 5px;
    background: #00333d;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}

.adReportSubmitBtn:disabled {
    background: #dce5e8;
    color: #78939b;
    cursor: default;
}

.adReportStep {
    display: none;
}

.adReportStep.is-active {
    display: block;
}

.adReportSelectedReason {
    font-size: 18px;
    color: #386070;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.adReportTextarea {
    width: 100%;
    height: 142px;
    border: 0;
    border-radius: 5px;
    background: #f2f5f6;
    padding: 22px;
    font-size: 18px;
    color: #002f3a;
    resize: vertical;
    outline: none;
    box-sizing: border-box;
}

.adReportHint {
    margin-top: 18px;
    color: #7d939b;
    font-size: 15px;
}

/* Frozen / unavailable */
.adNewUnavailableLayer {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 28, 35, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.adNewUnavailableCard {
    width: 100%;
    max-width: 620px;
    background: #ffffff;
    border-radius: 14px;
    padding: 34px 38px;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
    color: #002f3a;
    font-family: Arial, sans-serif;
}

.adNewUnavailableIcon {
    float: left;
    margin-right: 10px;
    margin-top: 10px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #ffe4e4;
    color: #c62828;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 18px;
}

.adNewUnavailableCard h1 {
    margin: 0 0 18px;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 800;
    color: #00303a;
}

.adNewUnavailableCard p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.45;
    color: #00303a;
}

.adNewUnavailableCard strong {
    font-weight: 800;
}

.adNewUnavailableBack {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    width: 100%;
    border-radius: 10px;
    border: 0;
    background: #003b46;
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.adNewUnavailableBack:hover {
    background: #005060;
}

body:has(.adNewUnavailableLayer) {
    overflow: hidden;
}

/* Already reported custom box */
.adAlreadyReportedOverlay {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    background: rgba(0, 0, 0, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    box-sizing: border-box;
    animation: adAlreadyFadeIn .18s ease;
}

.adAlreadyReportedOverlay.is-hide {
    animation: adAlreadyFadeOut .18s ease forwards;
}

.adAlreadyReportedCard {
    position: relative;
    width: min(420px, 94vw);
    background: #fff;
    border-radius: 20px;
    padding: 34px 26px 28px 26px;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    animation: adAlreadyCardIn .2s ease;
}

.adAlreadyReportedClose {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.05);
    color: #002f34;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.adAlreadyReportedClose:hover {
    background: rgba(0, 0, 0, 0.09);
}

.adAlreadyReportedIcon {
    width: 54px;
    height: 54px;
    margin: 0 auto 16px auto;
    border-radius: 999px;
    background: #ffe6e6;
    color: #d71920;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.adAlreadyReportedText {
    color: #002f34;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

@keyframes adAlreadyFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes adAlreadyFadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes adAlreadyCardIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Desktop wide / TV */
@media (min-width: 1440px) {
    .adNewLayout {
        max-width: 1180px;
        grid-template-columns: minmax(0, 1fr) 330px;
        gap: 22px;
    }

    .adNewGallery {
        height: 520px;
    }

    .adNewTitle {
        font-size: 28px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .adNewLayout {
        grid-template-columns: minmax(0, 1fr) 310px;
        gap: 18px;
    }

    .adNewGallery {
        height: 460px;
    }

    .adNewTitle {
        font-size: 26px;
    }

    .adNewDetails h2,
    .adNewDescription h2,
    .adNewSellerCard h2 {
        font-size: 20px;
    }

    .adNewSellerPriceMain {
        font-size: 24px;
    }
}

/* Small tablet.
   До 760px не включаем телефонную раскладку:
   блок остаётся похожим на компьютерную версию, только чуть компактнее. */
@media (max-width: 900px) and (min-width: 761px) {
    .adNewLayout {
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 16px;
    }

    .adNewSide {
        order: 0;
    }

    .adNewGallery {
        height: 410px;
    }

    .adNewTitle {
        font-size: 26px;
    }

    .adNewSellerCard {
        padding: 18px;
    }

    .adNewSellerPriceBox {
        padding: 18px 14px;
    }

    .adNewSellerPriceMain {
        font-size: 22px;
    }
}

/* Phone.
   Только ниже 760px включается телефонная версия. */
@media (max-width: 760px) {
    .adNewPage {
        padding: 0px;
    }
.adNewInfoCard {
    margin-top: 0;
}
    .adNewLayout {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .adNewSide {
        order: 0;
    }

    .adNewGallery {
        height: 360px;
    }
}


@media (max-width: 600px) {

    .adNewPage {
        padding: 0px;
    }

    .adNewGallery {
        height: 310px;
    }

    .adNewGalleryBtn {
        width: 40px;
        height: 40px;
    }

    .adNewGalleryBtn::before {
        font-size: 30px;
        transform: translateY(-1px);
    }

    .adNewGalleryPrev {
        left: 10px;
    }

    .adNewGalleryNext {
        right: 10px;
    }

    .adNewGalleryCounter {
        right: 12px;
        bottom: 12px;
        font-size: 12px;
        padding: 6px 10px;
    }

    .adNewThumbs {
        padding: 12px;
    }

    .adNewThumb {
        width: 74px;
        height: 58px;
        border-radius: 9px;
    }

    .adFavoriteBtn {
        top: 10px;
        left: 10px;
        width: 50px;
        height: 50px;
    }

    .adFavoriteIcon {
        width: 30px;
        height: 30px;
    }

    .adNewInfoCard,
    .adNewSellerCard {
        padding: 18px;
        border-radius: 14px;
    }

    .adNewMetaRow {
        flex-direction: column;
        font-size: 13px;
    }

    .adNewTitle {
        font-size: 23px;
    }

    .adNewPrice {
        font-size: 23px;
    }

    .adNewDetailsGrid {
        grid-template-columns: 1fr;
    }

    .adNewDetails h2,
    .adNewDescription h2,
    .adNewSellerCard h2 {
        font-size: 19px;
    }

    .adNewDescription div {
        font-size: 15px;
    }

    .adNewBottomActions {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
    }

    .adNewBottomActions .adNewBottomMeta {
        flex: 1 1 auto;
        min-width: 0;
        font-size: 13px;
    }

    .adNewBottomActions .adReportOpenBtn {
        flex: 0 0 auto;
        margin-left: auto;
        font-size: 13px;
    }

    .adNewBottomActions .adReportFlag {
        font-size: 13px;
    }

    .adNewSellerPriceBox {
        padding: 18px 14px;
        margin: 16px 0 12px;
    }

    .adNewSellerPriceMain {
        font-size: 23px;
    }

    .adNewSellerCard .adNewContactBtn,
    .adNewSellerCard .adNewMessageBtn,
    .adNewSellerCard .adNewPhoneBtn,
    .adNewSellerCard .adNewPhoneRevealBtn {
        font-size: 14px;
    }

    .adNewLocationCard {
        padding: 18px;
        border-radius: 15px;
    }

    .adNewLocationSoftIcon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .adNewLocationSoftText strong {
        font-size: 16px;
    }

    .adNewLocationSoftText span {
        font-size: 13px;
    }

    .adReportModalDialog {
        padding: 34px 24px 30px;
    }

    .adReportTitle {
        font-size: 30px;
    }

    .adReportOption {
        font-size: 18px;
    }

    .adReportClose {
        font-size: 42px;
    }

    .adNewUnavailableCard {
        padding: 26px 22px;
        border-radius: 12px;
    }

    .adNewUnavailableCard h1 {
        font-size: 23px;
    }

    .adNewUnavailableCard p {
        font-size: 15px;
    }

    .adAlreadyReportedCard {
        padding: 32px 20px 24px 20px;
    }

    .adAlreadyReportedText {
        font-size: 16px;
    }

    .adNewLightbox {
        padding: 58px 0 44px;
        background: rgba(0, 20, 24, 0.97);
    }

    .adNewLightboxImage {
        width: 100%;
        max-height: 100%;
        border-radius: 0;
        box-shadow: none;
    }

    .adNewLightboxClose {
        top: 14px;
        right: 14px;
        width: 42px;
        height: 42px;
        font-size: 30px;
    }

    .adNewLightboxArrow {
        display: none;
    }

    .adNewLightboxCounter {
        bottom: 14px;
        font-size: 13px;
    }
}

/* Small phone */
@media (max-width: 420px) {

    .adNewGallery {
        height: 280px;
    }

    .adNewTitle {
        font-size: 21px;
    }

    .adNewDetails h2,
    .adNewDescription h2,
    .adNewSellerCard h2 {
        font-size: 18px;
    }

    .adNewDetailItem strong {
        font-size: 14px;
    }

    .adNewSellerPriceMain {
        font-size: 21px;
    }

    .adNewBottomActions {
        gap: 8px;
    }

    .adNewBottomActions .adNewBottomMeta,
    .adNewBottomActions .adReportOpenBtn {
        font-size: 12px;
    }
}


.adNewSellerNameLink {
    display: inline-block;
    color: #002f34;
    text-decoration: none;
}

.adNewSellerNameLink:hover {
    text-decoration: underline;
}

/* =========================================================
   Merged from ad_new.php inline styles
   ========================================================= */

/*
          Блоки под объявлением:
          - Другие объявления автора
          - Похожие объявления

          Здесь карточки из ads_new_content.php должны идти обычной сеткой вниз,
          без горизонтальной прокрутки и без визуальной "раскрутки" TOP/VIP.
          Телефон: 2 в ряд, планшет: 3 в ряд, компьютер: 4 в ряд.
        */
        .adMiniSections{
            grid-column:1 / -1;
            width:100%;
            max-width:100%;
            margin:34px 0 0;
            padding:0;
            box-sizing:border-box;
            overflow:visible !important;
        }

        .adMiniSection{
            width:100%;
            margin:0 0 34px;
            box-sizing:border-box;
            overflow:visible !important;
        }

        .adMiniHead{
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap:14px;
            margin:0 0 16px;
            box-sizing:border-box;
        }

        .adMiniHead h2{
            margin:0;
            color:#002f34;
            font-size:22px;
            line-height:1.2;
            font-weight:700;
        }

        .adMiniHead a{
            color:#002f34;
            font-size:14px;
            line-height:1.2;
            font-weight:700;
            text-decoration:underline;
            white-space:nowrap;
        }

        .adMiniSections .adMiniGrid{
            width:100%;
            max-width:100%;
            display:flex !important;
            flex-wrap:wrap !important;
            align-items:stretch !important;
            gap:14px !important;
            overflow:visible !important;
            overflow-x:hidden !important;
            white-space:normal !important;
            box-sizing:border-box;
        }

        .adMiniSections .adMiniGrid > *,
        .adMiniSections .adMiniCard{
            flex:0 0 calc((100% - 42px) / 4) !important;
            width:calc((100% - 42px) / 4) !important;
            min-width:0 !important;
            max-width:none !important;
            float:none !important;
            margin:0 !important;
            box-sizing:border-box !important;
        }

        .adMiniSections .adMiniCard{
            height:auto !important;
            display:flex !important;
            flex-direction:column !important;
        }

        .adMiniSections .adMiniLink{
            width:100% !important;
            max-width:none !important;
            display:block !important;
            flex:1 1 auto !important;
        }

        .adMiniSections .adMiniImageBox{
            width:100% !important;
            max-width:none !important;
        }

        .adMiniSections .adMiniImageBox img{
            width:100% !important;
            max-width:none !important;
        }

        /* В этих нижних блоках не показываем визуальную раскрутку */
        .adMiniSections .adMiniBoostBadge{
            display:none !important;
        }

        .adMiniSections .adMiniCard.is-vip,
        .adMiniSections .adMiniCard.is-top{
            background:#fff !important;
            border-color:rgba(0,47,52,.10) !important;
            box-shadow:0 0 10px rgba(0,0,0,.14) !important;
        }

        .adMiniSections .adMiniCard.is-vip:hover,
        .adMiniSections .adMiniCard.is-top:hover{
            box-shadow:0 0 12px rgba(0,0,0,.18) !important;
        }

        @media(max-width:991px){
            .adMiniSections .adMiniGrid{
                gap:12px !important;
            }

            .adMiniSections .adMiniGrid > *,
            .adMiniSections .adMiniCard{
                flex-basis:calc((100% - 24px) / 3) !important;
                width:calc((100% - 24px) / 3) !important;
            }
        }

        @media(max-width:760px){
            .adMiniSections{
                margin-top:28px;
                padding:0 10px;
            }

            .adMiniHead{
                margin-bottom:12px;
            }

            .adMiniHead h2{
                font-size:19px;
            }

            .adMiniHead a{
                font-size:13px;
            }

            .adMiniSections .adMiniGrid{
                gap:10px !important;
            }

            .adMiniSections .adMiniGrid > *,
            .adMiniSections .adMiniCard{
                flex-basis:calc((100% - 10px) / 2) !important;
                width:calc((100% - 10px) / 2) !important;
            }
        }




        /* Share button near favorite, all devices */
        .adGalleryShareBtn{
            position:absolute;
            top:16px;
            right:16px;
            z-index:25;
            width:46px;
            height:46px;
            border:0;
            border-radius:999px;
            background:#fff;
            color:#002f34;
            box-shadow:0 8px 22px rgba(0,47,52,.16);
            display:flex;
            align-items:center;
            justify-content:center;
            cursor:pointer;
            transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
        }

        .adGalleryShareBtn:hover{
            transform:scale(1.04);
            box-shadow:0 10px 26px rgba(0,47,52,.22);
        }

        .adGalleryShareBtn svg{
            width:30px;
            height:30px;
            display:block;
            fill:none;
            stroke:currentColor;
            stroke-width:2.1;
            stroke-linecap:round;
            stroke-linejoin:round;
        }

        html[dir="rtl"] .adGalleryShareBtn{
            right:auto;
            left:16px;
        }


        /* Desktop/tablet: location stays in the sidebar like on computer.
           Mobile only (max-width:760px): images -> seller -> ad info -> location.
           Не меняем внешний вид карточки продавца и местоположения, только порядок блоков. */
        @media(max-width:760px){
            .adNewLayout{
                display:flex !important;
                flex-direction:column !important;
            }

            .adNewMain,
            .adNewSide{
                display:contents !important;
            }

            .adNewGalleryCard{
                order:1 !important;
            }

            .adNewSellerCard:not(.adNewLocationCard){
                order:2 !important;
            }

            .adNewInfoCard{
                order:3 !important;
            }

            .adNewLocationCard{
                order:4 !important;
            }

            .adMiniSections{
                order:5 !important;
            }

            /* Mobile seller card: оставляем внешний вид, но переносим цену вправо
               от имени и даты, чтобы блок был компактнее. */
            .adNewSellerCard:not(.adNewLocationCard){
                display:grid !important;
                grid-template-columns:minmax(0, 1fr) auto !important;
                grid-template-areas:
                    "sellerTitle sellerTitle"
                    "sellerInfo sellerPrice"
                    "sellerButtons sellerButtons" !important;
                align-items:center !important;
                column-gap:12px !important;
                row-gap:14px !important;
            }

            .adNewSellerCard:not(.adNewLocationCard) > h2{
                grid-area:sellerTitle !important;
                margin-bottom:0 !important;
            }

            .adNewSellerCard:not(.adNewLocationCard) .adNewSeller{
                grid-area:sellerInfo !important;
                min-width:0 !important;
                margin:0 !important;
            }

            .adNewSellerCard:not(.adNewLocationCard) .adNewSellerPriceBox{
                grid-area:sellerPrice !important;
                width:auto !important;
                min-width:110px !important;
                max-width:150px !important;
                margin:0 !important;
                padding:10px 12px !important;
                text-align:right !important;
                align-self:center !important;
            }

            .adNewSellerCard:not(.adNewLocationCard) .adNewSellerPriceMain{
                font-size:22px !important;
                line-height:1.1 !important;
                white-space:nowrap !important;
            }

            .adNewSellerCard:not(.adNewLocationCard) .adNewSellerPriceSub{
                font-size:13px !important;
                line-height:1.15 !important;
                white-space:nowrap !important;
            }

            .adNewSellerCard:not(.adNewLocationCard) .adNewContactBtn{
                grid-area:auto !important;
                width:100% !important;
                margin-top:0 !important;
            }

        }


        /* до 500px: цена отдельным компактным блоком, как на компьютере.
           Если есть договорная цена — показываем в одну строку: цена / договорная. */
        @media(max-width:500px){



            .adNewSellerCard:not(.adNewLocationCard){
                grid-template-columns:1fr !important;
                grid-template-areas:
                    "sellerTitle"
                    "sellerInfo"
                    "sellerPrice"
                    "sellerButtons" !important;
                row-gap:12px !important;
            }

            .adNewSellerCard:not(.adNewLocationCard) .adNewSellerPriceBox{
                width:100% !important;
                min-width:0 !important;
                max-width:none !important;
                margin:0 !important;
                padding:12px 14px !important;
                text-align:center !important;
                display:flex !important;
                align-items:center !important;
                justify-content:center !important;
                gap:0 !important;
                flex-wrap:wrap !important;
                box-sizing:border-box !important;
            }

            .adNewSellerCard:not(.adNewLocationCard) .adNewSellerPriceMain{
                font-size:23px !important;
                line-height:1.15 !important;
                white-space:nowrap !important;
            }

            .adNewSellerCard:not(.adNewLocationCard) .adNewSellerPriceSub{
                display:inline !important;
                margin-left: 5px !important;
                line-height:1.15 !important;
                white-space:nowrap !important;
            }

            .adNewSellerCard:not(.adNewLocationCard) .adNewSellerPriceSub::before{
                content:" / ";
                color:#607d82;
                font-weight:700;
            }

        }


        /* Mobile gallery controls до 760px. Дальше остаётся текущий desktop/tablet вид. */
        .adGalleryBackBtn{
            display:none;
        }

        @media(max-width:760px){


.adNewGalleryCard, .adNewInfoCard, .adNewSellerCard, .adNewNotice{
    background: #fff;
    border: none;
    border-radius: 0;
    box-shadow: 0 10px 28px rgba(0, 47, 52, 0.07);
}

            .adNewGalleryCard::before{
                content:"";
                position:absolute;
                top:0;
                left:0;
                right:0;
                height:76px;
                z-index:24;
                pointer-events:none;
                background: linear-gradient(180deg, rgb(0 0 0 / 30%) 0%, rgb(0 0 0 / 20%) 42%, rgba(0, 47, 52, 0) 100%);
            }

            .adGalleryBackBtn{
                position:absolute;
                top:14px;
                left:14px;
                z-index:33;
                width:42px;
                height:42px;
                padding:0;
                margin:0;
                border:0;
                background:transparent;
                color:#fff;
                display:flex;
                align-items:center;
                justify-content:center;
                cursor:pointer;
                filter:drop-shadow(0 2px 5px rgba(0,0,0,.65));
            }

            .adGalleryBackBtn svg{
                width:34px;
                height:34px;
                display:block;
                fill:none;
                stroke:currentColor;
                stroke-width:2.5;
                stroke-linecap:round;
                stroke-linejoin:round;
            }

            .adGalleryShareBtn{
                top:14px !important;
                right:14px !important;
                z-index:33 !important;
                width:42px !important;
                height:42px !important;
                border-radius:0 !important;
                background:transparent !important;
                color:#fff !important;
                box-shadow:none !important;
                filter:drop-shadow(0 2px 5px rgba(0,0,0,.65));
            }

            .adGalleryShareBtn:hover{
                transform:none !important;
                box-shadow:none !important;
                background:transparent !important;
            }

            .adGalleryShareBtn svg{
                width:34px !important;
                height:34px !important;
                stroke-width:2.2 !important;
            }

            .adFavoriteBtn{
                top:auto !important;
                left:auto !important;
                right:12px !important;
                bottom:94px !important;
                width:44px !important;
                height:44px !important;
                border-radius:10px !important;
                z-index:30 !important;
            }

            .adFavoriteIcon{
                width:28px !important;
                height:28px !important;
            }

            .adNewGalleryCounter{
                left:50% !important;
                right:auto !important;
                bottom:12px !important;
                transform:translateX(-50%) !important;
            }
        }

        @media(max-width:600px){
            .adFavoriteBtn{
                bottom:84px !important;
            }
        }

        @media(max-width:420px){
            .adFavoriteBtn{
                bottom:84px !important;
            }
        }
    
        /* До 760px убираем стрелки галереи, картинки листаются свайпом */
        @media(max-width:760px){
            .adNewGallery .adNewGalleryBtn,
            .adNewGalleryPrev,
            .adNewGalleryNext{
                display:none !important;
            }

            .adNewGallery{
                touch-action:pan-y !important;
                user-select:none;
                -webkit-user-select:none;
            }

            .adNewSlide img{
                -webkit-user-drag:none;
                user-select:none;
            }
        }



        /* Seller buttons fix: 501-760px two equal buttons in one row.
           Цена остаётся на своём месте справа от имени/даты.
           Для этого используем 12 колонок: верхняя строка seller/price,
           нижняя строка две одинаковые кнопки 6/6. */
        @media (min-width:501px) and (max-width:760px){
            .adNewSellerCard:not(.adNewLocationCard){
                grid-template-columns:repeat(12, minmax(0, 1fr)) !important;
                grid-template-areas:none !important;
                align-items:center !important;
                column-gap:10px !important;
                row-gap:12px !important;
            }

            .adNewSellerCard:not(.adNewLocationCard) > h2{
                grid-area:auto !important;
                grid-column:1 / -1 !important;
                grid-row:auto !important;
            }

            .adNewSellerCard:not(.adNewLocationCard) .adNewSeller{
                grid-area:auto !important;
                grid-column:1 / 9 !important;
                grid-row:auto !important;
                min-width:0 !important;
                margin:0 !important;
                align-self:center !important;
            }

            .adNewSellerCard:not(.adNewLocationCard) .adNewSellerPriceBox{
                grid-area:auto !important;
                grid-column:9 / -1 !important;
                grid-row:auto !important;
                justify-self:end !important;
                align-self:center !important;
                width:auto !important;
                min-width:110px !important;
                max-width:150px !important;
                margin:0 !important;
                padding:10px 12px !important;
                text-align:right !important;
                box-sizing:border-box !important;
            }

            .adNewSellerCard:not(.adNewLocationCard) .adNewMessageBtn{
                grid-area:auto !important;
                grid-column:1 / 7 !important;
                grid-row:auto !important;
            }

            .adNewSellerCard:not(.adNewLocationCard) .adNewPhoneRevealBtn,
            .adNewSellerCard:not(.adNewLocationCard) .adNewPhoneBtn{
                grid-area:auto !important;
                grid-column:7 / -1 !important;
                grid-row:auto !important;
            }

            .adNewSellerCard:not(.adNewLocationCard) .adNewMessageBtn,
            .adNewSellerCard:not(.adNewLocationCard) .adNewPhoneRevealBtn,
            .adNewSellerCard:not(.adNewLocationCard) .adNewPhoneBtn{
                width:100% !important;
                min-width:0 !important;
                max-width:none !important;
                height:48px !important;
                min-height:48px !important;
                margin:0 !important;
                padding:0 10px !important;
                display:flex !important;
                align-items:center !important;
                justify-content:center !important;
                box-sizing:border-box !important;
                text-align:center !important;
                white-space:nowrap !important;
                line-height:1.1 !important;
                align-self:stretch !important;
            }

            .adNewSellerCard:not(.adNewLocationCard) .adNewContactBtn + .adNewContactBtn,
            .adNewSellerCard:not(.adNewLocationCard) .adNewMessageBtn + .adNewPhoneRevealBtn,
            .adNewSellerCard:not(.adNewLocationCard) .adNewMessageBtn + .adNewPhoneBtn{
                margin-top:0 !important;
            }
        }

        /* Если на ширине 501-760 есть только одна кнопка, она занимает весь ряд. */
        @media (min-width:501px) and (max-width:760px){
            .adNewSellerCard:not(.adNewLocationCard) .adNewMessageBtn:last-child,
            .adNewSellerCard:not(.adNewLocationCard) .adNewPhoneRevealBtn:first-of-type:last-of-type,
            .adNewSellerCard:not(.adNewLocationCard) .adNewPhoneBtn:first-of-type:last-of-type{
                grid-column:1 / -1 !important;
            }
        }


        /* Details compact view до 600px:
           хаотичные компактные блоки-чипы, полный текст без сокращения. */
        @media(max-width:600px){
            .adNewMetaRow .adNewMetaId{
            font-size: 14px;
            }
            .adNewMetaRow .adNewMetaDate {
            font-size: 14px;
            }

            .adNewDetailsGrid{
                display:flex !important;
                flex-wrap:wrap !important;
                align-items:flex-start !important;
                justify-content:flex-start !important;
                gap:8px !important;
            }

            .adNewDetailItem{
                width:auto !important;
                max-width:100% !important;
                min-width:0 !important;
                flex:0 1 auto !important;
                padding:8px 10px !important;
                border-radius:999px !important;
                display:inline-flex !important;
                align-items:center !important;
                justify-content:flex-start !important;
                gap:4px !important;
                flex-wrap:wrap !important;
                overflow:visible !important;
                white-space:normal !important;
            }

            .adNewDetailItem div{
                margin:0 !important;
                padding:0 !important;
                color:#607d82 !important;
                font-size:12px !important;
                line-height:1.25 !important;
                font-weight:650 !important;
                white-space:normal !important;
                overflow:visible !important;
                text-overflow:clip !important;
                flex:0 0 auto !important;
                max-width:100% !important;
            }

            .adNewDetailItem div::after{
                content:":";
            }

            .adNewDetailItem strong{
                display:inline !important;
                color:#002f34 !important;
                font-size:13px !important;
                line-height:1.25 !important;
                font-weight:800 !important;
                white-space:normal !important;
                overflow:visible !important;
                text-overflow:clip !important;
                flex:0 1 auto !important;
                min-width:0 !important;
                max-width:100% !important;
                overflow-wrap:anywhere !important;
                word-break:normal !important;
            }

            .adNewDetailItem strong span{
                white-space:normal !important;
            }
        }

        @media(max-width:380px){
            .adNewDetailsGrid{
                gap:7px !important;
            }

            .adNewDetailItem{
                padding:7px 9px !important;
                border-radius:999px !important;
            }

            .adNewDetailItem div{
                font-size:11.5px !important;
            }

            .adNewDetailItem strong{
                font-size:12.5px !important;
            }
        }


        /* Meta row: ID + date must stay in one line.
           JS switches text variants if there is not enough space. */
        .adNewMetaRow{
            display:flex !important;
            flex-direction:row !important;
            align-items:center !important;
            justify-content:space-between !important;
            gap:10px !important;
            flex-wrap:nowrap !important;
            width:100% !important;
            min-width:0 !important;
            white-space:nowrap !important;
            overflow:hidden !important;
            text-align:left !important;
        }

        .adNewMetaRow .adNewMetaId{
            flex:0 0 auto !important;
            min-width:auto !important;
            max-width:none !important;
            overflow:visible !important;
            text-overflow:clip !important;
            white-space:nowrap !important;
        }

        .adNewMetaRow .adNewMetaDate{
            flex:0 0 auto !important;
            min-width:0 !important;
            max-width:100% !important;
            overflow:hidden !important;
            text-overflow:clip !important;
            white-space:nowrap !important;
            text-align:right !important;
        }

        .adNewMetaDateOnly,
        .adNewMetaDateShort{
            display:none !important;
        }

        .adNewMetaRow.is-no-label .adNewMetaDateLabel{
            display:none !important;
        }

        .adNewMetaRow.is-no-label .adNewMetaDateOnly{
            display:inline !important;
        }

        .adNewMetaRow.is-short-date .adNewMetaDateLabel,
        .adNewMetaRow.is-short-date .adNewMetaDateOnly{
            display:none !important;
        }

        .adNewMetaRow.is-short-date .adNewMetaDateShort{
            display:inline !important;
        }

        .adNewMetaRow.is-hide-id{
            justify-content:flex-end !important;
        }

        .adNewMetaRow.is-hide-id .adNewMetaId{
            display:none !important;
        }

.styleblokbootom{background: #fff;}
