.delivery-info__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 20px auto;
    width: 95%;
    max-width: 1200px;
}

.delivery-section__header {
    display: flex;
    text-align: center;
    flex-direction: row-reverse;
    justify-content: right;
    gap: 50px;
    align-items: center;
    font-size: 3rem;
}

.delivery-section__header span {
    display: block;
}

.delivery-section__header img {
    width: 80px;
    height: 80px;
}

.delivery-section__data {
    padding: 10px;
    list-style-type: none;
}

.delivery-section__data--table {
    list-style-type: none;
    font-size: 1.1rem;
    padding: 0px;
}

.delivery-section__data--table li {
    margin-bottom: 10px;
    min-height: 100px;
    display: flex;
    align-items: center;
    padding: 10px;
}

.delivery-section__delivery .delivery-section__data--table li:nth-child(1) {
    min-height: 120px;
}

.delivery-section__delivery .delivery-section__data--table li {
    display: grid;
    grid-template-columns: 110px 1fr;
}

.delivery-section__delivery .delivery-section__data--table li>div:nth-child(1) {
    font-weight: bold;
    text-align: center;
}

.delivery-section__print_times {
    grid-column: 1 / span 2;
}

.delivery-section__data--table li:nth-child(odd) {
    background-color: var(--primaryColor33);
}

.delivery-section__print_times table {
    width: 98%;
    font-size: 1.2rem;
    border-collapse: separate;
    border-spacing: 1.1rem 1rem;
    margin: 2px auto;
    background-color: var(--primaryColor33);
}


.delivery-section__print_times table th {
    text-align: center;
}

.delivery-section__print_times table th:nth-child(1) {
    text-align: right;
}

.delivery-section__print_times table tr>td {
    text-align: center;
}

.delivery-section__print_times table tr>td:nth-child(1) {
    text-align: right;
}

@media (max-width: 768px) {
    .delivery-info__container {
        grid-template-columns: 1fr;
    }

    .delivery-section__header img {
        width: 50px;
        height: 50px;
    }

    .delivery-section__print_times {
        grid-column: auto;
    }
}
