@charset "UTF-8";
.ui-dialog {
  z-index: 10000!important;
}
#loading {
  z-index: 10010;
  display: table;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: 0.8;
}
#loading .loadingMsg {
  z-index: 10011;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  padding-top: 140px;
  background: url("../images/loading.gif") center center no-repeat;
}

/* 文字点滅 */
.blink {
    -webkit-animation: blink 1s ease infinite;
    animation: blink 1s ease infinite;
}
@-webkit-keyframes blink {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@keyframes blink {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

/* 注文履歴のキャンセルされたときのダイアログに表示する商品名・数量 */
.cancel-item-list {
  display: flow-root;
}
