.nav-breadcrumb {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-breadcrumb-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nav-breadcrumb .nav-link.active {
    background-color: white !important;
    color: #212529;
    outline: 0;
    outline-offset: 0;
}

.nav-breadcrumb .nav-link {
    border: none;
    background-color: white;
}

.card-delivery {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-self: center;

    border-radius: 16px;
    border: 2px solid #077BFF;
    background-color: #F8F9FA;
}

.delivery-point-styled {
    margin-bottom: 16px;

    align-self: center;
}

.order-summary-wrapper {
    height: fit-content;

    margin-top: 60px;

    display: flex;
    flex-direction: column;
    gap: 40px;
}

.order-summary {
    padding: 24px;

    display: flex;
    flex-direction: column;

    border-radius: 12px;

    background: #F8F9FA;
}

.order-summary-header {
    margin-bottom: 20px;
    padding-bottom: 4px;

    border-bottom: 1px solid #E1E3E5;
}

.order-summary-item {
    width: 100%;

    padding-bottom: 16px;

    display: flex;
    justify-content: space-between;
}


.delivery-estimate-warning {
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-delivery-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.checkout-progress-step-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-progress-step {
    width: 28px;
    height: 28px;

    display: flex;
    justify-content: center;
    align-items: center;

    border: 1px solid #2B2E31;
    border-radius: 100%;
}

.checkout-progress-step-mobile-size {
    width: 20px;
    height: 20px;
}

.checkout-progress-step-item {
    display: flex;
    gap: 44px;
}

.checkout-progress-step-border {
    width: 6px;

    margin: 8px 10px;

    display: flex;
    gap: 30px;

    border-radius: 12px;
    background: #E1E3E5;
}

.checkout-progress-step-content {
    width:100%;

    padding-top: 40px;
    padding-bottom: 80px;

    display: flex;
    flex-direction: column;
    gap: 32px;
}

.checkout-progress-step-block {
    display: flex;
    flex-direction: column;
}

.payment-label-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

@media (max-width: 768px) {
    .payment-label-wrapper {
        gap: 0px;
    }
}

.styled-form-check-input {
    min-width: 28px;
    min-height: 28px;

    border: 2px solid #E1E3E5;

    background-color: #fffff;
    border-radius: 50%;

    cursor: pointer;
    appearance: none;

    -webkit-appearance: none;
    -moz-appearance: none;
}

@media (max-width: 768px) {
    .styled-form-check-input {
        min-width: 20px;
        min-height: 20px;
    }
}

.styled-form-check-input:checked {
    background-color: #2B2E31;
    border-color: #2B2E31;
    background: url('/img/order-v2/radio-button.svg') no-repeat center;
}

.form-control::placeholder {
    color: #E1E3E5;
    font-family: Lato, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
}
