


/* General styles */

.container-zk {
    max-width: 1150px;
    margin: 0 auto;
    padding: 8px;
    font-size: 16px;
}

.formzk p {
    margin: 0;
    line-height: 1.5;
}
.formzk .modal-body {
    padding: 8px 8px 60px 8px;
}
.formzk .modal-footer {
    border: none;
    position: fixed;
    width: 100%;
    max-width: calc(100% - 55px);
    bottom: 0;
    padding-top: 40px;
    background: #ffffff;
background: linear-gradient(0deg, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 0.76) 76%, rgba(255, 255, 255, 0) 100%);
}

.formzk label > span { 
    color: #008742;
}

/* View mode styles */
.formzk-body.view-mode .form-step:not([data-step="4"]) {
/*
  opacity: 0.7;
*/
}

.formzk-body.view-mode .form-step[data-step="4"] {
/*
  border: 2px solid #28a745;
  border-radius: 8px;
  padding: 20px;
  background-color: #f8f9fa;
*/
}

.view-mode-header {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 4px;
  padding: 15px;
  margin-bottom: 20px;
  color: #155724;
}

.view-mode-header h4 {
  margin: 0 0 10px 0;
  color: #155724;
}


/*
    SUMMARY
*/

.summary-section {
  margin-bottom: 15px;
}

.summary-section .summary-section-frame {
    background-color: white;
    border: 1px solid #b8b8b8;
    border-radius: 16px;
    padding: 10px 15px;
}

.summary-section h5 {
  color: #495057;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
}

.summary-section p {
  margin-bottom: 5px;
  line-height: 1.4;
  font-size: 16px;
  font-weight: bold;
}

.summary-section p span {
  color: #212529;
  min-width: 150px;
  display: inline-block;
  font-weight: normal;
}

.formzk .summaryEdit {
    display:flex;
    position: relative;
    align-items: center;
    padding-top: 20px;
}
.formzk .summaryEdit:before {
    display: block;
    position: absolute;
    content: "";
    top: 10px;
    width: calc(100% - 30px);
    border-top: 1px solid #b8b8b8;
}
@media screen and (min-width: 992px) {
    .summary-section p{
        font-size: 20px;
    }
    .summary-section .summary-section-frame {
        padding: 30px 15px;
    }
    .formzk .summaryEdit {
        border: none;
        justify-content: flex-end;
        padding-top: 0;
        font-size: 20px;
    }
    .formzk .summaryEdit:before {
        display: none;
    }
}




.formzk-action-buttons {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-top: 20px;
    gap: 15px;
    margin-bottom: 40px;
}
@media screen and (min-width: 576px) {
    .formzk .modal-footer {
        margin: 0;
        max-width: 499px;
    }
}
@media screen and (min-width: 768px) {
    .formzk-action-buttons {
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
    }
}
@media screen and (min-width: 992px) {
    .formzk .modal-footer {
        max-width: 799px;
    }
}
.formzk-btn:*{
    outline: none !important;
}
.formzk-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    line-height: 1.2;
}
.formzk-btn-outline {
    background-color: transparent;
    border: 2px solid #008742;
    color: #008742;
    border-color: #008742 !important;
}
.formzk-btn-primary {
    background-color: #008742;
    border: 2px solid #008742;
    color: white;
    border-color: #008742 !important;
}
.formzk-btn:focus {
    outline: none !important;
}

.formzk-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}
@media screen and (min-width: 1024px) {
    .formzk-btn {
        font-size: 20px;;
    }
    .formzk-btn.long {
        min-width: 340px;
    }
}
@media screen and (min-width: 1200px) {
    .formzk .modal-footer {
        margin: 0;
        max-width: 1139px;
    }
}





/* Location Selection */
.formzk .pricing-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 0 20px;
}

.formzk .pricing-header-row {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
}

.formzk .free-label {
    color: #008742;
}

.formzk .pricing-header-row .price-columns {
    display: flex;
    gap: 40px;
    font-weight: 400;
    color: #000;
}

.formzk .location-options {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.formzk .pricing-header-row > span {
    line-height: 1.2;
}
.formzk .price-columns span {
    white-space: nowrap;
}


.formzk .radio-option .option-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 5px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px 20px 20px 55px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.formzk .radio-option input[type="radio"] {
    display: none;
}
.formzk .radio-option input[type="radio"]:checked + .option-content {
    border-color: #008742;
}
.formzk .radio-option .option-icon-radio {
    display: block;
    position: absolute;
    left: 15px;
    top: 20px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #fff;
    border: 6px solid #fff;
    box-shadow: #808080 0 0 0 1px;
}
.formzk .radio-option input[type="radio"]:checked + .option-content .option-icon-radio {
    background-color: #008742;
}

.formzk .option-info {
    flex: 1;
}

.formzk .option-title {
    font-size: 16px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.formzk .promotion {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.formzk .promo-label {
    display: block;
    background-color: #E5F3EC;
    color: #007A3C;
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    width: fit-content;
}

.formzk .promo-text {
    font-size: 16px;
    font-weight: 400;
    color: #008742;
}

.formzk .pricing {
    display: flex;
    gap: 40px;
}

.formzk .price-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.formzk .price {
    font-size: 16px;
    font-weight: 700;
    color: #007A3C;
}

.formzk .price-old {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-decoration: line-through;
}

.formzk .transport-note {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
    padding-left: 20px;
}

.formzk .form-checks {
    font-weight: 400px;
}
.formzk .form-checks .form-check {
    padding: 0;
    margin: 0;
}
.formzk .form-checks .form-check input[type="checkbox"] {
    width: 28px;
    height: 28px;
    padding: 0;
    margin: 0;
    border: 1px solid #808080;
    border-radius: 4px;
    box-sizing: border-box;
}
.formzk .form-checks .form-check label {
    padding: 0 0 0 42px;
    margin-top: 14px;
}
.formzk .form-check-group {
    border-left: 1px solid #808080;
    margin-left: 14px;
    padding-left: 22px;
}

@media screen and (min-width: 1024px) {
    .formzk .modal-body {
        padding: 16px 16px 60px 16px;
    }
    .formzk .pricing-header-row {
        font-size: 20px;
    }
    .formzk .radio-option .option-content {
        flex-direction: row;
        gap: 20px;
    }
    .formzk .radio-option .option-icon-radio {
        top: 23px;
    }
    .formzk .option-title {
        font-size: 20px;
        font-weight: 400;
    }
    .formzk .promo-label {
        display: inline-block;
    }
    .formzk .price-column {
        align-items: flex-end;
    }
    .formzk .price {
        font-size: 20px;
        font-weight: 700;
    }
}
@media screen and (max-width: 1023px) {
    .formzk .mobile-hide {
        display: none !important;
    }
}


.formzk .payment-summary-info {
    font-size: 16px;
    background-color: #E5F3EC;
    border-radius: 8px;
    padding: 10px;
}





.zamowienie-kontenera-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.zamowienie-kontenera-form .form-group {
    margin-bottom: 15px;
}

.zamowienie-kontenera-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: normal;
}

.zamowienie-kontenera-form input[type="text"],
.zamowienie-kontenera-form input[type="email"],
.zamowienie-kontenera-form input[type="tel"],
.zamowienie-kontenera-form input[type="date"],
.zamowienie-kontenera-form input[type="number"],
.zamowienie-kontenera-form textarea,
.zamowienie-kontenera-form select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}
.zamowienie-kontenera-form input.is-invalid + label {
    color: #dc3545;
}

.zamowienie-kontenera-form textarea {
    height: 100px;
}

.zamowienie-kontenera-form .radio-group {
    display: flex;
    gap: 15px;
}

.zamowienie-kontenera-form .radio-group label {
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 5px;
}

.zamowienie-kontenera-result {
    margin-top: 20px;
    padding: 15px 0;
    border-radius: 4px;
}

.zamowienie-kontenera-result .success-message {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
    padding: 15px;
    border-radius: 4px;
}

.zamowienie-kontenera-result .error-message {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
    padding: 15px;
    border-radius: 4px;
}

.zamowienie-kontenera-result .info-message {
    background-color: transparent;
    color: #bbb;
    border: none;
    padding: 15px 0;
    border-radius: 4px;
    font-size: 12px;
}

.zamowienie-kontenera-error {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.recaptcha-terms {
    margin-top: 20px;
    font-size: 12px;
    color: #666;
    text-align: center;
}

.recaptcha-terms a {
    color: #4285f4;
    text-decoration: none;
}

.recaptcha-terms a:hover {
    text-decoration: underline;
}


/*
FORM STEPS
*/



.formzk-header {
    font-size: 20px;
    background-color: #fff !important;
    border: none;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin: 20px 0
}
.formzk-header .container-form-title {
    text-transform: uppercase;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    padding: 0;
    margin: 6px 0 0 0;
}
.form-step {
    display: none;
}
.form-step.active {
    display: block;
}
.step-indicator {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    user-select: none;
    white-space: nowrap;
}
.step-indicator .step {
    text-align: center;
    position: relative;
    margin: 0;
    border-radius: 50%;
    background-color: #B8B8B8;
    min-width: 8px;
    min-height: 8px;
}
.step-indicator .step.active {
    background-color: #28a745;
}
.step-indicator .step .step-icon {
    display: none;
}
.step-indicator .step.active .step-icon {
    border-color: #28a745;
    border-width: 2px;
}
.step-indicator .step.completed .step-icon {
    border-color: #B8B8B8;
}

.formzk .bottom-navigation {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 20px;
}
.bottom-navigation .terms-link {
}
.bottom-navigation .form-navigation {
    display: flex;
    gap: 15px;
}
.invalid-feedback {
    display: none;
}
.was-validated .form-control:invalid ~ .invalid-feedback {
    display: block;
}
.formzk-header-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

@media screen and (min-width: 1024px) {
    .formzk .bottom-navigation {
        flex-direction: row;
    }
    .formzk-header .container-form-title {
        font-size: 32px;
        margin: 0;
    }
    .step-indicator .step .step-icon {
        display: block;
        height: 40px;
        width: 40px;
        border-radius: 50%;
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        color: #000;
        border: 1px solid #B8B8B8;
    }
}


/* KONTENERY i ODPADY */

/* Kompletne rozwiązanie dla wszystkich przypadków */
.modal {
    z-index: 1060 !important;
}

.modal-backdrop {
    z-index: 1050 !important;
}

.modal-backdrop.fade.show {
    z-index: 1050 !important;
}

/* Dla zagnieżdżonych modali */
.modal.fade.show {
    z-index: 1060 !important;
}

/* Dodatkowe zabezpieczenie */
body.modal-open .modal {
    z-index: 1060 !important;
}


.container-slider {
    background-color: #fff;
    width: 100%;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 8px;
}

.container-card {
    position: relative;
    flex: 1 0 210px;
    min-width: 210px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-radius: 16px !important;
    box-shadow: none;
    overflow: hidden;
    font-size: 16px;
}
.container-card:hover {
    
}
.container-card.selected {
    border-color: #008742;
}
.container-card:before {
    display: block;
    content: '';
    position: absolute;
    right: 15px;
    top: 15px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #fff;
    border: 6px solid #fff;
    box-shadow: hsl(0, 0%, 50%) 0 0 0 1px;
}
.container-card.selected:before {
    background-color: #008742;
}
.container-card .cc-header {
    background-color: #EAEAEA;
    padding: 15px;
    text-align: left;
    background-repeat: no-repeat;
    background-position: center 70%;
    min-height: 180px;
}
.container-card .cc-header h3 {
    margin: 0;
    padding: 0 0 0 40px;
    font-size: 32px !important;
    font-weight: bold;
    color: #333;
}
.container-card .cc-body {
    padding: 15px;
    font-size: 16px;
    color: #000;
}

.wastes-list {

}

.wastes-list .waste-row {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2px;
    border: 2px solid #D9D9D9;
    background-color: #fff;
    border-radius: 12px;
    padding: 20px 20px 20px 55px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.wastes-list .waste-row:before {
    display: block;
    content: '';
    position: absolute;
    left: 15px;
    top: 20px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #fff;
    border: 6px solid #fff;
    box-shadow: #808080 0 0 0 1px;
}
.wastes-list .waste-row.selected:before {
    background-color: #008742;
}

.wastes-list .waste-row:hover {
    border: 2px solid #b0b0b0;
}
.wastes-list .waste-row.selected {
    border: 2px solid #008742;
}
.wastes-list .waste-name {
    font-weight: bold;
}
.wastes-list .waste-prices {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-top: 5px;
    width: 100%;
}
.wastes-list .waste-prices > div {
    width: 50%;
    text-align: left;
    font-size: 16px;
}




.wastes-list .price-now {
    font-weight: bold;
    color: #007A3C;
}
.wastes-list .price-original {
    text-decoration: line-through;
    color: #000;
    font-size: 16px;
}
.wastes-list .price-promo {
    color: #007A3C;
    font-weight: bold;
}
.wastes-list .price-section {
    border-top: 1px solid #dee2e6;
    padding-top: 10px;
    margin-top: 10px;
}
.wastes-list .price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.formzk .order-slider {
    background-color: #fff;
    width: 100%;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 8px;
    margin: 0 0 20px 0;
}

.formzk .order-item {
    position: relative;
    overflow: hidden;
    flex: 1 0 250px;
    min-width: 250px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2px;
    border: 2px solid #D9D9D9;
    background-color: #fff;
    border-radius: 5px;
    white-space: normal;
    font-size: 16px;
}

.formzk .order-item .order-item-img {
    background-size: initial;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 130px;
    background-color: #EAEAEA;
}
.formzk .order-item .order-item-container {
    padding: 8px 0 4px 10px;
}
.formzk .order-item .order-item-waste {
    padding: 4px 0 8px 10px;
}
.formzk .order-item .order-item-waste > span {
    font-weight: bold;
}
.formzk .order-item .order-item-waste > strong {
    display: none;
}
.formzk .order-item .cc-actions {
    margin: 0 10px 10px 10px;
}
.formzk .order-item .cc-actions hr {
    border: none;
    border-top: solid 1px #b8b8b8;
    margin: 5px 0;
    padding: 0;
}
.formzk .order-item .cc-actions button,
.formzk .summary-section-frame button {
    border: none;
    background-color: transparent;
    color: #008742;
    font-size: 16px;
    box-shadow: none;
}


.formzk .order-preview-widget {
    border: 0px solid #dee2e6;
    border-radius: 8px;
    padding: 0;
    margin-bottom: 0;
    background-color: #fff;
}
.formzk .price-details {
    font-size: 0.9em;
    color: #6c757d;
}
.formzk .price-details.compact {
    font-size: 0.8em;
}
.preset-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}
.formzk .preset-button {
    flex: 1;
    min-width: 200px;
}
.formzk .order-input-section {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}


.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}
.sidebar-preview {
    position: sticky;
    top: 20px;
}



.formzk .modal-lg {
    max-width: 95%;
}

.formzk .order-summary .pricing-header {
    padding: 0;
}
.formzk .order-summary .pricing-header-row {
    font-size: 16px;
}



@media screen and (min-width: 1024px) {
    .wastes-list .waste-row {
        flex-direction: row;
        gap: 20px;
        align-items: center;
    }
    .wastes-list .waste-row:before {
        top: calc(50% - 14px);
    }
    .wastes-list .waste-row > div:not(.waste-prices) {
        width: 100%;
    }
    .wastes-list .waste-row .waste-info {
        flex: 1;
    }
    .wastes-list .waste-row .waste-prices {
        flex: 0 0 auto;
        max-width: 220px;
    }
    .wastes-list .waste-code {
        font-size: 20px;
        max-width: 90px;
    }
    .wastes-list .waste-name {
        font-size: 20px;
    }
    .wastes-list .waste-prices > div {
        text-align: right;
        font-size: 20px;
    }
    .wastes-list .waste-prices > div small {
        display: none;
    }

    .formzk .order-slider {
        flex-direction: column;
        gap: 20px;
    }

    .formzk .order-item {
        flex: none;
        display: flex;
        flex-direction: row;
        gap: 0;
        align-items: center;
        min-height: 175px;
        justify-content: flex-start;
    }

    .formzk .order-item .order-item-img {
        width: 250px;
        height: 100%;
        min-height: 175px;
    }
    .formzk .order-item .order-item-container {
        max-width: 120px;
        width: 100%;
        padding: 15px;
    }
    .formzk .order-item .order-item-container > strong {
        display: block;
    }
    .formzk .order-item .order-item-waste {
        max-width: calc( 100% - 120px - 250px - 80px);
        width: 100%;
        padding: 15px;
    }
    .formzk .order-item .order-item-waste > span {
        font-weight: normal;
    }
    .formzk .order-item .order-item-waste > strong {
        display: block;
    }
    .formzk .order-item .cc-actions {
        width: 80px;
    }
    .formzk .order-item .cc-actions hr {
        display: none;
    }
    .formzk .order-item .cc-actions button,
    .formzk .summary-section-frame button {
        border: solid 1px #008742;
        background-color: #fff;
        border-radius: 48px;
        height: 48px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1.1;
    }
}

