
    <style>
		.pricing-table {
			background: #fff;
			border-radius: 8px;
			box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1);
			color: #5A5A5F;
            margin: 30px 0;
           
		}
		.pricing-table_table {
            width: 100%;
           border-radius: 8px !important;
             border-collapse: collapse !important;
             border: none !important;
		}
		.pricing-table_table th,
		.pricing-table_table td {
            padding: 25px 30px;
            border: none !important
		}
		.pricing-table_table thead th {
			background: #5A5A5F;
			color: #fff;
			font-size: 14px;
			font-weight: 500;
		}
		.pricing-table_table td {
			background: #F8F8F8;
		}
		.pricing-table_table tbody td {
			color: #4195b9;
		}
		.pricing-table_table tbody th {
			font-weight: normal;
		}
		.pricing-table_table tbody tr:nth-child(even) td {
			background: #fff;
		}
		.pricing-table_table tbody tr:nth-child(odd) th {
			background: #F8F8F8;
		}
		.pricing-table_title {
			color: #4195B9;
			text-align: center;
			font-size: 18px;
			font-weight: 500;
			padding: 25px 30px;
		}
		.pricing-table_info {
			font-size: 14px;
			color: #5A5A5F;
        }
        
       
       
.pricing-table_table th:first-child {
  border-radius: 8px 0 0 0 !important;
}
.pricing-table_table th:last-child {
  border-radius: 0 8px 0 0 !important;
}
.pricing-table_table tr:last-child td:first-child {
  border-radius: 0 0 0 8px !important;
}
.pricing-table_table tr:last-child td:last-child {
 border-radius: 0 0 8px 0 !important;
}