.table-check-list {
  .h_title {
    margin-bottom: 2.1875rem;
    margin-top: 2.1875rem;
  }

  .subtext {
    width: 100%;

    .coverage-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      margin-bottom: 0;

      .table-header {
        background-color: var(--color-white-dark);
        padding: 24px 20px;
        box-sizing: border-box;
        border: 0 solid var(--color-white);

        p {
          font-size: 0.875rem;
          font-weight: 700;
          letter-spacing: 1px;
          line-height: 16px;
          text-transform: uppercase;
          margin: 0;
        }
      }

      tr {
        align-items: center;
        background-color: var(--color-white);
        display: flex;
        min-height: 72px;
        box-sizing: border-box;

        td {
          border: 0 solid var(--color-white);
          font-size: 0.875rem;
          padding: 5px 16px;
          width: 100%;

          p {
            font-weight: 300;
            letter-spacing: 0;
            margin: 0;
            text-align: start;
          }
        }
      }

      tr>td {
        box-sizing: border-box;
        min-width: 0;
      }

      .table-row {
        border-bottom: 1px solid var(--color-gray-lighter);

        td.right {
          display: flex;
          flex-direction: column;
          width: 75%;

          p {
            font-weight: 300;
            letter-spacing: 0.25px;
            margin-bottom: 1rem;
            position: relative;
            margin-top: 0;
            white-space: normal;
          }

          ul {
            margin: 0;
            padding-left: 0;

            li {
              font-weight: 300;
              letter-spacing: 0.25px;
              margin-bottom: 1rem;
              margin-left: 40px;
              padding-left: 28px;
              position: relative;
              margin-top: 0;
              white-space: normal;
              overflow-wrap: anywhere;
              word-break: break-word;
              hyphens: auto;

              &::before {
                content: "";
                position: absolute;
                left: 0;
                width: 20px;
                height: 20px;
                background-image: url("../../images/check-two-columns/check-green.svg");
                background-repeat: no-repeat;
                background-size: cover;
              }
            }
          }
        }

        td.left {
          width: 25%;
        }
      }

      .text__hide-space {
        display: none;
      }
    }
  }
}

@media (max-width: 992px) {
  .table-check-list {
    .h_title {
      .alert-heading {
        line-height: normal;
      }
    }

    .subtext {
      border-radius: 4px;
      overflow: hidden;
      padding: 0;
      -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.1);
      box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.1);

      .coverage-table {
        width: 100%;
        box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.1);

        .table-header {
          background-color: var(--color-white-dark);
          border-bottom: 1px solid var(--color-gray-lighter);
          font-size: 0.875rem;
          font-weight: 700;
          letter-spacing: 1px;
          line-height: 16px;
          text-transform: uppercase;
        }

        .table-row {
          flex-direction: column;
          align-items: flex-start !important;
          min-height: auto;
          padding: 16px 0;

          td {
            padding-left: 24px;
            padding-right: 24px;
          }

          .right {
            width: 100% !important;
          }

          .left {
            width: 100% !important;
            margin-bottom: 16px;
          }
        }
      }
    }
  }
}