/* * {
    scrollbar-width: thin;
    scrollbar-color: #0A5B35 #CCC;
} */

:root {
    --border-color-light-grey: #DEDEDE;
    --border-color-grey: #7D7D7D;
    --border-color-yellow: #C9A037;
    --inactive-grey: #7D7D7D;
    --lime-green: #07AA5B;
    --white: #FFF;
    --green: #0A5B35;
    --green-hover: #064728;
    --yellow: #C9A037;
    --yellow-hover: #AB882E;
    --red: #C40000;
    --red-hover: #940000;
    --btn-color-yellow: #C9A037;
    --btn-color-yellow-hover: #AB882E;
    --btn-color-green: #0A5B35;
    --btn-color-green-hover: #064728;
    --btn-color-red: #C40000;
    --btn-color-red-hover: #940000;
    --text-black: #000;
    --text-white: #FFF;
    --text-red: #C40000;
    --text-green: #0A5B35;
    --text-dark-green: #064728;
    --text-grey: #767676;
    --text-light-grey: #C9C9C9;
    --link-green: #0A5B35;
    --link-green-hover: #064728;
    --link-blue: #0D009C;
    --link-bright-blue: #0000FF;
    --card-light-grey: #F8F8F8;
    --card-border-grey: #F8F8F8;
    --card-border-yellow: #C9A037;
    --accordion-light-grey: #E4E4E4;
    --pricing-items: #F7F7F7;
    --form-fields-background-grey: #F3F3F3;
    --background-light-grey: #F6F6F6;
    --line-grey: #D9D9D9;
    --line-light-grey: #C2C2C2;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    overflow: auto;
    pointer-events: auto;
    /* touch-action: pan-y; */
    overscroll-behavior-x: none;
    scrollbar-width: thin;
    scrollbar-color: var(--green) #CCC;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html::-webkit-scrollbar {
    width: 8px;
}

html::-webkit-scrollbar-track {
    background: #CCC;
}

html::-webkit-scrollbar-thumb {
    background-color: var(--green);
    border-radius: 10px;
}

.container-fluid {
    width: 95% !important;
}

@media screen and (max-width: 600px) {
    .container-fluid {
        width: 100% !important;
    }

    .step_btns {
        min-width: auto !important;
    }
}

.grecaptcha-badge {
    display: none !important;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 20px;
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    text-rendering: optimizeLegibility;
}

main {
    display: block;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--green) #CCC;
}

input:disabled,
input:disabled:hover {
    cursor: not-allowed;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

select optgroup {
    background: none;
    color: #000;
}

select optgroup option:hover {
    background: #064728;
    color: var(--text-white);
}

select optgroup option.selected {
    background: #064728;
    color: var(--text-white);
}

select optgroup option.selected:hover {
    background: #064728;
    color: var(--text-white);
}

optgroup:before {
    content: attr(label);
    display: block;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
    appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

a {
    color: #007bff;
    text-decoration: none;
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

input,
select {
    padding: 5px 15px;
    background-color: var(--text-white);
    border: 1px solid #EEE;
    border-radius: 5px;
    font-size: 15px;
    font-family: "Inter", sans-serif !important;
    letter-spacing: 1px;
    color: #2C2C2C;
    font-weight: 400;
    min-height: 38px;
    width: calc(100% - 30px);
}

input[type="file"] {
    padding: 13.5px 15px;
    min-height: 20px;
}

select {
    width: 100%;
    min-height: 48px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="submit"] {
    color: var(--text-white);
    background-color: #C9A037;
    padding: 10px 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    height: 48px;
    width: 100%;
    cursor: pointer;
}

.text-danger {
    color: var(--text-red);
    /* margin: 10px 0 0 0; */
    display: inline-block;
}

section.newsletter .text-danger {
    text-shadow: 0 0 #000;
}

p.success {
    font-size: 13px !important;
    font-weight: 500 !important;
    margin: 10px 0 0 0;
    line-height: 26px !important;
}

.file-upload {
    position: relative;
    display: inline-block;
    width: 100%;
}

.file-input {
    display: none;
}

.file-label {
    padding: 10px 16px;
    background-color: #EEEEEE;
    color: #000000;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid #DADADA;
    margin: 0px !important;
    width: calc(100% - 32px);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
}

.file-name {
    display: block;
    font-size: 14px;
    color: #333;
    font-style: italic;
    text-align: center;
}

.error-message {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}

/* Optional: Style the input on focus */
.file-input:focus+.file-label {
    outline: none;
    border: 1px solid #666;
}

[hidden] {
    display: none;
}

.ads {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.ads .item {
    padding: 10px;
    background-color: var(--text-white);
    border-radius: 5px;
    width: calc(25% - 32px);
    text-decoration: none;
    -webkit-box-shadow: 0 5px 28px rgba(0, 0, 0, 0.12);
    box-shadow: 0 5px 28px rgba(0, 0, 0, 0.12);
}

.ads .item .thumbnail {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
    border: 2px solid #EEE;
}

.ads .item .thumbnail img {
    display: flex;
    width: 100%;
    height: 260px;
    max-height: 260px;
    object-fit: cover;
}

.ads .item .thumbnail .dog-sold {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0;
    margin: 0px auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    background: rgb(0 0 0 / 70%);
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.ads .item .thumbnail .dog-sold img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.badge_boosted {
    color: #000000;
    font-size: 11px;
    line-height: 20px;
    font-weight: 600;
    background: #ffe500;
    padding: 1px 5px;
    position: absolute;
    top: 8px;
    right: 5px;
    letter-spacing: 1px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.ads .item .thumbnail span.badge_boosted svg {
    width: 12px;
    height: 12px;
}

.ads .item .ad_meta {
    padding: 10px 5px;
}

.ads .item .ad_meta h2 {
    font-size: 15px;
    line-height: 20px;
    color: #0A5B35;
    text-transform: capitalize;
    text-align: center;
    min-height: 60px;
}

.ads .item .ad_meta ul {
    margin: 0 0 15px 0;
    list-style-type: none;
    padding: 0px;
}

.ads .item .ad_meta ul li {
    font-size: 13px;
    color: grey;
    letter-spacing: 1px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ads .item .ad_meta ul li:last-child {
    margin: 0px;
}

.ads .item .ad_meta ul li span {
    font-weight: 500;
}

.ads .item .ad_meta p {
    font-size: 16px;
    font-weight: 600 !important;
    color: #C9A037;
    text-decoration: none;
    line-height: 1.6;
    margin: 0px;
}

.slick-next,
.slick-prev {
    background: var(--btn-color-green) !important;
    border-radius: 50%;
    width: 33px !important;
    height: 33px !important;
    display: flex !important;
    justify-content: center;
    /* border: 1px solid #000 !important; */
    z-index: 4000;
}

.slick-prev {
    left: -7px !important;
}

.slick-next {
    right: -7px !important;
}

.slick-next:before,
.slick-next:before,
.slick-prev:before,
.slick-prev:before {
    color: var(--btn-color-green) !important;
    opacity: 1 !important;
}

.slick-next:hover:before,
.slick-next:hover:before,
.slick-prev:hover:before,
.slick-prev:hover:before {
    color: var(--btn-color-green-hover) !important;
}

.navbar-toggler {
    display: none;
}

header .header-top {
    padding: 5px 0px;
    background: #0A5B35;
    color: var(--text-white);
}

header .header-top .col {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .header-top .col p {
    font-size: 12px;
    letter-spacing: 2px;
    margin: 0px;
}

header .header-top .col ul,
header .header-top .col .social-liks ul {
    display: flex;
    margin: 0px;
    list-style-type: none;
    padding: 0px;
}

header .header-top .col ul li {
    margin: 0px 10px 0px 0px;
}

header .header-top .col ul li:last-child {
    margin: 0px;
}

header .header-top .col ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--text-white);
    border-radius: 50%;
    height: 25px;
    width: 25px;
}

header .header-top .col ul li a svg {
    fill: #0A5B35;
    height: 15px;
    width: 15px;
}

section.latest_ads {
    padding: 75px 0px;
    background: url(../img/golden_bg.png);
    background-size: cover;
    background-position: center;
}

section.latest_ads .title {
    text-align: center;
}

section.about {
    padding: 75px 0px;
    background: url("../img/green_bg.png");
    color: var(--text-white);
}

section.about .col {
    display: flex;
    align-items: center;
    gap: 15px;
}

section.about .col .content-item {
    width: 50%;
}

section.about .col .content-item img {
    width: 100%;
    border-radius: 5px;
}

section.breadcrumb {
    padding: 15px 0px;
    background-color: #000;
}

section.breadcrumb ul {
    margin: 0px;
    list-style-type: none;
    padding: 0px;
}

section.breadcrumb ul li {
    display: inline-flex;
    color: #888888;
    letter-spacing: 2px;
    font-size: 13px;
    text-transform: capitalize;
}

section.breadcrumb ul li::after {
    content: "/";
    margin: 0 0 0 7px;
    color: var(--text-white);
}

section.breadcrumb ul li:last-child::after {
    display: none;
}

section.breadcrumb ul li a {
    color: var(--text-white);
    text-decoration: none;
}

section.main_breadcrumb {
    padding: 60px 0px;
    background: url(../img/breadcrumb.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

section.main_breadcrumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(0 0 0 / 82%);
    opacity: 0.5;
    z-index: 1;
}

section.main_breadcrumb h1.title {
    color: var(--text-white);
    font-size: 42px;
    line-height: 48px;
    text-align: center;
    text-transform: capitalize;
    position: relative;
    z-index: 999;
    margin-bottom: 0;
}

section.main_breadcrumb ul {
    text-align: center;
    position: relative;
    z-index: 999;
}

section.place_ad.step-1 {
    font-family: 'Inter', sans-serif;
    padding-bottom: 0;
}

section.place_ad.step-1 .title,
section.place_ad.step-1 .content_display_on_select h3 {
    font-family: "Inter", sans-serif;
    margin-bottom: 0;
}

section.place_ad .col {
    width: 100%;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-direction: column;
}

section.place_ad .col h2.title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

section.place_ad .col h2.title span span {
    font-size: 18px;
}

#title,
#price,
#location {
    height: 48px !important;
}

section.place_ad .col .content .details {
    display: flex;
    flex-direction: column;
    gap: 0px;
    font-family: "Inter", sans-serif;
}

section.place_ad .col .content .details label {
    color: var(--green-hover);
    font-size: 14px;
    font-weight: 300;
    font-family: "Inter", sans-serif;
    white-space: nowrap;
}

section.place_ad .col .content .details input::placeholder {
    color: var(--green-hover);
    font-size: 14px;
    font-weight: 300;
    font-family: "Inter", sans-serif;
}

section.place_ad .col .content .details .title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
    font-family: "Inter", sans-serif;
}

section.place_ad .col .sidebar {
    width: 75%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

section.place_ad .col .sidebar .card {
    background: linear-gradient(180deg,
            rgba(199, 157, 56, 1) 0%,
            rgba(233, 187, 116, 1) 100%);
    padding: 20px;
    border: 1px solid #EEE;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
}

section.place_ad .col .sidebar .card ul {
    margin: 0 0 15px 0;
    padding: 0 0px 0 20px;
}

section.place_ad .col .sidebar .card ul li {
    margin-bottom: 15px;
}

section.place_ad .col .sidebar .card ul li:last-child {
    margin-bottom: 0px;
}

section.place_ad .col .sidebar .card ul li svg {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--text-white);
    padding: 10px;
    border-radius: 5px;
    border: 2px solid #EEE;
}

section.place_ad .details h3.title {
    margin: 0px;
}

section.place_ad .form-group {
    margin: 0px;
}

.form-group.double {
    display: flex;
    gap: 15px;
    margin: 0px;
}

.double .form-control {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.form-group .form-control .form-check input[type="radio"] {
    min-height: 20px;
    width: 20px;
}

.form-group .form-control .form-check {
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-group .form-control .form-check label {
    margin: 0px;
}

.boost_packages {
    padding: 0px;
}

.boost_packages .packages {
    margin: 0px 0px 0px 0px;
}

.boost_packages .content>p:nth-child(2) {
    font-size: 1.2rem;
    font-weight: 500;
    color: darkgreen;
}

.boost_packages .step_btns {
    justify-content: center;
}

.boost_packages .step_btns button {
    background-color: #0A5B35;
    width: 50%;
}

.boost_packages .step_btns button:hover {
    background-color: #064728;
    width: 50%;
}

.d-none {
    display: none;
}

.is-invalid {
    border: 1px solid red;
}

.packages {
    display: flex;
    gap: 15px;
}

.packages .item {
    text-align: center;
    background: var(--text-white);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    margin: 0 auto;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border: none;
    position: relative;
}

.packages .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.packages .item .title {
    color: var(--text-white);
    background: linear-gradient(135deg, #d4af37, #C9A037);
    font-size: 16px;
    padding: 20px;
    margin: 0;
    position: relative;
}

.packages .item .title h3 {
    font-size: 22px;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.packages .item .meta {
    padding: 25px 20px;
}

.packages .item .meta>div {
    margin-bottom: 20px;
}

.packages .item .meta h4 {
    font-size: 20px;
    margin: 0 0 5px 0;
    font-weight: 600;
    color: #333;
}

.packages .item .meta small {
    display: block;
    color: #777;
    margin-top: 5px;
    font-size: 14px;
}

.packages .item ul {
    margin: 0 0 25px 0;
    list-style-type: none;
    padding: 0;
}

.packages .item ul li {
    padding: 8px 0;
    color: #555;
    position: relative;
}

.packages .item ul li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.packages .item .meta p {
    font-size: 13px;
    font-style: italic;
    color: #888;
    margin-top: 15px;
}

/* Add a highlight for featured packages */
.packages .item.featured {
    transform: scale(1.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.packages .item.featured .title:after {
    content: "Best Value";
    position: absolute;
    top: -12px;
    right: -30px;
    background: #333;
    color: var(--text-white);
    font-size: 11px;
    padding: 3px 25px;
    transform: rotate(45deg);
    font-weight: 500;
}

/* Button styling */
.packages .item .btn {
    background: #C9A037;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    margin-top: 10px;
    height: 20px;
}

.packages .item .btn:hover {
    background: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 161, 55, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    section.ad_details .col .content .details ul li {
        font-size: 13px;
    }

    section.ad_details .col .content .details ul li strong svg {
        width: 15px;
        height: 15px;
    }

    section.edit-advert .container-fluid {
        width: 100% !important;
        padding: 0;
    }

    #user-update-ad-form {
        width: 100%;
        border-radius: 0;
    }
}

.one_line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.one_line label {
    margin: 0px;
}

.one_line p {
    margin: 0px;
}

.dropzone {
    border: 1px solid #EEE !important;
    border-radius: 5px;
}

.photos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.image-preview {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}

.navbar-collapse,
.navbar-collapse-filter {
    display: none;
}

/* Modern Minimalist Styling for Gun Dog Page */
section.page {
    padding: 60px 0;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* List styling */
section.page ul li,
section.page ol li {
    margin: 0 0 8px 0;
}

input[type="button"]:hover {
    background-color: #064728;
}

section.dfs {
    padding: 75px 0px;
}

section.dfs .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}

section.dfs .content .sidebar {
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

section.dfs .content .sidebar h2.title {
    margin: 0px;
}

section.dfs .content .sidebar .filter-card {
    background: var(--text-white);
    -webkit-box-shadow: 0 5px 28px rgba(0, 0, 0, 0.12);
    box-shadow: 0 5px 28px rgba(0, 0, 0, 0.12);
    padding: 20px;
    border: 1px solid #EEE;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

section.dfs .content .sidebar .filter-card h3.title {
    margin: 0px;
    background: #f5f5f5;
    padding: 12px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
}

section.dfs .content .sidebar .filter-card h3.category-title {
    margin: 0px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

section.dfs .content .sidebar .filter-card .category {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0px 10px;
}

section.dfs .content .sidebar .filter-card .category ul {
    margin: 0px;
    list-style-type: none;
    padding: 10px 5px 0px 5px;
}

section.dfs .content .sidebar .filter-card .category ul li.active a {
    color: #0A5B35;
}

section.dfs .content .sidebar .filter-card .category ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #646464;
    text-decoration: none;
}

section.dfs .content .sidebar .filter-card .category ul li a:hover {
    color: #0A5B35;
    font-weight: 600;
}

.arrow {
    font-size: 0.6em;
    margin-left: 10px;
}

.down::after {
    content: " ▼";
}

.up::after {
    content: " ▲";
}

.spinner-border {
    width: 1rem;
    /* Adjust size */
    height: 1rem;
    /* Adjust size */
    vertical-align: text-bottom;
    border: 0.2em solid currentColor;
    /* Matches text color */
    border-right-color: transparent;
    /* Creates spinning effect */
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
    /* Smooth spin */
}

/* Spinner Animation */
@keyframes spinner-border {
    to {
        transform: rotate(360deg);
        /* Full rotation */
    }
}

#card-errors {
    font-size: 12px;
    color: red;
}

section.dfs .content .insite_lists {
    width: 60%;
}

section.dfs .content .insite_lists .sorting-filter {
    margin-bottom: 24px;
    background-color: whitesmoke;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: end;
    border-radius: 5px;
}

section.dfs .content .insite_lists .sorting-filter h4 {
    margin: 0px;
}

section.dfs .content .insite_lists .sorting-filter select {
    max-width: 250px;
}

section.dfs .content .insite_lists .ads .item {
    width: calc(33% - 28px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section.dfs .content .insite_lists .ads .item:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

section.dfs .content .external_adverts {
    width: 15%;
}

section.dfs .content .external_adverts .items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

section.dfs .content .external_adverts .items a {
    width: 100%;
}

section.dfs .content .external_adverts .items a img {
    width: calc(100% - 0px);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}

.badge_verified {
    color: #000000;
    bottom: 10px;
    right: 5px;
    position: absolute;
    font-size: 11px;
    line-height: 20px;
    font-weight: 600;
    background: #0ed89c;
    padding: 1px 5px;
    letter-spacing: 1px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 65px;
    gap: 5px;
}

.badge_verified svg {
    width: 12px;
    height: 12px;
    fill: #000;
}

@media (max-width: 767.98px) {
    footer .content-item .social-liks ul {
        justify-content: center;
    }
}

.error-message {
    font-size: 12px;
    letter-spacing: 2px;
    color: red;
}

.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    position: relative;
    width: calc(100% - 32px);
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background-color: #d1ecf1;
    border: 1px solid #bee5eb;
}

.alert-warning {
    background-color: var(--text-white)3cd;
    border: 1px solid #ffeeba;
}

.alert .close {
    position: absolute;
    top: 10px;
    right: 2px;
    transform: translateY(-50%);
    font-size: 20px;
    color: #333;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

.alert .close span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    font-size: 35px;
}

.alert {
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.quick-nav {
    display: none;
}

.table-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0px 0px 0px;
    flex-direction: column;
    gap: 10px;
}

.table-pages {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.table-pages a {
    min-width: 25px;
}

.table-current-page {
    background-color: #0A5B35;
}

section.categories .row .col,
section.adv .row .col {
    width: calc(100% - 30px);
}

.place_ad_now {
    display: none;
}

.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
    border-radius: 5px;
    margin: 0 0 25px 0;
}

.leaflet-touch .leaflet-control-attribution {
    display: none !important;
}

.marker-price {
    color: #000 !important;
    font-weight: 600 !important;
    font-family: "Lato", sans-serif !important;
    background-color: var(--text-white) !important;
    border-radius: 28px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18),
        0px 2px 4px 0px rgba(0, 0, 0, 0.18), 0px 0px 0px 1px rgba(0, 0, 0, 0.08) !important;
    letter-spacing: 0.5px !important;
    padding: 2px 5px !important;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
    background: transparent !important;
    padding: 0px !important;
    border-radius: 5px !important;
    box-shadow: unset !important;
}

.leaflet-popup-content {
    margin: 0px 0px 13px 30px !important;
    font-size: 13px !important;
    font-size: 1.08333em !important;
}

.swiper-slide img {
    border-radius: 0px !important;
}

.swiper-pagination {
    top: 130px !important;
    left: 15px !important;
}

.swiper-pagination-bullet {
    background-color: var(--text-white) !important;
}

.leaflet-container a.leaflet-popup-close-button {
    top: 5px !important;
    right: 6px !important;
    color: #000000 !important;
    background: var(--text-white) !important;
    border: 1px solid #e6e6e6 !important;
    z-index: 9999;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-card-content {
    font-family: "Lato", sans-serif;
}

.popup-card-content h4 {
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    color: #000 !important;
}

.leaflet-popup-content p {
    color: #000;
    font-size: 12px !important;
    font-weight: 500;
    margin: 8px 0 0 0 !important;
}

/* .show {
    display: block !important;
} */

.grecaptcha-badge {
    display: none !important;
}

@media (min-width: 769px) and (max-width: 1023.98px) {
    .title {
        font-size: 22px;
        line-height: 26px;
    }

    section.main_breadcrumb h1.title {
        font-size: 36px;
        line-height: 40px;
        margin: 0px 0px 10px 0px;
    }

    section.dfs .content .sidebar {
        width: 35%;
    }

    section.dfs .content .insite_lists {
        width: 62%;
    }

    .ads .item {
        width: calc(50% - 28px) !important;
    }

    section.dfs .content .external_adverts {
        width: 100%;
        margin: 50px 0 0 0;
    }

    section.dfs .content .external_adverts .items a {
        width: calc(20% - 12px);
    }

    section.account .content .my_ads_listing .item {
        width: 100%;
    }

    section.ad_details .col .sidebar .adv_info ul li {
        font-size: 12px;
    }

    footer .col {
        flex-wrap: wrap;
    }

    footer .col .content-item,
    footer .col .content-item .social-liks {
        text-align: center;
    }

    footer .col .content-item .social-liks ul {
        justify-content: center;
    }

    footer .col .content-item:first-child {
        width: 100%;
    }

    footer .col .content-item:nth-child(2),
    footer .col .content-item:nth-child(3),
    footer .col .content-item:nth-child(4),
    footer .col .content-item:nth-child(5) {
        width: calc(50% - 13px);
    }
}

@media (max-width: 769px) {
    section.place_ad .col .content .details .title {
        font-size: 18px;
    }

    .quick-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        bottom: 0;
        background: var(--text-white);
        width: 100%;
        height: auto;
        left: 0px;
        z-index: 9960;
    }

    .quick-nav a {
        width: 33.33%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 9px 0px;
        color: var(--inactive-grey);
        height: auto;
        gap: 0px;
        text-align: center;
        text-decoration: none;
        border-top: 0.3px solid var(--border-color-light-grey);
    }

    .quick-nav a span {
        font-size: 14px;
        font-weight: 500;
        font-family: "Inter", sans-serif;
        letter-spacing: 0;
    }

    .quick-nav a svg {
        width: 15px;
        height: 15px;
        fill: var(--text-white);
    }

    .quick-nav a.active {
        color: var(--green);
        border-top: 1px solid var(--green) !important;
    }

    .quick-nav a.active.no-fill svg path {
        stroke: var(--green);
        stroke-width: 1px;
        fill: none;
    }

    .quick-nav a.active svg path {
        fill: var(--green);
    }

    .navbar-toggler {
        border: 1px solid #EEE;
        background: var(--text-white);
        padding: 0px 4px;
        border-radius: 5px;
        height: 45px;
        width: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .navbar-toggler svg {
        width: 18px;
        height: 18px;
    }

    section.main_breadcrumb {
        padding: 30px 0px;
    }

    section.main_breadcrumb h1.title {
        font-size: 32px;
        line-height: 34px;
        margin: 0 0 10px 0;
    }

    .title {
        font-size: 24px;
        line-height: 24px;
    }

    .slick-prev {
        left: 0px !important;
    }

    .slick-next {
        right: 0px !important;
    }

    .ads {
        flex-wrap: wrap;
    }

    section.about .col {
        flex-direction: column-reverse;
    }

    section.about .col .content-item {
        width: 100%;
    }

    footer .col {
        flex-wrap: wrap;
    }

    footer .col .content-item {
        text-align: center;
    }

    footer .col .content-item:first-child {
        width: 100%;
    }

    footer .col .content-item:nth-child(2),
    footer .col .content-item:nth-child(3),
    footer .col .content-item:nth-child(4),
    footer .col .content-item:nth-child(5) {
        width: calc(50% - 13px);
    }

    section.place_ad .col {
        flex-direction: column;
    }

    section.place_ad .col .content,
    section.place_ad .col .sidebar {
        width: calc(100% - 1px) !important;
    }

    .packages {
        flex-direction: column;
        gap: 12px;
    }

    section.place_ad .form-group.double {
        flex-direction: column;
    }

    section.place_ad .form-group.double .form-control {
        width: 100%;
    }

    .photos .dropzone {
        width: calc(50% - 10px);
    }

    .ads .item {
        width: 100%;
    }

    section.blog .items .item,
    section.dfs .content .sidebar,
    section.dfs .content .insite_lists,
    section.dfs .content .insite_lists .ads .item {
        width: 100%;
    }

    section.dfs .content,
    section.dfs .content .insite_lists .sorting-filter,
    section.account .content .user_profile>div,
    section.account .content .my_ads_listing .item {
        flex-direction: column;
    }

    section.account .content .my_ads_listing .item .my_ads_listing_meta {
        width: 100%;
        text-align: center;
    }

    section.account .content .my_ads_listing .item {
        width: 100%;
    }

    .place_ad_now {
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: var(--text-white);
        background-color: var(--yellow);
        bottom: 85px;
        right: 15px;
        border-radius: 5.28px;
        position: fixed;
        z-index: 9990;
        padding: 10.57px 21.13px;
        text-decoration: none;
    }

    .place_ad_now span {
        font-size: 13px;
        font-weight: 400;
        font-family: "Inter", sans-serif;
        letter-spacing: 0;
    }

    .place_ad_now svg {
        display: none;
    }

    section.ad_details .col {
        width: calc(100% - 30px);
        flex-direction: column;
    }

    section.ad_details .col .content {
        width: 100%;
    }

    section.dfs .content .external_adverts {
        width: 100%;
    }
}

@media only screen and (max-width: 380px) {
    .place_ad_now {
        padding: 10px;
    }

    .place_ad_now span {
        display: none;
    }

    .place_ad_now svg {
        display: flex;
        width: 20px;
        height: 20px;
        fill: var(--text-white);
    }

    section.place_ad.edit-advert .row:last-of-type .content {
        max-width: 350px !important;
    }
}

@media only screen and (max-width: 325px) {
    section.place_ad.edit-advert .row:last-of-type .content {
        max-width: 300px !important;
    }
}

.dropzone .dz-preview .dz-error-message {
    top: -39px !important;
}

.dropzone .dz-preview .dz-error-message:after {
    top: unset !important;
    bottom: -6px !important;
    border-top: 6px solid #be2626 !important;
    border-bottom: unset !important;
    left: 44% !important;
}

.selected-plan {
    background: #0A5B35 !important;
}

@media (min-width: 1023.98px) and (max-width: 1299.98px) {
    section.dfs .content .insite_lists {
        width: 73%;
    }

    section.dfs .content .external_adverts {
        width: 100%;
        margin: 50px 0px 0px 0px;
    }

    section.dfs .content .external_adverts .items a {
        width: calc(20% - 12px);
    }
}

@media (min-width: 1300px) {
    section.dfs .content .sidebar {
        width: 22%;
    }
}

.search-results-info {
    text-align: center;
}


.county-dropdown {
    position: relative;
    width: 100%;
    min-width: 250px;
}

.county-dropdown .dropdown-wrapper {
    display: inline-block;
    width: 100%;
}

.county-dropdown .dropdown-header {
    padding: 5px 15px;
    background-color: var(--text-white);
    cursor: pointer;
    border: 1px solid #EEE;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 200px;
    min-height: 36px;
    font-family: "Lato", sans-serif !important;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 400;
    color: #2C2C2C;
}

.county-dropdown .dropdown-toggle-icon {
    font-size: 12px;
}

.county-dropdown .dropdown-list li {
    list-style-type: none;
}

.county-dropdown .dropdown-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid #EEE;
    border-radius: 5px;
    background-color: var(--text-white);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
    z-index: 999;
    font-family: "Lato", sans-serif !important;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 400;
    color: #2C2C2C;
}

.county-dropdown .dropdown-list.open {
    display: block;
}

.county-dropdown .country-title {
    font-weight: bold;
    padding: 5px 10px;
    cursor: pointer;
}

.county-dropdown .country-title .collapse-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.county-dropdown .country-title .collapse-icon.open {
    transform: rotate(180deg);
}

.county-dropdown .county-list {
    list-style-type: none;
    padding-left: 0;
    display: none;
    margin-left: 20px;
    margin-top: 0px;
}

.county-dropdown .county-option {
    display: block;
    padding: 5px 10px;
    text-decoration: none;
    color: #333;
    cursor: pointer;
}

.county-dropdown .county-option.selected {
    background-color: #0A5B35;
    color: var(--text-white);
}

.county-dropdown .county-option.selected:hover {
    color: var(--text-white);
}

.county-dropdown .county-option:hover {
    background-color: #0A5B35;
    color: var(--text-white);
}

.county-dropdown .dropdown-wrapper.open .dropdown-list {
    display: block;
}

.county-dropdown .collapse.show {
    display: block;
}

.place_ad.ad_details input,
.place_ad.ad_details select {
    height: fit-content !important;
}

section.step-2 input.form-check-input,
section.place_ad.edit-advert input.form-check-input {
    height: 16px !important;
    min-height: auto !important;
}

section.step-2 .inline-container,
section.place_ad.edit-advert .inline-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    max-width: 500px;
}

section.step-2 .inline-container .col,
section.place_ad.edit-advert .inline-container .col {
    justify-content: start;
}

.datepicker-shown {
    max-width: 500px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

#sendBtn:disabled {
    background-color: #ccc;
    /* Gray background */
    color: #666;
    /* Dim text */
    cursor: not-allowed;
    /* Show disabled cursor */
    opacity: 0.6;
    /* Reduce opacity */
}

#advert-title-tooltip {
    display: none;
    position: absolute;
    background-color: #333;
    color: var(--text-white);
    padding: 10px;
    border-radius: 5px;
    font-size: 0.9em;
    width: 250px;
    top: 100%;
    left: 0;
    margin-top: 5px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Style for labels of required fields */
.required-label::after {
    content: " *";
    color: red;
}

.payment-ad-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    background-color: var(--white);
}

.payment-ad-info .details {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px !important;
    justify-content: center;
}

@media (max-width: 1023.98px) {
    .payment-ad-info {
        display: block !important;
    }

    .payment-ad-info .details,
    .payment-ad-info .payment-ad-details {
        width: auto !important;
    }
}

.step_btns {
    display: flex;
    margin: auto;
    min-width: 700px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 100px;
}

.prev-step,
.prev-step button,
.prev-step input {
    color: var(--text-green);
    background-color: var(--white);
    border-color: var(--btn-color-green);
    border-radius: 100px;
    gap: 30px;
    text-decoration: none;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: row;
    height: 59px;
    width: -webkit-fill-available;
    transition: all 0.3s ease-in-out;
    max-width: 300px;
}

button.next-step,
button.finish-step {
    color: var(--text-white);
    background-color: var(--btn-color-green);
    border-color: var(--btn-color-green);
    padding: 24px 14px;
    border-radius: 100px;
    gap: 15px;
    text-decoration: none;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: row;
    height: 59px;
    width: -webkit-fill-available;
    transition: all 0.3s ease-in-out;
    max-width: 300px;
}

.prev-step span,
.prev-step button span,
.prev-step input span {
    color: var(--text-green);
    font-size: 14px;
    line-height: 23px;
    letter-spacing: 0;
    font-weight: 300;
}

button.next-step span,
button.finish-step span {
    color: var(--white);
    font-size: 14px;
    line-height: 23px;
    letter-spacing: 0;
    font-weight: 300;
}

.prev-step:hover,
.prev-step:hover input,
.prev-step:hover button,
.prev-step button:hover,
button.next-step:hover,
.prev-step:disabled,
.prev-step:disabled input,
.prev-step:disabled button,
.prev-step button:disabled,
button.next-step:disabled {
    background-color: var(--btn-color-green-hover) !important;
    border-color: var(--btn-color-green-hover) !important;
    transform: scaleX(1.05);
    color: var(--text-white) !important;
}

.prev-step:disabled,
.prev-step:disabled input,
.prev-step:disabled button,
.prev-step button:disabled,
button.next-step:disabled {
    cursor: not-allowed;
}

.prev-step:hover span,
.prev-step:hover input span,
.prev-step:hover button span,
.prev-step button:hover span {
    color: var(--text-white);
}

.prev-step:active span,
.prev-step:active input span,
.prev-step:active button span,
.prev-step button:active span {
    color: var(--text-white);
}

.prev-step:focus-visible span,
.prev-step:focus-visible input span,
.prev-step:focus-visible button span,
.prev-step button:focus-visible span {
    color: var(--text-white);
}

.prev-step:active,
.prev-step:active input,
.prev-step:active button,
.prev-step button:active,
button.next-step:active {
    background-color: var(--btn-color-green-hover) !important;
    border-color: var(--btn-color-green-hover) !important;
    transform: scaleX(1.05);
    color: var(--text-white) !important;
}

.prev-step:focus-visible,
.prev-step:focus-visible input,
.prev-step:focus-visible button,
.prev-step button:focus-visible,
button.next-step:focus-visible {
    background-color: var(--btn-color-green-hover) !important;
    border-color: var(--btn-color-green-hover) !important;
    transform: scaleX(1.05);
    color: var(--text-white) !important;
}

.prev-step:hover span,
.prev-step:hover input span,
.prev-step:hover button span,
.prev-step button:hover span {
    color: var(--text-white) !important;
}

.prev-step svg,
.prev-step input svg,
.prev-step button svg,
.prev-step button svg {
    transition: all 0.3s ease-in-out;
}

.prev-step:hover svg,
.prev-step:hover input svg,
.prev-step:hover button svg,
.prev-step button:hover svg {
    transform: rotate(45deg);
}

.prev-step:hover svg path,
.prev-step:hover input svg path,
.prev-step:hover button svg path,
.prev-step button:hover svg path {
    stroke: var(--white);
}

.prev-step:active svg path,
.prev-step:active input svg path,
.prev-step:active button svg path,
.prev-step button:active svg path {
    stroke: var(--white);
}

.prev-step:focus-visible svg path,
.prev-step:focus-visible input svg path,
.prev-step:focus-visible button svg path,
.prev-step button:focus-visible svg path {
    stroke: var(--white);
}

.mobile-back-btn {
    display: none;
}

button.finish-step:hover {
    background-color: var(--btn-color-green-hover) !important;
    border-color: var(--btn-color-green-hover) !important;
}

button.finish-step:active {
    background-color: var(--btn-color-green-hover) !important;
    border-color: var(--btn-color-green-hover) !important;
}

button.finish-step:focus-visible {
    background-color: var(--btn-color-green-hover) !important;
    border-color: var(--btn-color-green-hover) !important;
}

.image_area {
    width: fit-content;
}

.ad_details #current_dog_images,
.ad_details #current_images {
    gap: 30px;
}

.image_move {
    position: relative;
}

.ui-sortable-helper {
    width: 150px !important;
    height: 150px !important;
    z-index: 9999;
}

.ui-sortable-helper img {
    width: 150px !important;
    height: 150px !important;
    object-fit: contain;
}

.sortable-placeholder {
    background: #f0f0f0;
    border: 2px dashed #ccc;
    height: 150px;
    /* match image height */
    width: 150px;
}


.ad_details .image-preview {
    display: flex;
    flex-wrap: wrap;
}

.ad_details .image-preview div {
    position: relative;
    margin: 5px;
    cursor: move;
    /* indicates this item can be dragged */
}

.ad_details .remove-image,
.ad_details .remove-dog-image {
    position: absolute;
    top: 5px;
    right: 5px;
    background: red;
    color: white;
    border: 1px solid red;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    padding-bottom: 3px;
}

.ad_details .remove-image:hover,
.ad_details .remove-dog-image:hover {
    background: darkred;
    border-color: darkred;
}

/* Semi-transparent full-screen backdrop */
#noAccountModalBackdrop {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: auto;
}

/* The actual modal box, centered in the viewport */
#noAccountModalBackdrop .modal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--text-white);
    max-width: 500px;
    width: 90%;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
}

#noAccountModalBackdrop .modal-buttons {
    margin-top: 20px;
    text-align: right;
}

#placeAdStep1 {
    position: relative;
}

#placeAdStep1 .step_btns .next-step,
#placeAdStep1 .step_btns {
    display: none;
}

#placeAdStep1 .step_btns .next-step {
    margin: auto;
}

#placeAdStep1 .container-fluid {
    margin: 100px auto;
    display: flex;
    flex-direction: row;
    gap: 100px;
    justify-content: space-between;
    transition: all 0.2s ease;
}

#advert-advantages {
    position: relative;
    background: linear-gradient(90deg, #0A5B35 0%, #002111 100%);
    padding: 50px;
    font-family: "Inter", sans-serif;
    display: flex;
    flex-direction: column;
    gap: 42px;
    justify-content: center;
    align-items: start;
    border-radius: 10px;
    max-width: 670px;
    height: 582.7164306640625px;
    transition: left 0.2s ease, transform 0.8s ease;
}

#advert-advantages-tab {
    display: none;
    transform: rotate(90deg);
    border-radius: 4.33px;
    padding: 5px 20px 0 20px;
    background: linear-gradient(90deg, #0A5B35 0%, #002111 100%);
    position: absolute;
    top: 70px;
    left: -10%;
    z-index: 1000;
    height: 40px;
    align-items: start;
    transition: all 0.2s ease;
}

#advert-advantages-tab:hover {
    cursor: pointer;
}

#advert-advantages .close {
    background-color: var(--white);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    position: absolute;
    top: 2%;
    right: 2%;
    display: none;
    justify-content: center;
    align-items: center;
}

#advert-advantages .close:hover {
    cursor: pointer;
}

#advert-advantages-tab span {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: var(--text-white);
}

#advert-advantages .advantages-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 15px;
}

#buyers-checklist h2 {
    font-weight: 500;
}

#advert-advantages .title,
#advert-advantages .sub-title {
    font-family: "Inter", sans-serif;
    letter-spacing: 0;
    color: var(--text-white);
    margin-bottom: 0;
}

#advert-advantages .title {
    font-weight: 600;
    font-size: 30px;
    text-align: left;
    vertical-align: middle;
}

#advert-advantages .sub-title {
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
    vertical-align: middle;
}

#advert-advantages .features-slider {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    max-width: 570px;
    gap: 30px;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    touch-action: pan-x;
}

.features-slider::-webkit-scrollbar {
    display: none;
}

#advert-advantages .features-slider .feature {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: 281px;
    height: 200px;
    gap: 10px;
    border-radius: 5px;
    padding: 27px 26px;
    background-color: var(--white);
    margin-top: 20px;
}

#advert-advantages .features-slider .feature svg {
    width: 25px;
    height: 25px;
}

#advert-advantages .features-slider .feature .feature-title {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0;
}

#advert-advantages .features-slider .feature .feature-body {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0;
}

#advert-advantages .conclusion {
    font-size: 14px;
    color: var(--text-white);
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0;
    margin-bottom: 0;
}

#placeAdStep1 .form-wrapper {
    max-width: 624px;
    width: -webkit-fill-available;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: start;
    transition: all 0.2s ease;
}

#placeAdStep1 .form-wrapper .content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: start;
    align-items: start;
    width: -webkit-fill-available;
}

#placeAdStep1 .form-wrapper .content .content-cat-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: start;
    align-items: start;
    max-width: 624px;
    width: -webkit-fill-available;
}

#placeAdStep1 .form-wrapper .content .content-cat-wrapper p {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0;
    color: #4F4F4F;
}

#placeAdStep1 #selected-category {
    font-family: "Inter" sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0;
    color: #4F4F4F;
}

#placeAdStep1 select,
#placeAdStep1 .select2-container--default .select2-selection--single,
#placeAdStep1 .select2-container--default .select2-selection--single .select2-selection__placeholder,
#placeAdStep1 input {
    border: 0 !important;
    background-color: var(--form-fields-background-grey);
    color: var(--text-green);
}

#placeAdStep1 .select2-container--bootstrap-5.select2-container--focus .select2-selection,
#placeAdStep1 .select2-container--bootstrap-5.select2-container--open .select2-selection {
    border-color: var(--green);
    box-shadow: 0 0 0 .25rem rgba(10, 91, 53, 0.25);
}

#placeAdStep1 .select2-container .select2-selection--single {
    height: 57px;
    border-radius: 6px;
    border-color: var(--form-fields-background-grey);
    background-color: var(--form-fields-background-grey);
}

#placeAdStep1 .select2-container--bootstrap-5 .select2-selection--single {
    background-image: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

#placeAdStep1 .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered .select2-selection__placeholder {
    font-family: "Inter", sans-serif;
    color: var(--text-green);
}

#placeAdStep1 .select2-container .select2-selection--single .select2-selection__rendered {
    display: flex;
    justify-self: center;
    color: var(--text-green);
    font-family: "Inter", sans-serif;
}

#placeAdStep1 .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px;
}

#placeAdStep1 .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--green) transparent transparent transparent;
}

#placeAdStep1 .category-list,
#placeAdStep1 span.select2-container {
    width: -webkit-fill-available !important;
}

#placeAdStep1 .boost-packages .boost-card {
    background-color: var(--pricing-items);
}

#placeAdStep1 .boost-benefits p {
    color: var(--text-black);
}

#placeAdStep1 .btn.selected-plan {
    background-color: var(--btn-color-green-hover);
    border-color: var(--btn-color-green-hover) !important;
}

#advert-advantages .tab-handle {
    position: absolute;
    right: -20px;
    top: 50%;
    width: 20px;
    height: 60px;
    background: #333;
    cursor: pointer;
    transform: translateY(-50%);
}

#placeAdStep1 .category-list label {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0;
    color: var(--text-green);
}

@media screen and (max-width: 1025px) {
    #placeAdStep1 .container-fluid {
        margin: 50px auto;
        gap: 60px;
    }

    #advert-advantages {
        padding: 20px;
        justify-content: start;
        max-width: 470px;
    }

    #advert-advantages .features-slider {
        max-width: 430px;
    }
}

@media screen and (max-width: 769px) {
    #placeAdStep1 .container-fluid {
        flex-direction: column;
    }

    #advert-advantages,
    #placeAdStep1 .form-wrapper {
        max-width: none;
    }

    #placeAdStep1 .form-wrapper {
        padding: 0 15px;
    }

    #placeAdStep1 .form-wrapper .content {
        gap: 20px;
    }

    #placeAdStep1 .form-wrapper .content .boost-wrapper-2 {
        padding: 0px;
    }

    #advert-advantages {
        height: auto;
        border-radius: 0;
    }

    #advert-advantages .features-slider {
        max-width: 90vw;
    }

    #placeAdStep1 .form-wrapper .content .content-cat-wrapper {
        gap: 15px;
    }

    #placeAdStep1 .container-fluid {
        gap: 30px;
        padding: 0;
    }

    #advert-advantages .title {
        font-size: 22px;
        line-height: 26px;
    }

    #advert-advantages .sub-title {
        font-size: 14px;
    }

    #advert-advantages .features-slider .feature {
        padding: 17px 16px;
        height: 170px;
        width: 250px;
        justify-content: start;
    }

    #placeAdStep1 .form-wrapper .content .content-cat-wrapper p {
        font-size: 12px;
    }

    #placeAdStep1 .boost-wrapper-2 .boost-packages .boost-card .line {
        width: 180px;
    }

    #placeAdStep1 .boost-wrapper-2 .boost-packages .boost-card .boost-btn {
        white-space: nowrap;
        padding: 18px 20px;
    }

    .step_btns {
        justify-content: center;
    }

    .step_btns .prev-step {
        display: none;
    }

    .mobile-back-btn {
        display: flex;
        width: 100px;
    }

    .mobile-back-btn .prev-step {
        gap: 20px;
    }
}

@media screen and (max-width: 426px) {
    #placeAdStep1 .container-fluid {
        margin: 20px auto 50px auto;
    }
}

#buyers-checklist .pointer {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYwcHgiIGhlaWdodD0iMTQwcHgiIHZpZXdCb3g9IjAgMCAxNjAgMTQwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiNmZmZmZmYiPjxwYXRoIGQ9Ik04MCAwTDAgMTQwaDE2MHoiLz48L2c+PC9zdmc+);
    background-size: cover;
    background-position-x: center;
    top: 0;
    height: 40px;
    z-index: 1;
    transform: scale(1, -1);
}

#advert-advantages .container,
#buyers-checklist .container {
    padding-top: 50px;
    padding-bottom: 50px;
}

#buyers-checklist strong {
    color: #000;
}

@media (max-width: 1023px) {
    #drag-msg {
        display: none !important;
    }
}

/* Styles for Back to Top Button */
/* Initially hidden until user scrolls */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 15px;
    background-color: #0C5B34;
    color: var(--text-white);
    padding: 4px 8px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: none;
    opacity: 0.7;
    z-index: 9990;
}

/* Hover state on desktops */
@media (min-width: 1025px) {
    #backToTop:hover {
        opacity: 1;
    }
}

/* On screens <= 1024px, always fully opaque (no hover) */
@media (max-width: 1024px) {
    #backToTop {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    #backToTop {
        bottom: 86px;
    }

    #backToTop svg {
        width: 15px !important;
        height: 15px !important;
    }
}

@media (max-width: 426px) {
    #backToTop {
        bottom: 85px;
        padding: 8px 8px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

#backToTop svg {
    width: 25px;
    height: 25px;
    fill: var(--text-white);
    vertical-align: middle;
}

section.ad_details.boost-page .col .content {
    width: 100%;
}

section.ad_details.boost-page {
    padding-bottom: 50px;
}

button[disabled] {
    cursor: not-allowed;
}

.place_ad.step-2 .one_line p {
    font-size: 14px;
}

.place_ad.step-2 .requirement-info {
    display: none;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

.place_ad.step-2 .requirement-info span {
    color: red;
}

#user-update-ad-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-color: var(--background-light-grey);
    border-radius: 10px 10px;
    padding: 30px 0px;
}

.update-ad-submit-button {
    color: var(--white);
}

section.place_ad.edit-advert .col .content .details .details {
    gap: 0;
}

section.place_ad.edit-advert .col h2.title,
section.place_ad.step-3 .col h2.title {
    margin-bottom: 5px;
}

section.place_ad.edit-advert .content p,
section.place_ad.step-3 .content p {
    font-size: 14px;
}

section.place_ad.edit-advert .content strong,
section.place_ad.step-3 .content strong {
    color: #000;
    font-weight: 600;
}

#drag-msg {
    font-size: 14px;
    margin-top: 0px;
    margin-bottom: 10px;
    font-style: italic;
}

section.place_ad.edit-advert .image_area p,
section.place_ad.step-3 .image_area p {
    margin: 0;
    margin-left: 2px;
    max-width: 100% !important;
}

#imageUploadModal,
#imageErrorModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.image-upload-modal {
    width: 240px !important;
    min-height: 140px;
}

.image-upload-modal,
.image-error-modal {
    background: var(--text-white);
    border-radius: 8px;
    padding: 20px;
    width: 80%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.image-error-modal-close-btn {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    background: #0A5B35;
    color: var(--text-white);
    cursor: pointer;
    border-radius: 4px;
}

.image-error-modal-close-btn:hover {
    background: #064728;
}

.image-upload-modal .image-upload-modal-spinner {
    display: flex;
    margin-top: 30px;
    justify-content: center;
}

.image-upload-modal .image-upload-modal-spinner .spinner-border {
    display: flex;
    height: 35px;
    width: 35px;
    border: 5px solid green;
    border-right-color: transparent;
}

section.place_ad #current_images #no-images,
section.place_ad #image-count {
    font-weight: 400;
}

.btn.ad-image-upload {
    border-radius: 100px;
    padding: 20px 20px;
    height: 59px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--btn-color-yellow);
    border-color: var(--btn-color-yellow);
}

.btn.ad-image-upload:active,
.btn.ad-image-upload:hover {
    background-color: var(--btn-color-yellow-hover) !important;
    border-color: var(--btn-color-yellow-hover) !important;
}

.btn.ad-image-upload .btn-text {
    text-align: center;
}

section.place_ad.step-3 span.edit-label,
section.place_ad.edit-advert .edit-label,
section.place_ad.edit-advert span.edit-image-data,
section.place_ad.step-3 span.edit-image-data {
    position: absolute;
    top: 40px;
    right: 5px;
    background-color: var(--btn-color-green);
    color: var(--text-white);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.place_ad.step-3 span.edit-label:hover,
section.place_ad.edit-advert .edit-label:hover,
section.place_ad.edit-advert span.edit-image-data:hover,
section.place_ad.step-3 span.edit-image-data:hover {
    background-color: var(--btn-color-green-hover);
}

section.place_ad.step-3 span.edit-label svg path,
section.place_ad.edit-advert .edit-label svg path,
section.place_ad.edit-advert span.edit-image-data svg path,
section.place_ad.step-3 span.edit-image-data svg path {
    stroke: var(--text-white);
}

section.place_ad.edit-advert span.image-label,
section.place_ad.step-3 span.image-label {
    white-space: normal;
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: var(--btn-color-green);
    color: var(--text-white);
    padding: 2px 12px;
    border-radius: 20px 20px;
    display: flex;
    flex-direction: row;
    justify-self: center;
    align-items: center;
    font-size: 12px;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    text-align: center;
    vertical-align: middle;
    line-height: normal;
}

@media only screen and (max-width: 426px) {
    section.edit-advert .step_btns {
        margin-bottom: 10px;
    }

    section.place_ad.edit-advert .row:first-of-type .content .image_area,
    section.place_ad.edit-advert .row:nth-of-type(2) .content .image_area,
    section.place_ad.step-3 .content .image_area {
        padding: 20px 10px !important;
    }

    section.place_ad.step-3 #image-count {
        font-size: 14px;
    }

    #user-update-ad-form {
        /* padding: 0px 0px; */
        border-radius: 0;
        margin-bottom: 30px;
    }

    section.place_ad.edit-advert .row:first-of-type .content,
    section.place_ad.edit-advert .row:nth-of-type(2) .content {
        border-radius: 0 !important;
        padding: 10px !important;
    }

    section.place_ad.edit-advert .row:last-of-type .content {
        max-width: 400px;
    }

    section.place_ad .col .content .details label {
        white-space: normal;
    }

    section.payment-page .col {
        padding: 0;
    }

    section.payment-page .form-wrapper {
        width: 100% !important;
        border-radius: 0 !important;
        padding: 5px !important;
    }

    section.edit-advert .container {
        padding: 0 5px;
    }

    .col {
        padding: 0;
    }

    section.edit-advert .col .content .details {
        padding: 10px;
    }

    .btn.ad-image-upload {
        border-radius: 8px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    /* .ad_details .image-preview img {
        width: 150px !important;
        height: 150px !important;
        object-fit: cover;
        display: block;
    } */

    section.place_ad.step-3 .content {
        width: 100% !important;
        padding: 10px !important;
    }

    section.place_ad.step-3 .col {
        padding: 0;
    }

    section.place_ad.step-3 .content,
    section.place_ad.step-3 .content .image_area {
        border-radius: 0 !important;
    }


    .btn.ad-image-upload .btn-text {
        white-space: normal;
    }
}


section.edit-advert .step_btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

section.edit-advert .update-ad-submit-button {
    width: 300px;
    background-color: var(--btn-color-green);
    border-color: var(--btn-color-green);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: var(--white);
    height: 60px;
    border-radius: 100px;
}

section.edit-advert .update-ad-submit-button:hover {
    background-color: var(--btn-color-green-hover);
    border-color: var(--btn-color-green-hover);
}

#healthTestsSection {
    border: 1px solid rgb(221, 221, 221);
    padding: 1em;
    gap: 10px;
    flex-direction: column;
    margin: inherit;
    display: none;
}

#healthTestsSection .one_line input[type="date"] {
    max-width: 150px
}

@media only screen and (max-width: 500px) {
    #healthTestsSection {
        padding: 5px;
    }

    #healthTestsSection .one_line.health-test-date-field {
        flex-direction: column;
        /* align-items: start; */
    }
}

/* Modal overlay styles for the <noscript> block */
.no-js-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    color: var(--text-white);
    font-family: sans-serif;
    text-align: center;
    padding: 1em;
}

.no-js-overlay .box {
    background: #222;
    padding: 2em;
    border-radius: 8px;
    max-width: 90%;
}

.no-js-overlay h1 {
    margin-top: 0;
}

.no-js-overlay a {
    color: #4FC3F7;
    text-decoration: underline;
}

.no-js-overlay button {
    margin-top: 1em;
    padding: 0.5em 1em;
    font-size: 1em;
    border: none;
    border-radius: 4px;
    background: #4FC3F7;
    color: #222;
    cursor: pointer;
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: var(--text-white);
    padding: 1em;
    /* display: flex; */
    display: hidden;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    opacity: 1;
}

@media only screen and (max-width: 768px) {
    #cookie-banner button {
        margin-left: 0px;
        margin-bottom: 1em;
    }
}

#cookie-banner button {
    margin-left: 1em;
    padding: 0.5em 1em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    color: var(--text-white);

}

#cookie-banner .accept {
    background: #0A5C33;
}

#cookie-banner .reject {
    background: #C9A037;
}

.alert.alert-success.alert-dismissible.fade.show,
.alert.alert-info.alert-dismissible.fade.show,
.alert.alert-warning.alert-dismissible.fade.show,
.alert.alert-danger.alert-dismissible.fade.show {
    word-wrap: break-word !important;
}

/* Ad Block pop up */
.adblock-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.adblock-modal.active {
    display: flex;
}

.adblock-dialog {
    max-width: 400px;
    width: 90%;
    background: var(--text-white);
    border-radius: 8px;
    overflow: hidden;
}

.adblock-content {
    padding: 20px;
    text-align: center;
}

.adblock-content h2 {
    margin-top: 0;
}

.adblock-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
}

.adblock-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.adblock-buttons .close-modal {
    background: #0B5B35;
    color: var(--text-white);
}

.adblock-buttons .close-modal:hover {
    background: #064728;
}

.adblock-buttons .whitelist-btn {
    background: #007BFF;
    color: var(--text-white);
}


/* Select2 Group label color */
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[role=group] .select2-results__group {
    color: var(--text-dark-green) !important;
    font-family: "Inter", sans-serif !important;
    font-weight: 400;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected,
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true] {
    background-color: var(--green-hover) !important;
    font-family: "Inter", sans-serif !important;
    font-weight: 400;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[role=group] .select2-results__options--nested .select2-results__option {
    padding: .375rem 1.75rem !important;
}

.modal.show {
    z-index: 9999 !important;
}

.modal-content {
    max-height: 95vh;
}

.modal .modal-title,
.modal .modal-body p {
    font-family: "Inter", sans-serif;
}

.modal .modal-body {
    min-height: 100px;
    align-content: center;
    overflow-y: auto;
}

.modal .modal-body p {
    font-size: 14px;
    color: var(--text-black);
    letter-spacing: 0;
    line-height: 24px;
    margin-bottom: 0;
    font-weight: 300;
}

.modal .modal-body strong {
    font-weight: 500;
}

.modal .modal-footer a.btn-danger {
    font-family: "Inter", sans-serif;
    background-color: var(--red);
    height: 40px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 300;
}

.modal .modal-footer a.btn-danger:hover {
    background-color: var(--red-hover)
}

.modal .modal-footer a.btn-danger svg {
    width: auto;
    height: 20px;
    align-self: center;
}

.modal .modal-footer .btn {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    height: 40px;
    font-weight: 300;
}

@media screen and (max-width: 500px) {
    .modal .modal-title {
        font-size: 16px;
    }

    .modal .modal-body p,
    .modal .modal-footer .btn {
        font-size: 12px;
    }

    .modal .modal-footer .btn {
        height: auto;
    }
}

ul {
    list-style: none;
}

.paw-spinner {
    width: 64px;
    /* change size as needed */
    height: 64px;
    display: inline-block;
    animation: spin 1s linear infinite;
    transform-origin: center center;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.paw-spinner path,
.paw-spinner circle,
.paw-spinner ellipse {
    fill: #FF6F61;
}

svg.bone-spinner {
    display: none;
    animation: spin 1s linear infinite;
    transform-origin: center center;
    width: 20px;
    height: 20px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#imageUploadModalSpinner {
    height: 100px;
    width: 110px;
}


#adTitle {
    height: 50px;
}

section.place_ad.step-3 {
    margin: 20px auto;
}

section.place_ad.edit-advert .row:first-of-type .content,
section.place_ad.edit-advert .row:nth-of-type(2) .content {
    background: transparent !important;
    border-radius: 0px !important;
}

section.place_ad.edit-advert .row:first-of-type .content,
section.place_ad.edit-advert .row:nth-of-type(2) .content,
section.place_ad.step-3 .content {
    width: 894px;
    height: auto;
    padding: 20px;
    display: block;
    align-items: center;
    background: rgba(205, 205, 205, 0.6);
    backdrop-filter: blur(15.40772533416748px);
    border-radius: 11.56px;
}

section.place_ad.edit-advert .row:first-of-type .content.no-images,
section.place_ad.edit-advert .row:nth-of-type(2) .content.no-images,
section.place_ad.step-3 .content.no-images {
    min-height: 697px;
    height: 100%;
}

section.place_ad.edit-advert .row:first-of-type .content .image_area,
section.place_ad.edit-advert .row:nth-of-type(2) .content .image_area,
section.place_ad.step-3 .content .image_area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    height: 100%;
    width: 100%;
    border-radius: 16.16px;
    padding: 20px;
    gap: 21px;
}

section.place_ad.edit-advert .row:first-of-type .content .image_area .no-images,
section.place_ad.edit-advert .row:nth-of-type(2) .content .image_area .no-images,
section.place_ad.step-3 .content .image_area .no-images {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0;
    text-align: center;
}

section.place_ad.edit-advert .row:first-of-type .content .image_area .no-images label,
section.place_ad.edit-advert .row:nth-of-type(2) .content .image_area .no-images label,
section.place_ad.step-3 .content .image_area .no-images label {
    cursor: pointer;
}

.step_btns {
    max-width: 894px;
}

section.place_ad.edit-advert .image_area .details,
section.place_ad.step-3 .image_area .details {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

section.place_ad.edit-advert .image_area .details .images-grid,
section.place_ad.step-3 .image_area .details .images-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
    /* 1 per row default */
}

@media (min-width: 600px) {

    section.place_ad.edit-advert .image_area .details .images-grid,
    section.place_ad.step-3 .image_area .details .images-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {

    section.place_ad.edit-advert .image_area .details .images-grid,
    section.place_ad.step-3 .image_area .details .images-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ensure each image fills its cell */
section.place_ad.edit-advert .image_area .details .images-grid .img-box img,
section.place_ad.step-3 .image_area .details .images-grid .img-box img {
    width: 100%;
    height: 250px;
    display: block;
    object-fit: contain;
    background-color: rgba(205, 205, 205, 0.6);
    object-position: center;
}

section.payment-page .form-wrapper {
    background: rgba(205, 205, 205, 0.6);
    backdrop-filter: blur(15.40772533416748px);
    width: 472px;
    height: auto;
    gap: 7px;
    border-radius: 11.56px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
}

section.payment-page .form-wrapper form {
    width: 100%;
    height: auto;
    gap: 21px;
    border-radius: 16.16px;
    padding: 20px;
    flex-direction: column;
    max-width: 472px;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
}

section.payment-page .form-wrapper form label {
    margin-bottom: 0;
}

section.payment-page .form-wrapper form input {
    border: 0;
    border-bottom: 1px solid var(--border-color-light-grey);
    border-radius: 0;
    padding-left: 0;
    font-size: 13px;
}

section.payment-page .form-wrapper form .payment-ad-details h3 {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 500;
}

section.payment-page .form-wrapper form .payment-ad-details table {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 300;
}

section.payment-page .form-wrapper form .payment-ad-details table b {
    font-weight: 500;
}

.payment-page .prev-step {
    width: fit-content;
    height: 40px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    font-size: 12px;
    text-decoration: none;
    gap: 15px;
    padding-left: 0;
    border: 0;
}

.payment-page .prev-step:hover {
    padding-left: 12px;
}

.payment-page .prev-step span {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 400;
}

.payment-page .step_btns {
    min-width: auto;
    justify-content: center;
}

button.send-reset-link {
    background-color: var(--btn-color-green);
    border-color: var(--btn-color-green);
    color: var(--text-white);
    padding: 10px;
    max-width: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: auto;
    white-space: nowrap;
    font-family: "Inter", sans-serif;
    font-weight: 300;
}

button.send-reset-link:hover {
    background-color: var(--btn-color-green-hover);
    border-color: var(--btn-color-green-hover);
    color: var(--text-white);
}

section.edit-advert button.mark-as-sold:hover svg {
    transform: rotate(-45deg);
}

section.edit-advert button.mark-as-sold {
    background: linear-gradient(90deg, #0A5B35 0%, #002111 100%);
    width: 169px;
    transform-origin: left center;
    color: #FFF;
    margin: 10px auto 0 auto;
}

section.edit-advert button.mark-as-sold:hover {
    transform: scaleX(1.05);
}

section.edit-advert .dog-sold {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
}

section.edit-advert .dog-sold img {
    width: 100%;
    height: 250px;
    display: block;
    object-fit: contain;
}

section.edit-advert .dog-sold {
    cursor: not-allowed;
}
