/* Style the tab */
.tab {
    overflow: hidden;
    border: none;
    
  }
  
  /* Style the buttons that are used to open the tab content */
  .tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 6px 8px;
    transition: 0.3s;
  }
  
  .tab span {
    background-color: inherit;
    float: right;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 6px 8px;
    font-size: 14px;
    color: green ;
  }
  
  .tablinks {
    text-decoration: none;
    height: 50px;

  }

  

  .tab a {
    padding: 14px 16px;
    text-decoration: none;
  }

  /* Change background color of buttons on hover */
  .tab button:hover {
    background-color: #ffc288;
  }
  
  /* Create an active/current tablink class */
  .tab button.active {
    background-color: #ff6701;
  }
  
  /* Style the tab content */
  .tabcontent {
    
    padding: 6px 6px;
    border: none;
    border-top: none;
    margin-left: 0px; /*150px;*/
    overflow: hidden;
  }
  
  