@charset "utf-8";

@keyframes rotate_to_open {
	0% { 
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	100% {
		-ms-transform: rotate(225deg);
		-webkit-transform: rotate(225deg);
		transform: rotate(225deg); 
	}
}

@keyframes rotate_to_close {
	0% {
		-ms-transform: rotate(225deg);
		-webkit-transform: rotate(225deg);
		transform: rotate(225deg);
	}

	100% {
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}

* {
	font-family: arial, sans-serif;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-overflow-scrolling: touch;
	-ms-transition: background-color 0.3s, border-radius 0.3s;
	-webkit-transition: background-color 0.3s, border-radius 0.3s;
	transition: background-color 0.3s, border-radius 0.3s;
	box-sizing: border-box;
}

html {
	background-color: #ffffff;
	font-size: 14px;
}

html, body {
	margin: 0;
	padding: 0;
}

@media screen and (max-width: 595px) {
	body {
		padding-bottom: 80px;
	}
}

a {
	color: #00248f;
	cursor: pointer;
}

a:hover {
	color: #d52626;
}

select, input[type="time"], input[type="date"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	position: relative;
	z-index: 1;
	padding: 3px 25px 3px 10px;
	border: 1px solid #ccc;
	height: 28px;
	border-radius: 2px;
	max-width: 200px;
}

@supports (-ms-ime-align:auto) {
	select {
		padding-top: 4px;
		padding-bottom: 0px;
	}
}

/* input[type="text"], select, textarea {
	font-size: 16px;
	transform: scale(0.8);
} */

input[type="time"], input[type="date"] {
	position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    cursor: pointer;
}

input[type="date"]::-webkit-inner-spin-button {
    display: none;
}

input::-webkit-datetime-edit-day-field:focus,
input::-webkit-datetime-edit-month-field:focus,
input::-webkit-datetime-edit-year-field:focus {
    background-color: transparent;
}

input[type="checkbox"] {
    width: 20px;
    display: inline;
}

label.checkbox_label {
    display: block;
    margin-left: 10px;
    cursor: pointer;
}

input[type="date"] {
	cursor: pointer;
}

select::-ms-expand {
    display: none;
}

select:focus, input:focus {
	outline: 0;
	border-color: orange;
}

.select_wrap {
	position: relative;
	display: inline-block;
}

.select_wrap::after {
	content: '';
	width: 6px;
	height: 6px;
	border: 0px;
	border-bottom: solid 2px;
	border-right: solid 2px;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 10px;
	margin-top: -4px;
}

select, .select_wrap::after {
	border-color: #ccc;
}

.select_wrap.open::after {
	animation: rotate_to_open 0.5s;
	-webkit-animation: rotate_to_open 0.5s;
	animation-fill-mode: forwards;
	-webkit-animation-fill-mode: forwards;
}

.select_wrap.close::after {
	animation: rotate_to_close 0.8s;
	-webkit-animation: rotate_to_close 0.5s;
}

button {
	border-style: solid;
	cursor: pointer;
	color: #ffffff;
	background-color: #2196F3;
	border: none;
	border-radius: 4px;
	padding: 5px 15px;
}

button:hover {
    background-color: #2FB5FF;
}

button.important_btn {
	color: #fff;
	background-color: #1296ff;
}

button.important_btn:hover {
	background-color: #2fb5ff;
}

.disabled_btn {
	opacity: 0.5;
	cursor: default;
}

#header {
	position: fixed;
	top: 0;
	z-index: 4;
	width: 100%;
	background-color: #f6f6f6;
	padding: 10px 10px 7px;
	box-shadow: inset 0px -1px 3px -1px #bcbcbc;
}

@media screen and (max-width: 595px) {
	#header {
		height: 60px;
		font-size: 16px;
	}
}

#header_top {
	-webkit-display: flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

#logo {
	margin-left: 8px;
    margin-top: 3px;
}

#logo svg {
	width: 100px;
}

@media all and (-ms-high-contrast: none){
	#logo svg {
		height: 37px;
	}
}

#user_name, #nav_logo_wrapper {
	display: inline-flex;
    align-items: center;
}

#user_name {
    color: #525252;
    font-size: 15px;
    margin-right: 8px;
    margin-top: -3px;
}

@media screen and (max-width: 350px) {
	#user_name {
		font-size: 0px;
	}
}

#logout_link {
	color: #ffffff;
	background-color: #ffaaaa;
	text-decoration: none;
	font-size: 14px;
	padding: 6px 10px 5px;
	border-radius: 6px;
	vertical-align: middle;
	margin-left: 10px;
}

#logout_link:hover {
	background-color: #ffbebe;
}

@media screen and (max-width: 595px) {
	#user_name, #logout_link {

	}
}

#header_bottom {
	position: fixed;
	/*z-index: 4;*/
	z-index: 3;
	width: 55px;
	height: 100%;
	background-color: #f6f6f6;
	/*top: 60px;*/
	top: 0;
	padding-top: 60px;
	box-shadow: inset -1px -3px 3px -1px #bcbcbc;
}

#tab_area {
	height: 100%;
}

#nav_toggle {
	display: none;
}

@media screen and (max-width: 595px) {
	#nav_toggle {
		cursor: pointer;
		width: 30px;
		height: 35px;
		position: relative;
		top: -29px;
		z-index: 4;
	}

	#nav_toggle div {
		position: relative;
	}

	#nav_toggle span {
		display: block;
		height: 3px;
		background-color: #1d607c;
		position:absolute;
		width: 100%;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;
	}

	#nav_toggle span:nth-child(1){
		top: 6px;
	}

	#nav_toggle span:nth-child(2){
		top: 18px;
	}
	
	.open #nav_toggle span:nth-child(1) {
		top: 15px;
	    -webkit-transform: rotate(135deg);
		-moz-transform: rotate(135deg);
		transform: rotate(135deg);
	}

	.open #nav_toggle span:nth-child(2) {
		top: 15px;
		-webkit-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}
}

#menu_container {
	/*margin: 0;*/
	height: 100%;
	position: relative;
}

#tab_wrapper {
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
    /*left: 3px;*/
    height: 100%;
    width: 100%;
    overflow: hidden;
}

#scrollbar_fix {
    width: 100%;
    height: 100%;
    position: relative;
    left: 3px;
    overflow-y: scroll;
    overflow-x: hidden;
    padding-right: 17px;
    box-sizing: content-box;
    display: inherit;
}

.tab {
	position: relative;
	flex: 1;
	text-align: center;
	z-index: 2;
	cursor: pointer;
	width: 52px;
}

.tab:hover {

}

@media screen and (max-width: 595px) {
	.tab {
		min-width: 28%;
		display: inline-block;
	}

	.tab:hover {
		transition: background-color 0s;
		background-color: #e6e6e6;	
	}
}

.tab a {
	display: block;
	width: 100%;
	padding: 10px 10px;
	text-decoration: none;
}

@media screen and (max-width: 595px) {
	.tab a {
		padding: 10px 0;
	}
}

.tab span, .tab_tooltip {
	text-align: center;
	visibility: hidden;
	transition: opacity 0.5s;
	opacity: 0;
	position: absolute;
	top: 4px;
	left: 65px;
	width: 100px;
	border-radius: 5px;
	background-color: #00A0E9;
	color: #fff;
	font-weight: bold;
	padding: 10px;
	box-shadow: 0px 0px 2px 1px #bfbfbf;
}

@media screen and (max-width: 595px) {
	.tab span {
		display: none;
	}
}

@media all and (-ms-high-contrast: none) {
	.tab span {
		margin-left: 0;
	}
}

.tab span::after, .tab_tooltip::after {
	content: '';
	position: absolute;
	left: -3px;
	margin-top: 7px;
	border-width: 0px 0px 7px 7px;
	border-style: solid;
	border-color: transparent transparent transparent #00A0E9;
	transform: rotate(-44deg);
}

@media screen and (min-width: 596px) {
	.tab:hover span, .tab_tooltip_active {
		visibility: visible;
		opacity: 1;
	}
}

.tab div {
	display: none;
	font-size: 10px;
	/*margin-top: -12px;*/
	color: #575757;
}

@media screen and (max-width: 595px) {
	.tab div {
		display: block;
	}
}

@media screen and (max-width: 595px) {
	#header_bottom {
		width: auto;
		height: auto;
		padding-top: 0;
	}

	#menu_container {
		padding: 0;
	}
	
	#tab_wrapper {
		display: flex;
		width: 100%;
		height: auto;
		position: fixed;
		z-index: 5;
		left: 0;
		bottom: 0;
	    background-color: rgba(255, 255, 255, 1);
	    border-top: 1px solid #ccc;
	    /*overflow-x: scroll;
	    overflow-y: hidden;*/
	}

	#scrollbar_fix {
		overflow-x: scroll;
		overflow-y: hidden;
		left: 0;
	}
}

#currently_selected {
	background-color: #fff;
	box-shadow: -4px 4px 4px -4px #bcbcbc, -4px -4px 4px -4px #bcbcbc;
}

@media screen and (max-width: 595px) {
	#currently_selected {
		box-shadow: none;
	}
}

.tab img {
	width: 24px;
	height: 24px;
}

.tab svg {
	width: 24px;
	height: 24px;
}

.tab svg g {
	transition: fill 0.3s;
	fill: #607D8B;
}

@media screen and (max-width: 595px) {
	.tab svg g {
		fill: #909090;
	}
}

@media screen and (min-width: 596px) {
	.tab:hover svg g {
		fill: #00A0E9;
	}
}

#currently_selected svg g {
	fill: #00A0E9;
}

@media screen and (max-width: 595px) {
	.tab img {
		width: 32px;
		height: 32px;
	}

	.tab svg {
		width: 32px;
		height: 32px;
	}
}

#content {
	margin-top: 65px;
	margin-left: 70px;
	margin-right: 10px;
}

@media screen and (max-width: 595px) {
	#content {
		margin: 0;
		margin-top: 65px;
	}
}

#content_bg {
	width: 100%;
	border: 1px solid #e9e9e9;
	text-align: center;
	border-radius: 2px;
}

#header_wrapper {
	margin: 10px 0;
	font-weight: bold;
	border-bottom: 1px solid #aaa;
	padding-bottom: 5px;
	display: flex;
	align-items: center;
}

#header_wrapper.with_backBtn {
	justify-content: center;
	position: relative;
}

@media screen and (max-width: 595px) {
	#header_wrapper {
		padding: 0;
		margin-bottom: 10px;
		padding-bottom: 5px;
	}
	
	#header_wrapper #reg_btn {
		margin-left: auto;
		margin-right: 16px;
		margin-bottom: 0;
	}
}

.back_wrapper {
	display: flex;
	align-items: center;
	position: absolute;
	left: 0;
	cursor: pointer;
	font-weight: normal;
	color: #00248f;
	text-decoration: underline;
}

@media screen and (max-width: 595px) {
	.back_wrapper {
		margin-left: 12px;
	}
}

.back_wrapper:hover {
	color: #d52626;
}

.back_wrapper svg {
	width: 25px;
	height: 25px;
	margin-right: 5px;
}

@media screen and (max-width: 595px) {
	.back_wrapper svg {
		margin-left: 12px;
	}
}

.back_wrapper svg g {
	fill: #77d5ff;
}

.back_wrapper:hover svg g {
	fill: #64cbff;
}

#table_title {
	color: #000000;
	font-size: 18px;
	vertical-align: middle;
	margin-right: 15px;
}

#table_title, #reg_btn {
	display: inline-block;
}

@media screen and (max-width: 595px) {	
	#table_title, #reg_btn {
		display: inline-block;
		font-size: 16px;
		margin-left: 16px;
	}
}

#form_btn, .form_btn {
	padding: 10px 50px;
	margin: 20px 0;
	font-size: 17px;
}

@media screen and (max-width: 595px) {
	#form_btn {
		margin: 0;
	}
}

#table_no_result {
	/*background-color: #efefef;*/
	box-sizing: border-box;
	padding: 15px;
}

#content_header {
	margin-top: 10px;
	width: 100%;
	color: #494949;
	font-weight: bold;
	background-color: #f3f3f3;
	
	display: -webkit-flex;
	display: flex;
	
	-webkit-align-items: center;
    align-items: center;     /*vertical*/
    
    border-radius: 2px;
    font-size: 24px;
    box-sizing: border-box;
    padding: 15px;
}

@media screen and (max-width: 595px) {
	#content_header {
		box-sizing: border-box;
		font-size: 18px;
		margin-bottom: 10px;
	}
}

#outside_form_bg {
	box-sizing: border-box;
	text-align: center;
}

@media screen and (max-width: 595px) {
	#outside_form_bg, .outside_wrapper {
		width: 95%;
		margin: 0 auto;
	}
}

.individual_form {
	margin-top: 10px;
	font-size: 0;
	display: inline-block;
	width: 98%;
}

@media screen and (max-width: 595px) {
	.individual_form {
		width: 100%;
		display: block;
		margin: 0;
		margin-bottom: 10px;
	}
}

.form_header {
	width: 19%;
	min-width: 190px;
	height: 34px;
	background-color: #f1f7fd;
	color: #000000;
	font-size: 12px;
	font-weight: bold;
	padding: 1px 0;
	text-align: left;
	box-sizing: border-box;
	border: 1px solid #c8e2ee;
	margin-right: -1px;
}

@media screen and (max-width: 595px) {
	.form_header {
		width: 100%;
	}
}

input {
	width: 49%;
	height: 34px;
	border: 1px solid #d4e0e6;
	color: #000000;
	box-sizing: border-box;
	padding: 0 5px;
	border-radius: 0px;
	max-width: 800px;
}

textarea {
	border-radius: 0px;
	border-color: #c8e2ee;
	resize: none;
	width: 49%;
	height: 250px;
	display: inline-block;
	vertical-align: bottom;
	margin: 0;
	box-sizing: border-box;
	padding: 5px;
	max-width: 800px;
}

.form_header, input {
	display: inline-block;
	vertical-align: middle;
}

.large_header_form .form_header {
    height: 250px;
}

.header_inner {
	height: 100%;
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    font-size: 15px;
}

.header_inner div:first-of-type {
	margin-left: 10px;
	margin-right: 0;
}

.required_form {
	color: #ffffff;
	font-weight: normal;
	background-color: #ff7d7d;
	padding: 2px 8px;
	margin-left: auto;
	margin-right: 10px;
	font-size: 89%;
	border-radius: 3px;
}

@media screen and (max-width: 595px) {
	.form_header, .individual_form input {
		width: 100%;
		height: 40px;
		display: block;
		font-size: 17px;
	}
	
	.individual_form input {
		margin-top: -1px;
	}
	
	.large_header_form .form_header {
    	height: 40px;
	}
	
	.individual_form textarea {
		margin-top: -1px;
		width: 100%;
	}
}

.select_bg, .non_editable_form {
	display: inline-block;
	vertical-align: middle;
	font-size: 14px;
	width: 49%;
	height: 34px;
	text-align: left;
	box-sizing: border-box;
	max-width: 800px;
}

.select_bg {
	background-color: #ffffff;
	border: 1px solid #c8e2ee;
}

.non_editable_form {
	border: 1px solid #c8e2ee;
	background-color: #f5f5f5;
	/*border-left: none;*/
}

#only_bottom_border {
	border-top: none;
	border-right: none;
	border-left: none;
	background-color: #fff;
}

.non_editable_form span {
	height: 100%;
	margin-left: 5px;
	display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

@media screen and (max-width: 595px) {
	.select_bg, .non_editable_form {
		display: block;
		width: 100%;
		height: 40px;
		margin-top: -1px;
	}
	
	.non_editable_form {
		border-left: 1px solid #c8e2ee;
	}

	.non_editable_form span {
		margin-left: 12px;
	}
}

#error_msg {
	margin: 5px 0;
	color: #ff0000;
	font-weight: bold;
	display: inline-block;
}

table {
	border-collapse: collapse;
	border: 1px solid #c8e2ee;
}

th, td {
	padding: 10px;
	/* border-radius: 5px; */
	text-align: left;
}

th {
	color: #3a3a3a;
	background-color: #e9e9e9;
}

td {
	font-weight: normal;
	border-top: 1px solid #c8e2ee;
}

@media screen and (max-width: 595px) {
    .table_wrapper {
        width: 95%;
        overflow-x: scroll;
        margin: auto;
    }
}

/*
@media screen and (max-width: 595px) {
	table {
		width: 95%;
		margin: 0 auto;
		font-size: 16px;
	}
	
	th, td {
		width: 100%;
		border: none;
	}
	
	th {
		display: none;
	}
	
	td {
		display: block;
		padding: 10px;
		box-sizing: border-box;
	}
	
	td a:hover {
		color: #ff0000;
	}
	
	td:nth-child(1) {
		background-color: #d7e4ea;
		font-size: 18px;
		font-weight: bold;
	}
}
*/

@media screen and (max-width: 595px) {
	#card_wrapper {
		width: 100%;
		text-align: center;
	}
}

@media screen and (max-width: 330px) {
	#card_wrapper {
		width: 100%;
	}
}

.card {
    display: inline-block;
    width: 300px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    margin-right: 4px;
    margin-bottom: 10px;
    vertical-align: top;
    cursor: pointer;
    box-shadow: 0px 0px 2px 1px #f1f1f1;
}

.card:hover {
	background-color: #f1f7fd;
	border-color: #c8e2ee;
}

.card div {
	margin-bottom: 5px;
	padding: 5px 10px;
	height: 32px;
}

.card div:first-of-type {
	font-size: 16px;
	border-bottom: 1px solid #e0e0e0;
	padding-top: 10px;
	padding-left: 10px;
	height: 40px;
}

.card:hover div:first-of-type {
    border-color: #c8e2ee;
}

.card svg {
	width: 16px;
	height: 16px;
	margin-right: 5px;
	vertical-align: text-top;
}

.card svg g {
	fill: rgba(174, 174, 174, 1);
}

.detail_btn_wrapper {
	margin-top: 5px;
}

@media screen and (max-width: 595px) {
	.card {
		width: 95%;
		text-align: left;
		margin: 0 auto 10px;
	}
}

@media screen and (max-width: 330px) {
	.card {
		width: 100%;
	}
}

#popup_bg, #popup_bg * {
	transition: opacity 0.5s;
}

#popup_bg {
	visibility: hidden;
	width: 100%;
	height: 100%;
	position: fixed;
	background-color: rgba(0, 0, 0, 0.6);
	top: 0px;
	left: 0px;
	text-align: center;
	z-index: 4;
}

#popup {
	width: 300px;
	height: 150px;
	position: fixed;
	top: 50%;
	left: 50%;
	margin-left: -150px;
	margin-top: -75px;
	background-color: rgba(255, 255, 255, 1);
	border: solid 1px #000000;
	padding-top: 30px;
}

@media all and (-ms-high-contrast: none) {
	#popup {
		padding-top: 40px;
	}
}

@media screen and (max-width: 595px) {
	#popup {
		width: 100%;
		left: 0;
		margin-left: 0;
	}
}

#close_btn {
	position: fixed;
	cursor: pointer;
}

#popup form {
	display: inline;
	height: 100%;
}

#popup .cancel_btn {
	margin-left: 10px;
}

@media screen and (max-width: 595px) {
	.filter_form {
		text-align: center;
		margin: 0;
	}
}

.filter {
	display: inline-block;
	margin-bottom: 10px;
}

.filter select {
	font-size: 12px;
}

.header_wrapper {
	color: #262626;
	border-bottom: 1px solid #aaaaaa;
	height: 45px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: center;
	align-items: center;
}

.header_wrapper div {
	font-weight: bold;
	font-size: 18px;
}

@media screen and (max-width: 595px) {
	.header_wrapper div {
		font-size: 16px;
		margin-left: 16px;
	}
}

.popup_btn {
	width: 110px;
	font-size: 15px;
	margin-top: 10px;
}

canvas {
	background-color: #ffffff;
}

.tooltip {
	position: relative;
	display: flex;
	color: #00248f;
	text-decoration: underline;
	cursor: pointer;
}

.tooltip .tooltiptext {
	visibility: hidden;
	width: 200px;
	background-color: #f1f1f1;
	color: #2b2b2b;
	text-align: left;
	border-radius: 6px;
	
	/* Position the tooltip text */
	position: absolute;
	z-index: 3;
	left: 50%;
	margin-left: -60px;
	
	/* Fade in tooltip */
	opacity: 0;
	transition: opacity 0.3s;
	text-decoration: none;
	padding: 10px;
	box-shadow: 0px 0px 3px 1px #dbdbdb;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: -5%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #f1f1f1 transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
}

.tooltip svg {
	width: 30px;
	height: 18px;
}

.tooltip svg g {
	fill: #155724;
}

div#slide_menu_bg {
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

div#slide_menu {
	position: relative;
	background-color: rgba(255, 255, 255, 1);
	width: 80%;
	height: 100%;
	padding: 50px 0 0 20px;
}

.search_form {
    margin-bottom: 10px;
    width: 440px;
    position: relative;
}

@media screen and (max-width: 595px) {
	.search_form {
		width: 95%;
	    margin: 0 auto 10px;
	}
}

.search_form input {
    width: 100%;
    border-radius: 2px;
    padding-left: 10px;
    padding-right: 72px;
}

.search_form button.important_btn {
	padding: 3px 15px;
	position: absolute;
	top: 4px;
	right: 5px;
}

@media all and (-ms-high-contrast: none) {
	.search_form button.important_btn {
		top: 6px;
	}
}

button.cancel_btn {
    background-color: #e9e9e9;
    color: #000;
}

button.cancel_btn:hover {
	background-color: #f3f3f3;
}

.action_btn_form_wrapper {
	position: relative;
}

@media screen and (max-width: 595px) {
	.action_btn_form_wrapper {
		display: block;
	}
}

.mail_icon, .tel_icon {
	cursor: pointer;
	vertical-align: middle;
	position: absolute;
	right: 9px;
	top: -8px;
	width: 16px;
	height: 16px;
}

@media screen and (max-width: 595px) {
	.mail_icon, .tel_icon {
	    width: 32px;
	    height: 32px;
	    top: 4px;
	    right: 15px;
	}
}

.action_btn_form_wrapper svg g {
	fill: #2196F3;
}

#loading_bg {
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 5;
}

#loading_bg.enabled {
	display: block;
}

#loading_wrapper {
	position: fixed;
    width: 300px;
    height: 200px;
    top: 50%;
    left: 50%;
    margin-top: -100px;
    margin-left: -150px;
    text-align: center;
    background-color: #fff;
    border-radius: 3px;
}

#loading_img {
	width: 128px;
	animation: loading 3s linear infinite;
	animation-play-state: paused;
	display: block;
	margin: 0 auto;
}

@media all and (-ms-high-contrast: none){
	#loading_img {
		height: 128px;
	}
}

#loading_img.enabled {
	animation-play-state: running;
}

#loading_img.pause {
	animation-play-state: paused;
}

@keyframes loading {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(-360deg); }
}

#loading_img g {
	fill: #000;
}

#loading_wrapper div {
	display: inline-block;
}

button#abort {
    background-color: #ff6363;
}

button#abort:hover {
    background-color: #ff3b3b;
}

#cmpny_form_area {
	text-align: center;
}

svg.exclamation {
	margin-left: -10px;
    margin-top: -1px;
}

svg.exclamation g {
	fill: #ff7d7d;
}

.toggle_btns {
	display: flex;
	margin-bottom: 5px;
}

.sort .toggle_btns {
	display: inline-flex;
}

.toggle_btns label {
	display: flex;
	position: relative;
}

.toggle_btns input[type=radio],
.toggle_btns input[type=checkbox] {
	-webkit-appearance: none;
	-moz-appearance: none;
	position: absolute;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
}

_:-ms-lang(x)::-ms-backdrop, .toggle_btns input[type=radio]{
  visibility: hidden;
}

.toggle_btns .toggle_btn {
	z-index: 1;
}

.toggle_btns :not(:first-child) .toggle_btn {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.toggle_btns :not(:last-child) .toggle_btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.toggle_btns :checked + .toggle_btn {
  background-color: #2196F3;
  color: #fff;
}

.toggle_btn {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 4px;
  text-align: center;
  color: #8b8b8b;
  background-color: #ededed;
  cursor: pointer;
}

.toggle_btn:hover {
  background-color: #6abafa;
  color: #fff;
}

.paging {
	text-align: center;
}

.paging_label {
	display: inline-block;
}

.paging_click {
	display: inline-block;
	cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #1296ff;
    text-decoration: underline;
}