.help {
  width: 100vw;
  min-height: var(--app-height);
  display: flex;
  align-items: center;
}

/* ANCHOR Media Query */

@media (min-width: 1024px) {
  .help {
    justify-content: space-evenly;
    padding: 90px 50px 90px;
  }
}

@media (max-width: 1023px) {
  .help {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 80px;
  }
}

.help .imageWrapper img {
  width: 100%;
  height: auto;
}

.help .contentWrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.help .contentWrapper h2 {
  font-size: var(--F16);
  font-weight: var(--black);
  text-transform: uppercase;
}

/* ANCHOR Media Query */

@media (min-width: 1024px) {
  .help .imageWrapper {
    width: calc(50% - 40px);
    margin-right: 40px;
  }
  .help .contentWrapper {
    width: calc(50% + 5px);
    max-width: 915px;
    overflow-y: auto;
    height: 70vh;
    padding-right: 10px;
    margin-right: -5px;
  }
  .help .imageWrapper .mobile {
    display: none;
  }

  .help .tableWrapper.mobile {
    display: none;
  }
}

@media (min-width: 2560px) {
  .help {
    justify-content: center;
  }
  .help .contentWrapper {
    justify-content: center;
  }
}

@media (max-width: 1023px) {
  .help .imageWrapper {
    margin-bottom: var(--spacing-x2);
  }

  .help .imageWrapper {
    width: calc(100% - 20px);
    margin-left: -10px;
  }

  .help .contentWrapper {
    width: calc(100% - 40px);
  }

  .help .imageWrapper .desktop {
    display: none;
  }
}

.help .contentWrapper .divider {
  margin: 20px auto;
}

.help .contentWrapper .tableWrapper {
  margin: var(--spacing-x2) auto;
  width: 100%;
}

.help .contentWrapper .tableWrapper table {
  width: 100%;
}

.help .contentWrapper .tableWrapper table thead {
  position: sticky;
  top: 0;
  background-color: var(--bg);
}

.help .contentWrapper table th {
  padding: 0;
}

/* ANCHOR Media Query */

@media (max-width: 1023px) {
  .help .contentWrapper .tableWrapper {
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .help .tableWrapper.desktop {
    display: none;
  }

  .help .tableWrapper.mobile h2 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-self: flex-start;
  }

  .help .tableWrapper.mobile h2 p {
    margin-left: 10px;
  }

  .help .tableWrapper.mobile h3 {
    text-align: left;
    align-self: flex-start;
    text-transform: uppercase;
  }

  .help .tableWrapper.mobile h3 ~ .divider {
    margin-top: 10px;
  }

  .help .tableWrapper.mobile .icon {
    width: 35px;
    height: 35px;
  }
}

.help .contentWrapper table tr.border {
  border-top: 3px solid var(--blue-med);
}

.help .contentWrapper table td {
  padding: 10px;
}

.help .contentWrapper table th .title,
.help .contentWrapper table td .title {
  font-size: var(--F11);
  font-weight: var(--black);
  text-transform: uppercase;
}

.help .contentWrapper table th > div,
.help .contentWrapper table td > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.help .contentWrapper table th .subtitle {
  font-size: var(--F11);
  font-weight: var(--bold);
  text-transform: uppercase;
}

.help .contentWrapper table .coins {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
}

.help .contentWrapper table p {
  font-size: var(--F12);
  text-align: center;
  text-transform: uppercase;
}

.help .contentWrapper .roundedClick {
  width: 200px;
  margin-top: 30px;
}

.help .contentWrapper .roundedClick .icon {
  position: relative;
  right: 0;
}

/* ANCHOR Media Query */

@media (max-width: 1023px) {
  .help .contentWrapper .roundedClick {
    width: 250px;
    align-self: center;
  }

  .help .contentWrapper table td {
    padding: 10px 5px;
  }

  .help .contentWrapper table p {
    font-size: var(--F10);
  }
}

@media (min-width: 1024px) {
  .help .contentWrapper table th:first-child p {
    margin-top: 10px;
  }

  .help .contentWrapper .tableWrapper table th > div {
    border-bottom: 3px solid var(--blue-med);
    padding-bottom: 10px;
  }
}
