.header-features-sublist__link {
  height: unset;
  display: table-cell;
  line-height: 2rem;
  border-bottom: none;
  vertical-align: middle;
}

.header-features-sublist__item {
  height: 5rem;
  border-bottom: 1px solid #D8D8D8;
  display: table;
  text-align: center;
  width: 100%;
}

.payments-method__list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px;
  margin-bottom: 100px;
}

.payments-method__list img {
  filter: grayscale(100%);
  width: 185px;
}

.payments-method__list img:hover {
  filter: none;
}

@media (max-width: 767px) {
  .payment-methods__title {
    width: 100%;
    max-width: 100%;
  }

  .payments-method__list {
    gap: 32px;
    margin: 40px 0;
  }

  .payments-method__list img {
    filter: none;
    width: 113px;
  }
}

@media (min-width: 768px) {
  .payments-method__list {
    gap: 64px;
  }
}

.send-message {
  background-color: rgba(0,0,0,.5);
  align-items: center;
  justify-content: center;
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}

.send-message .send-message__popup {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 8px;
  box-sizing: border-box;
  padding: 24px;
  width: 480px;
  min-width: 320px;
  flex-direction: column;
  position: relative;
}

.send-message .send-message__popup .send-message__text {
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.5em;
}

.send-message .send-message__popup .btn {
  cursor: pointer;
  width: 120px;
}
