/* Style the tab */
.tab {
    border-right: 2px solid #D2D2D2;
    float: left;
    height: auto;
  }
  
  /* Style the buttons inside the tab */
  .tab button {
    display: block;
    background-color: inherit;
    padding: 22px 16px;
    width: 100%;
    color: #A7A7A7;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
  }
  
  /* Change background color of buttons on hover */
  .tab button:hover {
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    /* border-right: 3px solid #0091B1; */
  }
  
  /* Create an active/current "tab button" class */
  .tab button.active {
    color: #0091B1;
    font-weight: 600;
    border-right: 3px solid #0091B1;
  }
  
  /* Style the tab content */
  .tabcontent {
    float: left;
    /* padding: 0px 50px; */
    /* width: 70%; */
    border-left: none;
    height: 300px;
    margin-left:1.5rem
  }

  .tabcontent img{
    width: 30px;
    margin-right: 10px;
  }
  .down-icon img{
    width: 22px;
  }
  @media (max-width: 768px) {
    .tabcontent{
      margin-left:0!important;
    }
  }