
/* loading block 
 * Base Block UI Css 
 */
/**---------------------
  *
  * Loading Screen
  *
  *---------------------**/
.mz-tc-loading-screen{
    position: relative;
    background-color: rgba(0,0,0,.4);
    text-align: center;
    z-index: 9999;
    color: #FFF;
    opacity: 0;
    visibility: hidden;

    -webkit-transition: all .25s;
    transition: all .25s;
    display: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.mz-tc-loading-screen.mzOn{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 1;
    visibility: visible;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.mz-tc-loading-screen .mz-big{
    font-size: 24px;
    font-weight: 500;
    opacity: .9;
}

.mz-tc-loading-screen .mz-small{
    font-size: 12px;
    margin: 10px 0 20px;
    opacity: .7;
}

/**---------------------
  *
  * Spinner
  *
  *---------------------**/
.mz-preloader-wrapper {
    display: inline-block;
    position: relative;
    width: 48px;
    height: 48px; }
.mz-preloader-wrapper.mz-small {
    width: 36px;
    height: 36px; }
.mz-preloader-wrapper.mz-big {
    width: 64px;
    height: 64px; }
.mz-preloader-wrapper.mz-active {
    /* duration: 360 * ARCTIME / (ARCSTARTROT + (360-ARCSIZE)) */
    -webkit-animation: container-rotate 1568ms linear infinite;
    animation: container-rotate 1568ms linear infinite; }

@-webkit-keyframes container-rotate {
    to {
        -webkit-transform: rotate(360deg); } }

@keyframes container-rotate {
    to {
        transform: rotate(360deg); } }

.mz-spinner-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    border-color: #26a69a; }

.mz-spinner-blue, .mz-spinner-blue-only {
    border-color: #4285f4; }

.mz-spinner-red, .mz-spinner-red-only {
    border-color: #db4437; }

.mz-spinner-yellow, .mz-spinner-yellow-only {
    border-color: #f4b400; }

.mz-spinner-green, .mz-spinner-green-only {
    border-color: #0f9d58; }

.mz-active .mz-spinner-layer.mz-spinner-blue {
    /* durations: 4 * ARCTIME */
    -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, blue-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, blue-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }

.mz-active .mz-spinner-layer.mz-spinner-red {
    /* durations: 4 * ARCTIME */
    -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, red-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, red-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }

.mz-active .mz-spinner-layer.mz-spinner-yellow {
    /* durations: 4 * ARCTIME */
    -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, yellow-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, yellow-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }

.mz-active .mz-spinner-layer.mz-spinner-green {
    /* durations: 4 * ARCTIME */
    -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, green-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, green-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }

.mz-active .mz-spinner-layer, .mz-active .mz-spinner-layer.mz-spinner-blue-only, .mz-active .mz-spinner-layer.mz-spinner-red-only, .mz-active .mz-spinner-layer.mz-spinner-yellow-only, .mz-active .mz-spinner-layer.mz-spinner-green-only {
    /* durations: 4 * ARCTIME */
    opacity: 1;
    -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }

@-webkit-keyframes fill-unfill-rotate {
    12.5% {
        -webkit-transform: rotate(135deg); }

    25% {
        -webkit-transform: rotate(270deg); }

    37.5% {
        -webkit-transform: rotate(405deg); }

    50% {
        -webkit-transform: rotate(540deg); }

    62.5% {
        -webkit-transform: rotate(675deg); }

    75% {
        -webkit-transform: rotate(810deg); }

    87.5% {
        -webkit-transform: rotate(945deg); }

    to {
        -webkit-transform: rotate(1080deg); } }

@keyframes fill-unfill-rotate {
    12.5% {
        transform: rotate(135deg); }

    25% {
        transform: rotate(270deg); }

    37.5% {
        transform: rotate(405deg); }

    50% {
        transform: rotate(540deg); }

    62.5% {
        transform: rotate(675deg); }

    75% {
        transform: rotate(810deg); }

    87.5% {
        transform: rotate(945deg); }

    to {
        transform: rotate(1080deg); } }

@-webkit-keyframes blue-fade-in-out {
    from {
        opacity: 1; }

    25% {
        opacity: 1; }

    26% {
        opacity: 0; }

    89% {
        opacity: 0; }

    90% {
        opacity: 1; }

    100% {
        opacity: 1; } }

@keyframes blue-fade-in-out {
    from {
        opacity: 1; }

    25% {
        opacity: 1; }

    26% {
        opacity: 0; }

    89% {
        opacity: 0; }

    90% {
        opacity: 1; }

    100% {
        opacity: 1; } }

@-webkit-keyframes red-fade-in-out {
    from {
        opacity: 0; }

    15% {
        opacity: 0; }

    25% {
        opacity: 1; }

    50% {
        opacity: 1; }

    51% {
        opacity: 0; } }

@keyframes red-fade-in-out {
    from {
        opacity: 0; }

    15% {
        opacity: 0; }

    25% {
        opacity: 1; }

    50% {
        opacity: 1; }

    51% {
        opacity: 0; } }

@-webkit-keyframes yellow-fade-in-out {
    from {
        opacity: 0; }

    40% {
        opacity: 0; }

    50% {
        opacity: 1; }

    75% {
        opacity: 1; }

    76% {
        opacity: 0; } }

@keyframes yellow-fade-in-out {
    from {
        opacity: 0; }

    40% {
        opacity: 0; }

    50% {
        opacity: 1; }

    75% {
        opacity: 1; }

    76% {
        opacity: 0; } }

@-webkit-keyframes green-fade-in-out {
    from {
        opacity: 0; }

    65% {
        opacity: 0; }

    75% {
        opacity: 1; }

    90% {
        opacity: 1; }

    100% {
        opacity: 0; } }

@keyframes green-fade-in-out {
    from {
        opacity: 0; }

    65% {
        opacity: 0; }

    75% {
        opacity: 1; }

    90% {
        opacity: 1; }

    100% {
        opacity: 0; } }

.mz-gap-patch {
    position: absolute;
    top: 0;
    left: 45%;
    width: 10%;
    height: 100%;
    overflow: hidden;
    border-color: inherit; }

.mz-gap-patch .mz-circle {
    width: 1000%;
    left: -450%; }

.mz-circle-clipper {
    display: inline-block;
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
    border-color: inherit; }
.mz-circle-clipper .mz-circle {
    width: 200%;
    height: 100%;
    border-width: 3px;
    /* STROKEWIDTH */
    border-style: solid;
    border-color: inherit;
    border-bottom-color: transparent !important;
    border-radius: 50%;
    -webkit-animation: none;
    animation: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0; }
.mz-circle-clipper.mz-left .mz-circle {
    left: 0;
    border-right-color: transparent !important;
    -webkit-transform: rotate(129deg);
    transform: rotate(129deg); }
.mz-circle-clipper.mz-right .mz-circle {
    left: -100%;
    border-left-color: transparent !important;
    -webkit-transform: rotate(-129deg);
    transform: rotate(-129deg); }

.mz-active .mz-circle-clipper.mz-left .mz-circle {
    /* duration: ARCTIME */
    -webkit-animation: left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    animation: left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }

.mz-active .mz-circle-clipper.mz-right .mz-circle {
    /* duration: ARCTIME */
    -webkit-animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }

@-webkit-keyframes left-spin {
    from {
        -webkit-transform: rotate(130deg); }

    50% {
        -webkit-transform: rotate(-5deg); }

    to {
        -webkit-transform: rotate(130deg); } }

@keyframes left-spin {
    from {
        transform: rotate(130deg); }

    50% {
        transform: rotate(-5deg); }

    to {
        transform: rotate(130deg); } }

@-webkit-keyframes right-spin {
    from {
        -webkit-transform: rotate(-130deg); }

    50% {
        -webkit-transform: rotate(5deg); }

    to {
        -webkit-transform: rotate(-130deg); } }

@keyframes right-spin {
    from {
        transform: rotate(-130deg); }

    50% {
        transform: rotate(5deg); }

    to {
        transform: rotate(-130deg); } }

/*!
   angular-block-ui v0.2.0
   (c) 2015 (null) McNull https://github.com/McNull/angular-block-ui
   License: MIT
*/

.block-ui {
  position: relative;
}

body.block-ui {
  /* IE8 doesn't support .block-ui:not(body) */
  
  position: static;
}

body.block-ui > .block-ui-container,
.block-ui-main > .block-ui-container {
  position: fixed;
}

.block-ui-container {
  position: absolute;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  filter: alpha(opacity=00);
}

.block-ui-active > .block-ui-container {
  height: 100%;
  cursor: wait;
}

.block-ui-active .block-ui-active > .block-ui-container {
  height: 0;
}

.block-ui-visible > .block-ui-container {
  opacity: 1;
  filter: alpha(opacity=100);
}

.block-ui-overlay {
  width: 100%;
  height: 100%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  background-color: #fff;
}

.block-ui-message-container {
  position: absolute;
  top: 35%;
  left: 0;
  right: 0;
  height: 0;
  text-align: center;
  z-index: 10001;
}

.block-ui-message {
  display: inline-block;
  text-align: left;
  background-color: #333;
  color: #f5f5f5;
  padding: 20px;
  border-radius: 4px;
  font-size: 20px;
  font-weight: bold;
  /* needed for IE */
  
  filter: alpha(opacity=100);
}

/* - - - - - - 8-< - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

.block-ui-anim-fade > .block-ui-container {
  -webkit-transition: height 0s linear 200ms, opacity 200ms ease 0s;
          transition: height 0s linear 200ms, opacity 200ms ease 0s;
}

.block-ui-anim-fade.block-ui-active > .block-ui-container {
  /*this resets the initial delay of the height */
  /*and sizes the block to full height at once at the start of the block. */
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}



/* block ui */
.block-ui-container {
  	opacity: 1;
  	pointer-events:  auto;
}

.block-ui-overlay {
  background-color: #000;
  	opacity: 0.7;
}


.loadingText {
    padding-top:5px;
    color:#fff;
    font-size:15px !important;
    font-weight: bold;
    font-family:Nanum Gothic, Dotum;
  	opacity: 0.8;
    
}

/*.loadingImg {
    width: 120px;
    height: 78px;
    margin:0 auto;
    background-image: url("./images/progress/Loading_Web_Sprite.png");
  	background-size: 1800px;
    -webkit-animation: play 1.2s steps(15) infinite;
       -moz-animation: play 1.2s steps(15) infinite;
        -ms-animation: play 1.2s steps(15) infinite;
         -o-animation: play 1.2s steps(15) infinite;
            animation: play 1.2s steps(15) infinite;
}

@-webkit-keyframes play {
   from { background-position:    0px; }
     to { background-position: -1800px; }
}

@-moz-keyframes play {
   from { background-position:    0px; }
     to { background-position: -1800px; }
}

@-ms-keyframes play {
   from { background-position:    0px; }
     to { background-position: -1800px; }
}

@-o-keyframes play {
   from { background-position:    0px; }
     to { background-position: -1800px; }
}

@keyframes play {
   from { background-position:    0px; }
     to { background-position: -1800px; }
}
*/


/* Make clicks pass-through */
#loading-bar,
#loading-bar-spinner {
  pointer-events: none;
  -webkit-pointer-events: none;
  -webkit-transition: 350ms linear all;
  -moz-transition: 350ms linear all;
  -o-transition: 350ms linear all;
  transition: 350ms linear all;
}

#loading-bar.ng-enter,
#loading-bar.ng-leave.ng-leave-active,
#loading-bar-spinner.ng-enter,
#loading-bar-spinner.ng-leave.ng-leave-active {
  opacity: 0;
}

#loading-bar.ng-enter.ng-enter-active,
#loading-bar.ng-leave,
#loading-bar-spinner.ng-enter.ng-enter-active,
#loading-bar-spinner.ng-leave {
  opacity: 1;
}

#loading-bar .bar {
  -webkit-transition: width 350ms;
  -moz-transition: width 350ms;
  -o-transition: width 350ms;
  transition: width 350ms;

  background: #29d;
  position: fixed;
  z-index: 10002;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  border-bottom-right-radius: 1px;
  border-top-right-radius: 1px;
}

/* Fancy blur effect */
#loading-bar .peg {
  position: absolute;
  width: 70px;
  right: 0;
  top: 0;
  height: 2px;
  opacity: .45;
  -moz-box-shadow: #29d 1px 0 6px 1px;
  -ms-box-shadow: #29d 1px 0 6px 1px;
  -webkit-box-shadow: #29d 1px 0 6px 1px;
  box-shadow: #29d 1px 0 6px 1px;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}

#loading-bar-spinner {
  display: block;
  position: fixed;
  z-index: 10002;
  top: 10px;
  left: 10px;
}

#loading-bar-spinner .spinner-icon {
  width: 14px;
  height: 14px;

  border:  solid 2px transparent;
  border-top-color:  #29d;
  border-left-color: #29d;
  border-radius: 10px;

  -webkit-animation: loading-bar-spinner 400ms linear infinite;
  -moz-animation:    loading-bar-spinner 400ms linear infinite;
  -ms-animation:     loading-bar-spinner 400ms linear infinite;
  -o-animation:      loading-bar-spinner 400ms linear infinite;
  animation:         loading-bar-spinner 400ms linear infinite;
}

@-webkit-keyframes loading-bar-spinner {
  0%   { -webkit-transform: rotate(0deg);   transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@-moz-keyframes loading-bar-spinner {
  0%   { -moz-transform: rotate(0deg);   transform: rotate(0deg); }
  100% { -moz-transform: rotate(360deg); transform: rotate(360deg); }
}
@-o-keyframes loading-bar-spinner {
  0%   { -o-transform: rotate(0deg);   transform: rotate(0deg); }
  100% { -o-transform: rotate(360deg); transform: rotate(360deg); }
}
@-ms-keyframes loading-bar-spinner {
  0%   { -ms-transform: rotate(0deg);   transform: rotate(0deg); }
  100% { -ms-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes loading-bar-spinner {
  0%   { transform: rotate(0deg);   transform: rotate(0deg); }
  100% { transform: rotate(360deg); transform: rotate(360deg); }
}

/* loading bar custom */
#loading-bar .bar{
	background: #609DD6;
}

#loading-bar .peg{
	moz-box-shadow: #609DD6 1px 0 6px 1px;
	-ms-box-shadow: #609DD6 1px 0 6px 1px;
	-webkit-box-shadow: #609DD6 1px 0 6px 1px;
	box-shadow: #609DD6 1px 0 6px 1px;
}