#delivery-block {
    margin-bottom: 80px;
}

#delivery-block .container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

#delivery-block .payments,
#delivery-block .delivery__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: calc(50% - 10px);
}

#delivery-block .payments__items,
#delivery-block .delivery__items {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#delivery-block .item-delivery {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px;
}

#delivery-block .item-payments {
    cursor: pointer;
}

#delivery-block .item-payments,
#delivery-block .item-delivery {
    border: 1px solid var(--stroke);
    border-radius: 10px;
    background: var(--head-secondary);
}

#delivery-block .item-payments__top {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

#delivery-block .item-payments__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: 0.2s ease-in;
}

#delivery-block .item-payments.is-opened .item-payments__icon {
    transform: rotate(-180deg);
}

#delivery-block .item-payments__icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

#delivery-block .item-payments__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 30px 30px;
}

#delivery-block .item-payments__text *,
#delivery-block .item-delivery__text * {
    font-size: 16px;
}

#delivery-block .item-payments__text *:not(:last-child),
#delivery-block .item-delivery__text *:not(:last-child) {
    margin-bottom: 20px;
}

#delivery-block .item-payments__text li:not(:last-child),
#delivery-block .item-delivery__text li:not(:last-child) {
    margin-bottom: 10px;
}

#delivery-block .item-payments__text li,
#delivery-block .item-delivery__text li {
    padding-left: 18px;
}

#delivery-block .item-payments__text li::before,
#delivery-block .item-delivery__text li::before {
    content: "";
    position: absolute;
    top: 5.5px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary);
}

#delivery-block .item-payments__gallery,
#delivery-block .item-delivery__gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
}

#delivery-block .item-payments__img,
#delivery-block .item-delivery__img {
    border-radius: 5px;
    width: 85px;
    height: 50px;
    overflow: hidden;
}

#delivery-block .item-payments__img img,
#delivery-block .item-delivery__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 1192px) {
    #delivery-block .container {
        flex-direction: column;
    }
    #delivery-block .payments,
    #delivery-block .delivery__content {
        width: 100%;
    }
}
@media (max-width: 992px) {
    #delivery-block {
        margin-bottom: 60px;
    }
}
@media (max-width: 768px) {
    #delivery-block {
        margin-bottom: 40px;
    }
    #delivery-block .container,
    #delivery-block .item-payments__content,
    #delivery-block .item-delivery {
        gap: 20px;
    }
    #delivery-block .item-payments__top,
    #delivery-block .item-delivery {
        padding: 20px;
    }
    #delivery-block .item-payments__content {
        padding: 0 20px 20px;
    }
}