/* Vertical Tabs graficas estilos */

.tab_graphic_content {
    float: left;
    border: 1px solid #ccc;
    background-color: #f5f5f7;
    width: 30%;
    height: 100vh !important;
  }
  
  /* Style the buttons that are used to open the tab content */
  .tab_graphic_content button {
    display: block;
    background-color: inherit;
    color: #24135F;
    padding: 22px 16px;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
    border-bottom: .01rem solid #24135f38;
  }
  
  /* Change background color of buttons on hover */
  .tab_graphic_content button:hover {
    background-color: #e7e7eb;
  }
  
  .tab_graphic_content button:hover .fa-chart-pie{
      padding-right: 20px;
  }
  
  /* Create an active/current "tab button" class */
  .tab_graphic_content button.active {
    background-color: #24135F;
    color: white;
  }
  
  .tab_graphic_content button.active .fa-chevron-right{
      animation: rotate_arrow 1s ease-in-out infinite;
  }
  
  @keyframes rotate_arrow{
      0%{
          transform: translateX(0rem);
      }
      50%{
          transform: translateX(.2rem);
      }
      60%{
          transform: translateX(-.1rem);
      }
      65%{
          transform: translateX(-.12rem);
      }
      .800%{
          transform: translateX(0rem);
      }
  }
  
  /* Style the tab content */
  .tabcontent_graphic_div {
    float: left;
    padding: 0px 12px;
    border: 1px solid #ccc;
    width: 70%;
    background-color: white;
    border-left: none;
    height: 80vh;
  }