.reseller-title {
  font-weight: bold;
  color: #ff0000;
  max-width: 980px;
  margin: 2rem auto;
  text-align: center;
}

.reseller-section {
  max-width: 980px;
  padding: 1rem 1.5rem;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
  border-radius: 0.5rem;
  margin: 2rem auto;
}

.reseller-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reseller-section__header > img {
  cursor: pointer;
  background-color: #f0f0f0;
  border-radius: 4px;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.reseller-section.collapsed .reseller-section__header > img {
  transform: rotate(0);
}
.reseller-section__header > button {
  background-color: #ff0000;
  color: white;
  width: auto;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.reseller-section__header > button:disabled {
  background-color: #e0e0e0;
  color: #c0c0c0;
  cursor: not-allowed;
}

.reseller-faq__item {
  margin-top: 1rem;
}
.reseller-section.collapsed .reseller-faq__item {
  display: none;
}
.reseller-faq__item > img {
  width: 80%;
  max-width: 720px;
  display: block;
}

.reseller-section__steps {
  list-style-type: decimal;
}
.reseller-section__steps > li {
  font-weight: bold;
  margin-bottom: 1rem;
}
.reseller-section__steps > li > input {
  border: 1px solid #a0a0a0;
  border-radius: 0.25rem;
  padding: 0.25rem 0.5rem;
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0.75rem 0;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
}
.reseller-section__steps__warning {
  margin-left: 0.5rem;
}
.reseller-section__steps > li > input:focus {
  outline: none;
  border-color: #ff0000;
}

.reseller-faq__email-block {
  margin-bottom: 1rem;
}
.reseller-faq__email-block__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reseller-faq__email-block__header > h5 {
  font-weight: bold;
  font-size: 1rem;
  margin: 0;
}
.reseller-faq__email-block__header > button {
  color: #202020;
  background-color: transparent;
  width: auto;
  cursor: pointer;
  font-size: 14px;
  outline: 0;
}
.reseller-faq__email-block__header > button > img {
  vertical-align: top;
  margin-right: 6px;
}
.reseller-faq__email-block__content {
  background-color: #e0e0e0;
  padding: 0.5rem 1rem;
  margin-top: 0.5rem;
}
.reseller-faq__email-block__content > ul {
  list-style-type: none;
  margin-bottom: 0;
}
.reseller-faq__email-block__content__email {
  margin-left: 6px;
}

.reseller-section__balance {
  font-weight: bold;
  margin: 0 0.25rem;
}

.reseller-section__eligible,
.reseller-section__ineligible {
  display: none;
  margin-left: 0.25rem;
}

.reseller-section__buy-card {
  width: 300px;
  border-radius: 8px;
  background-color: #f0f0f0;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
  margin: 0.75rem 0;
}
.reseller-section__buy-card > h3 {
  color: #ff0000;
  font-weight: bold;
  padding: 1rem 0 0.5rem 0;
  text-align: center;
}

.reseller-section__buy-card > button {
  background-color: #ff0000;
  color: white;
  border-radius: 0 0 8px 8px;
  padding: 0.5rem 0;
  font-weight: bold;
}

.reseller-section__buy-card > button:disabled {
  background-color: #e0e0e0;
  color: #c0c0c0;
  cursor: not-allowed;
}
.reseller-section > table {
  width: 100%;
  margin-top: 1rem;
}

.reseller-section > table > thead {
  background-color: #f0f0f0;
}
.reseller-section > table > thead > tr > th,
.reseller-section > table > tbody > tr > td {
  padding: 0.25rem 0.75rem;
  text-align: left;
}
td > img {
  cursor: pointer;
  margin-left: 6px;
  width: 16px;
  height: 16px;
}

.reseller__toast {
  background-color: #006600;
  color: white;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  padding: 0.25rem 0.75rem;
  position: fixed;
  z-index: 20000;
  left: -100px;
  top: -100px;
  width: auto;
  display: none;
  animation: reseller-toast-fadeout 1.5s forwards;
}

@keyframes reseller-toast-fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
