.composite_button .composite_print_config_button {
    background-color: var(--miniature-body-background-color);
    color: var(--miniature-primary-color);
    height: 50px;
    padding-top: 8px;
    padding-bottom: 8px;
    margin: 0 0 0 10px;
    display: inline-block;
    line-height: normal;
    box-shadow: none;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -moz-user-select: none;
    -ms-user-select: none;
    border-color: var(--miniature-primary-color);
    border-radius: var(--miniature-border-radius-lg);
    font-weight: var(--miniature-font-weight-semi-bold);
/*    padding: 11px 28px;*/
    font-size: 15px;
    width: 110px;
    min-width: 110px;
}
.printOverlay{
    background: #ffffff99;
    display: none;
    z-index: 10000000;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
@media print {
    #tmpDOM{
        display: block !important;
    }
    .headerImage{text-align: right;width: 100%;}
    .headerImage img{border:none;display:inline-block;height:30px;vertical-align:middle;max-width:100%}
    .proTitle{font-size:24px;font-weight:bold;text-align:left;margin:5px 0 5px 0;}
    .font-weight{font-weight:bold;}
}

/* overloading */
.ajaxLoader {
    background: #0000004f;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 200000;
    display: none;
}
.ajaxLoading {
  height: 0;
  width: 0;
  padding: 15px;
  border: 6px solid #ccc;
  border-right-color: #888;
  border-radius: 22px;
  -webkit-animation: rotate 1s infinite linear;
  /* left, top and position just for the demo! */
  position: absolute;
  left: 50%;
  top: 50%;
}
@-webkit-keyframes rotate {
  /* 100% keyframe for  clockwise. 
     use 0% instead for anticlockwise */
  100% {
    -webkit-transform: rotate(360deg);
  }
}
