.tabber-table-tabs>div {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
}
.tabber-table-tab {
    padding: 15px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 20px 25px 0 0;
}
.tabber-table-block.hidden {
    display: none;
}
.tabber-table-block>div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.tabber-table-block-content {
    width: 35%;
}
.tabber-table-block-table {
    width: 65%;
}
.tabber-table-block-content h3 {
    line-height: 1.2;
    font-size: 20px;
    font-weight: bold;
    padding: 15px;
    margin: 0;
}
.tabber-table-block-content>div>div {
    padding: 15px 15px 25px;
}
.tabber-table-block-table th {
    font-size: 20px;
    padding: 15px;
}
.tabber-table-block-table th:nth-child(1), .tabber-table-block-table td:nth-child(1) {
    width: 66%;
}
.tabber-table-block-table th:nth-child(2), .tabber-table-block-table td:nth-child(2), .tabber-table-block-table th:nth-child(3), .tabber-table-block-table td:nth-child(3) {
    width: 17%;
}
.tabber-table-block-table tbody td {
    background: #ffffff;
    padding: 10px 15px;
}
span.table-check {
    width: 20px;
    height: 20px;
    display: block;
    margin: 0 auto;
    position: relative;
}
span.table-check:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 15px;
    height: 7px;
    border-left: 3px solid #20aaa2;
    border-bottom: 3px solid #20aaa2;
}
span.table-ex {
    width: 20px;
    height: 20px;
    display: block;
    margin: 0 auto;
    position: relative;
}
span.table-ex:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 2px;
    height: 20px;
    background: #df0000;
}
span.table-ex:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 2px;
    height: 20px;
    background: #df0000;
}
.tabber-table-block-table table {
    width: 100%;
    background: inherit;
}
.tabber-table-block thead th {
    background-color: inherit;
    color: inherit;
    border: none;
}
.tabber-table-block table {
    border: none;
    margin:0;
}
.tabber-table-block td {
    border: 1px solid #eee;
}
.tabber-table-block td, .tabber-table-block th {
    color: inherit;
}
.tabber-table-block {
  display: none;
  border-radius: 25px 0 25px 25px;
  overflow: hidden;
}
.tabber-table-block.active {
  display: block;
  box-shadow: 0px 5px 10px 1px rgb(0 0 0 / 30%);
}

@media only screen and (max-width: 900px) {
  .tabber-table-block>div {
      display: flex;
      flex-direction: column;
      flex-wrap: nowrap;
  }
  .tabber-table-block>div>div {
      width: 100%;
  }
  .tabber-table-block {
        border-radius: 0 0 25px 25px;
        box-shadow: none !important;!i;!;
   }
  .tabber-table-tab {
      padding: 15px 10px;
      width: 100%;
      text-align: center;
  }
}