﻿/* 分頁 */




/* Hide file input */

.file {
    display: none !important;
}


/* Custom upload button appearance*/
.imgcover{
    background-position: center;
    background-size: cover;
    padding-bottom: 67%;
    margin-bottom: 15px;
}
.choose-file {
    cursor: pointer;
    z-index: 1;
    display: block;
    width: 200px;
    height: 150px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #e2e2e2;
    border-style: dashed;
    position: relative;
}

.cancel-file {
    position: absolute;

    width: 20px;
    height: 20px;
    font-size: 18px;
   text-align: center; 
    color: #000;
    top:0px;
    right: 0px;
    z-index:1;
    background-color: yellowgreen;
}
.cancel-file >a{
    color: #000;
}
.f12{
    font-size: 12px;
}
/*提示字*/
.tips {
    color: red;
    font-size: 10px;
}
.tips-red {
    color: red;
}
.tips-blue {
    color: blue;
}
.tips-green {
    color: green;
}
.tips-black {
    color: black;
}
.fw-bolder {
    font-weight: bolder;
}
.table_file_position {
    margin-left: 180px
}

div.btn-group button a {
    color: #333;
}
/*文字*/
green,[green] {
    color: green;
}
blue,[blue] {
    color: blue;
}

brown,[brown] {
    color: brown;
}

red,[red] {
    color: red;
}


[b],[bolder] {
    font-weight:bolder;
}
[font-family]{
    font-family:Microsoft JhengHei;
}
.alert_color,[darkred],darkred {
    color:#bf1515
}

/*按鈕*/

Dblue,
[Dblue] {
    color: #273758;
}

.btn-Dblue {
    background-color: #273758;
    border-color: #273758;
    color: white;
}

.btn-Dblue:hover,
.btn-Dblue:active,
.btn-Dblue:focus {
    border-color: #273758 !important;
    background-color: #4f6491;
    color: white !important;
}


brown,
[brown] {
    color: #482001;
}

.btn-brown {
    background-color: #482001;
    border-color: #482001;
    color: white;
}

.btn-brown:hover,
.btn-brown:active,
.btn-brown:focus {
    border-color: #482001 !important;
    background-color: #482001;
    color: white !important;
}


purple,[purple] {
    color: #6d25c3d6;
}
.btn-purple{
    background-color:#6d25c3d6;
    border-color:#6d25c3d6;
    color: white;
    text-shadow: 0 -1px 3px rgba(0, 0, 0, 0.25);
}
.btn-purple:hover,.btn-purple:active,.btn-purple:focus {
    border-color: #6d25c3d6 !important;
    background-color: #6d25c3d6;
    color: white !important;
    text-shadow: 0 -1px 3px rgba(0, 0, 0, 0.25);
}


blue_green,[blue_green] {
    color: #08b87d;
}
.btn-blue_green{
    background-color:#08b87d;
    border-color:#08b87d;
    color: white;
}
.btn-blue_green:hover,.btn-blue_green:active,.btn-blue_green:focus {
    border-color: #08b87dd6 !important;
    background-color: #08b87dd6;
    color: white !important;
}

orange,[orange] {
    color: #ffaa84d6;
}
.btn-orange{
    background-color:#ffaa84d6;
    border-color:#ffaa84d6;
    color: white;
    text-shadow: 0 -1px 3px rgba(0, 0, 0, 0.25);
}
.btn-orange:hover,.btn-orange:active,.btn-orange:focus {
    border-color: #ffaa84d6 !important;
    background-color: #ffaa84d6;
    color: white !important;
    text-shadow: 0 -1px 3px rgba(0, 0, 0, 0.25);
}
pink,[pink] {
    color: lightcoral;
}
.btn-pink{
    background-color:lightcoral;
    border-color:lightcoral;
    color: white;
}
.btn-pink:hover,.btn-pink:active,.btn-pink:focus {
    border-color: lightcoral !important;
    background-color: lightcoral;
    color: white !important;
}
light_blue,[light_blue] {
    color: #55ACEE;
}
.btn-light_blue{
    background-color:#55ACEE;
    border-color:#47A5ED;
    color: white;
}
.btn-light_blue:hover,.btn-light_blue:active,.btn-light_blue:focus {
    border-color: #47A5ED !important;
    background-color: #55ACEE;
    color: white !important;
}
/*密碼顯示*/
#show_hide_password:hover ,eye{
    cursor:pointer;
    color: #7fb808;
}
/*搜尋按鈕*/
[name=search_button]{
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #7fb808;
  border-color: #7fb808;
}

margin10,.margin10{
	margin:10px;
}
/*checkbox*/
.checkbox-container {
  display: block;
  position: relative;
  padding: 7px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #cccccc;
  border-radius: 3px;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
  background-color: #eaeaea;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
  background-color: #5cb85c;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
  left: 5px;
  top: 2px;
  width: 7px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 1px;
}
/*checkbox*/


/*按鈕*/

