body {
	font-family: Arial, Helvetica, sans-serif;
}

/* color */
.premium .red
{
	color:#ff3e3e;
}

.premium .green
{
	color:#0aba74;
}

/* font weight */
.premium .font_weight_bold
{
	font-weight : bold;
}

.premium .font_weight_normal
{
	font-weight: normal;
}

.premium .font_wight_ligther
{
	font-weight: lighter;
}

.premium .font_weight_bolder
{
	font-weight: bolder;
}

/*font style*/
.premium .normal
{
	font-style : normal;
}

.premium .italic
{
	font-style : italic;
}

.premium .oblique
{
	font-style : oblique;
}

/*text decoration*/
.premium .underline
{
	text-decoration: underline;
}

.premium .stikethrough
{
	text-decoration: line-through;
}

.premium .overline
{
	text-decoration: overline;
}

.premium .uderline_overline
{
	text-decoration: uderline overline;
}

/* border */
.premium .border_dotted
{
	border-style: dotted;
}

.premium .border_solid
{
	border-style: solid;
}

.premium .border_width_thin
{
	border-width: thin;
}

/* text-align */
.premium .text_center
{
	text-align: center;
}

.premium .text_left
{
	text-align: left;
}

.premium .text_right
{
	text-align: right;
}

/*hypen*/
.premium .hypen_none
{
	-webkit-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}

.premium .hypen_manual
{
	-webkit-hyphens: manual;
	-ms-hyphens: manual;
	hyphens: manual;
}

.premium .hypen_auto
{
	-webkit-hyphens: manual;
	-ms-hyphens: manual;
	hyphens: manual;
}

/* display */

/* <display-outside> values */
.premium .display_block
{
	display: block;
}

.premium .display_inline
{
	display: inline;
}

.premium .dislay_run_in
{
	display: run-in;
}

/* <display-inside> values */
.premium .display_flow
{
	display: flow;
}

.premium .display_flow_root
{
	display: flow-root;
}

.premium .display_table
{
	display: table;
}

.premium .display_flex
{
	display: flex;
}

.premium .display_grid
{
	display: grid;
}

.premium .display_ruby
{
	display: ruby;
}

/* <display-outside> plus <display-inside> values */
.premium .display_block_flow
{
	display: block flow;
}

.premium .display_inline_table
{
	display: inline table;
}

/* <display-listitem> values */
.premium .display_list_item
{
	display: list-item;
}

.premium .display_list_item_block
{
	display: list-item block;
}

.premium .display_list_item_inline
{
	display: list-item inline;
}

.premium .display_list_item_flow
{
	display: list-item flow;
}

/* <display-internal> values */
.premium .display_table_row_group
{
	display: table-row-group;
}

.premium .display_table_header_group
{
	display: table-header-group;
}

.premium .display_table_footer_group
{
	display: table-footer-group;
}

.premium .display_table_row
{
	display: table-row;
}

.premium .display_table_cell
{
	display: table-cell;
}

.premium .display_table_column_group
{
	display: table-column-group;
}

.premium .display_table_column
{
	display: table-column;
}

.premium .display_table_caption
{
	display: table-caption;
}

/* <display-box> values */
.premium .display_contents
{
	display: contents;
}

.premium .display_none
{
	display: none;
}

/* <display-legacy> values */
.premium .display_inline_block
{
	display: inline-block;
}

.premium .display_inline_table
{
	display: inline-table;
}

.premium .display_inline_flex
{
	display: inline-flex;
}

.premium .display_inline_grid
{
	display: inline-grid;
}

/* Global values */
.premium .display_inherit
{
	display: inherit;
}

.premium .display_initial
{
	display: initial;
}

.premium .display_unset
{
	display: unset;
}

/* float */
/* Keyword values */
.premium .float_left
{
	float: left;
}

.premium .float_right
{
	float: right;
}

.premium .float_none
{
	float: none;
}

.premium .float_iniline_start
{
	float: inline-start;
}

.premium .float_inline_end
{
	float: inline-end;
}

/* Global values */
.premium .float_inherit
{
	float: inherit;
}

.premium .float_initial
{
	float: initial;
}

.premium .float_unset
{
	float: unset;
}

/* justify-content */
/* Positional alignment */
.premium .justify_content_center
{
	justify-content: center;     /* Pack items around the center */
}

.premium .justify_content_start
{
	justify-content: start;      /* Pack items from the start */
}

.premium .justify_content_end
{
	justify-content: end;        /* Pack items from the end */
}

.premium .justify_content_flex_start
{
	justify-content: flex-start; /* Pack flex items from the start */
}

.premium .justify_content_flex_end
{
	justify-content: flex-end;   /* Pack flex items from the end */
}

.premium .justify_content_left
{
	justify-content: left;       /* Pack items from the left */
}

.premium .justify_content_right
{
	justify-content: right;      /* Pack items from the right */
}

/* Normal alignment */
.premium .justify_content_normal
{
	justify-content: normal;
}

/* Distributed alignment */
.premium .justify_content_space_between
{
	justify-content: space-between; 
}

.premium .justify_content_space_around
{
	justify-content: space-around; 
}

.premium .justify_content_space_evenly
{
	justify-content: space-evenly;
}

.premium .justify_content_stretch
{
	justify-content: stretch;       
}

/*line break*/
.premium .line_break_auto
{
	line-break: auto;
}

.premium .line_break_loose
{
	line-break: loose;
}

.premium .line_break_normal
{
	line-break: normal;
}

.premium .line_break_strict
{
	line-break: strict;
}

.premium .line_break_anywhere
{
	line-break: anywhere;
}

/*list style*/
.premium .list_style_square
{
	list-style: square;
}

/* position */
.premium .list_style_inside
{
	list-style: inside;
}

.premium .list_style_georgian_inside
{
	list-style: georgian inside;
}

.premium .list_style_none
{
	list-style: none;
}

/*overflow*/
.premium .overflow_visible
{
	overflow: visible;
}

.premium .overflow_hidden
{
	overflow: hidden;
}

.premium .overflow_clip
{
	overflow: clip;
}

.premium .overflow_scroll
{
	overflow: scroll;
}

.premium .overflow_auto
{
	overflow: auto;
}

.premium .overflow_hidder_visible
{
	overflow: hidden visible;
}

/*position*/
.premium .position_static
{
	position: static;
}

.premium .position_relative
{
	position: relative;
}

.premium .position_absolute
{
	position: absolute;
}

.premium .position_sticky
{
	position: sticky;
}

.premium .position_fixed
{
	position: fixed;
}

/*table*/
.premium .table_layout_auto
{
	table-layout: auto;
}

.premium .table_layout_fixed
{
	table-layout: fixed;
}

.premium table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
  background:#F7F8FA;
}

.premium .header {
  border: 1px solid #EFEFED;
  padding: 8px;
}

.premium td {
  border: 1px solid #EFEFED;
  padding: 8px;
}

.premium table tr td { 
	text-align: center; 
	font-weight: 500;
}
.premium table tr td:first-child { 
	text-align: left;
	font-weight: 500;
	min-width:80px;
}

.premium table tr:first-child{ 
	background:#F9F9F9;
	color:#838383;
}

/* .premium td:first-child{
	text-align: left;
}

.premium td:nth-child(n) {
	text-align: center;
} */

.premium tr:nth-child(even) {
  background-color: #F7F7F5;
}