.tabs {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
  }

  .tabs>input[type="radio"] {
    display: none;
  }

  .tabs>input[type="radio"]:checked+label {
    font-weight: bold;
    cursor: default;
    border-bottom: 1px solid rgba(27,28,33);
  }

  .tabs>div {
    display: none;
    padding-top: 10px;
  }

  #tab-btn-1:checked~#content-1,
  #tab-btn-2:checked~#content-2,
  #tab-btn-3:checked~#content-3 {
    display: block;
  }

  .tabs>label {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    padding: 2px 0;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.15s ease-in-out;
    margin-left: 6px;
    cursor: pointer;
  }

  .tabs>label:first-of-type {
    margin-left: 0;
  }

@media (max-width: 1140px) {
.tabs {
  width: 100%;
}
}
@media (max-width: 400px) {
.tabs>label {
  margin-left: 0px;
}
}