@charset "UTF-8";

/* フロートウィンドウ ------------------------------------------------*/
.float-front {
  background-color: #fff;
  border: 1px solid #666;
  display: none;
  position: fixed;

  -webkit-box-shadow:0px 0px 4px;
          box-shadow:0px 0px 4px;

  -webkit-border-radius: 8px;
     -moz-border-radius: 8px;
      -ms-border-radius: 8px;
       -o-border-radius: 8px;
          border-radius: 8px;
}

.float-front .handle {
  cursor: move;
}

.float-front .handle:hover {
  background-color: #fafaff;

  -webkit-border-radius: 8px 8px 0px 0px;
     -moz-border-radius: 8px 8px 0px 0px;
      -ms-border-radius: 8px 8px 0px 0px;
       -o-border-radius: 8px 8px 0px 0px;
          border-radius: 8px 8px 0px 0px;
}

.float-container {
/*  width: 100vh;*/
/*  max-width: 98vh;*/
/*  height: 100vh;*/
/*  max-height: 98vh;*/
}

/* ヘッダー  */
.float-header {
  border-bottom: solid 1px;
  height: 36px;
  max-height: 36px;
  min-height: 36px;
  padding: 6px;
  top: 0;
  width: 100%;
}

/* ボディー */
.float-body {
  padding: 4px;
  overflow-y: auto;
  position: relative;
/*  white-space: nowrap;*/
  max-height: 85vh;
  margin-bottom: 36px
}

/* フッター */
.float-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
/*  justify-content: flex-end;*/
  text-align: right; 

  border-top: solid 1px;
  bottom: 0;
  height: 36px;
  max-height: 36px;
  min-height: 36px;
  padding: 6px;
  position: absolute;
  width: 100%;
}

.float-footer .right {
  margin-left: auto;
}

/* オーバーレイ ------------------------------------------------------*/
.float-back {
  background-color: rgba(0, 0, 0, 0.2);
  display: none;
  height: 120vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
}
