/************  footer置底 Start  ***************/

body {
	/*首先宣告我們要使用flex佈局*/
	display: flex;
	/*讓我們的flex佈局，由上到下排列*/
	flex-direction: column;
	/*高度設定為 可大於但不可小於 整個瀏覽器可視範圍*/
	min-height: 100vh;
}

.container {
	/*設置flex-grow: 1，讓它能夠彈性伸展*/
	flex-grow: 1
	/*以下兩種方式也可以達到一樣效果，flex是三種屬性的縮寫*/
	/*flex: 1等於 flex-grow: 1; flex-shrink: 1; flex-basis: 0%;*/
	/*flex: auto等於 flex-grow: 1; flex-shrink: 1; flex-basis: auto;*/
	/*flex: 1; */
	/*flex: auto;*/
}

/************  footer置底 End  ***************/

/************  字型：微軟正黑體  ***************/

body {
	font-family: Microsoft JhengHei;
	/*font-size: 14px;*/
}

/************  DataTable 選取記錄顏色  ***************/

table.dataTable tbody tr.selected {
	background-color: #B0BED9;
}

/*snackbar*/
.snackbar {
	visibility: hidden;
	min-width: 250px;
	margin-left: -125px;
	background-color: #333;
	color: #fff;
	text-align: center;
	border-radius: 2px;
	padding: 16px;
	position: fixed;
	z-index: 1600;
	left: 50%;
	bottom: 30px;
	font-size: 17px;
}

.snackbar.show {
	visibility: visible;
	-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
	animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
#snackbar {
	visibility: hidden;
	min-width: 250px;
	margin-left: -125px;
	background-color: #333;
	color: #fff;
	text-align: center;
	border-radius: 2px;
	padding: 16px;
	position: fixed;
	z-index: 1600;
	left: 50%;
	bottom: 30px;
	font-size: 17px;
}

#snackbar.show {
	visibility: visible;
	-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
	animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
	from {
		bottom: 0;
		opacity: 0;
	}
	to {
		bottom: 30px;
		opacity: 1;
	}
}

@keyframes fadein {
	from {
		bottom: 0;
		opacity: 0;
	}
	to {
		bottom: 30px;
		opacity: 1;
	}
}

@-webkit-keyframes fadeout {
	from {
		bottom: 30px;
		opacity: 1;
	}
	to {
		bottom: 0;
		opacity: 0;
	}
}

@keyframes fadeout {
	from {
		bottom: 30px;
		opacity: 1;
	}
	to {
		bottom: 0;
		opacity: 0;
	}
}

/*snackbar*/
/*notice*/
main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 0%;
  position: relative;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
main .notification {
  position: relative;
  width:  0em;
  height: 0em;
}

main .notification--num {
  position: absolute;
  top: -10%;
  left: 1.5em;
  font-size: 1rem;
  border-radius: 50%;
  width: 1.25em;
  height: 1.25em;
  background-color: #FF4C13;
  border: 4px solid #FF4C13;
  color: #FFFFFF;
  text-align: center;
  line-height: 13px; ;
  animation: notification 2.2s linear;
}
main .result_no {
	position: relative;
	width:  0em;
	height: 0em;
  }
  
  main .result_no--num {
	position: absolute;
	top: -10%;
	left: 2.5em;
	font-size: 1rem;
	border-radius: 50%;
	width: 1.25em;
	height: 1.25em;
	background-color: #FF4C13;
	border: 4px solid #FF4C13;
	color: #FFFFFF;
	text-align: center;
	line-height: 13px; ;
	animation: notification 2.2s linear;
  }
main .track {
	position: relative;
	width:  0em;
	height: 0em;
  }
  
  main .track--num {
	position: absolute;
	top: -10%;
	left: 3.5em;
	font-size: 1rem;
	border-radius: 50%;
	width: 1.25em;
	height: 1.25em;
	background-color: #FF4C13;
	border: 4px solid #FF4C13;
	color: #FFFFFF;
	text-align: center;
	line-height: 13px; ;
	animation: notification 2.2s linear;
  }
@keyframes bell {
  0%, 25%, 75%, 100% {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(10deg);
  }
  45% {
    transform: rotate(-10deg);
  }
  55% {
    transform: rotate(8deg);
  }
  60% {
    transform: rotate(-8deg);
  }
}
@keyframes bellClapper {
  0%, 25%, 75%, 100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(-0.15em);
  }
  45% {
    transform: translateX(0.15em);
  }
  55% {
    transform: translateX(-0.1em);
  }
  60% {
    transform: translateX(0.1em);
  }
}
@keyframes notification {
  0%, 25%, 75%, 100% {
    opacity: 1;
  }
  30%, 70% {
    opacity: 0;
  }
}
.sky-blue{
	color: #fff;
	background-color: skyblue;
	border-color: skyblue;
}

.col {
	margin-top: 10px;
	margin-bottom: 10px;
}

.multiline {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  -webkit-box-orient: vertical;
}

.bg-head, .bg-foot{
	background-color: #3b71a8;
	color: #f0d9e7;
}

.ten-row {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 10; 
	-webkit-box-orient: vertical;
	white-space: normal;
}

.text-important {
	color: #ff0000;
	font-weight: bold;
}

.text-green {
	color: #006600;
}

.modal-button-center {
    justify-content: center;
}

.text-remind {
	color: #a6a6a6;
	margin-top: 10px;
}

.indent-title-0 {
	margin-left: 2em;
	margin-top: -15px;
}

.indent-title-1 {
	text-indent: -1.1em;
	margin-left: 3em;
	margin-top: -5px;
}

.indent-title-2 {
	margin-left: 3em;
	margin-top: -10px;
}

.indent-title-3 {
	text-indent: -1.1em;
	margin-left: 1em;
	margin-top: -10px;
}

.indent-title-4 {
	text-indent: -1.7em;
	margin-left: 1em;
	margin-top: -10px;
}

.indent-title-5 {
	text-indent: -1.5em;
	margin-left: 2.5em;
	margin-top: -10px;
}

.indent-title-6 {
	text-align: justify;
	margin-left: 4em;
	margin-top: -10px;
}

.indent-title-justify {
	text-align:justify;
}

.modal-title {
	font-weight: bold;	
}

.modal-body > p {
	line-height:28px;
}

.margin-samediv {
	margin-top: 10px;
}

.hr_coauthor{
	border-top: 1px dashed;
	border-color: #979797;
}

.login_title {
	font-weight: bold;
	margin-top: 0.8em;
}

.register_title {
	font-weight: bold;
}

.forgetPassword_title {
	font-weight: bold;
	margin-top: 3em;
}

.login-btn-hr {
	margin-top: 1.5em;
	margin-bottom: -0.5em;
}

.register-btn-hr {
	margin-top: -0.3em;
	margin-bottom: -0.2em;
}

.paper-instructions {
	margin-top: 3em;
}

.admin-registrationt-able {
	Registration Status
}

.poster-text {
	font-weight: bold;
}




/*Horizontal Stepper Start*/
html {
	-webkit-font-smoothing: antialiased!important;
	-moz-osx-font-smoothing: grayscale!important;
	-ms-font-smoothing: antialiased!important;
}
body {
  font-family: 'Open Sans', sans-serif;
  font-size:16px;
  color:#555555; 
}
.md-stepper-horizontal {
	display:table;
	width:100%;
	margin:0 auto;
	background-color:#FFFFFF;
	box-shadow: 0 3px 8px -6px rgba(0,0,0,.50);
}
.md-stepper-horizontal .md-step {
	display:table-cell;
	position:relative;
	padding:24px;
}
.md-stepper-horizontal .md-step:hover,
.md-stepper-horizontal .md-step:active {
	background-color:rgba(0,0,0,0.04);
}
.md-stepper-horizontal .md-step:active {
	border-radius: 15% / 75%;
}
.md-stepper-horizontal .md-step:first-child:active {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.md-stepper-horizontal .md-step:last-child:active {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.md-stepper-horizontal .md-step:hover .md-step-circle {
	background-color:#757575;
}
.md-stepper-horizontal .md-step:first-child .md-step-bar-left,
.md-stepper-horizontal .md-step:last-child .md-step-bar-right {
	display:none;
}
.md-stepper-horizontal .md-step .md-step-circle {
	width:30px;
	height:30px;
	margin:0 auto;
	background-color:#999999;
	border-radius: 50%;
	text-align: center;
	line-height:30px;
	font-size: 16px;
	font-weight: 600;
	color:#FFFFFF;
}
.md-stepper-horizontal.green .md-step.active .md-step-circle {
	background-color:#00AE4D;
}
.md-stepper-horizontal.orange .md-step.active .md-step-circle {
	background-color:#edab7c;
}
.md-stepper-horizontal .md-step.active .md-step-circle {
	background-color: rgb(33,150,243);
}
.md-stepper-horizontal .md-step.done .md-step-circle:before {
	font-family:'Font Awesome 6 Free';
	/*font-weight:100;*/
	content: "\f00c";
}
.md-stepper-horizontal .md-step.done .md-step-circle *,
.md-stepper-horizontal .md-step.editable .md-step-circle * {
	display:none;
}
.md-stepper-horizontal .md-step.editable .md-step-circle {
	-moz-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}
.md-stepper-horizontal .md-step.editable .md-step-circle:before {
	font-family:'Font Awesome 6 Free';
	/*font-weight:100;*/
	content: "\f040";
}
.md-stepper-horizontal .md-step .md-step-title {
	margin-top:16px;
	font-size:16px;
	font-weight:600;
}
.md-stepper-horizontal .md-step .md-step-title,
.md-stepper-horizontal .md-step .md-step-optional {
	text-align: center;
	color:rgba(0,0,0,.26);
}
.md-stepper-horizontal .md-step.active .md-step-title {
	font-weight: 600;
	color:rgba(0,0,0,.87);
}
.md-stepper-horizontal .md-step.active.done .md-step-title,
.md-stepper-horizontal .md-step.active.editable .md-step-title {
	font-weight:600;
}
.md-stepper-horizontal .md-step .md-step-optional {
	font-size:12px;
}
.md-stepper-horizontal .md-step.active .md-step-optional {
	color:rgba(0,0,0,.54);
}
.md-stepper-horizontal .md-step .md-step-bar-left,
.md-stepper-horizontal .md-step .md-step-bar-right {
	position:absolute;
	top:36px;
	height:1px;
	border-top:1px solid #DDDDDD;
}
.md-stepper-horizontal .md-step .md-step-bar-right {
	right:0;
	left:50%;
	margin-left:20px;
}
.md-stepper-horizontal .md-step .md-step-bar-left {
	left:0;
	right:50%;
	margin-right:20px;
}
/*Horizontal Stepper End*/