/* chargeback section */
.chargeback {
    padding: 40px 0 80px;
}

.chargeback__container {
    max-width: 907px;
    display: flex;
    flex-direction: column;
    row-gap: 24px;

    margin: 0 auto;
}

.chargeback__content {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.chargeback__title {
    color: #171616;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 160%;
    text-transform: uppercase;
}

.chargeback__description {
    color: #171616;
    font-size: 14px;
    font-weight: 500;
    line-height: 160%;
}

.chargeback__description.bold {
    font-weight: 600;
}

.chargeback__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.chargeback__list-item {
    position: relative;
    color: #171616;
    font-size: 14px;
    font-weight: 500;
    line-height: 160%;
}

@media (max-width: 767px) {
    .chargeback {
        padding: 24px 0 60px;
    }
}