/* http://meyerweb.com/eric/tools/css/reset/ 
  v2.0 | 20110126
  License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  font-family: "Source Sans", Helvetica, sans-serif;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.tabs_component {
  width: 100%;
}

.tabs_component_tabs {
  width: 100%;
  border-radius: 6px;
  list-style: none;
  margin-top: 10px;
  display: flex;
  justify-content: flex-start;
}

.tabs_component_tab {
  color: #999;
  font-size: 14px;
  font-weight: 600;
  margin-right: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 3px 3px 0 0;
  margin-right: 0.5em;
  transform: translateY(3px);
  transition: transform 0.3s ease;
  word-break: keep-all;
}
.tabs_component_tab.active {
  color: #000;
  border-bottom: 1px solid #fff;
  z-index: 2;
  transform: translateY(1px);
}
.tabs_component_tab a {
  align-items: center;
  color: inherit;
  display: flex;
  padding: 0.75em 8px;
  text-decoration: none;
  cursor: pointer;
}

.tabs_component_panels {
  border-top: 1px solid #ddd;
}

.page_frame {
  padding: 1.5rem;
  max-width: 1175px;
  margin: auto;
}
.page_frame .table_label_container {
  display: flex;
  width: 100%;
  background-color: #B02D00;
  color: #fff;
  font-size: 5vmin;
  font-weight: bold;
  text-align: center;
  padding: 0px;
  line-height: 80px;
}
.page_frame .table_label_container .tabel_babel {
  width: 60%;
}
.page_frame .table_label_container .tabel_babel._date {
  width: 40%;
}
.page_frame .table_container {
  margin: auto auto 2rem auto;
}
.page_frame .table_container .table_row {
  display: flex;
  width: 100%;
  font-size: 4vmin;
  font-weight: bold;
  color: #000;
  border-bottom-style: dotted;
  border-bottom-color: #ccc;
  text-align: center;
  padding: 0px;
  vertical-align: middle;
  line-height: 1.75;
}
.page_frame .table_container .table_row:nth-child(odd) {
  background-color: #FFDBCE;
}
.page_frame .table_container .table_row .table_date_row {
  width: 40%;
}
.page_frame .table_container .table_row .table_num_row {
  width: 60%;
}
.page_frame .table_container .table_row .table_num_row .table_num {
  height: 100%;
  line-height: 3.5;
}
.page_frame .get_more {
  font-size: 4vmin;
  font-weight: bold;
  width: 100%;
  margin-bottom: 5px;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 4px;
  border: 0;
  box-shadow: inset 0 0 0 2px #585858;
  color: #585858;
  cursor: pointer;
  display: inline-block;
  font-size: 0.8em;
  font-weight: 900;
  height: 3.5em;
  letter-spacing: 0.35em;
  line-height: 3.45em;
  overflow: hidden;
  padding: 0 1.25em 0 1.6em;
  text-align: center;
  text-decoration: none;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.page_frame .get_more:hover {
  color: #f2849e;
  box-shadow: inset 0 0 0 2px #f2849e;
}