.tabber-tabs>div {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    padding: 15px;
}
.tabber-tab {
    padding: 15px 20px;
    font-size: 16px;
    cursor: pointer;
}
.tabber-block.hidden {
    display: none;
}
.tabber-block>div {
    display: flex;
    flex-direction: row;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.tabber-block>div>div {
    width: 50%;
}
.tabber-block-image img {
    width: 100%;
    border-radius: 25px;
}
.tabber-block-table {
    width: 65%;
}
.tabber-block-content h3 {
    line-height: 1.2;
    font-size: 20px;
    font-weight: bold;
    padding: 15px;
    margin: 0;
}
.tabber-block-content>div>div {
    padding: 15px 15px 25px;
}
.tabber-block-table th {
    font-size: 20px;
    padding: 15px;
}
.tabber-block-table th:nth-child(1), .tabber-block-table td:nth-child(1) {
    width: 66%;
}
.tabber-block-table th:nth-child(2), .tabber-block-table td:nth-child(2), .tabber-block-table th:nth-child(3), .tabber-block-table td:nth-child(3) {
    width: 17%;
}
.tabber-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-block-table table {
    width: 100%;
    background: inherit;
}
.tabber-block thead th {
    background-color: inherit;
    color: inherit;
    border: none;
}
.tabber-block table {
    border: none;
    margin:0;
}
.tabber-block td {
    border: 1px solid #eee;
}
.tabber-block td, .tabber-block th {
    color: inherit;
}
.tabber-block {
  display: none;
  overflow: hidden;
}
.tabber-block.active {
  display: block;
}
.tabber-tab:before {
    content: '';
    width: 60%;
    position: absolute;
    height: 5px;
    background: #b4cdcd;
    bottom: 0;
    margin-left: 20%;
    left: 0;
    opacity: 0;
    transition: 0.2s;
}
.tabber-tab {
    position: relative;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
}
.tabber-tab.active:before {
    opacity: 1;
}
@media only screen and (max-width: 900px) {
  .tabber-block>div {
      display: flex;
      flex-direction: column-reverse;
      flex-wrap: nowrap;
  }
  .tabber-block>div>div {
      width: 100%;
  }
  .tabber-tabs {
      display: none;
  }
  .tabber-block {
      display: block !important;!i;!;
  }
}