.new-table {
    display: flex;
    flex-direction: column;
}
.new-table-row {
    position: relative;
    background-color: #C0EBDB;
    border-radius: 10px;
    box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.06);
    margin-bottom: 10px;
}
.new-table-row-overflow-hidden {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    padding: 30px 20px 10px 20px;
}
.new-table-row-toggle {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background-color: #259454;
    cursor: pointer;
    transition: all .2s ease;
}
.new-table-row-toggle:hover {
    background-color: #1d7c45;
}
.new-table-row-toggle-icon {
    position: relative;
    top: 16px;
    left: 16px;
    width: 16px;
    height: 16px;
    display: block;
}
.new-table-row-toggle-minus {
    display: none;
}
.new-table-row-toggle.toggled .new-table-row-toggle-minus {
    display: block;
}
.new-table-row-toggle.toggled .new-table-row-toggle-plus {
    display: none;
}
.new-table-left {
    min-width: 85px;
    margin-right: 20px;
}
.new-table-right {
    display: flex;
    width: 100%;
}
.new-table-row-inner {
    display: flex;
}
.new-table-headline {
    font-size: 16px;
    font-weight: bold;
    padding: 0;
    margin: 0 0 8px 0;
}
.new-table-headline a,
.new-table-headline a:hover {
    color: inherit;
    text-decoration: none;
}
.new-table-intro {
    width: 100%;
}
.new-table-intro-text {
    font-size: 14px;
    padding: 0 50px 0 0;
    margin: 0;
}
.new-table-logo {
    position: relative;
    overflow: hidden;
    border-radius: 100%;
    background-color: #259454;
    width: 85px;
    height: 85px;
}
.new-table-logo a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.new-table-logo img {
    width: 100%;
}
.new-table-rating {
    display: flex;
    align-content: center;
    margin-top: 10px;
    width: 100%;
}
.new-table-rating-star {
    width: 13px;
    height: 13px;
    margin: 0 2px;
}
.new-table-rating-star:first-child {
    margin-left: 0;
}
.new-table-rating-star:last-child {
    margin-right: 0;
}
.new-table .table-item-compliance {
    padding: 10px 0 0 0;
    max-width: calc(100% - 80px);
    margin: 0 auto;
}
.new-table-item-link {
    color: inherit;
    margin-top: 8px;
    font-size: 12px;
    text-decoration: underline;
}
.new-table-item-link:hover {
    color: inherit;
}
.new-table-play-button {
    align-self: center;
    min-width: 142px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    background-color: #259454;
    box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.06);
    border-radius: 3px;
    transition: all .2s ease;
}
.new-table-play-button:hover {
    color: #fff;
    text-decoration: none;
    background-color: #1d7c45;
}
.new-table-play-button:hover .new-table-button-icon {
    transform: translateX(2px);
}
.new-table-button-icon {
    transition: all .2s ease;
    margin-left: 7px;
    width: 18px;
}
.new-table-row-pros-cons {
    display: none;
}
.new-table-row-pros-cons-row {
    padding-left: 102px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.new-table-row-pros-cons-row a, .new-table-row-pros-cons-row a:hover {
    color: inherit;
    text-decoration: underline;
}
.new-table-row-pros-cons-icon {
    width: 23px;
    margin-right: 10px;
}
.new-table>label {
    align-items: center;
}
.new-table>label select {
	display: none;
}

.new-table>label .new-table-filter-button {
	background: transparent;
	border: 0;
	font-weight: 400;
	display: inline-block;
    margin: 0 5px;
    padding: 5px;
	position: relative;
}

.new-table>label {
	border-top: 1px solid #ddd;
	padding: 10px 0;
}

.new-table>label .new-table-filter-button:not(:last-child):after {
	content: '|';
	position: absolute;
	right: -7px;
	color: #ddd;
}

.new-table>label .new-table-filter-button:focus {
	outline: none;
}

.new-table>label .new-table-filter-button.active, .new-table>label .new-table-filter-button:hover {
	background: #ddd;
}
@media (max-width: 768px) {
    .new-table-intro-text {
        padding: 0;
        font-size: 15px;
    }
    .new-table-item-link {
        font-size: 13px;
    }
.new-table>label select {
		display: inline-block;
	}
	.new-table>label .new-table-filter-button {
		display: none;
	}
	.new-table>label select {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		-webkit-appearance: none;
		appearance: none;
		border: 0;
		background: transparent;
		overflow: hidden;
		font-size: 16px;
		opacity: 0;
		cursor: pointer;
	}
    .new-table>label {
        position: relative;
        width: fit-content;
        cursor: pointer;
        border: 0;
        margin-left: auto;
    }
    .new-table>label:before {
        content: '';
        display: inline-block;
        width: 0; 
        height: 0; 
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid black;
        position: relative;
        margin-left: 4px;
        top: 1px;
    }
    .new-table .table-filter-controls {
        display: flex;
        flex-direction: row-reverse;
    }
    .new-table .table-filter-controls a {
        position: relative;
        z-index: 3;
        margin-right: 10px;
    }
    .new-table .table-filter-controls > span > span {
        display: none;
    }
    .new-table-right {
        flex-direction: column;
    }
    .new-table-play-button {
        margin-top: 10px;
        align-self: flex-start;
    }
    .new-table-row-pros-cons-row {
        font-size: 15px;
        margin-top: 15px;
        padding-left: 0;
    }
}

.new-table .ribbon {
    position: absolute;
    left: -5px; top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px; 
    height: 75px;
    text-align: right;
  }
  .new-table .ribbon span {
    font-size: 9px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    width: 100px;
    display: block;
    background: #444
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
    position: absolute;
    top: 19px; left: -21px;
  }
  .new-table .ribbon span::before {
    content: "";
    position: absolute; left: 0px; top: 100%;
    z-index: -1;
    border-left: 3px solid #444;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #444;
  }
  .new-table .ribbon span::after {
    content: "";
    position: absolute; right: 0px; top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid #444;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #444;
  }

  .new-table .ribbon.green span {
    background: #3ACC38;
  }
  .new-table .ribbon.green span::before {
    border-left: 3px solid #3ACC38;
    border-top: 3px solid #3ACC38;
  }
  .new-table .ribbon.green span::after {
    border-right: 3px solid #3ACC38;
    border-top: 3px solid #3ACC38;
  }

  .new-table .ribbon.red span {
    background: #f03434;
  }
  .new-table .ribbon.red span::before {
    border-left: 3px solid #f03434;
    border-top: 3px solid #f03434;
  }
  .new-table .ribbon.red span::after {
    border-right: 3px solid #f03434;
    border-top: 3px solid #f03434;
  }

  .new-table .ribbon.blue span {
    background: #3498db;
  }
  .new-table .ribbon.blue span::before {
    border-left: 3px solid #3498db;
    border-top: 3px solid #3498db;
  }
  .new-table .ribbon.blue span::after {
    border-right: 3px solid #3498db;
    border-top: 3px solid #3498db;
  }
