* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	transition: 100ms;
}
a {
	text-decoration: none;
	color: unset;
}
button {
	outline: none;
	border: none;
	background-color: transparent;
	cursor: pointer;
}

.mmuy_container {
	width: 100%;
	height: auto;
}
.tab_header_container,
.tab_content_container {
	width: 100%;
	height: auto;
	padding: 10px 20px;
	display: flex;
	justify-content: center;
}
.tab_header_container {
	background-color: #ebebeb;
}
.tab_header_container .content,
.tab_content_container .content {
	width: 1280px;
	height: auto;
	padding: 15px 0px;
}
.tab_header_container .content .tabs {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.tab_header_container .content .tabs .tab_button {
	width: 100%;
	border: 1px solid #3e3e3e;
	border-radius: 4px;
	color: #3e3e3e;
	font-size: 16px;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
	padding: 8px 0px;
}
.tab_header_container .content .tabs .tab_button:hover,
.tab_header_container .content .tabs .tab_button.active {
	background-color: #42079e;
	color: white;
	border: 1px solid #42079e;
	box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.384);
}
.tab_content_container .content .tab_content {
	width: 100%;
	height: auto;
	display: none;
}
.tab_content_container .content .tab_content .card_container {
	width: 100%;
	height: auto;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}
.tab_content_container .content .tab_content.active {
	display: block;
}
.tab_content_container .content .tab_content .card {
	width: calc(25% - 17px);
	padding: 20px 30px;
	border: 1px solid #f2e6ff;
	border-radius: 4px;
	position: relative;
	padding-bottom: 60px;
}
.tab_content_container .content .tab_content .card:hover {
	box-shadow: 0px 0px 5px #42079e;
}
.tab_content_container .content .tab_content .card .card_image {
	width: 100%;
	aspect-ratio: 235/130;
	object-fit: cover;
	border-radius: 4px;
	margin-bottom: 5px;
}
.tab_content_container .content .tab_content .card .card_text {
	text-align: center;
	font-size: 16px;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
	margin-bottom: 10px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
}
.tab_content_container .content .tab_content .card .card_button {
	width: calc(100% - 60px);
	background-color: #42079e;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 8px;
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
}
.tab_content_container .content .tab_content .card .card_button img {
	width: 22px;
	height: auto;
}
.tab_content_container .content .tab_content .card .card_button span {
	font-size: 16px;
	color: white;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: normal;
}
.table_container .search_field {
	width: 100%;
	height: 40px;
	position: relative;
	margin-bottom: 30px;
}
.table_container .search_field input {
	width: 100%;
	height: 100%;
	border: 1px solid #848484;
	border-radius: 6px;
	padding-left: 15px;
	color: #848484;
	font-size: 16px;
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-style: normal;
}
::placeholder {
	color: #848484;
	font-size: 16px;
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-style: normal;
}
.table_container .search_field img {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
}
.table_container .table {
	background-color: white;
	border-radius: 4px;
	box-shadow: 0px 0px 5px grey;
}
.table_container .table .table_head {
	padding: 10px 20px;
	border-bottom: 1px solid black;
	font-size: 20px;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #2b2d6b;
}
.table_container .table table {
	width: 100%;
	border-collapse: collapse;
}
.table_container .table table thead th,
.table_container .table table tbody tr td {
	text-align: left;
	padding: 10px 15px;
	border-bottom: 2px solid #989dff;
}
.table_container .table table thead th {
	font-size: 18px;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
	text-align: left;
}
.table_container .table table tbody tr td {
	font-size: 16px;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
	text-align: left;
}

@media only screen and (max-width: 1536px) {
	.tab_header_container .content,
	.tab_content_container .content {
		width: 1080px;
		padding: 15px 0px;
	}
	.tab_header_container .content .tabs {
		gap: 15px;
	}
	.tab_content_container .content .tab_content .card_container {
		gap: 15px;
	}
	.tab_content_container .content .tab_content .card {
		width: calc(25% - 12px);
		padding: 15px 25px;
		padding-bottom: 50px;
	}
	.tab_content_container .content .tab_content .card .card_image {
		margin-bottom: 3px;
	}
	.tab_content_container .content .tab_content .card .card_text {
		font-size: 14px;
		margin-bottom: 7px;
	}
	.tab_content_container .content .tab_content .card .card_button {
		gap: 7px;
		padding: 6px;
		width: calc(100% - 50px);
		bottom: 15px;
	}
	.tab_content_container .content .tab_content .card .card_button img {
		width: 20px;
	}
	.tab_content_container .content .tab_content .card .card_button span {
		font-size: 14px;
	}
	.table_container .search_field {
		margin-bottom: 25px;
	}
	.table_container .search_field input {
		font-size: 14px;
	}
	::placeholder {
		font-size: 16px;
	}
	.table_container .search_field img {
		width: 20px;
	}
	.table_container .table .table_head {
		padding: 10px 15px;
		font-size: 17px;
	}
	.table_container .table table thead th {
		font-size: 16px;
	}
	.table_container .table table tbody tr td {
		font-size: 14px;
	}
}

@media only screen and (max-width: 1280px) {
	.tab_header_container .content,
	.tab_content_container .content {
		width: 980px;
	}
	.tab_header_container .content .tabs .tab_button {
		font-size: 15px;
		padding: 7px 0px;
	}
	.tab_content_container .content .tab_content .card {
		padding: 15px 20px;
		padding-bottom: 45px;
	}
	.tab_content_container .content .tab_content .card .card_text {
		font-size: 13px;
		margin-bottom: 5px;
	}
	.tab_content_container .content .tab_content .card .card_button {
		padding: 5px;
		width: calc(100% - 40px);
	}
	.tab_content_container .content .tab_content .card .card_button img {
		width: 18px;
	}
	.tab_content_container .content .tab_content .card .card_button span {
		font-size: 13px;
	}
	.table_container .search_field {
		margin-bottom: 20px;
	}
	.table_container .search_field input {
		font-size: 13px;
	}
	::placeholder {
		font-size: 13px;
	}
	.table_container .search_field img {
		width: 20px;
	}
	.table_container .table .table_head {
		padding: 7px 10px;
		font-size: 15px;
	}
	.table_container .table table thead th {
		font-size: 14px;
	}
	.table_container .table table tbody tr td {
		font-size: 13px;
	}
	.table_container .table table tbody tr:last-child td {
		border-bottom: 2px solid transparent;
	}
}

@media only screen and (max-width: 1080px) {
	.tab_header_container .content,
	.tab_content_container .content {
		width: 780px;
		padding: 10px 0px;
	}
	.tab_header_container .content .tabs .tab_button {
		font-size: 14px;
		padding: 6px 0px;
	}
	.tab_content_container .content .tab_content .card {
		padding: 10px 15px;
		padding-bottom: 35px;
	}
	.tab_content_container .content .tab_content .card .card_text {
		font-size: 12px;
	}
	.tab_content_container .content .tab_content .card .card_button {
		width: calc(100% - 30px);
		bottom: 10px;
	}
	.tab_content_container .content .tab_content .card .card_button img {
		width: 16px;
	}
	.tab_content_container .content .tab_content .card .card_button span {
		font-size: 12px;
	}
	.table_container .search_field {
		height: 35px;
	}
	::placeholder {
		font-size: 13px;
	}
	.table_container .search_field img {
		width: 18px;
	}
	.table_container .table .table_head {
		padding: 7px 10px;
		font-size: 14px;
	}
	.table_container .table table thead th,
	.table_container .table table tbody tr td {
		padding: 7px 10px;
		border-bottom: 1px solid #989dff;
	}
	.table_container .table table thead th {
		font-size: 13px;
	}
	.table_container .table table tbody tr td {
		font-size: 12px;
	}
	.table_container .table table tbody tr:last-child td {
		border-bottom: 1px solid transparent;
	}
}

@media only screen and (max-width: 880px) {
	.tab_header_container .content,
	.tab_content_container .content {
		width: 667px;
	}
}

@media only screen and (max-width: 667px) {
	.tab_header_container,
	.tab_content_container {
		padding: 10px 15px;
	}
	.tab_header_container .content,
	.tab_content_container .content {
		width: 100%;
		padding: 10px 0px;
	}
	.tab_header_container .content .tabs {
		gap: 10px;
	}
	.tab_header_container .content .tabs .tab_button {
		font-size: 13px;
		padding: 5px 0px;
	}
	.tab_content_container .content .tab_content .card_container {
		gap: 10px;
	}
	.tab_content_container .content .tab_content .card {
		width: calc(33% - 6px);
		padding: 15px;
		padding-bottom: 40px;
	}
	.tab_content_container .content .tab_content .card .card_text {
		font-size: 11px;
	}
	.tab_content_container .content .tab_content .card .card_button {
		gap: 5px;
		bottom: 15px;
		width: calc(100% - 30px);
	}
	.tab_content_container .content .tab_content .card .card_button img {
		width: 14px;
	}
	.tab_content_container .content .tab_content .card .card_button span {
		font-size: 11px;
	}
	.table_container .table table thead th {
		font-size: 12px;
	}
	.table_container .table table tbody tr td {
		font-size: 11px;
	}
	.table_container .table table tbody tr:last-child td {
		border-bottom: 1px solid transparent;
	}
}

@media only screen and (max-width: 450px) {
	.tab_header_container,
	.tab_content_container {
		padding: 10px 15px;
	}
	.tab_header_container .content,
	.tab_content_container .content {
		padding: 7px 0px;
	}
	.tab_header_container .content .tabs {
		gap: 5px;
	}
	.tab_header_container .content .tabs .tab_button {
		font-size: 11px;
		padding: 5px 0px;
	}
	.tab_content_container .content .tab_content .card_container {
		gap: 10px;
	}
	.tab_content_container .content .tab_content .card {
		width: calc(50% - 6px);
		padding: 10px;
		padding-bottom: 35px;
	}
	.tab_content_container .content .tab_content .card .card_text {
		font-size: 10px;
	}
	.tab_content_container .content .tab_content .card .card_button {
		width: calc(100% - 20px);
		gap: 5px;
		bottom: 10px;
	}
	.tab_content_container .content .tab_content .card .card_button img {
		width: 12px;
	}
	.tab_content_container .content .tab_content .card .card_button span {
		font-size: 10px;
	}
	.table_container .table table thead th {
		font-size: 12px;
	}
	.table_container .table table tbody tr td {
		font-size: 11px;
	}
	.table_container .table table tbody tr:last-child td {
		border-bottom: 1px solid transparent;
	}
}
