/* Table */
.table_price {
  border-collapse: collapse;
  border: 3px solid #30316b;
  margin: auto;
 }
.table_price caption {
  background: #30316b; 
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px  4px 0 rgba(0,0,0,.3);
  color: white;
  font-style: normal;
  font-size: 18px;
  text-align: center;
  margin: 0;
  font-weight: 300;
}
.table_price td, .table_price th {
  padding: 10px;
}
.table_price th {
  text-align: center;
  font-size: 16px;
}
.table_price tr:nth-child(2n) {
  background: #E5E5E5;
}
.table_price td:last-of-type {
  text-align: left;
}
.table_price a {
  display: inline-block;
  padding: 5px 10px;
  background: #30316b;
  box-shadow: 2px 2px 0 0 #a22800;
  position: relative;
}
.table_price a:hover {
  box-shadow: none;
  top: 2px;
  left: 2px;
}