.tabs_wrapper{
    /* display:flex; */
    flex-direction: column;
    /* align-items: center; */
  }
  .tab{
    cursor: pointer;
    padding:10px 20px;
    margin:0px 2px;
    /* background:#000; */
    display:inline-block;
    color:#fff;
    border-radius:3px 3px 0px 0px;
    /* box-shadow: 0 0.5rem 0.8rem #00000080; */
  }
  .tab_panels_wh{
    /* box-shadow: 0 2rem 2rem #00000080; */
    height:100%;
    width:100%;
    border-radius:3px;
    overflow:hidden;
    padding:20px;  
  }
  .panel{
    display:none;
    animation: fadein .8s;
  }
  @keyframes fadein {
      from {
          opacity:0;
      }
      to {
          opacity:1;
      }
  }
  .panel-title{
    font-size:1.5em;
    font-weight:bold
  }
  .radio{
    display:none;
  }
  #one:checked ~ .tab_panels_wh #one-panel,
  #two:checked ~ .tab_panels_wh #two-panel,
  #three:checked ~ .tab_panels_wh #three-panel,
  #four:checked ~ .tab_panels_wh #four-panel,
  #five:checked ~ .tab_panels_wh #five-panel{
    display:block
  }
  
  #one:checked ~ .tab_labels_wh #one-tab,
  #two:checked ~ .tab_labels_wh #two-tab,
  #three:checked ~ .tab_labels_wh #three-tab,
  #four:checked ~ .tab_labels_wh #four-tab,
  #five:checked ~ .tab_labels_wh #five-tab{
    /* background:#fffffff6; */

    /* color:#000; */
    border-bottom: 3px solid #a8e863;
  }

  .tab_labels_right_wh {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid rgba(162, 162, 162, 0.8);
    /* float: right; */
  }