body {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 14px;
	color: #556373;
	font-family: 'Open Sans', sans-serif;
}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	outline: 0;
}

body {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
}

.app_header {
	position: relative;
	z-index: 4;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100vw;
	height: 60px;
	background-color: #ffffff;
	-webkit-box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.2);
}

.app_main {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100vw;
	height: calc(100vh - 60px);
	background-color: #f8fbfe;
	overflow: hidden;
}

.app_main .content_wrapper {
	position: relative;
	z-index: 3;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: calc(100vw - 320px);
	height: 100%;
}

.app_main .content_wrapper .top_bar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	z-index: 2;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-item-align: start;
	align-self: flex-start;
	height: 68px;
	width: 100%;
	background-color: #ffffff;
}

.app_main .content_wrapper .ticket_info {
	position: relative;
	z-index: 1;
	width: 100%;
	background-color: rgba(143, 164, 184, 0.1);
	-webkit-box-shadow: 0px 5px 30px 10px rgba(27, 44, 66, 0.3);
	box-shadow: 0px 5px 30px 10px rgba(27, 44, 66, 0.3);
}

.app_main .content_wrapper .app_content {
	position: relative;
	z-index: 3;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	overflow-x: hidden;
	overflow-y: auto;
	width: calc(100vw - 320px);
	background-color: #ffffff;
	scrollbar-width: none;
	/* Firefox */
	-ms-overflow-style: none;
	/* IE 10+ */
}

.app_main .content_wrapper .app_content::-webkit-scrollbar {
	/* WebKit */
	width: 0px;
}

.app_main .content_wrapper .app_content .ticket_event_list {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	overflow-x: hidden;
	overflow-y: auto;
	scrollbar-width: none;
	/* Firefox */
	-ms-overflow-style: none;
	/* IE 10+ */
}

.app_main .content_wrapper .app_content .ticket_event_list::-webkit-scrollbar {
	/* WebKit */
	width: 0px;
}

.app_main .content_wrapper .app_content .content_1280 {
	width: 1280px;
	margin: 0 auto;
}

.app_main .content_wrapper .app_footer {
	position: relative;
	z-index: 3;
	bottom: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	background-color: #e4dcdc;
	background-color: #ffffff;
}

.app_main .content_wrapper.full_width {
	width: 100vw;
}

.app_main .content_wrapper.full_width .app_content {
	width: 100vw;
}

.app_main .app_sidebar {
	position: relative;
	z-index: 2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 320px;
	height: 100%;
	background-color: #e8ebec;
}

.app_main .app_sidebar .component {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	padding: 20px;
}

.app_main .app_sidebar .sidebar_top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
}

.app_main .app_sidebar .sidebar_top .component {
	padding: 14px 20px 14px 20px;
}

.app_main .app_sidebar .sidebar_bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	width: 100%;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
}

.col_1 {
	max-width: 8.333333%;
}

.col_2 {
	max-width: 16.666667%;
}

.col_3 {
	max-width: 25%;
}

.col_4 {
	max-width: 33.333333%;
}

.col_5 {
	max-width: 41.666667%;
}

.col_6 {
	max-width: 50%;
}

.col_7 {
	max-width: 58.333333%;
}

.col_8 {
	max-width: 66.666667%;
}

.col_9 {
	max-width: 75%;
}

.col_10 {
	max-width: 83.333333%;
}

.col_11 {
	max-width: 91.666667%;
}

.col_12 {
	max-width: 100%;
}

.app_sidebar {
	position: relative;
	z-index: 2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 320px;
	height: 100%;
	background-color: #e8ebec;
}

.app_sidebar .sidebar_bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	width: 100%;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
}

.app_sidebar .checkbox_custom {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.tab_nav {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: auto;
}

.tab_nav .tab_nav_item {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 36px;
	padding: 4px 12px 0 12px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	border-bottom: 4px solid rgba(255, 255, 255, 0);
	cursor: pointer;
}

.tab_nav .tab_nav_item i {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	font-size: 24px;
}

.tab_nav .tab_nav_item:hover,
.tab_nav .tab_nav_item:focus,
.tab_nav .tab_nav_item:active {
	color: #3fbee6;
	border-bottom: 4px solid rgba(63, 190, 230, 0.8);
}

.tab_nav .tab_nav_item.active {
	color: #19a6ea;
	border-bottom: 4px solid #19a6ea;
}

.tab_nav.medium {
	height: 42px;
}

.tab_nav.medium .tab_nav_item,
.tab_nav.medium .action_options {
	height: 42px;
}

.tab_nav.lg {
	height: 66px;
}

.tab_nav.lg .tab_nav_item,
.tab_nav.lg .action_options {
	height: 66px;
}

.tab_nav.border_top {
	border-top: 1px solid rgba(141, 162, 182, 0.15);
}

.tab_nav.border_right {
	border-right: 1px solid rgba(141, 162, 182, 0.15);
}

.tab_nav.border_bottom {
	border-bottom: 1px solid rgba(141, 162, 182, 0.15);
}

.tab_nav.border_left {
	border-left: 1px solid rgba(141, 162, 182, 0.15);
}

.tab_content_wrap {
	position: relative;
	width: 100%;
}

.tab_content_wrap .tab_content {
	position: relative;
	display: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.tab_content_wrap .tab_content.active {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.switch {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	min-width: 36px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	height: 22px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	/* Hide default HTML checkbox */
	/* The slider */
	/* swithc label content */
}

.switch input.switch_mark {
	display: none;
}

.switch .slider {
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 36px;
	height: 22px;
	border-radius: 12px;
	background-color: rgba(48, 57, 68, 0.25);
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.switch .slider::before {
	position: relative;
	z-index: 2;
	display: block;
	content: '';
	height: 18px;
	width: 18px;
	margin: 2px 16px 2px 2px;
	border-radius: 10px;
	background-color: #ffffff;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.switch .checkbox_label {
	position: relative;
	z-index: 2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	height: 22px;
	padding: 0 8px;
	color: #303944;
	font-size: 11px;
	line-height: 11px;
	font-weight: 500;
	text-transform: uppercase;
}

.switch .checkbox_label .off_label {
	position: relative;
	z-index: 3;
	opacity: 1;
	top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: 22px;
}

.switch .checkbox_label .on_label {
	position: relative;
	z-index: 0;
	opacity: 0;
	top: 0;
	display: none;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: 22px;
}

.switch input.switch_mark:checked ~ .checkbox_label .off_label,
.switch input.switch_mark:focus ~ .checkbox_label .off_label {
	display: none;
	z-index: 0;
	opacity: 0;
}

.switch input.switch_mark:checked ~ .checkbox_label .on_label,
.switch input.switch_mark:focus ~ .checkbox_label .on_label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	z-index: 3;
	opacity: 1;
}

.switch input.switch_mark:checked ~ .slider,
.switch input.switch_mark:focus ~ .slider {
	background-color: #27ae60;
}

.switch input.switch_mark:checked ~ .slider::before,
.switch input.switch_mark:focus ~ .slider::before {
	margin: 2px 2px 2px 16px;
}

.switch.on_off .slider {
	background-color: #e35454;
}

.switch.on_off input.switch_mark:checked ~ .slider,
.switch.on_off input.switch_mark:focus ~ .slider {
	background-color: #27ae60;
}

.switch.no_shade .slider::before {
	-webkit-box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
	box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
}

.checkbox_custom,
.radio_custom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	width: 100%;
	height: 32px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	font-size: 14px;
}

.checkbox_custom.fit_content,
.radio_custom.fit_content {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.checkbox_custom.w_auto,
.radio_custom.w_auto {
	width: auto;
}

.checkbox_custom strong,
.radio_custom strong {
	font-weight: 700;
}

.checkbox_custom input[type='checkbox'],
.checkbox_custom input[type='radio'],
.radio_custom input[type='checkbox'],
.radio_custom input[type='radio'] {
	position: absolute;
	z-index: 1;
	right: 0;
	opacity: 0;
	display: inline-block;
	width: 24px;
	height: 24px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: pointer;
}

.checkbox_custom .checked,
.radio_custom .checked {
	display: none;
}

.checkbox_custom .checked,
.checkbox_custom .unchecked,
.radio_custom .checked,
.radio_custom .unchecked {
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: pointer;
}

.checkbox_custom input[type='checkbox']:checked ~ .checked,
.radio_custom input[type='checkbox']:checked ~ .checked {
	display: inline-block;
}

.checkbox_custom input[type='checkbox']:checked ~ .unchecked,
.radio_custom input[type='checkbox']:checked ~ .unchecked {
	display: none;
}

.checkbox_custom input[type='radio']:checked ~ .checked,
.radio_custom input[type='radio']:checked ~ .checked {
	display: inline-block;
}

.checkbox_custom input[type='radio']:checked ~ .unchecked,
.radio_custom input[type='radio']:checked ~ .unchecked {
	display: none;
}

.checkbox_custom label,
.radio_custom label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	cursor: pointer;
}

.checkbox_custom label .strong,
.radio_custom label .strong {
	font-weight: 700;
}

.checkbox_custom label strong,
.radio_custom label strong {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 0 8px;
	font-weight: 700;
}

.checkbox_custom.label_left label,
.radio_custom.label_left label {
	padding-right: 6px;
}

.checkbox_custom.label_left input[type='checkbox'],
.checkbox_custom.label_left input[type='radio'],
.radio_custom.label_left input[type='checkbox'],
.radio_custom.label_left input[type='radio'] {
	left: auto;
	right: 0;
}

.checkbox_custom.label_right label,
.radio_custom.label_right label {
	padding-left: 6px;
}

.checkbox_custom.label_right input[type='checkbox'],
.checkbox_custom.label_right input[type='radio'],
.radio_custom.label_right input[type='checkbox'],
.radio_custom.label_right input[type='radio'] {
	left: 0;
	right: auto;
}

.separator_thin {
	width: 100%;
	height: 0px;
	border-bottom: 1px solid rgba(115, 135, 156, 0.2);
}

.margin_top_10 {
	margin-top: 10px;
}

.margin_top_15 {
	margin-top: 15px;
}

.margin_top_20 {
	margin-top: 20px;
}

.margin_bottom_10 {
	margin-bottom: 10px;
}

.margin_bottom_15 {
	margin-bottom: 15px;
}

.margin_bottom_20 {
	margin-bottom: 20px;
}

.margin_left_10 {
	margin-left: 10px;
}

.margin_left_15 {
	margin-left: 15px;
}

.margin_left_20 {
	margin-left: 20px;
}

.margin_right_10 {
	margin-right: 10px;
}

.margin_right_15 {
	margin-right: 15px;
}

.margin_right_20 {
	margin-right: 20px;
}

.count_row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	height: 32px;
	width: 100%;
}

.count_row .label strong {
	font-weight: 700;
	font-size: 18px;
}

.count_row .label strong.green {
	color: #038c03;
}

.count_row .label strong.red {
	color: #e35454;
}

.count_row .value {
	font-weight: 700;
	font-size: 18px;
}

.count_row .value.light,
.count_row .value .light {
	font-weight: 400;
	font-size: 11px;
}

.column_row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.column_row .label {
	height: 20px;
	font-size: 13px;
	color: #8795a3;
}

.column_row .label strong {
	font-weight: 700;
	font-size: 18px;
}

.column_row .label strong.green {
	color: #038c03;
}

.column_row .label strong.red {
	color: #e35454;
}

.column_row .value {
	height: 20px;
	font-weight: 700;
	font-size: 18px;
	color: #556373;
}

.column_row .value.light,
.column_row .value .light {
	font-weight: 400;
	font-size: 11px;
}

.app_nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%;
	width: 100%;
	padding: 14px 20px;
}

.app_nav .btn {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 26px;
	padding: 0px 12px 0px 12px;
	margin: 0 10px 0 0;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 600;
	color: #fff;
	line-height: 14px;
	text-transform: uppercase;
	border: 2px solid #8fa4b8;
	background-color: #8fa4b8;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.app_nav .btn i {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	font-size: 18px;
	padding: 0;
	margin: 0;
}

.app_nav .btn.dropdown {
	padding: 0px 4px 0px 12px;
}

.app_nav .btn:hover,
.app_nav .btn:focus,
.app_nav .btn:focus-within,
.app_nav .btn:active,
.app_nav .btn.active {
	border: 2px solid #008000;
	background-color: #038c03;
}

.app_nav .head_test_icon {
	margin: 0 0 0 20px;
	cursor: pointer;
}

.round {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	width: 200px;
	height: 60px;
	padding: 0 20px;
}

.header_tools {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 320px;
	height: 60px;
}

.header_tools .last_update {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 24px;
	padding: 0 0 0 20px;
	border-left: 1px solid rgba(115, 135, 156, 0.4);
}

.header_tools .settings_toggle {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin: 0 12px 0 0;
	border-radius: 24px;
	background-color: rgba(115, 135, 156, 0);
	color: rgba(85, 99, 115, 0.6);
	cursor: pointer;
}

.header_tools .settings_toggle:hover,
.header_tools .settings_toggle:focus,
.header_tools .settings_toggle:active {
	color: #556373;
	background-color: rgba(115, 135, 156, 0.15);
}

.header_tools .settings_toggle.active {
	color: green;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

table.border_rl {
	border-left: 1px solid rgba(143, 164, 184, 0.2);
	border-right: 1px solid rgba(143, 164, 184, 0.2);
}

table.border_rlt {
	border-top: 1px solid rgba(143, 164, 184, 0.2);
	border-left: 1px solid rgba(143, 164, 184, 0.2);
	border-right: 1px solid rgba(143, 164, 184, 0.2);
}

table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: middle;
}

thead tr th {
	height: 40px;
	font-size: 13px;
	line-height: 13px;
	font-weight: 700;
	border-bottom-width: 2px;
	border-color: #e2e8ed;
	background-color: #f8fafb;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.events {
	width: 100%;
	font-family: 'Open Sans', sans-serif;
}

.events .labe_icon {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	height: 24px;
}

.events .labe_icon.content_start {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.events .labe_icon.content_center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.events .labe_icon.content_end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.events .competetors_head_label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -40px;
	width: 80px;
	height: 40px;
}

.events tr {
	background-color: rgba(143, 164, 184, 0);
	border-bottom: 1px solid #dde4ea;
}

.events tr:hover {
	background-color: rgba(143, 164, 184, 0.08);
}

.events tr.selected {
	background-color: rgba(143, 164, 184, 0.16);
}

.events tr.selected td {
	color: #222a35;
	border-bottom: 1px solid #c8d1da;
}

.events tr.selected td .svg_icon {
	color: #222a35 !important;
}

.events tr.selected td .add_btn {
	color: #3a4551;
}

.events tr.selected td .add_btn:hover,
.events tr.selected td .add_btn:focus,
.events tr.selected td .add_btn:active {
	color: #35ac00;
	color: #27ae60;
}

.events tr.selected td span.border_right,
.events tr.selected td span.border_left {
	border-color: #8da2b6;
}

.events tr.selected input.td_input {
	color: #222a35;
}

.events tr.sys_form:hover {
	background-color: initial;
}

.events tr.sys_form .sys_form_wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 42px;
}

.events tr.sys_form .system_input {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 42px;
}

.events tr.sys_form .system_input .ticket_sys {
	text-align: right;
	margin-right: 3px;
	margin-left: 10px;
}

.events tr.sys_form .system_input .add_btn {
	width: 24px;
}

.events tr.desabled {
	background-color: rgba(143, 164, 184, 0.16);
}

.events tr.desabled td,
.events tr.desabled th {
	color: #8da2b6;
}

.events tr.desabled td .svg_icon,
.events tr.desabled th .svg_icon {
	color: #8da2b6 !important;
}

.events tr.desabled td .add_btn,
.events tr.desabled th .add_btn {
	color: #8da2b6;
}

.events tr.desabled td .add_btn:hover,
.events tr.desabled td .add_btn:focus,
.events tr.desabled td .add_btn:active,
.events tr.desabled th .add_btn:hover,
.events tr.desabled th .add_btn:focus,
.events tr.desabled th .add_btn:active {
	color: #35ac00;
	color: #27ae60;
}

.events tr.desabled td span.border_right,
.events tr.desabled td span.border_left,
.events tr.desabled th span.border_right,
.events tr.desabled th span.border_left {
	border-color: rgba(101, 118, 136, 0.26);
}

.events tr.desabled input.td_input {
	color: #8da2b6;
}

.events tr.green_row th,
.events tr.green_row td {
	color: #365a01;
	background-color: rgba(127, 189, 34, 0.3);
	border-color: rgba(127, 189, 34, 0.4);
}

.events tr.green_row:hover td,
.events tr.green_row:focus td,
.events tr.green_row:active td {
	background-color: rgba(127, 189, 34, 0.5);
}

.events tr.green_row i,
.events tr.green_row .svg_icon {
	color: #365a01;
}

.events tr.green_row .input_form_group {
	color: #436e01;
}

.events tr.green_row .input_form_group.edit_result {
	border: 2px solid rgba(127, 189, 34, 0);
}

.events tr.green_row .input_form_group.edit_result .separator.vert_line .line {
	background-color: rgba(127, 189, 34, 0.4);
}

.events tr.green_row .input_form_group.edit_result input[type='text'],
.events tr.green_row .input_form_group.edit_result input[type='number'] {
	color: #365a01;
}

.events tr.green_row .input_form_group:hover {
	border: 2px solid rgba(127, 189, 34, 0.5);
}

.events tr.green_row .input_form_group:focus-within {
	border: 2px solid rgba(127, 189, 34, 0.8);
	-webkit-box-shadow: 0 0 20px 2px rgba(127, 189, 34, 0.4);
	box-shadow: 0 0 20px 2px rgba(127, 189, 34, 0.4);
}

.events tr.orange_row th,
.events tr.orange_row td {
	color: #975b00;
	background-color: rgba(253, 152, 0, 0.3);
	border-color: rgba(253, 152, 0, 0.4);
}

.events tr.orange_row:hover td,
.events tr.orange_row:focus td,
.events tr.orange_row:active td {
	background-color: rgba(253, 152, 0, 0.5);
}

.events tr.orange_row i,
.events tr.orange_row .svg_icon {
	color: #975b00;
}

.events tr.orange_row .input_form_group {
	color: #975b00;
}

.events tr.orange_row .input_form_group.edit_result {
	border: 2px solid rgba(253, 152, 0, 0);
}

.events tr.orange_row .input_form_group.edit_result .separator.vert_line .line {
	background-color: rgba(253, 152, 0, 0.4);
}

.events tr.orange_row .input_form_group.edit_result input[type='text'],
.events tr.orange_row .input_form_group.edit_result input[type='number'] {
	color: #975b00;
}

.events tr.orange_row .input_form_group:hover {
	border: 2px solid rgba(253, 152, 0, 0.4);
}

.events tr.orange_row .input_form_group:focus-within {
	border: 2px solid rgba(253, 152, 0, 0.8);
	-webkit-box-shadow: 0 0 20px 2px rgba(253, 152, 0, 0.4);
	box-shadow: 0 0 20px 2px rgba(253, 152, 0, 0.4);
}

.events tr.red_row th,
.events tr.red_row td {
	color: #d72323;
	background-color: rgba(227, 84, 84, 0.12);
	border-color: rgba(227, 84, 84, 0.3);
}

.events tr.red_row:hover td,
.events tr.red_row:focus td,
.events tr.red_row:active td {
	background-color: rgba(227, 84, 84, 0.26);
}

.events tr.red_row i,
.events tr.red_row .svg_icon {
	color: #d72323;
}

.events tr.red_row .input_form_group {
	color: #d72323;
}

.events tr.red_row .input_form_group.edit_result {
	border: 2px solid rgba(227, 84, 84, 0);
}

.events tr.red_row .input_form_group.edit_result .separator.vert_line .line {
	background-color: rgba(227, 84, 84, 0.4);
}

.events tr.red_row .input_form_group.edit_result input[type='text'],
.events tr.red_row .input_form_group.edit_result input[type='number'] {
	color: #d72323;
}

.events tr.red_row .input_form_group:hover {
	border: 2px solid rgba(227, 84, 84, 0.4);
}

.events tr.red_row .input_form_group:focus-within {
	border: 2px solid rgba(227, 84, 84, 0.8);
	-webkit-box-shadow: 0 0 20px 2px rgba(227, 84, 84, 0.4);
	box-shadow: 0 0 20px 2px rgba(227, 84, 84, 0.4);
}

.events tr.blue_row th,
.events tr.blue_row td {
	color: #1180b5;
	background-color: rgba(25, 166, 234, 0.12);
	border-color: rgba(25, 166, 234, 0.3);
}

.events tr.blue_row:hover td,
.events tr.blue_row:focus td,
.events tr.blue_row:active td {
	background-color: rgba(25, 166, 234, 0.2);
}

.events tr.blue_row i,
.events tr.blue_row .svg_icon {
	color: #1180b5;
}

.events tr.blue_row .input_form_group {
	color: #1180b5;
}

.events tr.blue_row .input_form_group.edit_result {
	border: 2px solid rgba(25, 166, 234, 0);
}

.events tr.blue_row .input_form_group.edit_result .separator.vert_line .line {
	background-color: rgba(25, 166, 234, 0.4);
}

.events tr.blue_row .input_form_group.edit_result input[type='text'],
.events tr.blue_row .input_form_group.edit_result input[type='number'] {
	color: #1180b5;
}

.events tr.blue_row .input_form_group:hover {
	border: 2px solid rgba(25, 166, 234, 0.4);
}

.events tr.blue_row .input_form_group:focus-within {
	border: 2px solid rgba(25, 166, 234, 0.8);
	-webkit-box-shadow: 0 0 20px 2px rgba(25, 166, 234, 0.4);
	box-shadow: 0 0 20px 2px rgba(25, 166, 234, 0.4);
}

.events td,
.events th {
	height: 42px;
	padding: 0 10px;
	font-size: 13px;
	color: #73879c;
	position: relative;
	border-bottom: 1px solid #dde4ea;
}

.events td.without_border,
.events th.without_border {
	height: 42px;
	padding: 0 10px;
	font-size: 13px;
	color: #73879c;
	position: relative;
	border-bottom: none;
}

.events td.without_border,
.events th.without_border {
	height: 42px;
	padding: 0 10px;
	font-size: 13px;
	color: #73879c;
	position: relative;
	border-bottom: none;
}

.events td .pg,
.events th .pg {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	margin: 0 4px;
	border-radius: 12px;
	background-color: #ff5722;
	font-weight: 700;
	color: #fff;
	font-size: 10px;
	text-transform: uppercase;
}

.events td.p_0,
.events th.p_0 {
	padding: 0 !important;
}

.events td.pl_0,
.events th.pl_0 {
	padding-left: 0 !important;
}

.events td.pr_0,
.events th.pr_0 {
	padding-right: 0 !important;
}

.events td.p_5,
.events th.p_5 {
	padding: 0 5px !important;
}

.events td.pl_5,
.events th.pl_5 {
	padding-left: 5px !important;
}

.events td.pr_5,
.events th.pr_5 {
	padding-right: 5px !important;
}

.events td.p_10,
.events th.p_10 {
	padding: 0 10px !important;
}

.events td.pl_10,
.events th.pl_10 {
	padding-left: 10px !important;
}

.events td.pr_10,
.events th.pr_10 {
	padding-right: 10px !important;
}

.events td.strong,
.events th.strong {
	font-weight: 700 !important;
	color: #556373;
}

.events td.light,
.events th.light {
	font-weight: 300 !important;
}

.events td.small,
.events th.small {
	font-size: 11px;
}

.events td span.border_left,
.events th span.border_left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-left: 1px solid #dde4ea;
	height: 20px;
	padding: 0 0 0 10px;
}

.events td span.border_right,
.events th span.border_right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-right: 1px solid #dde4ea;
	height: 20px;
	padding: 0 10px 0 0;
}

.events td .add_btn,
.events th .add_btn {
	color: rgba(143, 164, 184, 0.6);
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.events td .add_btn:hover,
.events td .add_btn:focus,
.events td .add_btn:active,
.events th .add_btn:hover,
.events th .add_btn:focus,
.events th .add_btn:active {
	color: #27ae60;
}

.events td .svg_icon,
.events th .svg_icon {
	color: #556373;
}

.events td.event_code input,
.events th.event_code input {
	width: 60px;
}

.events td.game_input,
.events th.game_input {
	width: 70px;
}

.events td.game_input .tooltip_right,
.events th.game_input .tooltip_right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 70px;
	height: 26px;
	position: relative;
}

.events td.odd_margin,
.events th.odd_margin {
	width: 55px;
}

.events td.odd_margin .down,
.events th.odd_margin .down {
	color: #ffffff;
	background-color: #e35454;
}

.events td.odd_margin .up,
.events th.odd_margin .up {
	color: #ffffff;
	background-color: #038c03;
}

.events td.sport,
.events th.sport {
	width: 34px;
}

.events td.vs,
.events th.vs {
	width: 16px;
}

.events td.live_typing_code,
.events th.live_typing_code {
	width: 65%;
}

.events td .result,
.events th .result {
	position: relative;
	z-index: 1;
	padding: 0 4px;
	color: #556373;
}

.events td .result .period_label,
.events th .result .period_label {
	position: absolute;
	z-index: 2;
	top: -10px;
	left: 0;
	width: 100%;
	height: 9px;
	font-size: 9px;
	text-align: center;
	opacity: 0.6;
}

.events td .result.ft,
.events th .result.ft {
	font-weight: 700;
}

.events thead tr th,
.events thead tr td {
	font-size: 11px;
	line-height: 10px;
	text-transform: uppercase;
	border-bottom-width: 2px;
	background-color: #f8fafb;
}

.events .new_row .remove_row {
	color: #ff7474;
}

.events .new_row .remove_row:hover,
.events .new_row .remove_row:focus,
.events .new_row .remove_row:active {
	color: #c43737;
}

.events .new_row .td_input {
	border: 2px solid rgba(143, 164, 184, 0.6);
}

.events .new_row .td_input:focus,
.events .new_row .td_input:active {
	border: 2px solid #27ae60;
	-webkit-box-shadow: 0 0 16px 2px rgba(39, 174, 96, 0.5);
	box-shadow: 0 0 16px 2px rgba(39, 174, 96, 0.5);
}

.events .double_row td,
.events .double_row th {
	height: 84px;
}

.events .live_event {
	color: #27ae60;
	font-size: 20px;
}

.events .event_paused {
	color: #e35454;
	font-size: 20px;
}

.row_number {
	width: 42px;
}

.row_no {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.row_no i,
.row_no span.no {
	position: relative;
	z-index: 5;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	opacity: 1;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.row_no span.no {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	opacity: 1;
}

.row_no i {
	display: none;
}

.row_no:hover span.no,
.row_no:focus span.no,
.row_no:active span.no {
	display: none;
	opacity: 0;
}

.row_no:hover i,
.row_no:focus i,
.row_no:active i {
	color: #ff7474;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	opacity: 1;
}

.sys_del {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	color: #ff7474;
}

.sys_del i {
	position: relative;
	z-index: 5;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	opacity: 1;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.remove_row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	width: 100%;
	height: 42px;
	padding: 0 15px 0 0;
	color: rgba(143, 164, 184, 0.6);
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.remove_row:hover,
.remove_row:focus,
.remove_row:active {
	color: #ff7474;
}

.sys_form .sys_wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
}

.sys_form .system {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.sys_form .system .sys_top_row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.sys_form .system .sys_top_row .control,
.sys_form .system .sys_top_row .systems {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.sys_form .system .sys_top_row .control {
	height: 42px;
	width: 150px;
}

.sys_form .system .sys_top_row .control .label {
	padding: 0 10px 0 5px;
}

.sys_form .system .sys_top_row .systems {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.sys_form .system .sys_top_row .system_input {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 42px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 20px;
}

.sys_form .system .sys_top_row .system_input input {
	width: 70px;
	text-align: right;
	border: 2px solid rgba(143, 164, 184, 0.6);
}

.sys_form .system .sys_top_row .system_input input:focus,
.sys_form .system .sys_top_row .system_input input:active {
	border: 2px solid #27ae60;
	-webkit-box-shadow: 0 0 16px 2px rgba(39, 174, 96, 0.5);
	box-shadow: 0 0 16px 2px rgba(39, 174, 96, 0.5);
}

.sys_form .system .sys_top_row .system_input label {
	margin: 0 7px 0 5px;
}

.sys_form .system .sys_top_row .system_input .close_btn {
	color: rgba(143, 164, 184, 0.6);
	cursor: pointer;
}

.sys_form .system .sys_top_row .system_input .close_btn:hover {
	color: #ff7474;
}

.sys_form .system .sys_bottom_row {
	padding-left: 160px;
	height: 35px;
}

.sys_form .system .sys_bottom_row button {
	margin: 5px 0;
}

.sys_form .odds_info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.sys_form .odds_info .single_info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-left: 20px;
	margin-right: 20px;
	height: 42px;
	border-left: 1px solid rgba(143, 164, 184, 0.2);
}

.sys_form .odds_info .single_info .label {
	font-size: 10px;
	text-transform: uppercase;
	line-height: 1.5;
}

.sys_form .odds_info .single_info .value {
	color: #556373;
	font-size: 18px;
	line-height: 1;
}

/*   ----    tooltips    ----   */
.tooltip_top {
	position: relative;
	font-style: normal;
	font-weight: 400;
}

.tooltip_top span.tooltip_content {
	white-space: nowrap;
	position: absolute;
	min-width: 80px;
	color: #ffffff;
	font-size: 10px;
	text-transform: uppercase;
	background: #4e6375;
	height: 24px;
	line-height: 24px;
	text-align: center;
	visibility: hidden;
	border-radius: 4px;
	padding: 0 10px 0 10px;
}

.tooltip_top span.tooltip_content:after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 0;
	height: 0;
}

*:hover.tooltip_top span.tooltip_content {
	white-space: nowrap;
	visibility: visible;
	opacity: 0.95;
	bottom: 30px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 99999;
}

.tooltip_bottom {
	position: relative;
	font-style: normal;
	font-weight: 400;
}

.tooltip_bottom span.tooltip_content {
	white-space: nowrap;
	position: absolute;
	min-width: 80px;
	color: #ffffff;
	font-size: 10px;
	text-transform: uppercase;
	background: #4e6375;
	height: 24px;
	line-height: 24px;
	text-align: center;
	visibility: hidden;
	border-radius: 4px;
	padding: 0 10px 0 10px;
}

.tooltip_bottom span.tooltip_content:after {
	content: '';
	position: absolute;
	bottom: 100%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 0;
	height: 0;
}

*:hover.tooltip_bottom span.tooltip_content {
	white-space: nowrap;
	visibility: visible;
	opacity: 0.95;
	top: 30px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 99999;
}

.tooltip_left {
	position: relative;
	font-style: normal;
	font-weight: 400;
}

.tooltip_left span.tooltip_content {
	white-space: nowrap;
	position: absolute;
	min-width: 80px;
	color: #ffffff;
	font-size: 10px;
	text-transform: uppercase;
	background: #4e6375;
	height: 24px;
	line-height: 24px;
	text-align: center;
	visibility: hidden;
	border-radius: 4px;
	padding: 0 10px 0 10px;
}

.tooltip_left span.tooltip_content:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 100%;
	margin-top: -5px;
	width: 0;
	height: 0;
}

*:hover.tooltip_left span.tooltip_content {
	white-space: nowrap;
	visibility: visible;
	opacity: 0.95;
	right: 100%;
	top: 50%;
	margin-top: -12px;
	margin-right: 10px;
	z-index: 99999;
}

*:hover.tooltip_left ~ span.tooltip_content {
	white-space: nowrap;
	visibility: visible;
	opacity: 0.95;
	right: 100%;
	top: 50%;
	margin-top: -12px;
	margin-right: 10px;
	z-index: 99999;
}

.tooltip_right {
	position: relative;
	font-style: normal;
	font-weight: 400;
}

span.tooltip_content {
	white-space: nowrap;
	position: absolute;
	min-width: 80px;
	color: #ffffff;
	font-size: 10px;
	text-transform: uppercase;
	background: #4e6375;
	height: 24px;
	line-height: 24px;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	border-radius: 4px;
	padding: 0 10px 0 10px;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

*:hover.tooltip_right span.tooltip_content {
	white-space: nowrap;
	visibility: visible;
	opacity: 0.95;
	left: 100%;
	top: 50%;
	margin-top: -12px;
	margin-left: 10px;
	z-index: 99999;
}

span.tooltip_content.red {
	background-color: #e35454;
}

span.tooltip_content.green {
	background-color: #7fbd22;
}

span.tooltip_content.yellow {
	background-color: #f4bc10;
	color: #4b3900;
}

input,
input[type='text'],
input[type='password'],
input[type='number'],
input[type='email'],
textarea,
select {
	background-color: rgba(255, 255, 255, 0);
	outline: none !important;
	background-image: none;
	-webkit-box-shadow: 0 0 0 100px rgba(255, 255, 255, 0) inset;
	box-shadow: 0 0 0 100px rgba(255, 255, 255, 0) inset;
}

input:focus,
input:active,
input:-webkit-autofill,
input[type='text']:focus,
input[type='text']:active,
input[type='text']:-webkit-autofill,
input[type='password']:focus,
input[type='password']:active,
input[type='password']:-webkit-autofill,
input[type='number']:focus,
input[type='number']:active,
input[type='number']:-webkit-autofill,
input[type='email']:focus,
input[type='email']:active,
input[type='email']:-webkit-autofill,
textarea:focus,
textarea:active,
textarea:-webkit-autofill,
select:focus,
select:active,
select:-webkit-autofill {
	background-color: rgba(255, 255, 255, 0);
	outline: none !important;
	background-image: none;
	-webkit-box-shadow: 0 0 0 100px rgba(255, 255, 255, 0) inset;
	box-shadow: 0 0 0 100px rgba(255, 255, 255, 0) inset;
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button,
input[type='text']::-webkit-inner-spin-button,
input[type='text']::-webkit-outer-spin-button,
input[type='password']::-webkit-inner-spin-button,
input[type='password']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button,
input[type='email']::-webkit-inner-spin-button,
input[type='email']::-webkit-outer-spin-button,
textarea::-webkit-inner-spin-button,
textarea::-webkit-outer-spin-button,
select::-webkit-inner-spin-button,
select::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input.min_width_150,
input[type='text'].min_width_150,
input[type='password'].min_width_150,
input[type='number'].min_width_150,
input[type='email'].min_width_150,
textarea.min_width_150,
select.min_width_150 {
	min-width: 150px;
}

input.min_width_160,
input[type='text'].min_width_160,
input[type='password'].min_width_160,
input[type='number'].min_width_160,
input[type='email'].min_width_160,
textarea.min_width_160,
select.min_width_160 {
	min-width: 160px;
}

input.min_width_200,
input[type='text'].min_width_200,
input[type='password'].min_width_200,
input[type='number'].min_width_200,
input[type='email'].min_width_200,
textarea.min_width_200,
select.min_width_200 {
	min-width: 200px;
}

input.min_width_220,
input[type='text'].min_width_220,
input[type='password'].min_width_220,
input[type='number'].min_width_220,
input[type='email'].min_width_220,
textarea.min_width_220,
select.min_width_220 {
	min-width: 220px;
}

input.min_width_240,
input[type='text'].min_width_240,
input[type='password'].min_width_240,
input[type='number'].min_width_240,
input[type='email'].min_width_240,
textarea.min_width_240,
select.min_width_240 {
	min-width: 240px;
}

input.max_width_40,
input[type='text'].max_width_40,
input[type='password'].max_width_40,
input[type='number'].max_width_40,
input[type='email'].max_width_40,
textarea.max_width_40,
select.max_width_40 {
	max-width: 40px;
}

input.max_width_60,
input[type='text'].max_width_60,
input[type='password'].max_width_60,
input[type='number'].max_width_60,
input[type='email'].max_width_60,
textarea.max_width_60,
select.max_width_60 {
	max-width: 60px;
}

input.max_width_80,
input[type='text'].max_width_80,
input[type='password'].max_width_80,
input[type='number'].max_width_80,
input[type='email'].max_width_80,
textarea.max_width_80,
select.max_width_80 {
	max-width: 80px;
}

input.max_width_160,
input[type='text'].max_width_160,
input[type='password'].max_width_160,
input[type='number'].max_width_160,
input[type='email'].max_width_160,
textarea.max_width_160,
select.max_width_160 {
	max-width: 160px;
}

input.max_width_200,
input[type='text'].max_width_200,
input[type='password'].max_width_200,
input[type='number'].max_width_200,
input[type='email'].max_width_200,
textarea.max_width_200,
select.max_width_200 {
	max-width: 200px;
}

input.max_width_220,
input[type='text'].max_width_220,
input[type='password'].max_width_220,
input[type='number'].max_width_220,
input[type='email'].max_width_220,
textarea.max_width_220,
select.max_width_220 {
	max-width: 220px;
}

input.max_width_240,
input[type='text'].max_width_240,
input[type='password'].max_width_240,
input[type='number'].max_width_240,
input[type='email'].max_width_240,
textarea.max_width_240,
select.max_width_240 {
	max-width: 240px;
}

input.cut_left,
input[type='text'].cut_left,
input[type='password'].cut_left,
input[type='number'].cut_left,
input[type='email'].cut_left,
textarea.cut_left,
select.cut_left {
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	margin-left: 0;
	border-left-width: 0px;
}

input.cut_right,
input[type='text'].cut_right,
input[type='password'].cut_right,
input[type='number'].cut_right,
input[type='email'].cut_right,
textarea.cut_right,
select.cut_right {
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
	margin-right: 0;
	border-right-width: 0px;
}

input.h_md,
input[type='text'].h_md,
input[type='password'].h_md,
input[type='number'].h_md,
input[type='email'].h_md,
textarea.h_md,
select.h_md {
	height: 36px;
}

input.h_lg,
input[type='text'].h_lg,
input[type='password'].h_lg,
input[type='number'].h_lg,
input[type='email'].h_lg,
textarea.h_lg,
select.h_lg {
	height: 38px;
}

input.h_xl,
input[type='text'].h_xl,
input[type='password'].h_xl,
input[type='number'].h_xl,
input[type='email'].h_xl,
textarea.h_xl,
select.h_xl {
	height: 40px;
}

input.h_xxl,
input[type='text'].h_xxl,
input[type='password'].h_xxl,
input[type='number'].h_xxl,
input[type='email'].h_xxl,
textarea.h_xxl,
select.h_xxl {
	height: 42px;
}

textarea {
	width: 100%;
	padding: 2px 4px;
	font-size: 14px;
	font-weight: 400;
	color: #556373;
	font-family: 'Open Sans', sans-serif;
	border-radius: 4px;
	border: 2px solid #8fa4b8;
	background-color: transparent;
	/* Edge */
	/* Internet Explorer 10-11 */
}

textarea::-webkit-input-placeholder {
	color: #73879c;
}

textarea:-ms-input-placeholder {
	color: #73879c;
}

textarea::-ms-input-placeholder {
	color: #73879c;
}

textarea::placeholder {
	color: #73879c;
}

textarea:hover {
	border: 2px solid #27ae60;
	background-color: transparent;
}

textarea:focus,
textarea:active {
	border: 2px solid #27ae60;
	background-color: white;
}

input:disabled,
button:disabled,
textarea:disabled,
select:disabled {
	opacity: 0.4;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
}

input.td_input {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 26px;
	width: 100%;
	padding: 2px 4px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 700;
	color: #556373;
	font-family: 'Open Sans', sans-serif;
	border: 2px solid rgba(255, 255, 255, 0);
	background-color: rgba(255, 255, 255, 0);
}

input.td_input:hover {
	border: 2px solid rgba(143, 164, 184, 0.6);
}

input.td_input:focus,
input.td_input:active {
	border: 2px solid #27ae60;
	-webkit-box-shadow: 0 0 16px 2px rgba(39, 174, 96, 0.5);
	box-shadow: 0 0 16px 2px rgba(39, 174, 96, 0.5);
}

input.search,
input.regular {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 32px;
	max-width: 210px;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 400;
	color: #556373;
	font-family: 'Open Sans', sans-serif;
	border: 2px solid rgba(143, 164, 184, 0.6);
	background-color: rgba(255, 255, 255, 0);
}

input.search.short,
input.regular.short {
	max-width: 80px;
}

input.search:hover,
input.search:focus,
input.search:active,
input.regular:hover,
input.regular:focus,
input.regular:active {
	color: #73879c;
	border: 2px solid #27ae60;
	-webkit-box-shadow: 0 0 16px 2px rgba(39, 174, 96, 0.5) !important;
	box-shadow: 0 0 16px 2px rgba(39, 174, 96, 0.5) !important;
}

input.search::-webkit-input-placeholder,
input.regular::-webkit-input-placeholder {
	font-size: 11px;
	line-height: 11px;
	vertical-align: middle;
	color: #8fa4b8;
	text-transform: uppercase;
}

input.search:-ms-input-placeholder,
input.regular:-ms-input-placeholder {
	font-size: 11px;
	line-height: 11px;
	vertical-align: middle;
	color: #8fa4b8;
	text-transform: uppercase;
}

input.search::-ms-input-placeholder,
input.regular::-ms-input-placeholder {
	font-size: 11px;
	line-height: 11px;
	vertical-align: middle;
	color: #8fa4b8;
	text-transform: uppercase;
}

input.search::placeholder,
input.regular::placeholder {
	font-size: 11px;
	line-height: 11px;
	vertical-align: middle;
	color: #8fa4b8;
	text-transform: uppercase;
}

.input_label {
	line-height: 24px;
	height: 24px;
}

.payment {
	/* Webkit browsers like Safari and Chrome */
}

.payment input.lg {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 32px;
	width: 100%;
	padding: 2px 4px;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 700;
	color: #556373;
	font-family: 'Open Sans', sans-serif;
	text-align: right;
	border: 2px solid #8fa4b8;
	background-color: white;
	/* Edge */
	/* Internet Explorer 10-11 */
}

.payment input.lg::-webkit-input-placeholder {
	color: #73879c;
}

.payment input.lg:-ms-input-placeholder {
	color: #73879c;
}

.payment input.lg::-ms-input-placeholder {
	color: #73879c;
}

.payment input.lg::placeholder {
	color: #73879c;
}

.payment input.lg:hover {
	border: 2px solid #27ae60;
	color: #27ae60;
	/* Edge */
	/* Internet Explorer 10-11 */
}

.payment input.lg:hover::-webkit-input-placeholder {
	color: #27ae60;
}

.payment input.lg:hover:-ms-input-placeholder {
	color: #27ae60;
}

.payment input.lg:hover::-ms-input-placeholder {
	color: #27ae60;
}

.payment input.lg:hover::placeholder {
	color: #27ae60;
}

.payment input.lg:hover + .input_label {
	color: #27ae60;
}

.payment input.lg:focus,
.payment input.lg:active {
	border: 2px solid #27ae60;
	-webkit-box-shadow: 0 0 16px 2px rgba(39, 174, 96, 0.6);
	box-shadow: 0 0 16px 2px rgba(39, 174, 96, 0.6);
	color: #27ae60;
	/* Edge */
	/* Internet Explorer 10-11 */
}

.payment input.lg:focus::-webkit-input-placeholder,
.payment input.lg:active::-webkit-input-placeholder {
	color: #27ae60;
}

.payment input.lg:focus:-ms-input-placeholder,
.payment input.lg:active:-ms-input-placeholder {
	color: #27ae60;
}

.payment input.lg:focus::-ms-input-placeholder,
.payment input.lg:active::-ms-input-placeholder {
	color: #27ae60;
}

.payment input.lg:focus::placeholder,
.payment input.lg:active::placeholder {
	color: #27ae60;
}

.payment input.lg:focus + .input_label,
.payment input.lg:active + .input_label {
	color: #27ae60;
}

.payment input[type='number'] {
	-moz-appearance: textfield;
}

.payment input[type='number']::-webkit-inner-spin-button,
.payment input[type='number']::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.form_row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	padding: 8px 0;
}

.form_row .input_label {
	width: 100%;
	padding-right: 10px;
}

.form_row.radio_inline .checkbox_custom {
	width: -webkit-fit-content !important;
	width: -moz-fit-content !important;
	width: fit-content !important;
}

.form_row.red input {
	border: 2px solid #e35454;
}

.form_row.red input:hover,
.form_row.red input:active,
.form_row.red input:focus {
	border: 2px solid #e35454;
	-webkit-box-shadow: 0 0 16px 2px rgba(227, 84, 84, 0.5) !important;
	box-shadow: 0 0 16px 2px rgba(227, 84, 84, 0.5) !important;
}

.form_row.red button {
	border: 2px solid #e35454;
	background-color: #e35454;
}

.form_row.red button:hover,
.form_row.red button:active,
.form_row.red button:focus {
	border: 2px solid #c41821;
	background-color: #c41821;
}

.form_row.light_green input {
	border: 2px solid #7fbd22;
}

.form_row.light_green input:hover,
.form_row.light_green input:active,
.form_row.light_green input:focus {
	border: 2px solid #7fbd22;
	-webkit-box-shadow: 0 0 16px 2px rgba(127, 189, 34, 0.5) !important;
	box-shadow: 0 0 16px 2px rgba(127, 189, 34, 0.5) !important;
}

.form_row.light_green button {
	border: 2px solid #7fbd22;
	background-color: #7fbd22;
}

.form_row.light_green button:hover,
.form_row.light_green button:active,
.form_row.light_green button:focus {
	border: 2px solid #5b9602;
	background-color: #5b9602;
}

.form_row.green input {
	border: 2px solid #038c03;
}

.form_row.green input:hover,
.form_row.green input:active,
.form_row.green input:focus {
	border: 2px solid #038c03;
	-webkit-box-shadow: 0 0 16px 2px rgba(3, 140, 3, 0.5) !important;
	box-shadow: 0 0 16px 2px rgba(3, 140, 3, 0.5) !important;
}

.form_row.green button {
	border: 2px solid #038c03;
	background-color: #038c03;
}

.form_row.green button:hover,
.form_row.green button:active,
.form_row.green button:focus {
	border: 2px solid #026402;
	background-color: #026402;
}

.form_row.blue input {
	border: 2px solid #19a6ea;
}

.form_row.blue input:hover,
.form_row.blue input:active,
.form_row.blue input:focus {
	border: 2px solid #19a6ea;
	-webkit-box-shadow: 0 0 16px 2px rgba(25, 166, 234, 0.5) !important;
	box-shadow: 0 0 16px 2px rgba(25, 166, 234, 0.5) !important;
}

.form_row.blue button {
	border: 2px solid #19a6ea;
	background-color: #19a6ea;
}

.form_row.blue button:hover,
.form_row.blue button:active,
.form_row.blue button:focus {
	border: 2px solid #1186bf;
	background-color: #1186bf;
}

.form_row.yellow input {
	border: 2px solid #feb200;
}

.form_row.yellow input:hover,
.form_row.yellow input:active,
.form_row.yellow input:focus {
	border: 2px solid #feb200;
	-webkit-box-shadow: 0 0 16px 2px rgba(254, 178, 0, 0.5) !important;
	box-shadow: 0 0 16px 2px rgba(254, 178, 0, 0.5) !important;
}

.form_row.yellow button {
	border: 2px solid #feb200;
	background-color: #feb200;
}

.form_row.yellow button:hover,
.form_row.yellow button:active,
.form_row.yellow button:focus {
	border: 2px solid #df9d00;
	background-color: #df9d00;
}

.form_row.orange input {
	border: 2px solid #fd9800;
}

.form_row.orange input:hover,
.form_row.orange input:active,
.form_row.orange input:focus {
	border: 2px solid #fd9800;
	-webkit-box-shadow: 0 0 16px 2px rgba(253, 152, 0, 0.5) !important;
	box-shadow: 0 0 16px 2px rgba(253, 152, 0, 0.5) !important;
}

.form_row.orange button {
	border: 2px solid #fd9800;
	background-color: #fd9800;
}

.form_row.orange button:hover,
.form_row.orange button:active,
.form_row.orange button:focus {
	border: 2px solid #ca7900;
	background-color: #ca7900;
}

.validation_message {
	margin: 0;
	padding: 0;
	color: #8da2b6;
}

.validation_message.red {
	color: #e35454;
}

.validation_message.red strong {
	color: #c41821;
}

.validation_message.green {
	color: #038c03;
}

.validation_message.green strong {
	color: #037803;
}

.validation_message.blue {
	color: #19a6ea;
}

.validation_message.blue strong {
	color: #1393d1;
}

.validation_message.yellow {
	color: #feb200;
}

.validation_message.yellow strong {
	color: #df9d00;
}

.validation_message.orange {
	color: #fd9800;
}

.validation_message.orange strong {
	color: #de8600;
}

.validation_message.sm {
	font-size: 10px;
	font-weight: 600;
	line-height: 13px;
	text-transform: uppercase;
}

.validation_message.md {
	font-size: 11px;
	line-height: 13px;
}

.validation_message.lg {
	font-size: 13px;
}

.validation_message.xl {
	font-size: 14px;
}

.validation_message.xxl {
	font-size: 16px;
	line-height: 21px;
}

.validation_message.xxxl {
	font-size: 28px;
}

.right_panel {
	position: absolute;
	z-index: 10;
	right: 0;
	left: auto;
	top: 0;
	bottom: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 320px;
	height: 100vh;
	background-color: #fff;
	-webkit-box-shadow: 0px 4px 40px 0px rgba(48, 57, 68, 0.2);
	box-shadow: 0px 4px 40px 0px rgba(48, 57, 68, 0.2);
}

.right_panel .head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	height: 60px;
	border-bottom: 1px solid rgba(143, 164, 184, 0.3);
}

.secondary_offer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 72px;
	width: 100%;
	align-items: center;
	border-top: 1px solid #dde4ea;
}

.secondary_offer .selected_event {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 72px;
	width: 280px;
}

.secondary_offer .selected_event .competetors,
.secondary_offer .selected_event .tournament {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 1;
	flex-shrink: 1;
	-ms-flex-preferred-size: auto;
	flex-basis: auto;
	height: 36px;
	min-width: 0;
	width: 100%;
	font-size: 13px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	border-right: 1px solid #dde4ea;
	border-bottom: 1px solid #dde4ea;
}

.secondary_offer .selected_event .competetors {
	font-weight: 700;
}

.secondary_offer .selected_event .tournament {
	color: #73879c;
}

.aditional_odds {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	height: 72px;
	width: calc(100% - 280px);
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: stretch;
	-ms-flex-pack: stretch;
	justify-content: stretch;
}

.aditional_odds .stake_wrap {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: stretch;
	-ms-flex-pack: stretch;
	justify-content: stretch;
	height: 72px;
	color: #73879c;
	border-right: 1px solid #dde4ea;
}

.aditional_odds .stake_wrap .stake_name,
.aditional_odds .stake_wrap .stake_odd,
.aditional_odds .stake_wrap .stake_margin {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 36px;
	width: 100%;
	font-size: 13px;
	border-bottom: 1px solid #dde4ea;
}

.aditional_odds .stake_wrap .stake_margin {
	border-bottom: 0px solid transparent;
}

.aditional_odds .stake_wrap .stake_margin {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	width: 100%;
	height: 36px;
	background-color: transparent;
	border-radius: 4px;
	overflow: hidden;
}

.aditional_odds .stake_wrap .stake_margin .margin_under,
.aditional_odds .stake_wrap .stake_margin .margin,
.aditional_odds .stake_wrap .stake_margin .margin_over {
	position: absolute;
	bottom: 0;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	height: 36px;
}

.aditional_odds .stake_wrap .stake_margin .margin_under {
	pointer-events: none;
	opacity: 0;
	left: 0;
}

.aditional_odds .stake_wrap .stake_margin .margin_over {
	pointer-events: none;
	opacity: 0;
	right: 0;
}

.aditional_odds .stake_wrap:last-child {
	border-right: 0px solid transparent;
}

.aditional_odds .stake_wrap.common_stake {
	color: #556373;
	font-weight: 700;
}

.aditional_odds .stake_wrap.hendikep {
	border-bottom: 1px solid #dde4ea;
}

.aditional_odds .stake_wrap:hover,
.aditional_odds .stake_wrap:focus,
.aditional_odds .stake_wrap:active {
	color: #556373;
	background-color: rgba(143, 164, 184, 0.1);
	cursor: pointer;
}

.aditional_odds .stake_wrap:hover .stake_margin,
.aditional_odds .stake_wrap:focus .stake_margin,
.aditional_odds .stake_wrap:active .stake_margin {
	position: relative;
	z-index: 3;
	width: 300%;
}

.aditional_odds .stake_wrap:hover .stake_margin .margin_under,
.aditional_odds .stake_wrap:hover .stake_margin .margin,
.aditional_odds .stake_wrap:hover .stake_margin .margin_over,
.aditional_odds .stake_wrap:focus .stake_margin .margin_under,
.aditional_odds .stake_wrap:focus .stake_margin .margin,
.aditional_odds .stake_wrap:focus .stake_margin .margin_over,
.aditional_odds .stake_wrap:active .stake_margin .margin_under,
.aditional_odds .stake_wrap:active .stake_margin .margin,
.aditional_odds .stake_wrap:active .stake_margin .margin_over {
	width: 33.3333%;
	color: #ffffff;
	background-color: #556373;
	opacity: 1;
	pointer-events: all;
}

.aditional_odds .stake_wrap:hover .stake_margin .margin,
.aditional_odds .stake_wrap:focus .stake_margin .margin,
.aditional_odds .stake_wrap:active .stake_margin .margin {
	color: rgba(255, 255, 255, 0.7);
	border-left: 1px solid rgba(255, 255, 255, 0.2);
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.aditional_odds .stake_wrap:hover .stake_margin .margin_under,
.aditional_odds .stake_wrap:hover .stake_margin .margin_over,
.aditional_odds .stake_wrap:focus .stake_margin .margin_under,
.aditional_odds .stake_wrap:focus .stake_margin .margin_over,
.aditional_odds .stake_wrap:active .stake_margin .margin_under,
.aditional_odds .stake_wrap:active .stake_margin .margin_over {
	font-weight: 700;
}

.aditional_odds .stake_wrap:hover .stake_margin .margin_under:hover,
.aditional_odds .stake_wrap:hover .stake_margin .margin_under:focus,
.aditional_odds .stake_wrap:hover .stake_margin .margin_under:active,
.aditional_odds .stake_wrap:hover .stake_margin .margin_over:hover,
.aditional_odds .stake_wrap:hover .stake_margin .margin_over:focus,
.aditional_odds .stake_wrap:hover .stake_margin .margin_over:active,
.aditional_odds .stake_wrap:focus .stake_margin .margin_under:hover,
.aditional_odds .stake_wrap:focus .stake_margin .margin_under:focus,
.aditional_odds .stake_wrap:focus .stake_margin .margin_under:active,
.aditional_odds .stake_wrap:focus .stake_margin .margin_over:hover,
.aditional_odds .stake_wrap:focus .stake_margin .margin_over:focus,
.aditional_odds .stake_wrap:focus .stake_margin .margin_over:active,
.aditional_odds .stake_wrap:active .stake_margin .margin_under:hover,
.aditional_odds .stake_wrap:active .stake_margin .margin_under:focus,
.aditional_odds .stake_wrap:active .stake_margin .margin_under:active,
.aditional_odds .stake_wrap:active .stake_margin .margin_over:hover,
.aditional_odds .stake_wrap:active .stake_margin .margin_over:focus,
.aditional_odds .stake_wrap:active .stake_margin .margin_over:active {
	background-color: #303944;
}

.ticket_action {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	width: 100%;
	align-items: center;
	border-top: 1px solid #dde4ea;
}

.ticket_action .autorisation,
.ticket_action .cashout {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: 1;
	flex-flow: 1;
	-ms-flex-preferred-size: 50%;
	flex-basis: 50%;
}

.ticket_action .autorisation .btn,
.ticket_action .cashout .btn {
	margin: 6px 3px;
}

.ticket_action .autorisation .label,
.ticket_action .cashout .label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 22px;
	padding: 0 10px 0 10px;
	color: #8fa4b8;
	font-size: 11px;
	text-transform: uppercase;
}

/*   ----    BUTTONS    ----   */
.btn {
	width: auto;
	height: 24px;
	padding: 0 8px;
	margin: 0 3px;
	font-family: 'Open Sans', sans-serif;
	text-transform: uppercase;
	font-size: 11px;
	line-height: 10px;
	font-weight: 700;
	border-radius: 3px;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	white-space: nowrap;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	color: white;
	border: 2px solid #8da2b6;
	background-color: #8da2b6;
	/*   ---   colors   ---   */
}

.btn * {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.btn i {
	font-size: 18px;
	line-height: 20px;
}

.btn:hover,
.btn:focus,
.btn:active {
	color: white;
	border: 2px solid #4e6375;
	background-color: #4e6375;
}

.btn.full_width {
	width: 100%;
}

.btn.lg {
	height: 34px;
	padding: 0 14px;
	margin: 0 3px;
	font-size: 12px;
	line-height: 12px;
	font-weight: 600;
	text-transform: uppercase;
	border-radius: 4px;
}

.btn.lg.rounded {
	border-radius: 20px;
	padding: 0 18px;
}

.btn.md {
	height: 32px;
	padding: 0 14px;
	margin: 0 3px;
	font-size: 11px;
	line-height: 14px;
	font-weight: 600;
	text-transform: uppercase;
	border-radius: 3px;
}

.btn.md.rounded {
	border-radius: 20px;
	padding: 0 18px;
}

.btn.tiny {
	height: 20px;
	padding: 0 6px;
	margin: 0 3px;
	font-size: 10px;
	line-height: 20px;
	text-transform: uppercase;
	border-radius: 4px;
}

.btn.tiny.rounded {
	border-radius: 12px;
	padding: 0 10px;
}

.btn.h_md {
	height: 36px;
}

.btn.h_lg {
	height: 38px;
}

.btn.h_xl {
	height: 40px;
}

.btn.h_xxl {
	height: 42px;
}

.btn.round {
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	padding: 0 16px;
	border-radius: 24px;
}

.btn.outline {
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	color: #8da2b6;
	border: 1px solid #8da2b6;
	background-color: rgba(141, 162, 182, 0);
}

.btn.outline:hover,
.btn.outline:focus,
.btn.outline:active {
	color: white;
	border: 1px solid #8da2b6;
	background-color: #8da2b6;
}

.btn.green_hover:hover,
.btn.green_hover:focus,
.btn.green_hover:active {
	color: white;
	border: 1px solid rgba(3, 140, 3, 0);
	background-color: #038c03;
}

.btn.ico {
	padding: 0;
}

.btn.transparent {
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	color: #8fa4b8;
	background-color: rgba(143, 164, 184, 0);
	border: 0px solid transparent;
}

.btn.transparent:hover,
.btn.transparent:focus,
.btn.transparent:active {
	color: white;
	background-color: #8fa4b8;
	border: 1px solid rgba(143, 164, 184, 0.3);
}

.btn.transparent i {
	font-size: 24px;
	line-height: 24px;
}

.btn.light {
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	color: rgba(78, 99, 117, 0.8);
	background-color: rgba(141, 162, 182, 0.3);
}

.btn.light:hover,
.btn.light:focus,
.btn.light:active {
	color: white;
	background-color: #8da2b6;
}

.btn.light.outline {
	color: #8da2b6;
	border: 1px solid rgba(141, 162, 182, 0.5);
	background-color: rgba(141, 162, 182, 0);
}

.btn.light.outline:hover,
.btn.light.outline:focus,
.btn.light.outline:active {
	color: #4e6375;
	border: 1px solid rgba(141, 162, 182, 0);
	background-color: rgba(141, 162, 182, 0.3);
}

.btn.red {
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	color: white;
	border: 2px solid rgba(227, 84, 84, 0);
	background-color: #e35454;
}

.btn.red:hover,
.btn.red:focus,
.btn.red:active {
	color: white;
	border: 2px solid rgba(196, 55, 55, 0);
	background-color: #c43737;
}

.btn.red.outline {
	color: #e35454;
	border: 2px solid #e35454;
	background-color: rgba(227, 84, 84, 0);
}

.btn.red.outline:hover,
.btn.red.outline:focus,
.btn.red.outline:active {
	color: white;
	border: 2px solid rgba(227, 84, 84, 0);
	background-color: #e35454;
}

.btn.green {
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	color: white;
	border: 2px solid rgba(127, 189, 34, 0);
	background-color: #7fbd22;
}

.btn.green:hover,
.btn.green:focus,
.btn.green:active {
	color: white;
	border: 2px solid rgba(101, 158, 16, 0);
	background-color: #659e10;
}

.btn.green.outline {
	color: #7fbd22;
	border: 2px solid #7fbd22;
	background-color: rgba(127, 189, 34, 0);
}

.btn.green.outline:hover,
.btn.green.outline:focus,
.btn.green.outline:active {
	color: white;
	border: 2px solid rgba(127, 189, 34, 0);
	background-color: #7fbd22;
}

.btn.green_light {
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	color: #1c4400;
	border: 2px solid rgba(111, 207, 151, 0);
	background-color: #6fcf97;
}

.btn.green_light:hover,
.btn.green_light:focus,
.btn.green_light:active {
	color: white;
	border: 2px solid rgba(0, 128, 0, 0);
	background-color: green;
}

.btn.green_light.outline {
	color: #6fcf97;
	border: 2px solid #6fcf97;
	background-color: rgba(111, 207, 151, 0);
}

.btn.green_light.outline:hover,
.btn.green_light.outline:focus,
.btn.green_light.outline:active {
	color: white;
	border: 2px solid rgba(111, 207, 151, 0);
	background-color: #6fcf97;
}

.btn.dark_green {
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	color: white;
	border: 2px solid rgba(3, 140, 3, 0);
	background-color: #038c03;
}

.btn.dark_green:hover,
.btn.dark_green:focus,
.btn.dark_green:active {
	color: white;
	border: 2px solid rgba(0, 100, 0, 0);
	background-color: darkgreen;
}

.btn.dark_green.outline {
	color: #038c03;
	border: 2px solid #038c03;
	background-color: rgba(3, 140, 3, 0);
}

.btn.dark_green.outline:hover,
.btn.dark_green.outline:focus,
.btn.dark_green.outline:active {
	color: white;
	border: 2px solid rgba(0, 100, 0, 0);
	background-color: darkgreen;
}

.btn.orange {
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	color: #4b3900;
	border: 2px solid rgba(244, 188, 16, 0);
	background-color: #f4bc10;
}

.btn.orange:hover,
.btn.orange:focus,
.btn.orange:active {
	color: #4b3900;
	border: 2px solid rgba(221, 170, 20, 0);
	background-color: #ddaa14;
}

.btn.orange.outline {
	color: #f4bc10;
	border: 2px solid #f4bc10;
	background-color: rgba(244, 188, 16, 0);
}

.btn.orange.outline:hover,
.btn.orange.outline:focus,
.btn.orange.outline:active {
	color: white;
	border: 2px solid rgba(244, 188, 16, 0);
	background-color: #f4bc10;
}

.btn.blue {
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	color: white;
	border: 2px solid rgba(0, 160, 253, 0);
	background-color: #00a0fd;
}

.btn.blue:hover,
.btn.blue:focus,
.btn.blue:active {
	color: white;
	border: 2px solid rgba(0, 136, 214, 0);
	background-color: #0088d6;
}

.btn.blue.outline {
	color: #00a0fd;
	border: 2px solid #00a0fd;
	background-color: rgba(0, 160, 253, 0);
}

.btn.blue.outline:hover,
.btn.blue.outline:focus,
.btn.blue.outline:active {
	color: white;
	border: 2px solid rgba(0, 160, 253, 0);
	background-color: #00a0fd;
}

.btn.light_blue {
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	color: white;
	border: 2px solid rgba(63, 190, 230, 0);
	background-color: #3fbee6;
}

.btn.light_blue:hover,
.btn.light_blue:focus,
.btn.light_blue:active {
	color: white;
	border: 2px solid rgba(11, 146, 187, 0);
	background-color: #0b92bb;
}

.btn.light_blue.outline {
	color: #3fbee6;
	border: 2px solid #3fbee6;
	background-color: rgba(63, 190, 230, 0);
}

.btn.light_blue.outline:hover,
.btn.light_blue.outline:focus,
.btn.light_blue.outline:active {
	color: white;
	border: 2px solid rgba(63, 190, 230, 0);
	background-color: #3fbee6;
}

.btn.cut_left {
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	margin-left: 0;
}

.btn.cut_right {
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
	margin-right: 0;
}

.payment .count_row {
	margin: 0 0 10px 0;
}

.payment .count_row:last-child {
	margin: 0 0 0 0;
}

.payment .input_label {
	width: 100%;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	padding-bottom: 4px;
}

.payment .payment_amount_form,
.payment .amount_percent {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 32px;
}

.payment .payment_amount_form .input_label,
.payment .amount_percent .input_label {
	display: block;
	position: absolute;
	z-index: 2;
	bottom: 0;
	right: 0;
	height: 22px;
	width: auto;
	padding: 0 8px 0 0;
}

.payment .payment_amount_form {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	margin-right: 10px;
	-ms-flex-preferred-size: 200px;
	flex-basis: 200px;
}

.payment .payment_amount_form input.lg {
	padding-right: 30px;
}

.payment .amount_percent {
	width: 60px;
}

.payment .amount_percent input.lg {
	padding-right: 18px;
}

.payment .userid_voucher .label {
	font-size: 10px;
	text-transform: uppercase;
	width: 180px;
}

.payment .userid_voucher input.lg {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

/*   ----    Modals    ----   */
.modal_cover {
	position: fixed;
	z-index: 40;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	display: none;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 13px;
	line-height: 14px;
	color: #8795a3;
}

.modal_cover.green_stroke .modal_content {
	border: 3px solid rgba(53, 172, 0, 0.8);
	-webkit-box-shadow: 0px 15px 100px 40px rgba(53, 172, 0, 0.2);
	box-shadow: 0px 15px 100px 40px rgba(53, 172, 0, 0.2);
}

.modal_cover.red_stroke .modal_content {
	border: 3px solid rgba(227, 84, 84, 0.8);
	-webkit-box-shadow: 0px 15px 100px 40px rgba(227, 84, 84, 0.2);
	box-shadow: 0px 15px 100px 40px rgba(227, 84, 84, 0.2);
}

.modal_cover.yellow_stroke .modal_content {
	border: 3px solid rgba(254, 178, 0, 0.8);
	-webkit-box-shadow: 0px 15px 100px 40px rgba(254, 178, 0, 0.2);
	box-shadow: 0px 15px 100px 40px rgba(254, 178, 0, 0.2);
}

.modal_cover.over_1 {
	z-index: 41;
}

.modal_cover.over_2 {
	z-index: 42;
}

.modal_cover.over_3 {
	z-index: 43;
}

.modal_cover.over_4 {
	z-index: 44;
}

.modal_cover.over_5 {
	z-index: 45;
}

.modal_cover .modal_content {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	min-width: 280px;
	min-height: 420px;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	overflow-x: hidden;
	border-radius: 6px;
	background-color: #fff;
	-webkit-box-shadow: 0px 15px 100px 40px rgba(27, 44, 66, 0.3);
	box-shadow: 0px 15px 100px 40px rgba(27, 44, 66, 0.3);
}

.modal_cover .modal_content button.close {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 48px;
	height: 48px;
	padding: 0;
	margin: 0;
	position: absolute;
	z-index: 30;
	right: 10px;
	top: 10px;
	border-radius: 50%;
}

.modal_cover .modal_content button.close i {
	font-size: 24px;
}

.modal_cover .modal_content button.close:hover,
.modal_cover .modal_content button.close:focus,
.modal_cover .modal_content button.close:active {
	color: #4e6375;
	background-color: rgba(143, 164, 184, 0.15);
}

.modal_cover .modal_content .modal_head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-item-align: start;
	align-self: flex-start;
	width: 100%;
	height: 68px;
	padding: 0;
}

.modal_cover .modal_content .modal_head .modal_title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	font-size: 18px;
	font-weight: 300;
	color: #4e6375;
	padding: 0 60px 0 15px;
	margin: 0;
}

.modal_cover .modal_content .modal_head .modal_title.flex_0 {
	-webkit-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
}

.modal_cover .modal_content .modal_head.search {
	height: 80px;
}

.modal_cover .modal_content .modal_head .svg_icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	margin: 0 8px 0 20px;
	color: #73879c;
}

.modal_cover .modal_content .modal_head .svg_icon .sport_ico {
	width: 32px;
	height: 32px;
}

.modal_cover .modal_content .modal_head .event_time {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%;
	font-size: 14px;
	line-height: 14px;
}

.modal_cover .modal_content .modal_head .event_time .date,
.modal_cover .modal_content .modal_head .event_time .time,
.modal_cover .modal_content .modal_head .event_time .time_elapsed {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 20px;
	padding: 0 10px;
}

.modal_cover .modal_content .modal_head .event_time .date {
	border-right: 1px solid rgba(143, 164, 184, 0.5);
}

.modal_cover .modal_content .modal_head .event_time .time {
	font-weight: 700;
}

.modal_cover .modal_content .modal_head .event_time .time_elapsed {
	font-size: 16px;
	line-height: 16px;
	height: 100%;
	padding: 0 10px;
}

.modal_cover .modal_content .modal_head .competetors {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	padding: 0 20px;
}

.modal_cover .modal_content .modal_head .competetors .home,
.modal_cover .modal_content .modal_head .competetors .away,
.modal_cover .modal_content .modal_head .competetors .vs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
	color: #556373;
}

.modal_cover .modal_content .modal_head .competetors .vs {
	font-size: 11px;
	font-weight: 400;
	padding: 0 8px;
	opacity: 0.8;
}

.modal_cover .modal_content .modal_head .tournament {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0 20px;
	height: 20px;
	font-size: 14px;
	line-height: 18px;
}

.modal_cover .modal_content .modal_head.live .competetors {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.modal_cover .modal_content .modal_head.live .competetors .vs {
	display: none;
}

.modal_cover .modal_content .modal_head.live .result {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.modal_cover .modal_content .modal_head.live .result .event_part {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 0 8px;
}

.modal_cover .modal_content .modal_head.live .result .event_part .period_name {
	position: absolute;
	z-index: 3;
	top: -12px;
	width: calc(100% - 16px);
	height: 10px;
	font-size: 9px;
	text-align: center;
	text-transform: uppercase;
	opacity: 0.8;
}

.modal_cover .modal_content .modal_head.live .result .event_part .home,
.modal_cover .modal_content .modal_head.live .result .event_part .away {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 14px;
	line-height: 18px;
	font-weight: 400;
}

.modal_cover .modal_content .modal_head.live .result .event_part .home .tennis_ball,
.modal_cover .modal_content .modal_head.live .result .event_part .away .tennis_ball {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 10px;
	background-color: #feb200;
}

.modal_cover .modal_content .modal_head.live .result .event_part.current .home,
.modal_cover .modal_content .modal_head.live .result .event_part.current .away {
	font-weight: 700;
	color: #556373;
}

.modal_cover .modal_content .modal_head.live .result .event_part.total {
	border-right: 1px solid rgba(141, 162, 182, 0.5);
}

.modal_cover .modal_content .modal_head.live .result .event_part.total .home,
.modal_cover .modal_content .modal_head.live .result .event_part.total .away {
	font-weight: 700;
	color: #038c03;
}

.modal_cover .modal_content .modal_head.live .result .event_part.pg .home,
.modal_cover .modal_content .modal_head.live .result .event_part.pg .away {
	font-weight: 700;
	color: #ff5722;
	font-size: 12px;
}

.modal_cover .modal_content .modal_head.ticket_preview {
	height: auto;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.modal_cover .modal_content .modal_head.ticket_preview .top_bar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	z-index: 2;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-item-align: start;
	align-self: flex-start;
	height: 68px;
	width: 100%;
	background-color: #ffffff;
}

.modal_cover .modal_content .modal_head.ticket_preview .ticket_info {
	position: relative;
	z-index: 1;
	width: 100%;
	min-height: 100px;
	background-color: rgba(143, 164, 184, 0.1);
	-webkit-box-shadow: 0px 5px 30px 10px rgba(27, 44, 66, 0.3);
	box-shadow: 0px 5px 30px 10px rgba(27, 44, 66, 0.3);
}

.modal_cover .modal_content .modal_body {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-item-align: stretch;
	align-self: stretch;
	width: 100%;
	max-height: calc(100vh - 180px);
	transform: translateZ(0px);
	overflow-x: hidden;
	overflow-y: auto;
	scrollbar-width: none;
	/* Firefox */
	-ms-overflow-style: none;
	/* IE 10+ */
}

.modal_cover .modal_content .modal_body::-webkit-scrollbar {
	/* WebKit */
	width: 0px;
}

.modal_cover .modal_content .modal_body .ticket_event_list {
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-item-align: stretch;
	align-self: stretch;
	width: 100%;
	max-height: calc(100vh - 180px);
	overflow-x: hidden;
	overflow-y: auto;
	scrollbar-width: none;
	/* Firefox */
	-ms-overflow-style: none;
	/* IE 10+ */
}

.modal_cover .modal_content .modal_body .ticket_event_list::-webkit-scrollbar {
	/* WebKit */
	width: 0px;
}

.modal_cover .modal_content .modal_body .ticket_event_list.right_actions {
	width: calc(100% - 320px);
}

.modal_cover .modal_content .modal_body.small_form {
	padding: 60px 40px 60px 40px;
}

.modal_cover .modal_content .modal_body .bg_image {
	position: absolute;
	z-index: 3;
	top: -50px;
	left: -50px;
	width: 300px;
	height: 300px;
	opacity: 0.5;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
}

.modal_cover .modal_content .modal_body .bg_image_1 {
	position: absolute;
	z-index: 3;
	top: -50px;
	left: -50px;
	width: 260px;
	height: 260px;
	opacity: 0.5;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
}

.modal_cover .modal_content .modal_body .bg_image_2 {
	position: absolute;
	z-index: 3;
	top: -45px;
	left: -40px;
	width: 260px;
	height: 260px;
	opacity: 0.5;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
}

.modal_cover .modal_content .modal_footer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-item-align: end;
	align-self: flex-end;
	width: 100%;
	height: 68px;
	padding: 14px;
}

.modal_cover .modal_content .modal_footer.small {
	height: 48px;
	padding: 6px;
}

.modal_cover .modal_message_title {
	width: 100%;
	height: 32px;
	margin: 0 0 10px 0;
	padding: 0px 10px 0px 10px;
	font-size: 21px;
	font-family: 'Exo', sans-serif;
	line-height: 32px;
	letter-spacing: -0.5px;
	text-transform: uppercase;
	text-align: center;
	color: #657688;
}

.modal_cover p {
	width: 100%;
	margin: 0 0 8px 0;
	padding: 0 16px 0 16px;
	font-size: 14px;
	line-height: 21px;
	letter-spacing: 0px;
	color: #8da2b6;
}

.modal_cover p small {
	font-size: 10px;
	text-transform: uppercase;
	font-weight: 400;
}

.modal_cover .context_icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	height: 200px;
	padding: 20px 0 0 0;
}

.modal_cover .context_icon .modal_icon_64 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 128px;
	height: 128px;
	font-size: 64px;
}

.modal_cover .context_icon .modal_icon_128 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 128px;
	height: 128px;
	font-size: 128px;
}

.modal_cover .context_icon svg.svg_graphic {
	width: 120px;
	height: 120px;
}

.modal_cover .subtitle_wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 32px;
	width: 100%;
}

.modal_cover .subtitle_wrapper .subtitle {
	font-size: 14px;
	line-height: 18px;
	padding: 0 8px;
}

.modal_cover .option_list_item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 46px;
	width: 100%;
	padding: 0 20px;
}

.modal_cover .event_info {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	padding: 10px 20px 0px 20px;
}

.modal_cover .col_border_right {
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: rgba(141, 162, 182, 0.3);
}

.modal_cover .col_border_left {
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: rgba(141, 162, 182, 0.3);
}

.modal_cover .col_border_top {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: rgba(141, 162, 182, 0.3);
}

.modal_cover .col_border_bottom {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: rgba(141, 162, 182, 0.3);
}

.modal_cover .content_start {
	-webkit-box-pack: start !important;
	-ms-flex-pack: start !important;
	justify-content: flex-start !important;
}

.modal_cover .content_end {
	-webkit-box-pack: end !important;
	-ms-flex-pack: end !important;
	justify-content: flex-end !important;
}

.modal_cover .content_center {
	-webkit-box-pack: center !important;
	-ms-flex-pack: center !important;
	justify-content: center !important;
}

.modal_cover .content_separate {
	-webkit-box-pack: justify !important;
	-ms-flex-pack: justify !important;
	justify-content: space-between !important;
}

.modal_cover .direction_row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal !important;
	-webkit-box-direction: normal !important;
	-ms-flex-direction: row !important;
	flex-direction: row !important;
}

.modal_cover .direction_column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical !important;
	-webkit-box-direction: normal !important;
	-ms-flex-direction: column !important;
	flex-direction: column !important;
}

.modal_cover.toggle {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.modal_cover.sm .modal_content {
	width: 280px;
	max-height: 96vh;
}

.modal_cover.sm .modal_content .modal_body input.normal {
	width: 100%;
}

.modal_cover.sm .modal_content .modal_body input.large {
	width: 100%;
}

.modal_cover.sm_360 .modal_content {
	width: 360px;
	max-height: 96vh;
}

.modal_cover.sm_320 .modal_content {
	width: 320px;
	max-height: 96vh;
}

.modal_cover.md .modal_content {
	width: 420px;
	max-height: 96vh;
}

.modal_cover.lg .modal_content {
	width: 680px;
	max-height: 96vh;
}

.modal_cover.xl .modal_content {
	width: 920px;
	max-height: 96vh;
}

.modal_cover.xxl .modal_content {
	width: 1140px;
	max-height: 96vh;
}

@media only screen and (max-width: 1000px) {
	.modal_cover.xxl .modal_content {
		width: 96%;
	}
}

.modal_cover.xxxl .modal_content {
	width: 1400px;
	max-height: 96vh;
}

@media only screen and (max-width: 1000px) {
	.modal_cover.xxxl .modal_content {
		width: 96%;
	}
}

.modal_cover.full_w .modal_content {
	width: 96%;
	max-height: 96vh;
}

.modal_cover.notification .modal_content {
	width: 400px;
	max-height: 250px;
	min-height: 200px;
}

.modal_cover.notification .modal_body.small_form {
	padding: 60px 40px 60px 40px;
}

.modal_cover.green {
	color: #2a4402;
}

.modal_cover.green p {
	color: #2a4402;
}

.modal_cover.green .modal_content {
	color: #2a4402;
	-webkit-box-shadow: 0px 0px 20px 4px rgba(127, 189, 34, 0.8);
	box-shadow: 0px 0px 20px 4px rgba(127, 189, 34, 0.8);
}

.modal_cover.green .modal_content .modal_head {
	color: #2a4402;
	background-color: transparent;
}

.modal_cover.green .modal_content .modal_title {
	color: #2a4402;
}

.modal_cover.green .modal_content .modal_body {
	color: #2a4402;
	background-color: #7fbd22;
	padding: 60px 40px 30px 40px;
}

.modal_cover.green .modal_content .modal_footer {
	color: #2a4402;
	background-color: transparent;
}

.modal_cover.green .modal_content button.close {
	color: rgba(52, 82, 7, 0.6);
}

.modal_cover.green .modal_content button.close:hover,
.modal_cover.green .modal_content button.close:focus,
.modal_cover.green .modal_content button.close:active {
	color: #345207;
	background-color: rgba(69, 103, 18, 0.1);
}

.modal_cover.green .modal_content p {
	color: #2a4402;
}

.modal_cover.green .modal_content button.btn {
	font-weight: 700;
	color: #92de20;
	border-radius: 5px;
	background-color: rgba(69, 103, 18, 0.8);
	border-color: rgba(69, 103, 18, 0);
}

.modal_cover.green .modal_content button.btn.outline {
	color: #2a4402;
	background-color: transparent;
	border-color: rgba(69, 103, 18, 0.8);
	border-width: 2px;
}

.modal_cover.green .modal_content button.btn.round {
	border-radius: 60px;
}

.modal_cover.green .modal_content button.btn:hover,
.modal_cover.green .modal_content button.btn:focus,
.modal_cover.green .modal_content button.btn:active {
	color: #92de20;
	background-color: #345206;
	border-color: rgba(52, 82, 6, 0);
}

.modal_cover.green .modal_content button.btn:hover.outline,
.modal_cover.green .modal_content button.btn:focus.outline,
.modal_cover.green .modal_content button.btn:active.outline {
	font-weight: 700;
	color: #92de20;
	background-color: rgba(69, 103, 18, 0.8);
	border-color: transparent;
	border-width: 2px;
}

.modal_cover.red {
	color: #610b0b;
}

.modal_cover.red p {
	color: #610b0b;
}

.modal_cover.red .modal_content {
	color: #610b0b;
	-webkit-box-shadow: 0px 0px 20px 4px rgba(227, 84, 84, 0.8);
	box-shadow: 0px 0px 20px 4px rgba(227, 84, 84, 0.8);
}

.modal_cover.red .modal_content .modal_head {
	color: #610b0b;
	background-color: transparent;
}

.modal_cover.red .modal_content .modal_title {
	color: #610b0b;
}

.modal_cover.red .modal_content .modal_body {
	color: #610b0b;
	background-color: #ec5e5e;
	padding: 60px 40px 30px 40px;
}

.modal_cover.red .modal_content .modal_footer {
	color: #610b0b;
	background-color: transparent;
}

.modal_cover.red .modal_content button.close {
	color: rgba(114, 19, 19, 0.6);
}

.modal_cover.red .modal_content button.close:hover,
.modal_cover.red .modal_content button.close:focus,
.modal_cover.red .modal_content button.close:active {
	color: #721313;
	background-color: rgba(114, 19, 19, 0.1);
}

.modal_cover.red .modal_content p {
	color: #610b0b;
}

.modal_cover.red .modal_content button.btn {
	font-weight: 700;
	color: #fc6767;
	border-radius: 5px;
	background-color: rgba(114, 19, 19, 0.7);
	border-color: rgba(114, 19, 19, 0);
}

.modal_cover.red .modal_content button.btn.outline {
	color: #721313;
	background-color: transparent;
	border-color: rgba(114, 19, 19, 0.7);
	border-width: 2px;
}

.modal_cover.red .modal_content button.btn.round {
	border-radius: 60px;
}

.modal_cover.red .modal_content button.btn:hover,
.modal_cover.red .modal_content button.btn:focus,
.modal_cover.red .modal_content button.btn:active {
	color: #fc6767;
	background-color: #721313;
	border-color: rgba(66, 4, 4, 0);
}

.modal_cover.red .modal_content button.btn:hover.outline,
.modal_cover.red .modal_content button.btn:focus.outline,
.modal_cover.red .modal_content button.btn:active.outline {
	font-weight: 700;
	color: #fc6767;
	background-color: rgba(66, 4, 4, 0.8);
	border-color: transparent;
	border-width: 2px;
}

.modal_cover.yellow {
	color: #614400;
}

.modal_cover.yellow p {
	color: #614400;
}

.modal_cover.yellow .modal_content {
	color: #614400;
	-webkit-box-shadow: 0px 0px 20px 4px rgba(254, 178, 0, 0.8);
	box-shadow: 0px 0px 20px 4px rgba(254, 178, 0, 0.8);
}

.modal_cover.yellow .modal_content .modal_head {
	color: #614400;
	background-color: transparent;
}

.modal_cover.yellow .modal_content .modal_title {
	color: #614400;
}

.modal_cover.yellow .modal_content .modal_body {
	color: #614400;
	background-color: #feb200;
	padding: 60px 40px 30px 40px;
}

.modal_cover.yellow .modal_content .modal_footer {
	color: #614400;
	background-color: transparent;
}

.modal_cover.yellow .modal_content button.close {
	color: rgba(97, 68, 0, 0.6);
}

.modal_cover.yellow .modal_content button.close:hover,
.modal_cover.yellow .modal_content button.close:focus,
.modal_cover.yellow .modal_content button.close:active {
	color: #614400;
	background-color: rgba(97, 68, 0, 0.1);
}

.modal_cover.yellow .modal_content p {
	color: #614400;
}

.modal_cover.yellow .modal_content button.btn {
	font-weight: 700;
	color: #ffc234;
	border-radius: 5px;
	background-color: rgba(97, 68, 0, 0.7);
	border-color: rgba(97, 68, 0, 0);
}

.modal_cover.yellow .modal_content button.btn.outline {
	color: #614400;
	background-color: transparent;
	border-color: rgba(97, 68, 0, 0.7);
	border-width: 2px;
}

.modal_cover.yellow .modal_content button.btn.round {
	border-radius: 60px;
}

.modal_cover.yellow .modal_content button.btn:hover,
.modal_cover.yellow .modal_content button.btn:focus,
.modal_cover.yellow .modal_content button.btn:active {
	color: #ffc234;
	background-color: #614400;
	border-color: rgba(56, 39, 1, 0);
}

.modal_cover.yellow .modal_content button.btn:hover.outline,
.modal_cover.yellow .modal_content button.btn:focus.outline,
.modal_cover.yellow .modal_content button.btn:active.outline {
	font-weight: 700;
	color: #ffc234;
	background-color: rgba(56, 39, 1, 0.8);
	border-color: transparent;
	border-width: 2px;
}

.modal_cover.blue {
	color: #00304c;
}

.modal_cover.blue p {
	color: #00304c;
}

.modal_cover.blue .modal_content {
	color: #00304c;
	-webkit-box-shadow: 0px 0px 20px 4px rgba(0, 160, 253, 0.6);
	box-shadow: 0px 0px 20px 4px rgba(0, 160, 253, 0.6);
}

.modal_cover.blue .modal_content .modal_head {
	color: #00304c;
	background-color: transparent;
}

.modal_cover.blue .modal_content .modal_title {
	color: #00304c;
}

.modal_cover.blue .modal_content .modal_body {
	color: #00304c;
	background-color: #00a0fd;
	padding: 60px 40px 30px 40px;
}

.modal_cover.blue .modal_content .modal_footer {
	color: #00304c;
	background-color: transparent;
}

.modal_cover.blue .modal_content button.close {
	color: rgba(0, 48, 76, 0.6);
}

.modal_cover.blue .modal_content button.close:hover,
.modal_cover.blue .modal_content button.close:focus,
.modal_cover.blue .modal_content button.close:active {
	color: #004f7e;
	background-color: rgba(0, 79, 126, 0.1);
}

.modal_cover.blue .modal_content p {
	color: #00304c;
}

.modal_cover.blue .modal_content button.btn {
	font-weight: 700;
	color: #37b6ff;
	border-radius: 5px;
	background-color: #003f63;
	border-color: rgba(0, 63, 99, 0);
}

.modal_cover.blue .modal_content button.btn.outline {
	color: #00304c;
	background-color: transparent;
	border-color: #003f63;
	border-width: 2px;
}

.modal_cover.blue .modal_content button.btn.round {
	border-radius: 60px;
}

.modal_cover.blue .modal_content button.btn:hover,
.modal_cover.blue .modal_content button.btn:focus,
.modal_cover.blue .modal_content button.btn:active {
	color: #37b6ff;
	background-color: #00253d;
	border-color: rgba(0, 48, 77, 0);
}

.modal_cover.blue .modal_content button.btn:hover.outline,
.modal_cover.blue .modal_content button.btn:focus.outline,
.modal_cover.blue .modal_content button.btn:active.outline {
	font-weight: 700;
	color: #37b6ff;
	background-color: rgba(0, 48, 77, 0.8);
	border-color: transparent;
	border-width: 2px;
}

.custom_row {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 0 25px 0 25px;
	margin: 20px 0 20px 0;
}

.ticket_info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-item-align: start;
	align-self: flex-start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.ticket_info .info_row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-item-align: start;
	align-self: flex-start;
	width: 100%;
	padding: 15px 20px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: rgba(141, 162, 182, 0.3);
}

.ticket_info .info_row:last-child {
	border-bottom-width: 0;
}

.ticket_info .info_item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-ms-flex-preferred-size: 200px;
	flex-basis: 200px;
	height: 36px;
	margin-right: 20px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: rgba(141, 162, 182, 0.3);
}

.ticket_info .info_item:last-child {
	border-right-width: 0;
	margin-right: 0px;
}

.ticket_info .info_item label {
	height: 12px;
	width: 100%;
	font-size: 10px;
	text-transform: uppercase;
}

.ticket_info .info_item .value {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	height: 20px;
	width: 100%;
	font-size: 15px;
	line-height: 16px;
	font-weight: 700;
	color: #556373;
}

.ticket_info .info_item .value .currency {
	padding-left: 5px;
	font-size: 90%;
	font-weight: 300;
}

.status_bar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: 52px;
	color: #fff;
}

.status_bar .system_info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	height: 52px;
	padding: 0 0 0 20px;
}

.status_bar .system_info span {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 20px;
	padding: 0 8px;
	font-size: 11px;
	text-transform: uppercase;
}

.status_bar .system_info span.label {
	font-weight: 400;
	padding: 0;
}

.status_bar .system_info span.info {
	font-weight: 700;
	border-right: 1px solid rgba(255, 255, 255, 0.4);
}

.status_bar .title_wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.status_bar .title_wrapper .status_title {
	padding: 0 20px;
	font-size: 21px;
	font-weight: 700;
	line-height: 21px;
	text-transform: uppercase;
	white-space: nowrap;
}

.status_bar .title_wrapper .status_info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	height: 21px;
	padding: 0;
	margin: 0;
	font-size: 14px;
	line-height: 21px;
	color: #fff;
}

.status_bar .ticket_list_toggle_icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	font-size: 24px;
	color: rgba(255, 255, 255, 0.6);
	cursor: pointer;
	-webkit-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}

.status_bar .ticket_list_toggle_icon:hover,
.status_bar .ticket_list_toggle_icon:focus,
.status_bar .ticket_list_toggle_icon:active {
	color: #fff;
}

.ticket_list {
	position: absolute;
	z-index: 10;
	right: -600px;
	top: 0;
	width: 600px;
	height: 100%;
	padding: 0;
	margin: 0;
	overflow-x: hidden;
	overflow-y: auto;
	background-color: #ffffff;
	-webkit-box-shadow: 0px 5px 30px 10px rgba(27, 44, 66, 0);
	box-shadow: 0px 5px 30px 10px rgba(27, 44, 66, 0);
	-webkit-transition: right 0.2s ease-in-out;
	transition: right 0.2s ease-in-out;
	scrollbar-width: none;
	/* Firefox */
	-ms-overflow-style: none;
	/* IE 10+ */
}

.ticket_list::-webkit-scrollbar {
	/* WebKit */
	width: 0px;
}

.ticket_list.toggle {
	right: 0;
	-webkit-box-shadow: 0px 5px 30px 10px rgba(27, 44, 66, 0.3);
	box-shadow: 0px 5px 30px 10px rgba(27, 44, 66, 0.3);
}

.action_sidebar {
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-item-align: stretch;
	align-self: stretch;
	width: 320px;
	max-height: calc(100vh - 180px);
	background-color: rgba(143, 164, 184, 0.1);
	border-left: 1px solid rgba(143, 164, 184, 0.2);
}

.action_sidebar .component {
	padding: 20px;
}

.action_sidebar .component.warning {
	color: #c41821;
	background-color: rgba(227, 84, 84, 0.2);
	border-top: 1px solid rgba(227, 84, 84, 0.2);
	border-bottom: 1px solid rgba(227, 84, 84, 0.2);
}

.action_sidebar .bookmaker_comment {
	width: 100%;
}

/*   ----    UTILITY    ----   */
.bar_cond {
	font-family: 'Barlow Condensed', sans-serif !important;
}

.roboto_cond {
	font-family: 'Roboto Condensed', sans-serif !important;
}

.open_sans {
	font-family: 'Open Sans', sans-serif !important;
}

.exo {
	font-family: 'Exo', sans-serif !important;
}

.text_center {
	text-align: center !important;
}

.uppercase {
	text-transform: uppercase !important;
}

.text_linethrough {
	text-decoration: line-through !important;
}

.pagebuilder_placeholder {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	height: 200%;
	color: rgba(115, 135, 156, 0.8);
	font-size: 24px;
	font-weight: 300;
}

.content_placeholder {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: rgba(115, 135, 156, 0.8);
	font-size: 24px;
	font-weight: 300;
}

.placeholder {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 60px 20px;
	font-size: 21px;
	line-height: 24px;
	font-weight: 300;
	color: #8fa4b8;
}

button {
	border: none;
	outline: none;
	background: transparent;
	cursor: pointer;
}

.form_subtitle {
	width: 100%;
	padding: 25px 3px 5px 3px;
	text-align: right;
	border-bottom: 1px solid rgba(115, 135, 156, 0.2);
}

.justify_center {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.align_center {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.flex_column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.flex_grow_1 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.flex_direction_row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal !important;
	-webkit-box-direction: normal !important;
	-ms-flex-direction: row !important;
	flex-direction: row !important;
}

.flex_direction_col {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical !important;
	-webkit-box-direction: normal !important;
	-ms-flex-direction: column !important;
	flex-direction: column !important;
}

.flex_direction_rowrev {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal !important;
	-webkit-box-direction: reverse !important;
	-ms-flex-direction: row-reverse !important;
	flex-direction: row-reverse !important;
}

.flex_direction_colrev {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical !important;
	-webkit-box-direction: reverse !important;
	-ms-flex-direction: column-reverse !important;
	flex-direction: column-reverse !important;
}

.flex_justify_start {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.flex_justify_end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.flex_justify_space_around {
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

.flex_justify_space_between {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.left_it {
	margin-right: auto !important;
}

.right_it {
	margin-left: auto !important;
}

/* animations */
@-webkit-keyframes flash {
	from,
	50%,
	to {
		opacity: 1;
	}
	25%,
	75% {
		opacity: 0;
	}
}
@keyframes flash {
	from,
	50%,
	to {
		opacity: 1;
	}
	25%,
	75% {
		opacity: 0;
	}
}

.flash {
	-webkit-animation: flash 3s infinite;
	animation: flash 3s infinite;
}

@-webkit-keyframes flash_bg_red {
	from,
	50%,
	to {
		background-color: rgba(202, 5, 5, 0.1);
	}
	25%,
	75% {
		background-color: rgba(202, 5, 5, 0);
	}
}

@keyframes flash_bg_red {
	from,
	50%,
	to {
		background-color: rgba(202, 5, 5, 0.1);
	}
	25%,
	75% {
		background-color: rgba(202, 5, 5, 0);
	}
}

.flash_bg_red {
	-webkit-animation: flash_bg_red 3s infinite;
	animation: flash_bg_red 3s infinite;
}

@-webkit-keyframes flash_bg_green {
	from,
	50%,
	to {
		color: #29aa02;
		background-color: rgba(41, 170, 2, 0.1);
	}
	25%,
	75% {
		background-color: rgba(41, 170, 2, 0);
	}
}

@keyframes flash_bg_green {
	from,
	50%,
	to {
		color: #29aa02;
		background-color: rgba(41, 170, 2, 0.1);
	}
	25%,
	75% {
		background-color: rgba(41, 170, 2, 0);
	}
}

.flash_bg_green {
	-webkit-animation: flash_bg_green 3s infinite;
	animation: flash_bg_green 3s infinite;
}

.text_left {
	text-align: left !important;
}

.text_right {
	text-align: right !important;
}

.text_center {
	text-align: center !important;
}

.text_nowrap {
	white-space: nowrap !important;
}

.red_text {
	color: #c41821 !important;
}

.red_text_hover:hover {
	color: #c41821 !important;
}

.red_bg {
	background-color: #c41821 !important;
}

.red_bg_hover:hover {
	background-color: #c41821 !important;
}

.red_bgish {
	background-color: rgba(196, 24, 33, 0.2) !important;
}

.red_bgish_hover:hover {
	background-color: rgba(196, 24, 33, 0.2) !important;
}

.redish_text {
	color: #e35454 !important;
}

.redish_text_hover:hover {
	color: #e35454 !important;
}

.redish_bg {
	background-color: #e35454 !important;
}

.redish_bg_hover:hover {
	background-color: #e35454 !important;
}

.redish_bgish {
	background-color: rgba(227, 84, 84, 0.2) !important;
}

.redish_bgish_hover:hover {
	background-color: rgba(227, 84, 84, 0.2) !important;
}

.orange_text {
	color: #fd9800 !important;
}

.orange_text_hover:hover {
	color: #fd9800 !important;
}

.orange_bg {
	background-color: #fd9800 !important;
}

.orange_bg_hover:hover {
	background-color: #fd9800 !important;
}

.orange_bgish {
	background-color: rgba(253, 152, 0, 0.2) !important;
}

.orange_bgish_hover:hover {
	background-color: rgba(253, 152, 0, 0.2) !important;
}

.blue_text {
	color: #19a6ea !important;
}

.blue_text_hover:hover {
	color: #19a6ea !important;
}

.blue_bg {
	background-color: #19a6ea !important;
}

.blue_bg_hover:hover {
	background-color: #19a6ea !important;
}

.blue_bgish {
	background-color: rgba(25, 166, 234, 0.2) !important;
}

.blue_bgish_hover:hover {
	background-color: rgba(25, 166, 234, 0.2) !important;
}

.blueish_text {
	color: #3fbee6 !important;
}

.blueish_text_hover:hover {
	color: #3fbee6 !important;
}

.blueish_bg {
	background-color: #3fbee6 !important;
}

.blueish_bg_hover:hover {
	background-color: #3fbee6 !important;
}

.blueish_bgish {
	background-color: rgba(63, 190, 230, 0.2) !important;
}

.blueish_bgish_hover:hover {
	background-color: rgba(63, 190, 230, 0.2) !important;
}

.green_text {
	color: #7fbd22 !important;
}

.green_text_hover:hover {
	color: #7fbd22 !important;
}

.green_bg {
	background-color: #7fbd22 !important;
}

.green_bg_hover:hover {
	background-color: #7fbd22 !important;
}

.green_bgish {
	background-color: rgba(127, 189, 34, 0.2) !important;
}

.green_bgish_hover:hover {
	background-color: rgba(127, 189, 34, 0.2) !important;
}

.mb_green_text {
	color: #038c03 !important;
}

.mb_green_text_hover:hover {
	color: #038c03 !important;
}

.mb_green_bg {
	background-color: #038c03 !important;
}

.mb_green_bg_hover:hover {
	background-color: #038c03 !important;
}

.mb_green_bgish {
	background-color: rgba(3, 140, 3, 0.2) !important;
}

.mb_green_bgish_hover:hover {
	background-color: rgba(3, 140, 3, 0.2) !important;
}

.gray_dark_text {
	color: #657688 !important;
}

.gray_dark_text_hover:hover {
	color: #657688 !important;
}

.gray_dark_bg {
	background-color: #657688 !important;
}

.gray_dark_bg_hover:hover {
	background-color: #657688 !important;
}

.gray_dark_bgish {
	background-color: rgba(101, 118, 136, 0.2) !important;
}

.gray_dark_bgish_hover:hover {
	background-color: rgba(101, 118, 136, 0.2) !important;
}

.gray_darken_text {
	color: #556373 !important;
}

.gray_darken_text_hover:hover {
	color: #556373 !important;
}

.gray_darken_bg {
	background-color: #556373 !important;
}

.gray_darken_bg_hover:hover {
	background-color: #556373 !important;
}

.gray_darken_bgish {
	background-color: rgba(85, 99, 115, 0.2) !important;
}

.gray_darken_bgish_hover:hover {
	background-color: rgba(85, 99, 115, 0.2) !important;
}

.accent_text {
	color: #ff5722 !important;
}

.accent_text_hover:hover {
	color: #ff5722 !important;
	cursor: pointer;
}

.accent_bg {
	background-color: #ff5722 !important;
}

.accent_bg_hover:hover {
	background-color: #ff5722 !important;
	cursor: pointer;
}

.accent_bgish {
	background-color: rgba(255, 87, 34, 0.2) !important;
}

.accent_bgish_hover:hover {
	background-color: rgba(255, 87, 34, 0.2) !important;
	cursor: pointer;
}

.col_border_right {
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: rgba(141, 162, 182, 0.3);
}

.col_border_left {
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: rgba(141, 162, 182, 0.3);
}

.col_border_top {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: rgba(141, 162, 182, 0.3);
}

.col_border_bottom {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: rgba(141, 162, 182, 0.3);
}

.font_200 {
	font-weight: 200 !important;
}

.font_300 {
	font-weight: 300 !important;
}

.font_400 {
	font-weight: 400 !important;
}

.font_500 {
	font-weight: 500 !important;
}

.font_100 {
	font-weight: 100 !important;
}

.font_600 {
	font-weight: 600 !important;
}

.font_700 {
	font-weight: 700 !important;
}

.font_800 {
	font-weight: 800 !important;
}

.font_900 {
	font-weight: 900 !important;
}

.font_10px {
	font-size: 10px !important;
}

.font_11px {
	font-size: 11px !important;
}

.font_12px {
	font-size: 12px !important;
}

.font_13px {
	font-size: 13px !important;
}

.font_14px {
	font-size: 14px !important;
}

.font_15px {
	font-size: 15px !important;
}

.font_16px {
	font-size: 16px !important;
}

.font_17px {
	font-size: 17px !important;
}

.font_18px {
	font-size: 18px !important;
}

.font_19px {
	font-size: 19px !important;
}

.font_20px {
	font-size: 20px !important;
}

.font_21px {
	font-size: 21px !important;
}

.font_22px {
	font-size: 22px !important;
}

.font_23px {
	font-size: 23px !important;
}

.font_24px {
	font-size: 24px !important;
}

.font_32px {
	font-size: 32px !important;
}

.font_34px {
	font-size: 34px !important;
}

.font_36px {
	font-size: 36px !important;
}

.font_40px {
	font-size: 40px !important;
}

.font_42px {
	font-size: 42px !important;
}

.svg_icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 24px;
	height: 24px;
}

.z_0 {
	z-index: 0 !important;
}

.z_1 {
	z-index: 1 !important;
}

.z_2 {
	z-index: 2 !important;
}

.z_3 {
	z-index: 3 !important;
}

.z_4 {
	z-index: 4 !important;
}

.z_5 {
	z-index: 5 !important;
}

.z_6 {
	z-index: 6 !important;
}

.z_7 {
	z-index: 7 !important;
}

.z_8 {
	z-index: 8 !important;
}

.z_9 {
	z-index: 9 !important;
}

.z_10 {
	z-index: 10 !important;
}

.z_11 {
	z-index: 11 !important;
}

.z_12 {
	z-index: 12 !important;
}

.z_13 {
	z-index: 13 !important;
}

.z_14 {
	z-index: 14 !important;
}

.z_15 {
	z-index: 15 !important;
}

.z_16 {
	z-index: 16 !important;
}

.z_17 {
	z-index: 17 !important;
}

.z_18 {
	z-index: 18 !important;
}

.z_19 {
	z-index: 19 !important;
}

.z_20 {
	z-index: 20 !important;
}

.z_21 {
	z-index: 21 !important;
}

.z_22 {
	z-index: 22 !important;
}

.z_23 {
	z-index: 23 !important;
}

.z_24 {
	z-index: 24 !important;
}

.z_25 {
	z-index: 25 !important;
}

.z_26 {
	z-index: 26 !important;
}

.z_27 {
	z-index: 27 !important;
}

.z_28 {
	z-index: 28 !important;
}

.z_29 {
	z-index: 29 !important;
}

.z_30 {
	z-index: 30 !important;
}

.padding_left_0 {
	padding-left: 0px !important;
}

.padding_right_0 {
	padding-right: 0px !important;
}

.padding_top_0 {
	padding-top: 0px !important;
}

.padding_bottom_0 {
	padding-bottom: 0px !important;
}

.padding_0 {
	padding: 0px !important;
}

.margin_left_0 {
	margin-left: 0px !important;
}

.margin_right_0 {
	margin-right: 0px !important;
}

.margin_top_0 {
	margin-top: 0px !important;
}

.margin_bottom_0 {
	margin-bottom: 0px !important;
}

.margin_0 {
	margin: 0px !important;
}

.padding_left_5 {
	padding-left: 5px !important;
}

.padding_right_5 {
	padding-right: 5px !important;
}

.padding_top_5 {
	padding-top: 5px !important;
}

.padding_bottom_5 {
	padding-bottom: 5px !important;
}

.padding_5 {
	padding: 5px !important;
}

.margin_left_5 {
	margin-left: 5px !important;
}

.margin_right_5 {
	margin-right: 5px !important;
}

.margin_top_5 {
	margin-top: 5px !important;
}

.margin_bottom_5 {
	margin-bottom: 5px !important;
}

.margin_5 {
	margin: 5px !important;
}

.padding_left_10 {
	padding-left: 10px !important;
}

.padding_right_10 {
	padding-right: 10px !important;
}

.padding_top_10 {
	padding-top: 10px !important;
}

.padding_bottom_10 {
	padding-bottom: 10px !important;
}

.padding_10 {
	padding: 10px !important;
}

.margin_left_10 {
	margin-left: 10px !important;
}

.margin_right_10 {
	margin-right: 10px !important;
}

.margin_top_10 {
	margin-top: 10px !important;
}

.margin_bottom_10 {
	margin-bottom: 10px !important;
}

.margin_10 {
	margin: 10px !important;
}

.padding_left_15 {
	padding-left: 15px !important;
}

.padding_right_15 {
	padding-right: 15px !important;
}

.padding_top_15 {
	padding-top: 15px !important;
}

.padding_bottom_15 {
	padding-bottom: 15px !important;
}

.padding_15 {
	padding: 15px !important;
}

.margin_left_15 {
	margin-left: 15px !important;
}

.margin_right_15 {
	margin-right: 15px !important;
}

.margin_top_15 {
	margin-top: 15px !important;
}

.margin_bottom_15 {
	margin-bottom: 15px !important;
}

.margin_15 {
	margin: 15px !important;
}

.padding_left_20 {
	padding-left: 20px !important;
}

.padding_right_20 {
	padding-right: 20px !important;
}

.padding_top_20 {
	padding-top: 20px !important;
}

.padding_bottom_20 {
	padding-bottom: 20px !important;
}

.padding_20 {
	padding: 20px !important;
}

.margin_left_20 {
	margin-left: 20px !important;
}

.margin_right_20 {
	margin-right: 20px !important;
}

.margin_top_20 {
	margin-top: 20px !important;
}

.margin_bottom_20 {
	margin-bottom: 20px !important;
}

.margin_20 {
	margin: 20px !important;
}

.padding_left_25 {
	padding-left: 25px !important;
}

.padding_right_25 {
	padding-right: 25px !important;
}

.padding_top_25 {
	padding-top: 25px !important;
}

.padding_bottom_25 {
	padding-bottom: 25px !important;
}

.padding_25 {
	padding: 25px !important;
}

.margin_left_25 {
	margin-left: 25px !important;
}

.margin_right_25 {
	margin-right: 25px !important;
}

.margin_top_25 {
	margin-top: 25px !important;
}

.margin_bottom_25 {
	margin-bottom: 25px !important;
}

.margin_25 {
	margin: 25px !important;
}

.padding_left_30 {
	padding-left: 30px !important;
}

.padding_right_30 {
	padding-right: 30px !important;
}

.padding_top_30 {
	padding-top: 30px !important;
}

.padding_bottom_30 {
	padding-bottom: 30px !important;
}

.padding_30 {
	padding: 30px !important;
}

.margin_left_30 {
	margin-left: 30px !important;
}

.margin_right_30 {
	margin-right: 30px !important;
}

.margin_top_30 {
	margin-top: 30px !important;
}

.margin_bottom_30 {
	margin-bottom: 30px !important;
}

.margin_30 {
	margin: 30px !important;
}

.padding_left_35 {
	padding-left: 35px !important;
}

.padding_right_35 {
	padding-right: 35px !important;
}

.padding_top_35 {
	padding-top: 35px !important;
}

.padding_bottom_35 {
	padding-bottom: 35px !important;
}

.padding_35 {
	padding: 35px !important;
}

.margin_left_35 {
	margin-left: 35px !important;
}

.margin_right_35 {
	margin-right: 35px !important;
}

.margin_top_35 {
	margin-top: 35px !important;
}

.margin_bottom_35 {
	margin-bottom: 35px !important;
}

.margin_35 {
	margin: 35px !important;
}

.padding_left_40 {
	padding-left: 40px !important;
}

.padding_right_40 {
	padding-right: 40px !important;
}

.padding_top_40 {
	padding-top: 40px !important;
}

.padding_bottom_40 {
	padding-bottom: 40px !important;
}

.padding_40 {
	padding: 40px !important;
}

.margin_left_40 {
	margin-left: 40px !important;
}

.margin_right_40 {
	margin-right: 40px !important;
}

.margin_top_40 {
	margin-top: 40px !important;
}

.margin_bottom_40 {
	margin-bottom: 40px !important;
}

.margin_40 {
	margin: 40px !important;
}

.padding_left_45 {
	padding-left: 45px !important;
}

.padding_right_45 {
	padding-right: 45px !important;
}

.padding_top_45 {
	padding-top: 45px !important;
}

.padding_bottom_45 {
	padding-bottom: 45px !important;
}

.padding_45 {
	padding: 45px !important;
}

.margin_left_45 {
	margin-left: 45px !important;
}

.margin_right_45 {
	margin-right: 45px !important;
}

.margin_top_45 {
	margin-top: 45px !important;
}

.margin_bottom_45 {
	margin-bottom: 45px !important;
}

.margin_45 {
	margin: 45px !important;
}

.padding_left_50 {
	padding-left: 50px !important;
}

.padding_right_50 {
	padding-right: 50px !important;
}

.padding_top_50 {
	padding-top: 50px !important;
}

.padding_bottom_50 {
	padding-bottom: 50px !important;
}

.padding_50 {
	padding: 50px !important;
}

.margin_left_50 {
	margin-left: 50px !important;
}

.margin_right_50 {
	margin-right: 50px !important;
}

.margin_top_50 {
	margin-top: 50px !important;
}

.margin_bottom_50 {
	margin-bottom: 50px !important;
}

.margin_50 {
	margin: 50px !important;
}

.padding_left_55 {
	padding-left: 55px !important;
}

.padding_right_55 {
	padding-right: 55px !important;
}

.padding_top_55 {
	padding-top: 55px !important;
}

.padding_bottom_55 {
	padding-bottom: 55px !important;
}

.padding_55 {
	padding: 55px !important;
}

.margin_left_55 {
	margin-left: 55px !important;
}

.margin_right_55 {
	margin-right: 55px !important;
}

.margin_top_55 {
	margin-top: 55px !important;
}

.margin_bottom_55 {
	margin-bottom: 55px !important;
}

.margin_55 {
	margin: 55px !important;
}

.padding_left_60 {
	padding-left: 60px !important;
}

.padding_right_60 {
	padding-right: 60px !important;
}

.padding_top_60 {
	padding-top: 60px !important;
}

.padding_bottom_60 {
	padding-bottom: 60px !important;
}

.padding_60 {
	padding: 60px !important;
}

.margin_left_60 {
	margin-left: 60px !important;
}

.margin_right_60 {
	margin-right: 60px !important;
}

.margin_top_60 {
	margin-top: 60px !important;
}

.margin_bottom_60 {
	margin-bottom: 60px !important;
}

.margin_60 {
	margin: 60px !important;
}

.padding_left_65 {
	padding-left: 65px !important;
}

.padding_right_65 {
	padding-right: 65px !important;
}

.padding_top_65 {
	padding-top: 65px !important;
}

.padding_bottom_65 {
	padding-bottom: 65px !important;
}

.padding_65 {
	padding: 65px !important;
}

.margin_left_65 {
	margin-left: 65px !important;
}

.margin_right_65 {
	margin-right: 65px !important;
}

.margin_top_65 {
	margin-top: 65px !important;
}

.margin_bottom_65 {
	margin-bottom: 65px !important;
}

.margin_65 {
	margin: 65px !important;
}

.padding_left_70 {
	padding-left: 70px !important;
}

.padding_right_70 {
	padding-right: 70px !important;
}

.padding_top_70 {
	padding-top: 70px !important;
}

.padding_bottom_70 {
	padding-bottom: 70px !important;
}

.padding_70 {
	padding: 70px !important;
}

.margin_left_70 {
	margin-left: 70px !important;
}

.margin_right_70 {
	margin-right: 70px !important;
}

.margin_top_70 {
	margin-top: 70px !important;
}

.margin_bottom_70 {
	margin-bottom: 70px !important;
}

.margin_70 {
	margin: 70px !important;
}

.padding_left_75 {
	padding-left: 75px !important;
}

.padding_right_75 {
	padding-right: 75px !important;
}

.padding_top_75 {
	padding-top: 75px !important;
}

.padding_bottom_75 {
	padding-bottom: 75px !important;
}

.padding_75 {
	padding: 75px !important;
}

.margin_left_75 {
	margin-left: 75px !important;
}

.margin_right_75 {
	margin-right: 75px !important;
}

.margin_top_75 {
	margin-top: 75px !important;
}

.margin_bottom_75 {
	margin-bottom: 75px !important;
}

.margin_75 {
	margin: 75px !important;
}

.padding_left_80 {
	padding-left: 80px !important;
}

.padding_right_80 {
	padding-right: 80px !important;
}

.padding_top_80 {
	padding-top: 80px !important;
}

.padding_bottom_80 {
	padding-bottom: 80px !important;
}

.padding_80 {
	padding: 80px !important;
}

.margin_left_80 {
	margin-left: 80px !important;
}

.margin_right_80 {
	margin-right: 80px !important;
}

.margin_top_80 {
	margin-top: 80px !important;
}

.margin_bottom_80 {
	margin-bottom: 80px !important;
}

.margin_80 {
	margin: 80px !important;
}

.padding_left_85 {
	padding-left: 85px !important;
}

.padding_right_85 {
	padding-right: 85px !important;
}

.padding_top_85 {
	padding-top: 85px !important;
}

.padding_bottom_85 {
	padding-bottom: 85px !important;
}

.padding_85 {
	padding: 85px !important;
}

.margin_left_85 {
	margin-left: 85px !important;
}

.margin_right_85 {
	margin-right: 85px !important;
}

.margin_top_85 {
	margin-top: 85px !important;
}

.margin_bottom_85 {
	margin-bottom: 85px !important;
}

.margin_85 {
	margin: 85px !important;
}

.padding_left_90 {
	padding-left: 90px !important;
}

.padding_right_90 {
	padding-right: 90px !important;
}

.padding_top_90 {
	padding-top: 90px !important;
}

.padding_bottom_90 {
	padding-bottom: 90px !important;
}

.padding_90 {
	padding: 90px !important;
}

.margin_left_90 {
	margin-left: 90px !important;
}

.margin_right_90 {
	margin-right: 90px !important;
}

.margin_top_90 {
	margin-top: 90px !important;
}

.margin_bottom_90 {
	margin-bottom: 90px !important;
}

.margin_90 {
	margin: 90px !important;
}

.margin_left_auto {
	margin-left: auto !important;
}

.margin_right_auto {
	margin-right: auto !important;
}

.margin_top_auto {
	margin-top: auto !important;
}

.margin_bottom_auto {
	margin-bottom: auto !important;
}

.left_0 {
	left: 0;
}

.right_0 {
	right: 0;
}

.top_0 {
	top: 0;
}

.bottom_0 {
	bottom: 0;
}

.disabled {
	opacity: 0.4 !important;
	-webkit-user-select: none !important;
	-moz-user-select: none !important;
	-ms-user-select: none !important;
	user-select: none !important;
	pointer-events: none !important;
}

.col_1 {
	width: 8.333333%;
}

.col_2 {
	width: 16.666667%;
}

.col_3 {
	width: 25%;
}

.col_4 {
	width: 33.333333%;
}

.col_5 {
	width: 41.666667%;
}

.col_6 {
	width: 50%;
}

.col_7 {
	width: 58.333333%;
}

.col_8 {
	width: 66.666667%;
}

.col_9 {
	width: 75%;
}

.col_10 {
	width: 83.333333%;
}

.col_11 {
	width: 91.666667%;
}

.col_12 {
	width: 100%;
}

.gray_bg {
	background-color: rgba(143, 164, 184, 0.1);
}

.ticket_info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-item-align: start;
	align-self: flex-start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.ticket_info .info_row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-item-align: start;
	align-self: flex-start;
	width: 100%;
	padding: 15px 20px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: rgba(141, 162, 182, 0.3);
}

.ticket_info .info_row:last-child {
	border-bottom-width: 0;
}

.ticket_info .info_item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-ms-flex-preferred-size: 200px;
	flex-basis: 200px;
	height: 36px;
	margin-right: 20px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: rgba(141, 162, 182, 0.3);
}

.ticket_info .info_item:last-child {
	border-right-width: 0;
	margin-right: 0px;
}

.ticket_info .info_item label {
	height: 12px;
	width: 100%;
	font-size: 10px;
	text-transform: uppercase;
}

.ticket_info .info_item .value {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	height: 20px;
	width: 100%;
	font-size: 15px;
	line-height: 16px;
	font-weight: 700;
	color: #556373;
}

.ticket_info .info_item .value .currency {
	padding-left: 5px;
	font-size: 90%;
	font-weight: 300;
}

.status_bar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: 52px;
	color: #fff;
}

.status_bar .system_info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	height: 52px;
	padding: 0 0 0 20px;
}

.status_bar .system_info span {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 20px;
	padding: 0 8px;
	font-size: 11px;
	text-transform: uppercase;
}

.status_bar .system_info span.label {
	font-weight: 400;
	padding: 0;
}

.status_bar .system_info span.info {
	font-weight: 700;
	border-right: 1px solid rgba(255, 255, 255, 0.4);
}

.status_bar .title_wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.status_bar .title_wrapper .status_title {
	padding: 0 20px;
	font-size: 21px;
	font-weight: 700;
	line-height: 21px;
	text-transform: uppercase;
	white-space: nowrap;
}

.status_bar .title_wrapper .status_info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	height: 21px;
	padding: 0;
	margin: 0;
	font-size: 14px;
	line-height: 21px;
	color: #fff;
}

.status_bar .ticket_list_toggle_icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	font-size: 24px;
	color: rgba(255, 255, 255, 0.6);
	cursor: pointer;
	-webkit-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}

.status_bar .ticket_list_toggle_icon:hover,
.status_bar .ticket_list_toggle_icon:focus,
.status_bar .ticket_list_toggle_icon:active {
	color: #fff;
}

.ticket_list {
	position: absolute;
	z-index: 10;
	right: -600px;
	top: 0;
	width: 600px;
	height: 100%;
	padding: 0;
	margin: 0;
	overflow-x: hidden;
	overflow-y: auto;
	background-color: #ffffff;
	-webkit-box-shadow: 0px 5px 30px 10px rgba(27, 44, 66, 0);
	box-shadow: 0px 5px 30px 10px rgba(27, 44, 66, 0);
	-webkit-transition: right 0.2s ease-in-out;
	transition: right 0.2s ease-in-out;
	scrollbar-width: none;
	/* Firefox */
	-ms-overflow-style: none;
	/* IE 10+ */
}

.ticket_list::-webkit-scrollbar {
	/* WebKit */
	width: 0px;
}

.ticket_list.toggle {
	right: 0;
	-webkit-box-shadow: 0px 5px 30px 10px rgba(27, 44, 66, 0.3);
	box-shadow: 0px 5px 30px 10px rgba(27, 44, 66, 0.3);
}

.drop_menu {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	height: 24px;
	cursor: pointer;
}

.drop_menu * {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: pointer;
	font-style: normal;
}

.drop_menu .drop_fixed {
	position: fixed;
	z-index: 101;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 24px;
}

.drop_menu .drop_label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	height: 24px;
	cursor: pointer;
}

.drop_menu .drop_label .label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	min-width: 24px;
	line-height: 12px;
	height: 24px;
}

.drop_menu .drop_label .label.small {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	padding: 0 4px;
}

.drop_menu .drop_label i {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	font-size: 24px;
}

.drop_menu .drop_list {
	position: absolute;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	overflow: hidden;
	height: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-box-shadow: 0 6px 15px 2px rgba(85, 99, 115, 0.3);
	box-shadow: 0 6px 15px 2px rgba(85, 99, 115, 0.3);
	border-radius: 4px;
	scrollbar-width: none;
	/* Firefox */
	-ms-overflow-style: none;
	/* IE 10+ */
}

.drop_menu .drop_list::-webkit-scrollbar {
	/* WebKit */
	width: 0px;
}

.drop_menu .drop_list_item {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	overflow-x: hidden;
	overflow-y: hidden;
	width: 100%;
	height: 0;
	white-space: nowrap;
	padding: 0 10px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	background-color: #fff;
	cursor: pointer;
	border-bottom: 1px solid #e2e8ed;
	font-weight: 400;
	font-size: 11px;
}

.drop_menu .drop_list_item.checkbox_custom {
	padding: 0;
}

.drop_menu .drop_list_item:hover,
.drop_menu .drop_list_item:focus,
.drop_menu .drop_list_item:active {
	background-color: #f1f4f6;
	color: #657688;
}

.drop_menu .drop_list_item.src {
	width: 100%;
	padding: 0 4px;
	border-bottom-color: #fff;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.drop_menu .drop_list_item.src input {
	height: 26px;
	width: 100%;
	color: #556373;
	-webkit-box-shadow: inset 0px 0px 4px 0px rgba(85, 99, 115, 0.2);
	box-shadow: inset 0px 0px 4px 0px rgba(85, 99, 115, 0.2);
}

.drop_menu .drop_list_item.src:hover,
.drop_menu .drop_list_item.src:focus,
.drop_menu .drop_list_item.src:active {
	background-color: #fff;
	border-bottom-color: #fff;
}

.drop_menu .drop_list.toggle {
	z-index: 10;
	-ms-flex-flow: wrap;
	flex-flow: wrap;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	max-height: 256px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	overflow-x: hidden;
	overflow-y: auto;
	background-color: #fff;
	scrollbar-width: none;
	/* Firefox */
	-ms-overflow-style: none;
	/* IE 10+ */
}

.drop_menu .drop_list.toggle::-webkit-scrollbar {
	/* WebKit */
	width: 0px;
}

.drop_menu .drop_list.toggle .drop_list_item {
	height: 32px;
	width: 100%;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.drop_menu .drop_list.toggle .drop_list_item .label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: 32px;
}

.drop_menu .drop_list.toggle .drop_list_item:hover,
.drop_menu .drop_list.toggle .drop_list_item:focus,
.drop_menu .drop_list.toggle .drop_list_item:active {
	color: #fff;
	background-color: #19a6ea;
	border-bottom: 1px solid #19a6ea;
}

.drop_menu .drop_list.toggle .drop_list_item.selected {
	color: #fff;
	background-color: #3fbee6;
	border-bottom: 1px solid #3fbee6;
}

.drop_menu .drop_list.toggle .drop_list_item.selected:hover,
.drop_menu .drop_list.toggle .drop_list_item.selected:focus,
.drop_menu .drop_list.toggle .drop_list_item.selected:active {
	color: #fff;
	background-color: #19a6ea;
	border-bottom: 1px solid #19a6ea;
}

.drop_menu .drop_list.toggle .drop_list_item.src {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 2;
	width: 100%;
	padding: 0 4px;
	border-bottom-color: #fff;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.drop_menu .drop_list.toggle .drop_list_item.src input {
	height: 26px;
	width: 100%;
	color: #556373;
	-webkit-box-shadow: inset 0px 0px 4px 0px rgba(85, 99, 115, 0.2);
	box-shadow: inset 0px 0px 4px 0px rgba(85, 99, 115, 0.2);
}

.drop_menu .drop_list.toggle .drop_list_item.src:hover,
.drop_menu .drop_list.toggle .drop_list_item.src:focus,
.drop_menu .drop_list.toggle .drop_list_item.src:active {
	background-color: #fff;
	border-bottom-color: #fff;
}

.drop_menu .drop_list.toggle .drop_list_item.checkbox_custom {
	padding: 0;
	height: 36px;
	color: #657688;
}

.drop_menu .drop_list.toggle .drop_list_item.checkbox_custom:hover,
.drop_menu .drop_list.toggle .drop_list_item.checkbox_custom:focus,
.drop_menu .drop_list.toggle .drop_list_item.checkbox_custom:active {
	color: #3a4551;
	background-color: #eef2f6;
	border-bottom: 1px solid #e2e8ed;
}

.drop_menu.down .drop_list {
	top: 24px;
}

.drop_menu.up .drop_list {
	bottom: 24px;
}

.drop_menu.left .drop_list {
	right: auto;
}

.drop_menu.right .drop_list {
	right: 0;
	left: auto;
}

.drop_menu.toggle .drop_list {
	z-index: 10;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	max-height: 256px;
	-ms-flex-flow: wrap;
	flex-flow: wrap;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	overflow-x: hidden;
	overflow-y: auto;
	scrollbar-width: none;
	/* Firefox */
	-ms-overflow-style: none;
	/* IE 10+ */
}

.drop_menu.toggle .drop_list::-webkit-scrollbar {
	/* WebKit */
	width: 0px;
}

.drop_menu.toggle .drop_list_item {
	height: 32px;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.drop_menu.toggle .drop_list_item .label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: 32px;
}

.region_wrapp {
	position: absolute;
	top: 0;
	left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 32px;
}

.region_wrapp .drop_fixed {
	position: fixed;
	z-index: 101;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 32px;
}

.blank_select {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 32px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.blank_select .menu_label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 14px;
	height: 24px;
	padding: 0 8px;
}

.blank_select i {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	font-size: 24px;
}

.blank_select:hover,
.blank_select:focus,
.blank_select:active {
	color: #657688;
}

.odd_change,
.margin_change {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	height: 28px;
	background-color: rgba(143, 164, 184, 0.2);
	border-radius: 4px;
}

.odd_change .odd_old,
.odd_change .odd_new,
.margin_change .odd_old,
.margin_change .odd_new {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 2px 8px;
	height: 28px;
	border-radius: 4px;
	color: #556373;
}

.odd_change .odd_new,
.margin_change .odd_new {
	font-weight: 700;
	background-color: rgba(143, 164, 184, 0.2);
}

.odd_change .odd_new.odd_up,
.margin_change .odd_new.odd_up {
	color: #ffffff;
	background-color: #038c03;
}

.odd_change .odd_new.odd_down,
.margin_change .odd_new.odd_down {
	color: #ffffff;
	background-color: #e35454;
}

.odd_change .odd_new.odd_idle,
.margin_change .odd_new.odd_idle {
	color: #4b3900;
	background-color: #f4bc10;
}

.odd_change .margin_old,
.odd_change .margin_new,
.margin_change .margin_old,
.margin_change .margin_new {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 2px 8px;
	height: 28px;
	border-radius: 4px;
	color: #556373;
}

.odd_change .margin_new,
.margin_change .margin_new {
	font-weight: 700;
	color: #4b3900;
	background-color: #f4bc10;
}

.odd_change_live {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 2px 8px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	height: 28px;
	border-radius: 4px;
	color: #556373;
}

.odd_change_live.odd_up {
	color: #ffffff;
	background-color: #038c03;
}

.odd_change_live.odd_down {
	color: #ffffff;
	background-color: #e35454;
}

.odd_change_live.odd_idle {
	color: #4b3900;
	background-color: #f4bc10;
}

.odd_desabled {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 2px 8px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	height: 28px;
	color: #ffffff;
	background-color: #8fa4b8;
	border-radius: 4px;
}

.market_odd_list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 8px 0px 0px 0px;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.game_wrapp {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	height: 32px;
	min-width: calc(33.333% - 20px);
	max-width: calc(50% - 20px);
	margin: 0 20px 8px 0;
	border-radius: 6px;
	border: 2px solid rgba(141, 162, 182, 0.24);
	background-color: #fff;
	color: #3a4551;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.game_wrapp .game_label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 32px;
	width: calc(100% - 70px);
	padding: 0 8px;
	font-size: 11px;
	line-height: 11px;
	font-weight: 400;
	text-align: center;
	text-transform: uppercase;
	word-wrap: break-word;
}

.game_wrapp .game_label strong {
	font-weight: 700;
	color: #3a4551;
}

.game_wrapp .game_odd {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 28px;
	width: 70px;
	padding: 0 8px;
	font-size: 14px;
	line-height: 14px;
	font-weight: 700;
	border-radius: 4px;
	background-color: rgba(141, 162, 182, 0.1);
	border-left: 1px solid rgba(141, 162, 182, 0.2);
}

.game_wrapp:hover,
.game_wrapp:focus,
.game_wrapp:active {
	border: 2px solid #8da2b6;
	background-color: #8da2b6;
}

.game_wrapp:hover .game_label,
.game_wrapp:focus .game_label,
.game_wrapp:active .game_label {
	color: #fff;
}

.game_wrapp:hover .game_odd,
.game_wrapp:focus .game_odd,
.game_wrapp:active .game_odd {
	color: #fff;
	background-color: rgba(141, 162, 182, 0.2);
	border-left: 1px solid rgba(255, 255, 255, 0.8);
}

.game_wrapp.red {
	border: 2px solid rgba(227, 84, 84, 0.2);
	background-color: rgba(227, 84, 84, 0.2);
	color: #801016;
}

.game_wrapp.red .game_odd {
	background-color: rgba(227, 84, 84, 0.2);
	border-left: 1px solid rgba(227, 84, 84, 0);
}

.game_wrapp.red:hover,
.game_wrapp.red:focus,
.game_wrapp.red:active {
	border: 2px solid #e35454;
	background-color: #e35454;
}

.game_wrapp.red:hover .game_label,
.game_wrapp.red:focus .game_label,
.game_wrapp.red:active .game_label {
	color: #fff;
}

.game_wrapp.red:hover .game_odd,
.game_wrapp.red:focus .game_odd,
.game_wrapp.red:active .game_odd {
	color: #fff;
	background-color: rgba(227, 84, 84, 0.2);
	border-left: 1px solid rgba(255, 255, 255, 0.4);
}

.game_wrapp.green {
	border: 2px solid rgba(127, 189, 34, 0.4);
	background-color: rgba(127, 189, 34, 0.3);
	color: #2d4b01;
}

.game_wrapp.green .game_odd {
	background-color: rgba(127, 189, 34, 0.4);
	border-left: 1px solid rgba(127, 189, 34, 0);
}

.game_wrapp.green:hover,
.game_wrapp.green:focus,
.game_wrapp.green:active {
	border: 2px solid #7fbd22;
	background-color: #7fbd22;
}

.game_wrapp.green:hover .game_label,
.game_wrapp.green:focus .game_label,
.game_wrapp.green:active .game_label {
	color: #fff;
}

.game_wrapp.green:hover .game_odd,
.game_wrapp.green:focus .game_odd,
.game_wrapp.green:active .game_odd {
	color: #fff;
	background-color: rgba(127, 189, 34, 0.2);
	border-left: 1px solid rgba(255, 255, 255, 0.4);
}

.game_wrapp.yellow {
	border: 2px solid rgba(254, 178, 0, 0.4);
	background-color: rgba(254, 178, 0, 0.3);
	color: #7f5900;
}

.game_wrapp.yellow .game_odd {
	background-color: rgba(254, 178, 0, 0.4);
	border-left: 1px solid rgba(254, 178, 0, 0);
}

.game_wrapp.yellow:hover,
.game_wrapp.yellow:focus,
.game_wrapp.yellow:active {
	border: 2px solid #feb200;
	background-color: #feb200;
}

.game_wrapp.yellow:hover .game_label,
.game_wrapp.yellow:focus .game_label,
.game_wrapp.yellow:active .game_label {
	color: #7f5900;
}

.game_wrapp.yellow:hover .game_odd,
.game_wrapp.yellow:focus .game_odd,
.game_wrapp.yellow:active .game_odd {
	color: #7f5900;
	background-color: rgba(254, 178, 0, 0.2);
	border-left: 1px solid rgba(255, 255, 255, 0.4);
}

.game_wrapp.blue {
	border: 2px solid rgba(25, 166, 234, 0.3);
	background-color: rgba(25, 166, 234, 0.3);
	color: #0b5578;
}

.game_wrapp.blue .game_odd {
	background-color: rgba(25, 166, 234, 0.3);
	border-left: 1px solid rgba(25, 166, 234, 0);
}

.game_wrapp.blue:hover,
.game_wrapp.blue:focus,
.game_wrapp.blue:active {
	border: 2px solid #19a6ea;
	background-color: #19a6ea;
}

.game_wrapp.blue:hover .game_label,
.game_wrapp.blue:focus .game_label,
.game_wrapp.blue:active .game_label {
	color: #fff;
}

.game_wrapp.blue:hover .game_odd,
.game_wrapp.blue:focus .game_odd,
.game_wrapp.blue:active .game_odd {
	color: #fff;
	background-color: rgba(25, 166, 234, 0.2);
	border-left: 1px solid rgba(255, 255, 255, 0.4);
}

.game_margin {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 32px;
	width: 46px;
	margin: 0 8px 8px 0;
	padding: 0 8px;
	font-size: 14px;
	line-height: 14px;
	font-weight: 400;
	color: #73879c;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.pagination_wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: auto;
}

.pagination_wrap .pag_item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 16px;
	font-size: 11px;
	line-height: 10px;
	font-weight: 400;
	color: #8da2b6;
	background-color: rgba(141, 162, 182, 0);
	cursor: pointer;
}

.pagination_wrap .pag_item i {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 16px;
	width: 24px;
	height: 24px;
}

.pagination_wrap .pag_item.selected {
	font-weight: 700;
	color: #556373;
	border: 4px solid rgba(141, 162, 182, 0.2);
}

.pagination_wrap .pag_item:hover,
.pagination_wrap .pag_item:focus,
.pagination_wrap .pag_item:active {
	font-weight: 700;
	color: #556373;
	background-color: rgba(141, 162, 182, 0.25);
}

.pagination_wrap.left {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.pagination_wrap.right {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

i.mdi {
	font-size: 24px;
	line-height: 24px;
	width: 24px;
	height: 24px;
}

.svg_icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 24px;
	height: 24px;
}

.svg_icon .sport_ico {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.text_right {
	text-align: right;
}

.text_center {
	text-align: center;
}

.text_left {
	text-align: left;
}
/*# sourceMappingURL=style.css.map */
