.display_box_tab_heads{
    font-family: verdana;
    font-size: 16px;
    font-weight: normal;
    color: #000;
    display: flex;
    align-items: center;
    width: 98.2%;
  }
  
  .tab_head_image{
    height: 25px;
    width: 25px;
    padding-right: 1%;
  }
  
  .tab_head_more_information, .calculator_tab_head{
    width: 50%;
    background-color: #fff;
    border: 2px solid #ff3131;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
  }
  
  .calculator_tab_head:hover, .tab_head_more_information:hover{
    background-color: #fff;
    color: #000;
    border-color: #ff3131;
  }

  @media (max-width: 991px) {
    .tab_head_more_information, .calculator_tab_head{
      width: 50%;
      background-color: #dcdcdc;
      border: 2px solid #000;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 16px;
      cursor: pointer;
    }

  }