table {
    background-color: transparent;
    width: 100%;
    margin-block-end: 15px;
    font-size: .9em;
    border-spacing: 0;
    border-collapse: collapse;
}

table th {
    font-weight: 700;
}

table td, table th {
    padding: 15px;
    line-height: 1.5;
    vertical-align: top;
    border: 1px solid hsla(0, 0%, 50.2%, .5019607843);
}

/* Additional custom plugin styles */

.container {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
}

.wl-tabs {
    display: flex;
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
    flex-basis: initial;
    flex-shrink: 0;
    justify-content: initial;
    padding-left: 0;
	margin-bottom: 25px;
}
.wl-tabs > li {
    transition-duration: 0.25s;
    display: flex;
    list-style: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    color: #606062;
    border: 1px solid #02010124;
    background: #E8E8E8;
    border-radius: 20px;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    gap: 5px;
    flex-grow: 1;
    padding: 8px 20px;
    text-align: center;
    font-size: 14px;
	font-weight: 500;
}
.wl-tabs > li:before {
    z-index: -1;
    position: absolute;
    content: "";
    width: 100%;
    height: 120%;
    top: 0;
    left: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    transition-duration: 0.25s;
    border-radius: 5px 5px 0 0;
}
.wl-tabs > li:hover:before {
    -webkit-transform: translateY(70%);
    transform: translateY(70%);
}
.wl-tabs > li.active {
    color: #009486;
    border: 1px solid transparent;
    transition: all .3s ease;
}

.wl-tabs > li:hover {
    color: #009486;
    border: 1px solid #009486;
    transition: all .3s ease;
}

.wl-tabs > li.active:before {
    transition-duration: 0.5s;
    background-color: transparent;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}



.wl-tabs__content {
    position: relative;
    width: 100%;
}
.wl-tabs__content > .wl-tab {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    list-style: none;
}
.wl-tabs__content > .wl-tab .content__wrapper {
    text-align: center;
    border-radius: 5px;
    width: 100%;
}

.content__wrapper table tr th {
	border: none;
}

.content__wrapper table tr:first-child th {
	background-color: #009486;
    vertical-align: middle;
    text-align: center;
    font-weight: 700;
    color: #FFF;
    font-family: Montserrat;
    font-size: 14px;
	border-right: 1px solid rgba(255,255,255, 0.5);
}

.content__wrapper table tr td {
	border: none;
}


.content__wrapper table tr:nth-child(even) {
	background-color: #f5f5f5;
}

.content__wrapper table tr:nth-child(odd) {
	background-color: #ededed;
}

.content__wrapper table {
	overflow-y: scroll;
    display: block;
    max-width: 100vw;
}


.content__wrapper table tbody {
	width: 100%;
    display: table;
}

.content__wrapper table tbody tr td:nth-child(3) {
	text-align: left;
}