/* 
Theme Name: G'day Theme
Theme URI: https://github.com/elementor/hello-theme/
Description: G'day theme is a child theme of Hello Elementor, created by the Excitemedia team
Author: Excitemedia
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: gday-theme
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

.table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.table-wrapper table {
  width: 100%;
  border-collapse: collapse;
}

.table-wrapper thead th {
  border: 0;
  background: #e6e6e6;
  color: #000000;
  text-transform: uppercase;
  font-family: 'Thunder', sans-serif;
  font-size: 2.125rem;
  line-height: 1;
  padding: 21px 14px 15px 14px;
  text-align: center;
}

.table-wrapper tbody td {
  border: 0;
  color: #ffffff;
  text-align: center;
  padding: 13px 15px;
  font-size: 1.3125rem;
  vertical-align: middle;
}
.table-wrapper tbody td:first-child {
	font-weight: 600;
}
.table-wrapper tbody tr:nth-child(odd), .table-wrapper tbody>tr:nth-child(odd)>td {
  background: none;
}
.table-wrapper tr th:first-child, .table-wrapper tr:nth-child(even) td:first-child {
	border-radius: 5px 0 0 5px;
}
.table-wrapper tr th:last-child, .table-wrapper tr:nth-child(even) td:last-child {
	border-radius: 0 5px 5px 0;
}

.table-wrapper tbody tr:nth-child(even) {
  background: #061E33;
}

/* Mobile Responsive */
@media (max-width: 768px) {

  .table-wrapper table {
    min-width: unset;
  }

  .table-wrapper thead {
    display: none;
  }

  .table-wrapper tbody tr {
    display: block;
    margin-bottom: 15px;
  }

 .table-wrapper  tbody td {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    font-size: 18px;
  }

  .table-wrapper tbody td::before {
    content: attr(data-label);
    font-weight: bold;
    text-transform: uppercase;
  }
}