/*---------------------------------------------------------------------------
  Author: FLIPWORKS
  Version: 1
----------------------------------------------------------------------------*/


/*---------------------------------------------------------------------------
[Table Of Contents]

1. Layout

----------------------------------------------------------------------------*/


/*****************************************************
*****************  1. Layout *******************
*****************************************************/

table {
  border-collapse: collapse;
  width: 100%;
}
table th,
table td {
  padding: 10px;
  border: 1px solid #f6f6f6;
}
table th {
  background-color: #eee;
  text-align: center;
  width: 30%;
}

@media screen and (max-width: 400px) {
  table td {
    display: block;
    text-align: center;
  }
  table th {
    display: block;
    border-top: none;
    border-bottom: none;
    width: 100%;
  }
}