/************************************* 以下適用所有尺寸 ***********************************/
/* loading phone style  */
.circle-loader {
    margin-left: 0px;
	fill: transparent;
	stroke: #68cb9f;
	stroke-width: 3;
	animation: dash_loading 2s ease infinite,rotate_loading 2s linear infinite;
}
.circle-loader.progress_loading{

}
.loading_span{
    position: absolute;
    transform: translate(-50%,-50%);
}

@keyframes dash_loading {
	0% {
		stroke-dasharray: 1,95;
		stroke-dashoffset: 0;
	}
	50% {
		stroke-dasharray: 85,95;
		stroke-dashoffset: -25;
	}
	100% {
		stroke-dasharray: 85,95;
		stroke-dashoffset: -93;
	}
}

@keyframes rotate_loading {
	0% {transform: rotate(0deg); }
	100% {transform: rotate(360deg); }
}


/* dei字型 */
@font-face {
    font-family: "DEILOGO";
    src: url(../media_content/fonts/Dei_Logo/DEI-LOGO.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}
/* 閃爍動畫 */
@keyframes animate_fade_in_out {
    0%   { opacity:1; }
    50%  { opacity:0; }
    100% { opacity:1; }
}
@-o-keyframes animate_fade_in_out{
    0%   { opacity:1; }
    50%  { opacity:0; }
    100% { opacity:1; }
}
@-moz-keyframes animate_fade_in_out{
    0%   { opacity:1; }
    50%  { opacity:0; }
    100% { opacity:1; }
}
@-webkit-keyframes animate_fade_in_out{
    0%   { opacity:1; }
    50%  { opacity:0; }
    100% { opacity:1; }
}
.dei_fade_in_out_animate {
    -webkit-animation: animate_fade_in_out 1s infinite;
    -moz-animation: animate_fade_in_out 1s infinite;
    -o-animation: animate_fade_in_out 1s infinite;
    animation: animate_fade_in_out 1s infinite;
}

/* //警告用閃爍 */
.dei_fade_in_out_animate_end_removeClass {
    -webkit-animation: animate_fade_in_out 1s infinite;
    -moz-animation: animate_fade_in_out 1s infinite;
    -o-animation: animate_fade_in_out 1s infinite;
    animation: animate_fade_in_out 1s infinite;
    color: red;
    font-size: 22px;
}
/* 閃爍動畫結束 */

.dei_line_style_spilt{
    margin-top: 5px;
    border-color: #DDDDDD;
    border-top: 4px solid #eee;
    margin-left: 23px;
    margin-bottom: 5px;
}

/* pannel 綠色總標題 */
.dei_pannel_title_common{
    text-align: center;
    color: green;
    font-size: 20px;
    font-weight: bold;
}

.dei_warming_input_style{
    border-color: #FF0000 !important;
    box-shadow: unset !important;
}
body{
   font-size: 14px !important;
   /* 防止反白 */
   -webkit-user-select: none; /* Safari 3.1+ */
   -moz-user-select: none; /* Firefox 2+ */
   -ms-user-select: none; /* IE 10+ */
   user-select: none; /* Standard syntax */
}
.dei_show_case{
    /* display: none; */
}

.modal {
	z-index: 8000;
}

.modal-dialog-vertical-centered-helper {
    display:table;
    height: 100%;
    width: 100%;
}

.modal-dialog-vertical-centered {
    /* To center vertically */
    display: table-cell;
    vertical-align: middle;
}

.modal-content-vertical-centered {
    /* Bootstrap sets the size of the modal in the modal-dialog class, we need to inherit it */
    width:inherit;
    height:inherit;
    /* To center horizontally */
    margin: 0 auto;
}

.modal-open{
    overflow: hidden !important;
}
.dei_modal_open{
    position: fixed ;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   
}
/* 
html,body {
    height: 100%;
    overflow: hidden;
} */
    

.dei_fn_open{
    position: fixed ;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.modal-backdrop{
    opacity: 0;
}
/* 搜尋 */
.dei_search_icon{
    top : 0px;
}
/* bootstrap panel 若不將 background 強迫設定顏色, 當 panel 上 control 動作時, 常常會透到背景產生雜訊 */
.modal-body{
    background-color: white;
}

/* bootstrap panel 若啟用 backdrop 而 opacity 是半透明, panel 上 select/tab control 切換時, 會造成 backdrop 出現殘影雜訊 */
.modal-backdrop.in{
    opacity: 0;
}

#dei_waitcursor_dialog, #dei_waitcursor_dialog div {
    background: transparent;
    border: none;
    box-shadow: none;
    
}

#dei_wait_cursor, #dei_wait_cursor_msg_container{
    text-align: center;
}

#dei_wait_cursor img{
    width: 120px;
    /* height: 120px; */
}

#dei_wait_cursor_msg {
    color: #68cb9f;
    font-weight: bold;
    font-size: 25px;
    top: 20px;
    position: relative;
}

/* 系統功能項 */
.dei_task_button{
    display: block;
}

/* 系統功能項處在未被選擇且狀態為 disabled */
.dei_task_button.btn-default.disabled{
    display: none;
}

.dei_logo_font{
    font-family: 'DEILOGO','Microsoft JhengHei UI';
}

/*------------------ 以下為支援 toggle switch 開關元件所用到的 css --------------------------*/
/*
使用方式：於 HTML 中加入下列 code 即可

(1) 方形開關-起始狀態為關:
    <label class="switch">
        <input type="checkbox">
        <span class="slider"></span>
    </label>

(2) 方形開關-起始狀態為開:
    <label class="switch">
        <input type="checkbox" checked>
        <span class="slider"></span>
    </label>

(3) 圓角形開關-起始狀態為關:
    <label class="switch">
        <input type="checkbox">
        <span class="slider round"></span>
    </label>

(4) 圓角形開關-起始狀態為開:
    <label class="switch">
        <input type="checkbox" checked>
        <span class="slider round"></span>
    </label>
*/
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  .switch input {display:none;}
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }

/*------------------ 以下為支援 toggle switch 開關元件所用到的 css --------------------------*/
/* switch2 slide2 為開關狀態同顏色 */
  .switch2 {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  .switch2 input {display:none;}
  
  .slider2 {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color:#2196F3;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider2:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  
  input:checked + .slider2 {
    background-color: #2196F3;
  }
  
  input:focus + .slider2 {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider2:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  .slider2.round {
    border-radius: 34px;
  }
  
  .slider2.round:before {
    border-radius: 50%;
  }


/****************** 以上適用適用所有尺寸 (含 large desktops, 1200px and up) ****************/


/* 當螢幕寬度小於此寬度時使用 */
@media (max-width:320px){
    body {
        width: 320px;
    }
}

@media (max-width: 992px) {
   

}