.delivery-type-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
    /*width: 100%;*/
}

.delivery-type-container p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
    width: 100%;
}

.toggle-items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 600px;
}

.toggle-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.toggle-item span {
    margin-left: 10px;
    font-size: 16px;
}

.pickup-address-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    width: 100%;
}

.pickup-address-container label,
.pickup-address-container input {
    width: 100%;
    max-width: 500px;
}

.pickup-address-container input {
    margin-top: 10px;
    padding: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

.pickup-address-container.inactive {
    opacity: 0.5;
    pointer-events: none;
}

input.toggle-radio {
    cursor: pointer;
}

.hidden {
    display: none;
}

.suggestions-wrapper {
    width: 50vw;
    top: 5px;
}

.save-address-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
}

#saveAddressButton.disabled {
    background-color: #cccccc !important;
    cursor: not-allowed !important;
    color: #666666 !important;
}

@media (max-width: 1024px) {
    .suggestions-wrapper {
        width: 95vw;
    }
}

@media (max-width: 1024px) {
    .delivery-type-container {
        padding: 0 10px;
    }
}


