@import url("../../icon/icon-font/style.css");
#detail-header {
	z-index: 1;
	position: relative;
	color: black;
	background-repeat: no-repeat;
	background-size: 100% 100vw; 
	background-position: center;
	margin-bottom: 0;
}
#industry-header {
	z-index: 1;
	position: relative;
	color: black;
	background-repeat: no-repeat;
	background-size: 100% 100vw; 
	background-position: center;
	margin-bottom: 0;
}
#sort-header {
  z-index: 1;
  position: relative;
  color: black;
  background-repeat: no-repeat;
  background-size: 100% 100vw; 
  background-position: center;
  margin-bottom: 0;
}
.detail-header {
	text-align: center;
	font-size: 42px;
	font-weight: bold;
}
.detail-header-en {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
}
.detail-header-2 {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
}
.detail-header-en-2 {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
}
.industry-header {
	text-align: center;
	font-size: 42px;
	font-weight: bold;
	padding: 20px;
	background-color: rgba(255,255,255,0.8);
     border: 1px solid black;
}
.sort-header {
     text-align: center;
     font-size: 42px;
     font-weight: bold;
     padding: 20px;
     background-color: rgba(255,255,255,0.8);
     border: 1px solid black;
}
#detail-content {
	border-top: solid 1px #fff;
}
#detail-content section {
	background: #fff;
	margin: 0px 0 10% 0;
}
#detail-content .breadcrumb {
	box-shadow: 2px 2px 2px 1px rgba(128, 128, 128, 0.1);
	margin: 0px 0 10% 0;
}
.detail-box {
	border-radius: 4px;
	font-size: 28px;
}
.detail-list {
	border-radius: 4px;
}
ol, ul {
	list-style: none;
	padding-left: 0;
}
.link-list li {
	padding: 0.75em 0 0.75em 0;
}

.link-list li:first-child {
	padding-top: 0 !important;
	border-top: 0 !important;
}

.link-list li:last-child {
	padding-bottom: 0 !important;
	border-bottom: 0 !important;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #8e44ad;
}

/* Breadcrumb */
/*custom font*/
@import url("../fonts/sarabunnew/thsarabunnew.css");

.breadcrumb-line {
	/*centering*/
	display: inline-block;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.35);
	overflow: hidden;
	border-radius: 5px;
	font-family: 'THSarabunNew', sans-serif;
	/*Lets add the numbers for each link using CSS counters. flag is the name of the counter. to be defined using counter-reset in the parent element of the links*/
	counter-reset: flag; 
	margin-left: 80px;
}

.breadcrumb-line a {
	text-decoration: none;
	outline: none;
	display: block;
	float: left;
	font-size: 24px;
	line-height: 48px;
	color: white;
	/*need more margin on the left of links to accomodate the numbers*/
	padding: 0 30px 0 60px;
	background: #666;
	background: linear-gradient(#666, #333);
	position: relative;
}
/*since the first link does not have a triangle before it we can reduce the left padding to make it look consistent with other links*/
.breadcrumb-line a:first-child {
	padding-left: 46px;
	border-radius: 5px 0 0 5px; /*to match with the parent's radius*/
}
.breadcrumb-line a:first-child:before {
	left: 14px;
}
.breadcrumb-line a:last-child {
	border-radius: 0 5px 5px 0; /*this was to prevent glitches on hover*/
	padding-right: 20px;
}

/*hover/active styles*/
.breadcrumb-line a.active, .breadcrumb-line a:hover{
	background: #333;
	background: linear-gradient(#333, #000);
}
.breadcrumb-line a.active:after, .breadcrumb-line a:hover:after {
	background: #333;
	background: linear-gradient(135deg, #333, #000);
}

.breadcrumb-line a.active1, .breadcrumb-line a:hover{
	color: #fff;
	background: #563D90;
	background: linear-gradient(#563D90, #000);
}
.breadcrumb-line a.active1:after, .breadcrumb-line a:hover:after {
	color: #fff;
	background: #563D90;
	background: linear-gradient(135deg, #563D90, #000);
}
/*adding the arrows for the breadcrumbs using rotated pseudo elements*/
.breadcrumb-line a:after {
	content: '';
	position: absolute;
	top: 0; 
	right: -20px; /*half of square's length*/
	/*same dimension as the line-height of .breadcrumb a */
	width: 48px; 
	height: 48px;
	/*as you see the rotated square takes a larger height. which makes it tough to position it properly. So we are going to scale it down so that the diagonals become equal to the line-height of the link. We scale it to 70.7% because if square's: 
	length = 1; diagonal = (1^2 + 1^2)^0.5 = 1.414 (pythagoras theorem)
	if diagonal required = 1; length = 1/1.414 = 0.707*/
	transform: scale(0.707) rotate(45deg);
	/*we need to prevent the arrows from getting buried under the next link*/
	z-index: 1;
	/*background same as links but the gradient will be rotated to compensate with the transform applied*/
	background: #666;
	background: linear-gradient(135deg, #666, #333);
	/*stylish arrow design using box shadow*/
	box-shadow: 
		2px -2px 0 2px rgba(0, 0, 0, 0.4), 
		3px -3px 0 2px rgba(255, 255, 255, 0.1);
	/*
		5px - for rounded arrows and 
		50px - to prevent hover glitches on the border created using shadows*/
	border-radius: 0 5px 0 50px;
}
/*we dont need an arrow after the last link*/
.breadcrumb-line a:last-child:after {
	content: none;
}
/*we will use the :before element to show numbers*/
.breadcrumb-line a:before {
	content: counter(flag);
	counter-increment: flag;
	/*some styles now*/
	border-radius: 100%;
	width: 20px;
	height: 20px;
	line-height: 24px;
	margin: 14px 0;
	position: absolute;
	top: 0;
	left: 30px;
	background: #444;
	background: linear-gradient(#444, #222);
	font-weight: bold;
	color: black;
}


.flat a, .flat a:after {
	background: white;
	color: black;
	transition: all 0.5s;
	text-align: center;
}
.flat a:before {
	background: white;
	box-shadow: 0 0 0 1px #ccc;
}
.flat a:hover, .flat a.active, 
.flat a:hover:after, .flat a.active:after{
	background: #563D90;
}
.table > thead > tr.success > th.head-table {
	text-align: center;
     vertical-align: middle;
	font-size: 32px;
	font-weight: bold;
}

/* Button Detail Pages */
.detail-button {
  display: block;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  line-height: 2;
  text-decoration: none;
  color: white;
  background-color: #5c9ded;
  border-radius: 4px;
  position: absolute;
  cursor:pointer;
  width: 270px;
  height: 60px;
  margin-top: 0px;
  text-shadow: 0 -1px -1px #4a8bdb;
  -moz-box-shadow: 0 4px 0 #4a8bdb, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 4px 0 #4a8bdb, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 0 #4a8bdb, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.detail-button:hover,.detail-button:focus {
  background-color: #5c7aea;
  text-shadow: 0 -1px -1px #c4402f;
  -moz-box-shadow: 0 4px 0 #4c5ad8, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 4px 0 #4c5ad8, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 0 #4c5ad8, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
}
.detail-button:active {
  margin-top: 5px;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.detail-button > .detail-font {
  margin-left: 45px;
  margin-right: 45px;
}
.detail-button > .detail-font-en {
  margin-left: 50px;
  margin-right: 50px;
}

.link-button {
  display: block;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  line-height: 2;
  text-decoration: none;
  color: white;
  background-color: #f6bb43;
  border-radius: 4px;
  position: absolute;
  cursor:pointer;
  width: 270px;
  height: 60px;
  margin-top: 55px;
  text-shadow: 0 -1px -1px #d69522;
  -moz-box-shadow: 0 4px 0 #d69522, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 4px 0 #d69522, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 0 #d69522, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.link-button:hover,.link-button:focus {
  background-color: #ed9f15;
  text-shadow: 0 -1px -1px #d18100;
  -moz-box-shadow: 0 4px 0 #d18100, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 4px 0 #d18100, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 0 #d18100, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
}
.link-button:active {
  margin-top: 60px;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.link-button .link-font {
  margin-left: 30px;
  margin-right: 30px;
}
.link-button .link-font-en {
  margin-left: 58px;
  margin-right: 58px;
}

.link-button-disabled, .link-button-disabled:hover,.link-button-disabled:focus,.link-button-disabled:active {
  display: block;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  line-height: 2;
  text-decoration: none;
  color: white;
  background-color: #bfbfbf;
  border-radius: 4px;
  position: absolute;
  cursor:not-allowed;
  width: 270px;
  height: 60px;
  margin-top: 55px;
  text-shadow: 0 -1px -1px #abb7b7;
  -moz-box-shadow: 0 4px 0 #abb7b7, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 4px 0 #abb7b7, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 0 #abb7b7, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.link-button-disabled .link-font {
  margin-left: 30px;
  margin-right: 30px;
}
.link-button-disabled .link-font-en {
  margin-left: 58px;
  margin-right: 58px;
}

.law-button {
  display: block;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  line-height: 2;
  text-decoration: none;
  color: white;
  background-color: #ec5664;
  border-radius: 4px;
  position: absolute;
  cursor:pointer;
  width: 270px;
  height: 60px;
  margin-top: 110px;
  text-shadow: 0 -1px -1px #d9434e;
  -moz-box-shadow: 0 4px 0 #d9434e, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 4px 0 #d9434e, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 0 #d9434e, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.law-button:hover,.law-button:focus {
  background-color: #e53844;
  text-shadow: 0 -1px -1px #d32237;
  -moz-box-shadow: 0 4px 0 #d32237, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 4px 0 #d32237, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 0 #d32237, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
}
.law-button:active {
  margin-top: 115px;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.law-button .law-font {
  margin-left: 10px;
  margin-right: 10px;
}
.law-button .law-font-en {
  margin-left: 12px;
  margin-right: 12px;
}

.law-button-disabled, .law-button-disabled:hover,.law-button-disabled:focus,.law-button-disabled:active {
  display: block;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  line-height: 2;
  text-decoration: none;
  color: white;
  background-color: #bfbfbf;
  border-radius: 4px;
  position: absolute;
  cursor:not-allowed;
  width: 270px;
  height: 60px;
  margin-top: 110px;
  text-shadow: 0 -1px -1px #abb7b7;
  -moz-box-shadow: 0 4px 0 #abb7b7, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 4px 0 #abb7b7, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 0 #abb7b7, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.law-button-disabled .law-font {
  margin-left: 10px;
  margin-right: 10px;
}
.law-button-disabled .law-font-en {
  margin-left: 12px;
  margin-right: 12px;
}

.form-button {
  display: block;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  line-height: 2;
  text-decoration: none;
  color: white;
  background-color: #ac77d2;
  border-radius: 4px;
  position: absolute;
  cursor:pointer;
  width: 270px;
  height: 60px;
  margin-top: 165px;
  text-shadow: 0 -1px -1px #765191;
  -moz-box-shadow: 0 4px 0 #765191, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 4px 0 #765191, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 0 #765191, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.form-button:hover,.form-button:focus {
  background-color: #9043cb;
  text-shadow: 0 -1px -1px #4d0091;
  -moz-box-shadow: 0 4px 0 #4d0091, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 4px 0 #4d0091, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 0 #4d0091, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
}
.form-button:active {
  margin-top: 170px;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.form-button .form-font {
  margin-left: 0px;
  margin-right: 0px;
}
.form-button .form-font-en {
  margin-left: 52px;
  margin-right: 52px;
}

.form-button-disabled, .form-button-disabled:hover,.form-button-disabled:focus, .form-button-disabled:active {
  display: block;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  line-height: 2;
  text-decoration: none;
  color: white;
  background-color: #bfbfbf;
  border-radius: 4px;
  position: absolute;
  cursor:not-allowed;
  width: 270px;
  height: 60px;
  margin-top: 165px;
  text-shadow: 0 -1px -1px #abb7b7;
  -moz-box-shadow: 0 4px 0 #abb7b7, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 4px 0 #abb7b7, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 0 #abb7b7, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.form-button-disabled .form-font {
  margin-left: 0px;
  margin-right: 0px;
}
.form-button-disabled .form-font-en {
  margin-left: 52px;
  margin-right: 52px;
}

.link-to:hover, .link-to:focus {
  color: blue;
  font-weight: bold;
}
.link-to:active {
  color: purple;
}

.back-btn {
  display: block;
  background: url('../../images/button/back-btn.svg');
  background-repeat: no-repeat;
  width: 100px;
  height: 100px;
  background-size: 100px 100px; 
  top: 200px;
  opacity: 0.8;
}
.back-btn:hover {
  opacity: 1;
}
.next-btn {
  display: block;
  background: url('../../images/button/next-btn.svg');
  background-repeat: no-repeat;
  width: 100px;
  height: 100px;
  background-size: 100px 100px; 
  top: 200px;
  opacity: 0.8;
}
.next-btn:hover {
  opacity: 1;
}

.search-button {
  display: block;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 2;
  text-decoration: none;
  color: white;
  background-color: #ac77d2;
  border-radius: 4px;
  position: absolute;
  cursor:pointer;
  width: 250px;
  height: 40px;
  text-shadow: 0 -1px -1px #765191;
  -moz-box-shadow: 0 4px 0 #765191, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 4px 0 #765191, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 0 #765191, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.search-button:hover {
  background-color: #9043cb;
  text-shadow: 0 -1px -1px #4d0091;
  -moz-box-shadow: 0 4px 0 #4d0091, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 4px 0 #4d0091, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 0 #4d0091, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
}
.search-button:active {
  margin-top: 15px;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.bootstrap-select.form-control {
  font-size: 24px;
}
.bootstrap-select > .btn {
  padding: 0;
}
#search-button {
  margin: 0;
}
#search-bar {
  margin: 0;
}
#search-close {
  margin-top: 10px;
  width: 50px;
  height: 45px;
}


.flow-chart-button {
  display: block;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 2;
  text-decoration: none;
  color: white;
  background-color: #1ABC9C;
  border-radius: 4px;
  position: relative;
  cursor:pointer;
  width: 240px;
  height: 45px;
  margin-top: 0px;
  text-shadow: 0 -1px -1px #008B80;
  -moz-box-shadow: 0 4px 0 #008B80, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 4px 0 #008B80, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 0 #008B80, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.flow-chart-button:hover {
  background-color: #16A085;
  text-shadow: 0 -1px -1px #106B60;
  -moz-box-shadow: 0 4px 0 #106B60, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 4px 0 #106B60, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 0 #106B60, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
}
.flow-chart-button:active {
  margin-top: 15px;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.law-show-button, .form-show-button {
  display: block;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 1.75;
  text-decoration: none;
  color: white;
  background-color: #1ABC9C;
  border-radius: 4px;
  position: relative;
  cursor:pointer;
  width: 140px;
  height: 45px;
  margin-top: 0px;
  text-shadow: 0 -1px -1px #008B80;
  -moz-box-shadow: 0 4px 0 #008B80, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 4px 0 #008B80, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 0 #008B80, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.law-show-button:hover, .form-show-button:hover {
  background-color: #16A085;
  text-shadow: 0 -1px -1px #106B60;
  -moz-box-shadow: 0 4px 0 #106B60, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 4px 0 #106B60, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 0 #106B60, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
}
.law-show-button:active, .form-show-button:active {
  margin-top: 15px;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.law-show-button-disabled, .form-show-button-disabled {
  display: block;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 1.75;
  text-decoration: none;
  color: white;
  background-color: #95a5a6;
  border-radius: 4px;
  position: relative;
  width: 140px;
  height: 45px;
  margin-top: 0px;
  text-shadow: 0 -1px -1px #7f8c8d;
  -moz-box-shadow: 0 4px 0 #7f8c8d, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 4px 0 #7f8c8d, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 0 #7f8c8d, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.phase1-checkbox {
  display: block;
  font-size: 32px;
  font-weight: bold;
  text-align: left;
  line-height: 2;
  text-decoration: none;
  color: white;
  background-color: #5c9ded;
  border-radius: 4px;
  position: relative;
  left: 80px;
  width: 200px;
  height: 60px;
  margin-top: 0px;
  text-shadow: 0 -1px -1px #4a8bdb;
  -moz-box-shadow: 0 4px 0 #4a8bdb, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 4px 0 #4a8bdb, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 0 #4a8bdb, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.phase2-checkbox {
  display: block;
  font-size: 32px;
  font-weight: bold;
  text-align: left;
  line-height: 2;
  text-decoration: none;
  color: white;
  background-color: #f6bb43;
  border-radius: 4px;
  position: relative;
  left: 80px;
  width: 200px;
  height: 60px;
  margin-top: 0px;
  text-shadow: 0 -1px -1px #d69522;
  -moz-box-shadow: 0 4px 0 #d69522, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 4px 0 #d69522, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 0 #d69522, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.phase3-checkbox {
  display: block;
  font-size: 32px;
  font-weight: bold;
  text-align: left;
  line-height: 2;
  text-decoration: none;
  color: white;
  background-color: #ec5664;
  border-radius: 4px;
  position: relative;
  left: 80px;
  width: 200px;
  height: 60px;
  margin-top: 0px;
  text-shadow: 0 -1px -1px #d9434e;
  -moz-box-shadow: 0 4px 0 #d9434e, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 4px 0 #d9434e, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 0 #d9434e, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.phase4-checkbox {
  display: block;
  font-size: 32px;
  font-weight: bold;
  text-align: left;
  line-height: 2;
  text-decoration: none;
  color: white;
  background-color: #ac77d2;
  border-radius: 4px;
  position: relative;
  left: 80px;
  width: 200px;
  height: 60px;
  margin-top: 0px;
  text-shadow: 0 -1px -1px #765191;
  -moz-box-shadow: 0 4px 0 #765191, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 4px 0 #765191, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 0 #765191, 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.phase-1-font, .phase-2-font, .phase-3-font, .phase-4-font {
  font-size: 24px;
  margin-left: -50px;
}
.breadcrumb2line-en {
   line-height:0.8;
   display:inline-block;
   margin-top: 8px;
}
.breadcrumb2line-th {
   line-height:0.9;
   display:inline-block;
   margin-top: 6px;
}
.last-breadcrumb {
  font-size: 28px;
  vertical-align: top;
  margin-top: 10px;
}

.table > thead > tr.industry-tr > th.no {
  width: 180px;
}
.table > thead > tr.industry-tr > th.industry-th {
  font-size: 26px;
}
.table > tbody > tr > td.industry-td {
  font-size: 26px;
  padding: 2px 20px;
}