/* ========================================
   TYPOGRAPHY
   Font: Poppins
======================================== */

:root {
    --font-primary: 'Poppins', sans-serif;

    --fs-display: 76px;
    --lh-display: 72px;

    --fs-h1: 60px;
    --lh-h1: 54px;

    --fs-h2: 48px;
    --lh-h2: 40px;

    --fs-h3: 36px;
    --lh-h3: 34px;

    --fs-h4: 30px;
    --lh-h4: 36px;

    --fs-h5: 24px;
    --lh-h5: 30px;

    --fs-h6: 20px;
    --lh-h6: 28px;

    --fs-p: 18px;
    --lh-p: 24px;

    --fs-text-16: 16px;
    --lh-text-16: 24px;

    --fs-text-18: 18px;
    --lh-text-18: 24px;

    --fs-text-14: 14px;
    --lh-text-14: 24px;

    --fs-cta-2: 16px;
    --lh-cta-2: 24px;

    --fs-cta-1: 20px;
    --lh-cta-1: 26px;

    --color-primary-green: #49B748;
    --color-primary-pink: #A53B96;
    --color-primary-black: #020202;
    --color-primary-white: #FFFFFF;

    --color-secondary-green1: #6DC56D;
    --color-secondary-green2: #92D491;
    --color-secondary-green3: #B6E2B6;
    --color-secondary-white: #E0E0E0;

    --color-tertiary-grey: rgba(50, 50, 50, 0.5);
    --color-tertiary-grey2: #f5f5f5;
    --color-tertiary-white: rgba(255, 255, 255, 0.5);
    --color-tertiary-white2: rgba(255, 255, 255, 0.3);

    --color-half-black: rgba(2, 2, 2, 0.5);

}

/* Global font family */
body {
    font-family: var(--font-primary);
    color: var(--color-primary-black);
}

/* ========================================
   STANDARD HTML HEADINGS
======================================== */

h1,
.h1 {
    font-family: var(--font-primary);
    font-size: var(--fs-h1);
    line-height: var(--lh-h1);
    letter-spacing: -0.02em;
    font-weight: 700;
}

h2,
.h2 {
    font-family: var(--font-primary);
    font-size: var(--fs-h2);
    line-height: var(--lh-h2);
    font-weight: 500;
    letter-spacing: -0.02em;
}

h3,
.h3 {
    font-family: var(--font-primary);
    font-size: var(--fs-h3);
    line-height: var(--lh-h3);
    font-weight: 500;
    letter-spacing: -0.01em;
}

h4,
.h4 {
    font-family: var(--font-primary);
    font-size: var(--fs-h4);
    line-height: var(--lh-h4);
    font-weight: 500;
    letter-spacing: -0.02em;
}

h5,
.h5 {
    font-family: var(--font-primary);
    font-size: var(--fs-h5);
    line-height: var(--lh-h5);
    font-weight: 600;
    letter-spacing: -0.02em;
}

h6,
.h6 {
    font-family: var(--font-primary);
    font-size: var(--fs-h6);
    line-height: var(--lh-h6);
    font-weight: 400;
    letter-spacing: -0.01em;
}

p,
.p {
    font-family: var(--font-primary);
    font-size: var(--fs-p);
    line-height: var(--lh-p);
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* ========================================
   CUSTOM TEXT CLASSES
======================================== */

.display-title {
    font-family: var(--font-primary);
    font-size: var(--fs-display);
    line-height: var(--lh-display);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.text-16 {
    font-family: var(--font-primary);
    font-size: var(--fs-text-16);
    line-height: var(--lh-text-16);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.text-18 {
    font-family: var(--font-primary);
    font-size: var(--fs-text-18);
    line-height: var(--lh-text-18);
    letter-spacing: -0.01em;
}

.text-14 {
    font-family: var(--font-primary);
    font-size: var(--fs-text-14);
    line-height: var(--lh-text-14);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.cta-1 {
    font-family: var(--font-primary);
    font-size: var(--fs-cta-1);
    line-height: var(--lh-cta-1);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.cta-2 {
    font-family: var(--font-primary);
    font-size: var(--fs-cta-2);
    line-height: var(--lh-cta-2);
    font-weight: 500;
    letter-spacing: -0.011em;
}

/* =========================
   TEXT COLORS
========================= */

.text-primary-green {
    color: var(--color-primary-green);
}

.text-primary-pink {
    color: var(--color-primary-pink);
}

.text-primary-black {
    color: var(--color-primary-black);
}

.text-primary-white {
    color: var(--color-primary-white);
}

.text-red {
    color: #ED1C24;
}

.text-secondary-green1 {
    color: var(--color-secondary-green1);
}

.text-secondary-green2 {
    color: var(--color-secondary-green2);
}

.text-secondary-green3 {
    color: var(--color-secondary-green3);
}

.text-secondary-white {
    color: var(--color-secondary-white);
}

.text-tertiary-grey {
    color: var(--color-tertiary-grey);
}

.text-tertiary-grey2 {
    color: var(--color-tertiary-grey2);
}

.text-tertiary-white {
    color: var(--color-tertiary-white);
}

.text-tertiary-white2 {
    color: var(--color-tertiary-white2);
}

.text-half-black {
    color: var(--color-half-black);
}

/* =========================
   BACKGROUND COLORS
========================= */

.bg-primary-green {
    background-color: var(--color-primary-green);
}

.bg-primary-pink {
    background-color: var(--color-primary-pink);
}

.bg-primary-black {
    background-color: var(--color-primary-black);
}

.bg-primary-white {
    background-color: var(--color-primary-white);
}

.bg-secondary-green1 {
    background-color: var(--color-secondary-green1);
}

.bg-secondary-green2 {
    background-color: var(--color-secondary-green2);
}

.bg-secondary-green3 {
    background-color: var(--color-secondary-green3);
}

.bg-secondary-white {
    background-color: var(--color-secondary-white);
}

.bg-tertiary-grey {
    background-color: var(--color-tertiary-grey);
}

.bg-tertiary-grey2 {
    background-color: var(--color-tertiary-grey2);
}

.bg-tertiary-white {
    background-color: var(--color-tertiary-white);
}


/* =========================
   BORDER COLORS
========================= */

.with-border {
    border-style: solid;
}

.border-primary-green {
    border-color: var(--color-primary-green) !important;
}

.border-primary-pink {
    border-color: var(--color-primary-pink) !important;
}

.border-primary-black {
    border-color: var(--color-primary-black) !important;
}

.border-primary-white {
    border-color: var(--color-primary-white) !important;
}

.border-secondary-green1 {
    border-color: var(--color-secondary-green1) !important;
}

.border-secondary-green2 {
    border-color: var(--color-secondary-green2) !important;
}

.border-secondary-green3 {
    border-color: var(--color-secondary-green3) !important;
}

.border-secondary-white {
    border-color: var(--color-secondary-white) !important;
}

.border-tertiary-grey {
    border-color: var(--color-tertiary-grey) !important;
}

.border-tertiary-white {
    border-color: var(--color-tertiary-white) !important;
}

.border-tertiary-white2 {
    border-color: var(--color-tertiary-white2) !important;
}

/*************
    DEFAULT
**************/

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

strong {
    font-weight: 600;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-xl, .container-xxl {
        max-width: 1380px;
    }
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 1.25rem;
}

.row {
    --bs-gutter-x: 1.25rem;
}

.g-0 {
    --bs-gutter-x: 0;
}

.text-up {
    text-transform: uppercase;
}

.cta-1 {
    padding: 12px 34px;
    border-radius: 8px;
}

.cta-2 {
    padding: 7px 18px;
    border-radius: 6px;
    border: 1px solid;
}

.p-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.p-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

/*************
TOP BAR
**************/

#top-bar {
    border-bottom: 1px solid var(--color-tertiary-white);
    justify-content: space-between;
}

#top-bar > a {
    padding: 22px 24px 24px;
    flex: 1 1 auto;
    text-align: center;
}

#top-bar > a img {
    margin-left: 8px;
}

#top-bar > div {
    text-align: center;
    flex: 1 1 auto;
    padding: 22px 24px 24px;
}

#top-bar > div:not(:last-child) {
    border-right: 1px solid var(--color-tertiary-white);
}

header {
    padding: 16px 0;
}

.logo img {
    height: 50px;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

header nav ul li {
    padding: 10px 0;
}

.nav-has-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
}

.nav-dropdown-toggle i {
    font-size: 11px;
    transition: transform .2s ease;
}

.nav-has-dropdown.is-open .nav-dropdown-toggle i,
.nav-has-dropdown:hover .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    min-width: 240px;
    background: var(--color-primary-black);
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 8px;
    padding: 4px 13px;
    display: none;
    z-index: 100;
}

.nav-has-dropdown.is-open .nav-dropdown,
.nav-has-dropdown:hover .nav-dropdown {
    display: block;
}

.nav-dropdown a {
    display: block;
    padding: 6px 0;
    color: var(--color-primary-white);
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.nav-dropdown a:last-child {
    border-bottom: 0;
}

.nav-dropdown a:hover {
    color: var(--color-primary-green);
}

header .header-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-contact .cta-link {
    border-color: transparent;
}

@media screen and (min-width: 769px) {
    .mobile-menu-panel {
        display: none;
    }
}

.mobile-menu-toggle {
    display: none;
    width: 22px;
    height: 20px;
    padding: 0;
    border: 0;
    background: transparent;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--color-primary-white);
    border-radius: 3px;
    margin-bottom: 8px;
}

.mobile-menu-toggle span:last-child {
    margin-bottom: 0;
}

body.mobile-menu-open {
    overflow: hidden;
}

/**************
    HOME COVER
***************/

#cover {
    position: relative;
    height: 46.7vw;
    padding-top: 8.7vw;
}

#cover.dumpster-rentals__cover {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0;
}

.home-page #cover video,
#cover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

#video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.video-toggle {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 3;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.video-toggle:hover {
    background: rgba(0, 0, 0, 0.4);
}

.video-toggle:active {
    transform: scale(0.96);
}

.video-toggle__icon {
    position: relative;
    width: 14px;
    height: 14px;
    display: block;
}

.video-toggle__line {
    position: absolute;
    top: 50%;
    width: 2px;
    height: 14px;
    background: #fff;
    border-radius: 4px;
    transform-origin: left center;
    transition: transform 0.35s ease,
    opacity 0.25s ease,
    left 0.35s ease,
    right 0.35s ease,
    top 0.35s ease;
}

/* pause stanje */
.video-toggle__line--left {
    left: 3px;
    transform: translateY(-50%) rotate(0deg);
}

.video-toggle__line--right {
    left: 9px;
    transform: translateY(-50%) rotate(0deg);
}

/* play stanje */
.video-toggle.is-play .video-toggle__line--left {
    left: 8px;
    height: 12px;
    top: 10px;
    transform: translateY(-50%) rotate(45deg);
}

.video-toggle.is-play .video-toggle__line--right {
    left: 8px;
    height: 12px;
    top: 4px;
    transform: translateY(-50%) rotate(-45deg);
}

#cover .container {
    position: relative;
    z-index: 1;
}

.cover-title {
    text-align: center;
}

.cover-title h1 {
    margin-bottom: 30px;
}

.cover-title p {
    margin-bottom: 30px;
}

.cover-title h4 {
    margin-bottom: 40px;
}

.cover-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cover-ctas a {
    height: 50px;
    display: flex;
    align-items: center;
}

.cover-bottom-tags {
    gap: 20px;
    margin-top: 9.2vw;
}

.cover-bottom-tags > span {
    flex: 1 1 auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 8px 16px;
    justify-content: center;
    gap: 3px;
}

.cover-bottom-tags > span svg {
    margin-right: 10px;
}

.cover-highlight {
    margin-top: 90px;
    border-top: 2px solid var(--color-primary-green);
    border-bottom: 2px solid var(--color-primary-green);
    padding-top: 20px;
    padding-bottom: 20px;
}

/****************
    SERVICE CARDS
******************/

#home-services h2 {
    margin-bottom: 40px;
}

.home-service-card {
    position: relative;
    padding: 30px;
    cursor: pointer;
}

.home-service-card .service-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0
}

.home-service-card .card-content {
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 8px;
    align-items: flex-start;
}

.card-content > a {
    display: block;
    width: 100%;
    text-align: center;
}

.card-content > img {
    margin-top: 20px;
    margin-left: 20px;
    height: 32px;
}

.card-content > h3 {
    margin: 100px 0 120px 20px;
}

/***********************
    NEED A DUMPSTER
***********************/

#need-dumpster ul li {
    display: flex;
    gap: 25px;
    padding: 16px 0;
    border-bottom: 1px solid;
}

.dumpsterSlider {
    border-radius: 8px;
    padding: 40px 20px 20px;
    margin-bottom: 20px;
}

.dumpster-slider-nav {
    border-radius: 8px;
    background: var(--color-tertiary-grey2);
    display: flex;
    justify-content: space-between;
    padding: 20px;
    margin-top: 45px;
}

.dumpster-nav-btn {
    border: none;
    background-color: #e3e3e3;
    border-radius: 8px;
    padding: 6px 16px;
    font-size: var(--fs-p);
    line-height: var(--lh-p);
    letter-spacing: -0.01em;
    transition: color, background-color 0.3s ease;
}

.dumpster-nav-btn:hover,
.dumpster-nav-btn.active {
    color: var(--color-primary-white);
    background-color: var(--color-primary-green);
}

.dumpster-nav-btn.active {
    font-weight: 600;
}

#need-dumpster .cta-holder a {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

#sameday {
    margin-bottom: 100px;
    margin-top: 100px;
    border-radius: 8px;
    text-align: center;
    padding: 19px 0;
}

#sameday i {
    margin-right: 10px;
}

.choose-dumpster-slider-wrapper .title {
    margin-bottom: 20px;
}

.choose-dumpster-slider-wrapper .title .cta-1,
#how-it-works_dr .title .cta-1 {
    width: 100%;
    display: block;
    text-align: center;
}

.dumpsterTypesSwiper {
    border-radius: 8px;
    height: 530px;
}

.dumpster-grid {
    display: flex;
    height: 100%;
}

.dumpster-card:last-child {
    border-left: 1px solid #9E9E9E;
}

.dumpster-card__content {
    display: flex;
    gap: 30px;
    align-items: center;
}

.dumpster-card__image {
    flex: 5;
    border-radius: 8px;
    overflow: hidden;
}

.dumpster-card__info {
    flex: 6;
}

.dumpster-card__row {
    padding-bottom: 12px;
    padding-top: 12px;
    border-bottom: 1px solid rgba(2, 2, 2, .5);
}

.dumpster-card__row:first-child {
    padding-top: 0;
}

.dumpster-card__row .h6 {
    font-weight: 600;
    margin: 0;
}

.dumpster-card__row span {
    display: block;
}

.dumpster-card__btn {
    text-align: center;
}

.dumpster-card h3 {
    margin: 0;
}

.choose-dumpster-slider-wrapper article {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dumpster-slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.dumpster-slider-controls .swiper-nav {
    background-color: var(--color-primary-black);
}

.dumpster-slider-pagination button {
    background: none;
    width: auto;
    height: auto;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.01em;
    font-weight: 600;
}

/**************
  HOW IT WORKS
***************/

#how-it-works h2 {
    margin-bottom: 40px;
}

.step-card {
    padding: 20px;
}

.step-card h5 {
    margin-bottom: 30px;
}

.step-card .sep {
    display: inline-block;
    width: 32px;
    margin-bottom: 45px;
    border-radius: 16px;
}

.step-card h4 {
    margin-bottom: 30px;
}

/****
WHY
*****/

#why-lombardo h2 {
    margin-bottom: 50px;
}

.why-lines .why-line {
    padding: 22px 0;
    border-bottom: 1px solid rgba(2, 2, 2, .5);
}

.why-lines .row .why-title {
    display: flex;
    align-items: center;
    gap: 72px;
}

.why-lines .row h3,
.why-lines .row p {
    margin-bottom: 0;
}


/*******
CTA BG
*****/

#cta-bg {
    padding-top: 12.7vw;
    padding-bottom: 10.1vw;
    position: relative;
}

#cta-bg.hh-cta-bg,
#cta-bg.c-cta-bg {
    padding-top: 6.94vw;
    padding-bottom: 6.94vw;
}

#cta-bg-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

#cta-bg h2,
#cta-bg h6 {
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

#cta-bg .cta-buttons {
    display: flex;
    position: relative;
    z-index: 1;
    gap: 20px;
    justify-content: center;
}

#cta-bg .cta-buttons a {
    height: 50px;
    display: flex;
    align-items: center;
}

/*************
    REVIEWS
*************/

#reviews {
    padding-top: 160px;
    padding-bottom: 30px;
}

#reviews.about-reviews {
    padding-top: 100px;
    padding-bottom: 100px;
}

#reviews h2 {
    margin-bottom: 90px;
    text-align: center;
}

.reviewsSwiperContainer {
    margin-left: calc((100% - min(1360px, 100%)) / 2);
    display: flex;
    gap: 60px;
}

.reviewsSwiperContainer .swiper-title {
    width: 350px;
}

.reviewsSwiper {
    flex: 1;
}

.review-card {
    padding: 28px 48px 28px 24px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 390px;
}

.review-card .position {
    color: rgba(2, 2, 2, .5);
}

#reviews .cover-bottom-tags {
    margin-top: 100px;
}

/***************
REAL WORK & SOCIAL
****************/

#real-work {
    padding-top: 170px;
}

.swiper-title {
    padding-bottom: 40px;
}

.swiper-title h2 {
    margin-bottom: 0;
}

.swiper-nav {
    color: var(--color-primary-white);
    background: var(--color-primary-green);
    border-radius: 50%;
    font-size: 20px;
    padding: 3px 8px;
}

.socialSwiper,
.workSwiper {
    margin-left: calc((100% - min(1360px, 100%)) / 2);
}

.social-card,
.work-card {
    overflow: hidden;
    border-radius: 12px;
}


.social-card {
    display: block;
    text-decoration: none;
}

.ig-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    font-size: 12px;
    font-weight: 500;
    background: var(--color-primary-white);
}

.ig-card-header img {
    border-radius: 50%;
    background: var(--color-primary-black);
    width: 34px;
    height: 34px;
    padding: 5px;
}

.social-card .feed-img {
    display: block;
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.ig-card-footer {
    background: var(--color-primary-white);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.ig-card-footer p {
    font-size: 12px;
    line-height: 16px;
    margin: 0;
}


/**************
FOOTER
***************/

footer {
    padding-top: 50px;
}

.logo-footer {
    margin-bottom: 96px;
}

.text-footer {
    display: flex;
    flex-direction: column;
    gap: 55px;
}

.footer-widget:not(:last-child) {
    margin-bottom: 40px;
}

.footer-widget ul li {
    margin-bottom: 6px;
}

.widget-title {
    font-weight: 600;
    margin-bottom: 6px;
    position: relative;
}

.widget-title::before {
    content: "";
    position: absolute;
    left: -36px;
    top: 3px;
}

.services-widget .widget-title::before {
    content: url("../img/services-icon.svg");
    top: 0;
}

.areas-widget .widget-title::before {
    content: url("../img/service-areas-icon.svg");
}

.contact-widget .widget-title::before {
    content: url("../img/contact-icon.svg");
}

.business-hours-widget .widget-title::before {
    content: url("../img/hours-icon.svg");
}

.social-widget .widget-title::before {
    content: url("../img/socials-icon.svg");
}

.footer-widget p {
    line-height: 30px;
}

.social-widget ul {
    gap: 15px;
}

.social-widget ul li {
    margin-bottom: 0;
}

.bottom-footer {
    margin-top: 40px;
    padding-top: 16px;
    padding-bottom: 16px;
}

/* Dumpster Rentals page */

#dumpster-sizes h2 {
    margin-bottom: 40px;
}

#dumpster-sizes h6 {
    margin-bottom: 45px;
}

#sizes-buttons {
    gap: 20px;
}

.dumpster-sizes__nav-btn {
    border: 2px solid var(--color-primary-white);
    border-radius: 8px;
    padding: 8px 20px;
    font-size: var(--fs-cta-1);
    letter-spacing: -0.01em;
    color: var(--color-primary-white);
    background: none;
    width: 122px;
    text-align: center;
}

.dumpster-sizes__nav-btn.active {
    background: var(--color-primary-black);
    border-color: var(--color-primary-black);
}

.dumpster-sizes-slider-wrapper {
    margin-top: 60px;
}

#most-popular {
    position: absolute;
    right: 0;
    top: 26px;
}

.dumpster-sizes-slider-wrapper .swiper-slide {
    padding-right: 10px;
}

.dumpster-sizes-slider-wrapper .swiper-slide .swiper-slide-wrapper {
    background-color: var(--color-primary-white);
    border-radius: 8px;
    padding: 25px 20px;
}

.dumpster-sizes-slider-wrapper .swiper-slide .swiper-slide-wrapper .row {
    align-items: center;
}

.dumpster-sizes-slider-wrapper .slide-content {
    gap: 20px;
    margin-top: 25px;
    padding: 15px 0;
    border-top: 1px solid rgba(2, 2, 2, .25);
    border-bottom: 1px solid rgba(2, 2, 2, .25);
}

.slide-content .sc-left {
    flex: 1;
}

.slide-content .sc-right {
    flex: 1.7;
}

.dumpster-sizes-slider-wrapper .slide-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dumpster-sizes-slider-wrapper .slide-content ul li {
    padding-bottom: 8px;
    padding-top: 8px;
    border-bottom: 1px solid rgba(2, 2, 2, .25);
    display: flex;
    gap: 18px;
}

.dumpster-sizes-slider-wrapper .slide-content ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.dumpster-sizes-slider-wrapper .slide-content ul li:first-child {
    padding-top: 0;
}

.dumpster-sizes-slider-wrapper .slide-content ul li span {
    font-weight: 600;
}

.dumpster-sizes-slider-wrapper .cta-1 {
    display: block;
    width: 100%;
    margin-top: 25px;
    text-align: center;
}

#roofing h6 {
    margin-bottom: 0;
}

#roofing .table-container {
    border: 1px solid rgb(255, 255, 255, .3);
    border-radius: 8px;
}

#roofing .table-container .table-row {
    border-bottom: 1px solid rgb(255, 255, 255, .3);
    padding: 19px 25px;
}

#roofing .table-container .table-row:last-child {
    border-bottom: none;
}

#roofing .table-container .table-row h6 {
    display: flex;
    justify-content: space-between;
}

#how-it-works_dr {
    padding-top: 30px;
    padding-bottom: 45px;
}

#how-it-works_dr .title {
    margin-bottom: 40px;
}

#how-it-works_dr .step-card h4 {
    min-height: 110px;
    margin-bottom: 65px;
}

#how-it-works_dr .step-card img {
    height: 135px;
}

#materials h2 {
    margin-bottom: 40px;
}

.material-card {
    padding: 30px 25px 40px;
    border-radius: 8px;
}

.material-card__title h4 {
    margin-top: 30px;
    margin-bottom: 50px;
}

.material-card__content {
    margin-top: 36px;
    font-size: 20px;
    line-height: 1.6em;
    letter-spacing: -0.01em;
    font-weight: 600;
}

.material-card .cta-1 {
    display: block;
    margin-top: 30px;
    text-align: center;
}

/** RENTAL DETAILS **/

#rental-details h2 {
    margin-bottom: 40px;
}

.rental-blocks {
    margin-top: 40px;
}

.rental-block {
    border-top: 1px solid rgba(2, 2, 2, .25);
    padding-top: 30px;
    padding-bottom: 24px;
}

.rental-block:last-child {
    border-bottom: 1px solid rgba(2, 2, 2, .25);
}

.rental-blocks .h2 {
    display: flex;
    gap: 32px;
}

.rental-blocks .h2 > span {
    width: 40px;
}

.rental-block__content {
    display: flex;
    gap: 30px;
    flex-direction: column;
}

.rental-block__content .h5 {
    font-weight: 400;
    line-height: 1.6em;
}

/** ACCORDION **/

.accordion-item {
    margin-bottom: 12px;
    background-color: var(--color-tertiary-grey2);
    padding: 18px 24px;
    border-radius: 8px;
}

.accordion-item:first-of-type,
.accordion-item:last-of-type {
    border-radius: 8px;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header .h4 {
    margin: 0;
    transition: all .3s ease;
}

.accordion-content {
    overflow: hidden;
    height: 0;
    transition: height 0.35s ease;
}

.accordion-content p {
    margin: 0;
    padding-bottom: 12px;
    padding-top: 35px;
    color: rgba(2, 2, 2, .5);
}

.icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transform-origin: center center;
    transition: all .3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 15px;
    transition: transform .3s ease;
    transform-origin: center center;
}

.accordion-item:hover .icon {
    background: var(--color-primary-pink);
}

.accordion-item.active .icon i {
    transform: rotate(180deg);
}

/** Heavy Hauling Page **/

#hh-solutions .h1 {
    margin-bottom: 70px;
}

.icon-block {
    padding-right: 30px;
}

.icon-block .title {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(2, 2, 2, .25);
    margin-bottom: 32px;
}

.service-icon {
    height: 82px;
    display: flex;
    align-items: center;
    gap: 32px;
    border-top: 1px solid rgba(2, 2, 2, .5);
}

.service-icon:last-child {
    border-bottom: 1px solid rgba(2, 2, 2, .5);
}

.service-icon h6 {
    margin-bottom: 0;
}

.s-icon {
    width: 42px;
}

#oversized .h1 {
    margin-bottom: 70px;
}

#oversized img {
    margin-top: 60px;
}

#oversized .check {
    padding: 8px 20px 7px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    margin-bottom: 20px;
}

#oversized .check i {
    font-size: 30px;
}

#industries .h1 {
    margin-bottom: 32px;
}

#industries .intro-p {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    margin-bottom: 40px;
}

#industries .image-wrapper {
    padding-right: 25px;
}

.industries-list li {
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    padding: 16px 0;
    margin: 0;
}

#serving-philly .industries-list li {
    border-bottom-color: rgba(2, 2, 2, .25);
}

#how-hauling-works .h1 {
    margin-bottom: 50px;
}

#how-hauling-works .step-card {
    padding: 36px 30px;
}

#how-hauling-works .step-card .sep {
    margin-bottom: 32px;
}

#how-hauling-works .step-card img {
    height: 135px;
}

#how-hauling-works .step-card p {
    margin-bottom: 70px;
}

#request-hh {
    background: url("../img/hh-form-bg.webp") no-repeat center center;
    background-size: cover;
}

#request-hh .title,
#get-in-touch .title,
#scrap-estimate .title {
    text-align: center;
    margin-bottom: 50px;
}

#request-hh .h1,
#get-in-touch .h1,
#scrap-estimate .h1 {
    margin-bottom: 30px;
}

form .alert {
    text-align: center;
}

label {
    color: var(--color-primary-white);
    margin-bottom: 8px;
}

.custom-input,
.custom-textarea {
    height: 50px;
    border: 0;
    border-radius: 8px;
    background: var(--color-primary-white);
    padding: 0 16px;
    font-size: 16px;
    color: var(--color-primary-black);
    box-shadow: none !important;
}

.custom-input::placeholder,
.custom-textarea::placeholder {
    color: #919191;
    opacity: 1;
}

select option:disabled {
    color: #919191;
}

.textarea-holder {
    padding: 5px;
    border-radius: 8px;
    background: var(--color-primary-white);
}

.custom-textarea {
    height: 155px;
    padding: 16px;
    border-radius: 8px;
    resize: none;
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 70px;
}

.select-icon, .address-icon, .pickup-date-icon {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    width: 40px;
    border-radius: 3px;
    height: 40px;
    /*background: var(--color-primary-green);
    color: var(--color-primary-white);*/
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    font-size: 18px;
}

.address-icon {
    color: var(--color-primary-green);
    font-size: 22px;
}

.pickup-date-icon {
    background: var(--color-primary-green);
    color: var(--color-primary-white);
    font-size: 20px;
}

.submit-btn {
    border: 0;
    transition: all .3s ease;
}

.submit-btn:hover {
    background: var(--color-primary-black);
    color: var(--color-primary-white);
}

/** CONTACT PAGE **/
#contact-intro h1 {
    margin-bottom: 50px;
}

.info-block {
    border-top: 1px solid rgba(2, 2, 2, .25);
    padding-top: 24px;
    padding-bottom: 14px;
}

.info-block img {
    margin-bottom: 28px;
}

.info-block p {
    margin-bottom: 12px;
}

.hours-block, .social-block {
    border-bottom: 1px solid rgba(2, 2, 2, .25);
    padding-bottom: 0;
}

.social-block a:not(:last-child) {
    margin-right: 16px;
}

#map {
    border-radius: 8px;
    overflow: hidden;
    height: 380px;
}

#map iframe {
    width: 100%;
    height: 100%;
}

#references {
    padding-top: 10px;
    padding-bottom: 10px;
}

.ref-logo img {
    max-width: 90px;
}

#get-in-touch {
    background: url("../img/get-in-touch-bg.webp") no-repeat center center;
    background-size: cover;
}

/** Scrap Metal Recycling page **/

#smr-services .container-wrapper {
    border-radius: 8px;
    padding: 40px 0;
    overflow: hidden;
}

#smr-services .h1 {
    margin-bottom: 65px;
}

.smr-left {
    padding-left: 40px;
}

.smr-right {
    padding-right: 45px;
}

.smr-middle {
    border-right: 1px solid rgba(2, 2, 2, .25);
    height: 100%;
}

.smr-right img {
    margin-bottom: 28px;
}

.sm-card {
    border-radius: 8px;
    padding: 30px 20px 30px 30px;
    margin-bottom: 20px;
}

.sm-card h4 {
    margin-bottom: 32px;
    margin-top: 64px;
}

.sm-card .price span {
    display: block;
    font-weight: 500;
    font-size: 30px;
    letter-spacing: -0.03em;
    line-height: 1.33em;
}

.sm-card .price .unit {
    color: #9E9E9E;
}

#serving-philly .h1 {
    margin-bottom: 70px;
}

#scrap-estimate {
    background: url("../img/scrap-value-estimate-cover.webp") no-repeat center center;
    background-size: cover;
}

.upload-box-wrapper {
    height: 100%;
    padding: 5px;
    border-radius: 8px;
    background: var(--color-primary-white);
}

.upload-box {
    min-height: 100%;
    border: 1px dashed rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    background: var(--color-primary-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    text-align: center;
    transition: .25s ease;
    padding: 20px;
}

.upload-box:hover {
    background: #eeeeee;
}

.upload-box__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-primary-green);
    color: var(--color-primary-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 1;
}

.upload-box__text {
    font-size: 18px;
    line-height: 1.33em;
    color: var(--color-primary-black);
}

.upload-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.upload-preview__item {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    background: #f3f3f3;
    border: 1px solid rgba(0, 0, 0, 0.12);
    position: relative;
}

.upload-preview__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.zip-code-form .cta-1 {
    padding: 19px 12px;
}

.zip-code-form .custom-input {
    height: 64px;
    padding: 20px 30px;
    color: var(--color-primary-black);
}

.zip-code-form .custom-input::placeholder {
    color: var(--color-primary-black);
}

.about-text {
    padding-right: 70px;
}

.about-text .h1 {
    margin-bottom: 40px;
}

.about-text h4 {
    margin-bottom: 40px;
}

#values {
    padding-bottom: 230px;
}

#values h5 {
    padding-right: 60px;
}

#photo-bg {
    padding-bottom: 40px;
    position: relative;
}

#photo-bg .bg-container {
    margin-top: -150px;
    border-radius: 8px;
    height: 750px;
    background: url("../img/lombardo-values-photo.webp") no-repeat center center;
    background-size: cover;
}

#scrap-metal-prices .h1 {
    margin-bottom: 32px;
}

.scrap-masonry {
    column-count: 2;
    column-gap: 20px;
}

.scrap-group-card {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    break-inside: avoid;
}

@media (max-width: 991.98px) {
    .scrap-masonry {
        column-count: 1;
    }
}

/* =========================
   Scrap Metal Prices
========================= */

.scrap-prices-section {
    padding: 50px 0;
}

.scrap-masonry {
    column-count: 2;
    column-gap: 24px;
}

.scrap-group-card {
    display: inline-block;
    width: 100%;
    margin-bottom: 24px;
    break-inside: avoid;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

/* Header */

.scrap-group-header {
    border: 0;
    width: 100%;
    min-height: 72px;
    padding: 13px 23px;
    background: var(--color-primary-green);
    color: var(--color-primary-black);
    text-align: left;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color .2s ease;
}

.scrap-group-header:hover {
    background: var(--color-secondary-green2);
}

.scrap-group-title {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--color-primary-black);
}

/* Right header side */

.scrap-group-meta {
    flex-shrink: 0;
    margin-left: 16px;
}

.scrap-group-date {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: #fff;
    white-space: nowrap;
}

.scrap-group-date i {
    font-size: 18px;
    line-height: 1;
    color: #fff;
}

/* Icon */

.scrap-group-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    color: var(--color-primary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.scrap-group-icon i {
    font-size: 16px;
    line-height: 1;
    transform-origin: center;
    transition: transform .25s ease;
}

.scrap-group-header[aria-expanded="true"] .scrap-group-icon i {
    transform: rotate(180deg);
}

/* Body */

.scrap-group-body {
    padding: 20px 20px 22px;
    background: #f5f5f5;
}

/* Table header */

.scrap-table-header {
    padding-bottom: 12px;
    color: #49B748;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Rows */

.scrap-table {
    width: 100%;
}

.scrap-table-row {
    min-height: 38px;
    padding: 10px 0;
    border-top: 1px solid rgb(2 2 2 / 0.2);
    color: var(--color-primary-black);
    font-size: 18px;
    line-height: 1.5;
}

.scrap-title-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}

.scrap-info-icon {
    font-size: 17px;
    color: var(--color-primary-green);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.scrap-info-icon:hover {
    color: #45b649;
}

.scrap-item-name {
    padding-right: 0;
    font-weight: 400;
}

.scrap-item-value {
    font-weight: 400;
    white-space: nowrap;
    text-align: right;
}

/* Empty state */

.scrap-table-empty {
    padding: 6px 0;
    color: #777;
    font-size: 14px;
}

/* Bootstrap collapse small visual fix */

.scrap-group-card .collapse,
.scrap-group-card .collapsing {
    background: #f5f5f5;
}

/* =========================
   Responsive
========================= */

@media (max-width: 991.98px) {
    .scrap-prices-section {
        padding: 60px 0;
    }

    .scrap-masonry {
        column-count: 1;
    }
}

@media (max-width: 575.98px) {
    .scrap-prices-section {
        padding: 48px 0;
    }

    .scrap-group-card {
        margin-bottom: 16px;
    }

    .scrap-group-header {
        min-height: 54px;
        padding: 12px 14px;
        gap: 12px;
    }

    .scrap-group-title {
        font-size: 19px;
    }

    .scrap-group-date {
        font-size: 11px;
    }

    .scrap-group-meta {
        margin-left: 10px;
        gap: 6px !important;
    }

    .scrap-group-body {
        padding: 14px;
    }

    .scrap-table-header {
        font-size: 13px;
    }

    .scrap-table-row {
        font-size: 13px;
    }
}


#overview {
    padding-bottom: 50px;
}

.checks {
    margin-top: 40px;
    margin-bottom: 40px;
}

.check {
    padding: 8px 20px;
    font-size: 24px;
    letter-spacing: -.03em;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    margin-bottom: 20px;
}

.check i,
.m-check i {
    font-size: 30px;
}

.text-muted {
    color: #8d8d8d !important;
}

#overview .text-muted {
    font-size: 15px;
}

.you-can-you-cant {
    margin-top: 30px;
}

.material-checks {
    margin-top: 16px;
}

.m-check {
    font-weight: 500;
    font-size: 18px;
    border-radius: 8px;
    margin-bottom: 8px;
    padding: 4px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.order-1 {
    order: 1 !important;
}

.order-2 {
    order: 2 !important;
}

.order-3 {
    order: 3 !important;
}

.order-4 {
    order: 4 !important;
}

.order-5 {
    order: 5 !important;
}

.order-6 {
    order: 6 !important;
}

.order-7 {
    order: 7 !important;
}

.order-8 {
    order: 8 !important;
}

.order-9 {
    order: 9 !important;
}

@media (min-width: 768px) {

    .order-md-1 {
        order: 1 !important;
    }

    .order-md-2 {
        order: 2 !important;
    }

    .order-md-3 {
        order: 3 !important;
    }

    .order-md-4 {
        order: 4 !important;
    }

    .order-md-5 {
        order: 5 !important;
    }

    .order-md-6 {
        order: 6 !important;
    }

    .order-md-7 {
        order: 7 !important;
    }

    .order-md-8 {
        order: 8 !important;
    }

    .order-md-9 {
        order: 9 !important;
    }

}


.dumpster-booking-section {
    background: var(--color-tertiary-grey2);
    padding-top: 80px;
    padding-bottom: 95px;
}

.dumpster-booking-section .sep {
    padding-top: 60px;
    border-bottom: 1px solid rgba(2, 2, 2, .25);
}

.dumpster-booking-section h1 {
    margin-bottom: 40px;
}

.dumpster-booking-section .map-pin {
    padding: 4px 8px;
    border-radius: 50%;
    display: inline-block;
}

.dump-book-title h5 span {
    font-weight: 400;
}

.variation-title-img-holder {
    padding-right: 45px;
}

#dumpster-size-chooser, .placement-chooser {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

#dumpster-size-chooser .size-btn, .placement-chooser button {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    flex: 1;
    padding: 10px 14px;
    border-color: transparent;
}

#dumpster-size-chooser .size-btn.active, .placement-chooser button.active {
    border: 3px solid var(--color-primary-green);
}

#dumpster-size-chooser .size-btn.disabled {
    opacity: .35;
    pointer-events: none;
    cursor: not-allowed;
}

.dump-size-descs {
    margin: 33px 0;
    padding: 33px 0 17px;
    border-top: 1px solid rgba(2, 2, 2, .25);
    border-bottom: 1px solid rgba(2, 2, 2, .25);
}

.fee-p {
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 0;
}

#dumpster-map {
    height: 300px;
    border-radius: 8px;
}

/* "More details / Less details" toggle - Bootstrap sam dodaje/uklanja .collapsed
   klasu na trigger elementu u zavisnosti od stanja collapse-a, pa čisto CSS-om
   menjamo koji tekst/strelica se vidi, bez ikakvog dodatnog JS-a. */

#placement-details-toggle {
    color: var(--color-primary-pink);
    text-decoration: underline;
}

#placement-details-toggle .less-details-label {
    display: none;
}

#placement-details-toggle:not(.collapsed) .more-details-label {
    display: none;
}

#placement-details-toggle:not(.collapsed) .less-details-label {
    display: inline;
}

#placement-details-toggle .bi-chevron-right {
    transition: transform .2s ease;
}

#placement-details-toggle:not(.collapsed) .bi-chevron-right {
    transform: rotate(90deg);
}

#placement-details-collapse .placement-details-inner {
    opacity: 0;
    transition: opacity .25s ease;
}

#placement-details-collapse.show .placement-details-inner {
    opacity: 1;
}

/* =========================
   WOOCOMMERCE PAGES (Checkout, Cart, Pay for order, My Account...)
   Skopirano na .woocommerce-page da ne utiče na ostale obične stranice
   koje takođe koriste page.php.
========================= */
.woocommerce-page .page-content-wrapper {
    padding-top: 60px;
    padding-bottom: 100px;
}

.woocommerce-page .page-title {
    font-size: 32px;
    line-height: 1.2;
}

.woocommerce-page .page-content-body {
    margin-top: 30px;
}

/* Malo vazduha između sekcija (order review tabela, payment box, notice...) */
.woocommerce-page table.shop_table,
.woocommerce-page .woocommerce-notices-wrapper,
.woocommerce-page .woocommerce-checkout-payment,
.woocommerce-page #payment {
    margin-bottom: 30px;
}

.woocommerce-page table.shop_table th,
.woocommerce-page table.shop_table td {
    padding: 14px 16px;
}

/* Brend boje umesto WooCommerce default ljubičaste */
.woocommerce-page .page-content-wrapper a,
.woocommerce-page .woocommerce-notices-wrapper a {
    color: var(--color-primary-green);
}

.woocommerce-page #payment #place_order,
.woocommerce-page .button.alt,
.woocommerce-page input.button.alt {
    background-color: var(--color-primary-green) !important;
    border-color: var(--color-primary-green) !important;
    color: var(--color-primary-white) !important;
    font-family: var(--font-primary);
    font-weight: 600;
    border-radius: 6px;
    transition: opacity .2s ease;
}

.woocommerce-page #payment #place_order:hover,
.woocommerce-page .button.alt:hover {
    opacity: .85;
}

.woocommerce-page .woocommerce-info,
.woocommerce-page .woocommerce-message {
    border-top-color: var(--color-primary-green);
}

.woocommerce-page .woocommerce-info::before,
.woocommerce-page .woocommerce-message::before {
    color: var(--color-primary-green);
}

/* Service Address autocomplete predlozi - samo adrese unutar dozvoljenih ZIP kodova */
.address-suggestions-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 20;
    margin: 4px 0 0;
    padding: 4px 0;
    list-style: none;
    background: var(--color-primary-white);
    border: 1px solid rgba(2, 2, 2, .15);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(2, 2, 2, .12);
    max-height: 240px;
    overflow-y: auto;
}

.address-suggestions-list li {
    padding: 10px 14px;
    font-size: 14px;
    line-height: 1.3;
    cursor: pointer;
    color: var(--color-primary-black);
}

.address-suggestions-list li:hover,
.address-suggestions-list li.is-active {
    background-color: var(--color-tertiary-grey2);
}

/* Custom date picker (Flatpickr) - zamena za native <input type="date">, koji
   izgleda drugačije na svakom browseru/OS-u. */
.dates-wrapper {
    margin-bottom: 32px;
}

.date-input-wrapper {
    position: relative;
}

.date-input-wrapper .custom-input {
    padding-right: 60px;
    cursor: pointer;
    background: var(--color-primary-white);
}

.date-input-icon {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-green);
    border: 0;
    border-radius: 3px;
    color: var(--color-primary-white);
    font-size: 18px;
    cursor: pointer;
    transition: opacity .2s ease;
}

.date-input-icon:hover {
    opacity: .85;
}

/* Flatpickr - uskladi kalendar sa brend bojama */
.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: var(--color-primary-green);
    border-color: var(--color-primary-green);
}

.flatpickr-day.today {
    border-color: var(--color-primary-green);
}

.flatpickr-day:hover {
    background: var(--color-secondary-green3);
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    color: rgba(2, 2, 2, .25);
    background: transparent;
    text-decoration: line-through;
}

.flatpickr-months .flatpickr-month {
    color: var(--color-primary-black);
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    color: var(--color-primary-black);
}

.flatpickr-weekdays,
span.flatpickr-weekday {
    background: var(--color-primary-white);
    color: var(--color-primary-black);
}

.waste-type-wrapper {
    margin-bottom: 40px;
}

.dates-wrapper {
    margin-top: 32px;
    border-top: 1px solid rgb(2 2 2 / 0.25);
    padding-top: 32px;
}

.notes-wrapper {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgb(2 2 2 / 0.25);
}

.placement-wrapper {
    margin-bottom: 32px;
}

.page-content-body h3 {
    margin-bottom: 24px;
    margin-top: 50px;
}

.page-content-body li {
    font-size: var(--fs-p);
    line-height: var(--lh-p);
    color: var(--color-primary-green);
}
.page-content-body strong {
    color: var(--color-primary-green);
}
.terms-label {
    font-size: 12px;
    letter-spacing: -0.02em;
    line-height: 18px;
    font-weight: 400;
}
.price-green-box {
    margin-bottom: 20px;
}