/* 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); }
}

.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;

}


/* 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_icon_style_common{
    font-size: 20px;
    cursor: pointer;
}

.dei_icon_style_common:hover{
    color: #f00;
}