/* Start custom CSS for text-editor, class: .elementor-element-6e8cd5a1 */<style>
.table-container {
  width: 100%;
  overflow-x: auto;
}

.ev-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 16px;
}

.ev-table thead tr {
  color: inherit; /* adapts to theme text color */
  text-align: left;
  border-bottom: 2px solid currentColor;
  background: transparent;
}

.ev-table th, 
.ev-table td {
  padding: 12px 15px;
  border: 1px solid currentColor; /* border uses text color */
}

.ev-table tbody tr:nth-child(even) {
  background: transparent; /* no forced background */
}

@media screen and (max-width: 768px) {
  .ev-table thead {
    display: none;
  }
  .ev-table, 
  .ev-table tbody, 
  .ev-table tr, 
  .ev-table td {
    display: block;
    width: 100%;
  }
  .ev-table tr {
    margin-bottom: 15px;
    border: 1px solid currentColor;
    border-radius: 8px;
    background: transparent; /* no forced white */
    padding: 10px;
  }
  .ev-table td {
    text-align: right;
    position: relative;
    border: none;
    border-bottom: 1px solid currentColor;
  }
  .ev-table td:last-child {
    border-bottom: none;
  }
  .ev-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    text-align: left;
    font-weight: bold;
    color: inherit; /* adapts to theme */
    white-space: nowrap;
  }
}
</style>/* End custom CSS */