/* tabella */

/* DIRTY Responsive pricing table CSS */

/* 
- make mobile switch sticky
*/
.resp_table * {
    box-sizing:border-box;
    padding:0;
    margin:0;
    outline: 0;
  }

  .resp_table article {
    width:100%;
    max-width:1000px;
    margin:0 auto;
    height:1000px;
    position:relative;
  }
  .resp_table ul {
    display:flex;
    top:0px;
    z-index:10;
    padding-bottom:14px;
  }
  .resp_table li {
    list-style:none;
    flex:1;
  }
  .resp_table li:last-child {
    border-right:1px solid #DDD;
  }
  .resp_table button {
    width:100%;
    border: 0px solid #DDD;
    border-right:0;
    border-top:0;
    padding: 10px;
    background:#FFF;
    font-size:14px;
    font-weight:bold;
    height:200px;
    color:#999;
    outline: 0;
  }
  .resp_table li.active button {
    background:#F5F5F5;
    color:#000;
  }
  .resp_table table { border-collapse:collapse; table-layout:fixed; width:100%; }
  .resp_table th {  display:none; } 
  .resp_table td, th {
    height:53px;
  }
  /*
  .resp_table td,th { border:1px solid #DDD; padding:10px; empty-cells:show; }
  .resp_table td,th {
    text-align:left;
  }
  */
  .resp_table td+td, th+th {
   /* text-align:center;*/
    display:none;
  }
  .resp_table td.default {
    display:table-cell;
  }
  .resp_table .bg-purple {
    border-top:3px solid #A32362;
  }
  .resp_table .bg-blue {
    border-top:3px solid #0097CF;
  }
  /*
  .resp_table .sep {
    background:#F5F5F5;
    font-weight:bold;
  }
  */
  .resp_table .txt-l { font-size:28px; font-weight:bold; }
  .resp_table .txt-top { position:relative; top:-9px; left:-2px; }
  .resp_table .tick { font-size:18px; color:#2CA01C; }
  .resp_table .hide_col {
    border:0;
    background:none;
  }
  
  @media (min-width: 900px) {
    .resp_table ul {
      display:none;
    }
    .resp_table td,th {
      display:table-cell !important;
    }
    .resp_table td,th {
      width: 280px;
    
    }
    
    .resp_table td+td, th+th {
      width: auto;
    }
  }