



/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
  font-family: Raleway-Black;
  src: url('../fonts/raleway/Raleway-Black.ttf'); 
}

@font-face {
  font-family: Raleway-SemiBold;
  src: url('../fonts/raleway/Raleway-SemiBold.ttf'); 
}

@font-face {
  font-family: Raleway-Bold;
  src: url('../fonts/raleway/Raleway-Bold.ttf'); 
}

/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
	margin: 17px 0px 0px 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: "微軟正黑體", "Microsoft JhengHei";
  font-size:16px;
  line-height: 1; 
}

/*---------------------------------------------*/
a {
	font-family: 微軟正黑體;
  font-size: 14px;
  font-weight:bold;
	line-height: 1.7;
	color: #FF7A5A;
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
}

/*---------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
	margin: 5px;
}

p {
	font-family: Microsoft JhengHei;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
}

ul, li {
	margin: 0px;
	list-style-type: none;
}


/*---------------------------------------------*/
input {
	outline: none;
	border: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus, input:focus {
  border-color: transparent !important;
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #adadad;}
input:-moz-placeholder { color: #adadad;}
input::-moz-placeholder { color: #adadad;}
input:-ms-input-placeholder { color: #adadad;}

textarea::-webkit-input-placeholder { color: #adadad;}
textarea:-moz-placeholder { color: #adadad;}
textarea::-moz-placeholder { color: #adadad;}
textarea:-ms-input-placeholder { color: #adadad;}

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}



/*//////////////////////////////////////////////////////////////////
[ Contact ]*/

.container-contact100 {
  width: 100%;  
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  /*justify-content: center;*/
  align-items: center;
  padding: 15px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.wrap-contact100 {
  max-width: 80%;
  background: #FCFCFC;
  border-radius: 2px;
  padding: 25px 80px 40px 80px;
  position: relative;
}

/*==================================================================
[ Form ]*/

.contact100-form {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact100-form-title {
  display: block;
  width: 100%;
  font-size: 30px;
  color: white;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 32px;
}



/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  background-color: transparent;
  margin-bottom: 15px;
  color: #555555;
}

.rs1-wrap-input100 {
  width: calc((100% - 30px) / 2);
}

.label-input100 {
  font-family: Raleway-SemiBold;
  font-size: 14px;
  color: #555555;
  line-height: 1.5;
}

.input100 {
  display: block;
  width: 100%;
  background: #f2f2f2;
  border-radius: 2px;

  font-family: Raleway-SemiBold;
  font-size: 20px;
  color: #686868;
  line-height: 1.2;
  padding: 0 28px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  margin-top: 10px;
}


/*---------------------------------------------*/
input.input100 {
  height: 62px;
}


textarea.input100 {
  min-height: 162px;
  padding-top: 19px;
  padding-bottom: 13px;
}

.input100:focus {
  background: #e6e6e6;
}

/*------------------------------------------------------------------
[ Button ]*/
.container-contact100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 5px;
}

.wrap-contact100-form-btn {
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 2px;
  overflow: hidden;
}

.contact100-form-bgbtn {
  position: absolute;
  z-index: -1;
  width: 300%;
  height: 100%;
  background: #df2351;
  background: -webkit-linear-gradient(right, #2f91ff, #00c513, #2f91ff, #00c513);
  background: -o-linear-gradient(right, #2f91ff, #00c513, #2f91ff, #00c513);
  background: -moz-linear-gradient(right, #2f91ff, #00c513, #2f91ff, #00c513);
  background: linear-gradient(right, #2f91ff, #00c513, #2f91ff, #00c513);
  top: 0;
  left: -100%;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.contact100-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  min-width: 150px;
  height: 62px;

  font-family: Raleway-Bold;
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
}

.wrap-contact100-form-btn:hover .contact100-form-bgbtn {
  left: 0;
}


/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 992px) {
  .wrap-contact100 {
   /* padding: 66px 80px 59px 80px;*/
   padding: 25px 80px 59px 80px;
  }
}

@media (max-width: 768px) {
  .rs1-wrap-input100 {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .wrap-contact100 {
    max-width: 100%;
   /* padding: 66px 15px 59px 15px;*/
    padding: 25px 15px 59px 15px;
  }
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  bottom: calc((100% - 34px) / 2);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
  right: 10px;
  pointer-events: none;

  font-family: Raleway-SemiBold;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f12a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 16px;
  bottom: calc((100% - 34px) / 2);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
  right: 18px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}


/*==================================================================
[ Contact more ]*/

.contact100-more {
  display: block;
  max-width: 960px;
  font-size: 15px;
  color: #fff;
  line-height: 1.4;
  text-align: center;
  padding: 40px 0 10px 0;
}

/*==================================================================
[ navbar]*/

.navbar {
  position: relative;
  z-index: 1000;
  min-height: 50px;
  margin-bottom: 0px;
  border: 1px solid transparent;
}

/*==================================================================
[ table class]*/

table {
  background-color: #F9F3E6;
}

.table_blu {
  font-family: "微軟正黑體", Arial, Helvetica, sans-serif;
  font-size:14px;
  border-collapse: collapse;
  width: 100%;
}

.table_blu th, td {
  border: 1px solid white;
  padding: 8px;
}

.table_blu tr:nth-child(even){background-color: #E3F3F7;}

.table_blu tr:hover {background-color: #ddd;}

.table_blu th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
  background-color: #2980B9;
  color: white;
}

/*==================================================================
[ checkbox校正]*/

.custom-control-label::before {
  width: 0rem; 
  height: 0rem;
}

.custom-control-label::after {
  width: 0rem;
  height: 0rem;
}

/*==================================================================
[ 版面會多白色區塊和日期選擇器校正---aspx才會有這問題]*/

* {
  margin: 0px 0px 0px 0px;
}

.col-md-2 {
top: 0px;
}

.wrap-title {
  max-width: 1000px;
  padding: 20px 0px 0px 0px;
  position: relative;
}

/*==================================================================
[首頁選單]*/

.list-type2{
width:200px;
margin:0 auto;
}
		 
.list-type2 ol{
counter-reset: li;
list-style: none;
*list-style: decimal;
font-size: 15px;
font-family: 'Raleway', sans-serif;
padding: 0;
margin-bottom: 4em;
}
		 
.list-type2 ol ol{
 margin: 0 0 0 2em;
}
		 
.list-type2 a{
position: relative;
display: block;
padding: .4em .4em .4em 2em;
*padding: .4em;
margin: .5em 0;
background: #78BBE6;
color: #444;
text-decoration: none;
transition: all .2s ease-in-out;
}
		 
.list-type2 a:hover{
background: #d6d4d4;
text-decoration:none;
transform: scale(1.1);
}
		 
.list-type2 a:before{
content: counter(li);
counter-increment: li;
position: absolute;
left: -1.3em;
top: 50%;
margin-top: -1.3em;
background:#FC756F;
height: 2em;
width: 2em;
line-height: 2em;
border: .3em solid #fff;
text-align: center;
font-weight: bold;
color:#FFF;
}

/*==================================================================
[首頁選單]*/
.bluetext {

	color: #2980B9;

}

.img {
  max-width: 100%;
  height: auto;
}
/*****************************************/
.rwd-table {
  background: #F9F3E6;
  overflow: hidden;
  font-family: "微軟正黑體", Arial, Helvetica, sans-serif;
  font-size:14px;
}

  .rwd-table tr:nth-of-type(2n) {
      background: #E3F3F7;
  }

  .rwd-table th, .rwd-table td {
      margin: 0.5em 1em;
  }

.rwd-table {
  min-width: 100%;
}

  .rwd-table th {
    background-color: #2980B9;
    color: white;									
    display: none;
  }

  .rwd-table td {
      display: block;
  }

 .rwd-table td:before {
    content: attr(data-th) " : ";
    font-weight: bold;
    width: 100%;
    display: inline;
    margin-right: 5px;
}

  .rwd-table th, .rwd-table td {
      text-align: left;
  }

.rwd-table td:before {

    font-weight: bold;
    color: #3B3B3B;
    line-height: 25px;
}

@media (min-width: 990px) {
  .rwd-table td:before {
      display: none;
  }

  .rwd-table th, .rwd-table td {
      display: table-cell;
      padding: 0.25em 0.5em;
  }

.rwd-table th:first-child, .rwd-table td:first-child {
    padding-left: 0;
}

.rwd-table th:last-child, .rwd-table td:last-child {
    padding-right: 0;
}

  .rwd-table th, .rwd-table td {
      padding: 1em !important;
  }
}
/*****************************************************/
.bg-light {
  background-color: #D7EEF2 !important;
}

.navbar-brand {
  padding: 0px 0px; 
}

@media (max-width: 400px) {
  .navbar-toggler {
    padding: 0.25rem 0%;
    border: 0px solid transparent;
    float: right;
    /*margin-left: 85%;*/
    } 
}
/********個資同意css**********/
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
 /* width: 70%;*/
  width:80%;
  height:90%;
  overflow:auto;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/* The Close Button */
.close1 {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close1:hover,
.close1:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
}

.modal-body {padding: 2px 16px;}

.modal-footer {
  padding: 2px 16px;
  background-color: white;
}
/*********************************/
.aspNetDisabled{
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #555;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

.aspNetDisabled[disabled], .aspNetDisabled[readonly], fieldset[disabled] .aspNetDisabled {
  cursor: not-allowed;
  background-color: #eee;
}

/***********div Alerts 區塊紅色亮度調低**************/
.alert-danger {
  background-color: #d5525b;
  border-color: #d9534f;
}

.danger-tab{
  margin-bottom: 5px;
  line-height: initial;
}

.alert-dismissible {
   padding-right: 1rem; 
}

.delete-tab{
  color: #555555;
}