.cte-main-table {
  border: 1px solid rgb(229 231 235);
  border-radius: 0.75rem;
  background: #fff;
  overflow: hidden;
}
.cte-main-table table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  text-indent: 0;
  border: none;
  border-radius: 0.75rem;
  margin-bottom: 0;
}
.cte-main-table tbody tr:first-child {
  background: linear-gradient(to right, var(--gradient-color-from), var(--gradient-color-to));

}
.cte-main-table tbody tr th {
  padding: 25px 20px;
}
.cte-main-table tbody tr th {

  color: #fff;
}
.cte-main-table tbody tr th:nth-child(2) {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
}
.cte-main-table tbody tr:first-child {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}

.cte-main-table tbody tr {
  border-bottom: 1px solid rgb(229 231 235);
}
.cte-main-table tbody tr:last-child {
  border-bottom: 0;
}

.cte-main-table tbody tr.featured {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0) !important;
  border-top: 2px solid var(--gradient-color-from);
}
.cte-main-table tbody tr:nth-child(even) {
  background: #fafbfc;
}
.cte-main-table tbody tr .cell-content {
  font-size: 18px;
  line-height: 28px;
}
.cte-main-table tbody tr.featured .cell-content {
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.cte-main-table tr td:first-child, .cte-main-table tr th:first-child {
  text-align: left;
}
.cte-main-table th, td {
  text-align: center;
  padding: 15px 20px;
}

.cte-main-table th:first-child, td:first-child {
  text-align: center;
}

.cte-main-table td img {
  display: block;
  margin: 0 auto;
}

.cte-main-table th, td{
  border-width: 0 !important;
}
.cte-main-table td:nth-child(even) svg, .cte-main-table td:nth-child(odd) svg {
	color: inherit !important;
	fill: inherit !important;
}
.cte-main-table svg{
  height: auto;
  width: 24px;
}

.fa-check {
  color: green;
}

.fa-remove {
  color: red;
}



/* 
Responsive Styles
*/
@media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {

  /* Force table to not be like tables anymore */
  table, thead, tbody, th, td, tr { 
    display: block; 
  }
  
  /* Hide table headers (but not display: none;, for accessibility) */
  thead tr { 
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  
  tr { border: 1px solid #ccc; }
  
  td { 
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #eee; 
    position: relative;
    border-bottom: 1px solid green; 
  }
  
  td:before { 
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 45%; 
    padding-right: 10px; 
    white-space: nowrap;
  }

}

