.custom-methods-table {
	border-radius: 20px;
	overflow: hidden;
	margin-top: 2rem;
	direction: rtl;
	background: #D7E3E5;
	padding: 8px;
}

.custom-methods-table table {
	width: 100%;
	border-collapse: collapse;
	text-align: center;
	overflow-x: auto;
}

/* width */
.custom-methods-table table::-webkit-scrollbar {
	height: 4px !important;
	width: 3px !important;
	bottom: 15px;
}

/* Track */
.custom-methods-table table::-webkit-scrollbar-track {
	background: #eae8e4 !important;
	height: 4px !important;
}

/* Handle */
.custom-methods-table table::-webkit-scrollbar-thumb {
	background: rgb(123, 123, 123) !important;
	height: 4px !important;
}

/* Handle on hover */
.custom-methods-table table::-webkit-scrollbar-thumb:hover {
	background: var(--color1);
}
.custom-methods-table thead {
	position: relative;
	z-index: 0;
	color: white;
}
.custom-methods-table thead::before {
	content: '';
	background: var(--color1);
	width: 100%;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	border-radius: 12px;
	z-index: -1;
}
.custom-methods-table th {
	font-family: var(--bold_font);
	padding: 18px 20px;
	white-space: nowrap;
}
.custom-methods-table td {
	padding: 10px 20px;
	border-left: 1px solid #fff;
	white-space: nowrap;
}
.custom-methods-table tbody tr:first-child td {
	padding-top: 25px;
}
.custom-methods-table tbody tr td:last-child {
	border-left: none;
}

.custom-methods-table tbody {
	position: relative;
	z-index: 0;
}
.custom-methods-table tbody::before {
	content: '';
	background: #D7E3E5;
	width: 100%;
	height: 15px;
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
}
/*
.custom-methods-table tbody tr:nth-child(even) {
	background-color: #eaf3f4;
}*/

@media screen and (min-width: 768px) {
	.custom-methods-table tr td:last-child {
		white-space: unset;
		max-width: 260px;
		line-height: 1.4;
	}
}
@media screen and (max-width: 767.99px) {
	.custom-methods-table table {
		overflow-x: auto;
		display: block;
	}
}