.custom-banner {
  border: 1px solid #e0e0e0;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 280px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-style: inherit;
}

.custom-banner__button {
  height: 76px;
  width: 100%;
  background-color: #18a204;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  border-radius: 6px;
  padding: 5px 30px;
  text-align: center;
  font-size: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color 0.2s ease 0s;
  transition: background-color 0.2s ease 0s;
  margin-bottom: 20px;
}

.custom-banner__title {
  text-align: center;
  font-size: 16px;
  margin-bottom: 10px;
  display: none;
}

.custom-banner__list {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  color: #888888;
}

.custom-banner__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}

.custom-banner__price {
  font-size: 14px;
  color: #b6b5b5;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .custom-banner {
    padding: 20px 15px 10px 15px;
  }

  .custom-banner__title {
    display: block;
  }

  .custom-banner__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 6px;
    font-size: 12px;
  }

  .custom-banner__logo {
    margin-top: 6px;
  }

  .custom-banner__price {
    font-size: 10px;
  }
}

@media (max-width: 478px) {
  .custom-banner__button {
    min-width: auto;
    width: 100%;
  }
}

@media (any-hover: hover) {
  .custom-banner__button:hover {
    background-color: #1dbc05;
  }
}