.delivery-and-payment__available-payment-methods{
  .heading{
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0em;
    color: #222222;
    margin: 0;
  }
  .description{
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0em;
    color: #222222;
    margin: 0;
    margin-top: 16px;
  }
  .list{
    display: grid;
    grid-template-rows: repeat(1, minmax(240px, auto));
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 32px;
    .list-item{
      border-radius: 4px;
      background-color: #F1F1F1;
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      gap: 16px;
      .list-item__title{
        font-weight: 600;
        font-size: 24px;
        line-height: 130%;
        letter-spacing: 0em;
        color: #222222;
        margin: 0;
      }
      .list-item__description{
        font-weight: 400;
        font-size: 16px;
        line-height: 140%;
        letter-spacing: 0em;
        color: #222222;
        margin: 0;
      }
      .list-item__icons{
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        gap: 24px;
        margin-top: auto;
        #mastercard {
          width: 62px;
          height: 38px;
        }
        #visa {
          width: 88px;
          height: 30px;
        }
        #mir {
          width: 100px;
          height: 30px;
        }
        #sbp {
          width: 48px;
          height: 48px;
        }
        #card {
          width: 46px;
          height: 46px;
        }
      }
    }
  }
  .return{
    margin-top: 40px;
    border: 1px solid #E8E8E8;
    padding: 24px;
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: 48px 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 16px;
    svg {
      flex-shrink: 0;
      width: 100%;
      height: 100%;
      grid-area: 1 / 1 / 2 / 2;
    }
    .return__info-title{
      font-weight: 600;
      font-size: 28px;
      line-height: 120%;
      letter-spacing: 0em;
      color: #222222;
      margin: 0;
      grid-area: 1 / 2 / 2 / 3;
    }
    .return__info-description{
      font-weight: 400;
      font-size: 16px;
      line-height: 140%;
      letter-spacing: 0em;
      color: #222222;
      margin: 0;
      grid-area: 2 / 2 / 3 / 3;
    }
  }
}
@media (max-width: 991px) {
  .delivery-and-payment__available-payment-methods{
    .heading{
      font-size: 24px;
      line-height: 130%;
    }
    .description{
      margin-top: 12px;
    }
    .list{
      grid-template-rows: repeat(3, minmax(220px, auto));
      grid-template-columns: repeat(1, 1fr);
      gap: 24px;
      padding-top: 24px;
      .list-item{
        gap: 8px;
        .list-item__title{
          font-size: 20px;
          line-height: 140%;
        }
        .list-item__description{
          font-size: 14px;
          line-height: 130%;
        }
        .list-item__icons{
          #mastercard {
            width: 52px;
            height: 32px;
          }
          #visa {
            width: 74px;
            height: 26px;
          }
          #mir {
            width: 85px;
            height: 26px;
          }
          #sbp {
            width: 44px;
            height: 44px;
          }
          #card {
            width: 46px;
            height: 46px;
          }
        }
      }
    }
    .return{
      grid-template-columns: 40px 1fr;
      grid-template-rows: auto 1fr;
      grid-column-gap: 16px;
      grid-row-gap: 16px;
      svg {
        grid-area: 1 / 1 / 2 / 2;
      }
      .return__info-title{
        font-size: 24px;
        line-height: 130%;
        grid-area: 1 / 2 / 2 / 3;
      }
      .return__info-description{
        grid-area: 2 / 1 / 3 / 3;
      }
    }
  }
}