
  
  code {
    display: inline-block;
    margin: 0 10px;
  }
  
  .tab-controls {
    border-bottom: 3px solid #CBBD9A;
    display: none;
    margin: 0;
    padding: 0;
  }
  @media screen and (min-width: 991px) {
    .tab-controls {
      display: block;
    }
  }
  .tab-controls .tab-item {
    display: inline-block;
    width: auto;
  }
  
  .tab-section {
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
  }
  @media screen and (min-width: 991px) {
    .tab-section .tab-item .tab-title {
      display: none;
    }
  }
  
  .tab-item {
    display: block;
    width: 100%;
  }
  .tab-item .tab-title {
    background: #dedede;
    border: none;
    cursor: pointer;
    display: block;
    font-weight: 700;
    padding: 1rem 2rem;
    transition: 0.4s ease;
    width: 100%;
  }
  .tab-item .tab-title:hover, .tab-item .tab-title.is-active {
    background: #5586d4;
    color: #fff;
  }
  @media screen and (min-width: 991px) {
    .tab-item .tab-title {
      width: auto;
    }
  }
  .tab-item .tab-content {
    box-sizing: border-box;
    color: black;
    display: none;
    height: 0;
    left: 0;
    opacity: 0;
    padding: 0 2rem;
    position: relative;
    transition: 0.4s ease;
    visibility: hidden;
    width: 100%;
  }
  .tab-item .tab-content.is-active {
    color: black;
    display: block;
    height: auto;
    opacity: 1;
    padding: 1rem 2rem;
    visibility: visible;
  }

  #tsum-tabs h1 {
    padding: 50px 0;
    font-weight: 400;
    text-align: center;
  }
  
  #tsum-tabs p {
    margin: 0 0 20px;
    line-height: 1.5;
  }
  
  #tsum-tabs main {
    min-width: 320px;
    max-width: 800px;
    padding: 0px;
    margin: 0 auto;
    /* background: #fff; */
  }
  
  #tsum-tabs section {
    display: none;
    padding: 20px 0 0;
    border-top: 1px solid #ddd;
  }
  
  #tsum-tabs input {
    display: none;
  }
  
  #tsum-tabs label {
    display: inline-block;
    margin: 0 0 -1px;
    padding: 15px 10px;
    font-weight: 600;
    text-align: center;
    color: #bbb;
    border: 1px solid transparent;
  }
  
  #tsum-tabs label:before {
    font-family: fontawesome;
    font-weight: normal;
    margin-right: 10px;
  }
/*   
  #tsum-tabs label[for*='1']:before { content: '\f1cb'; }
  #tsum-tabs label[for*='2']:before { content: '\f17d'; }
  #tsum-tabs label[for*='3']:before { content: '\f16b'; }
  #tsum-tabs label[for*='4']:before { content: '\f1a9'; } */
  
  #tsum-tabs label:hover {
    color: #888;
    cursor: pointer;
  }
  
  #tsum-tabs input:checked + label {
    color: #555;
    border: 1px solid #ddd;
    border-top: 2px solid orange;
    border-bottom: 1px solid #fff;
  }
  
  #tsum-tabs #tab4:checked ~ #content4,
  #tsum-tabs #tab5:checked ~ #content5,
  #tsum-tabs #tab6:checked ~ #content6,
  #tsum-tabs #tab7:checked ~ #content7 {
    display: block;
  }
  
  @media screen and (max-width: 650px) {
    #tsum-tabs label {
      font-size: 10px;
    }
    #tsum-tabs label:before {
      margin: 0;
      font-size: 18px;
    }
  }
  
  @media screen and (max-width: 400px) {
    #tsum-tabs label {
      padding: 15px;
    }
  }
  