.delivery-payment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.delivery-payment .delivery-payment__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 30px;
    margin-top: 24px;
    margin-bottom: 32px;
}

.delivery-payment .delivery-payment__header button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 5px;
    color: #78909C;
    color: var(--grey-color, #78909C);
    font-family: "Open Sans";
    font-family: var(--main-font-family, "Open Sans");
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18.2px;
    letter-spacing: 0.14px;
    text-transform: uppercase;
}

.delivery-payment .delivery-payment__header button svg {
    min-width: 24px;
    max-width: 24px;
    height: 24px;
}

.delivery-payment .delivery-payment__header button span {
    position: relative;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin: auto 0;
}

.delivery-payment .delivery-payment__header button.select span::before {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #0065DC;
    background-color: var(--blue-color, #0065DC);
}

.delivery-payment .delivery-payment__header button.select {
    color: #0065DC;
    color: var(--blue-color, #0065DC);
}

.delivery-payment .delivery-payment__header button.select svg path {
    fill: #0065DC;
    fill: var(--blue-color, #0065DC);
}

.delivery-payment .delivery-payment__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 24px;
}

.delivery-payment .delivery-payment__list_big {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [ 2 ];
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px;
    gap: 24px;
}

.delivery-payment .delivery-payment__list.hidden {
    display: none;
}

.delivery-payment .delivery-payment__item {
    min-width: 490px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 15px;
    padding: 25px;
    border-radius: 10px;
    border-radius: var(--main-radius, 10px);
    background-color: #F2F3F5;
    background-color: var(--dark-white-color, #F2F3F5);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.delivery-payment .delivery-payment__item svg {
    width: 48px;
    height: 48px;
}

.delivery-payment .delivery-payment__wrapper-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
}

.delivery-payment .delivery-payment__wrapper-text p {
    line-height: 20.8px;
    opacity: 0.8;
}

.delivery-payment .delivery-payment__title {
    color: #37474F;
    color: var(--main-color, #37474F);
    font-family: "Open Sans";
    font-family: var(--main-font-family, "Open Sans");
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20.8px;
    text-transform: uppercase;
}

.delivery-payment .delivery-payment__note {
    flex: 1 1 100%;
    /*margin-top: 20px;*/
    font-size: 14px;
    line-height: 18.2px;
    opacity: 0.8;
}

@media (max-width: 1280px) {
    .delivery-payment .delivery-payment__item {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .delivery-payment .delivery-payment__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .delivery-payment .delivery-payment__list_big {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 24px;
    }

    .delivery-payment .delivery-payment__header {
        gap: 20px;
    }

    .delivery-payment .delivery-payment__item {
        padding: 15px;
    }

    .delivery-payment .delivery-payment__header button {
        font-size: 12px;
    }

    .delivery-payment .delivery-payment__header button svg {
        display: none;
    }
}