/*\한글*/

.vertical-alignment-helper {
    display:table;
    height: 100%;
    width: 100%;
    pointer-events:none; /* This makes sure that we can still click outside of the modal to close it */
}
.vertical-align-center {
    /* To center vertically */
    display: table-cell;
    /*vertical-align: middle;*/
    pointer-events:none;
}
.modal-content {
    /* 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;
    pointer-events: all;
}


#loadingBar {
  width:100%;
  height:100%;
  background:rgba(000,000,000,0.7);
  z-index:1000;
  top:0;
  left:0;
  text-align: center;
  position:fixed;
}

#loadingBar img {
  position:relative;
  margin:0 auto; 
  width:60px; 
  height:auto;
  margin-top: 250px;
}