#port-main {
  z-index: 1001;
  width: 100%;
  height: 100%
}
#port-main .fixedBar {
    height: 78px;
    position: relative;
    background: #fff;
  }
#port-main .pop-full {
    position: fixed;
    z-index: 10;
  }
#port-main .pop-overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    height: auto;
    z-index: 1001
  }
#port-main .pop-overlay .dialog {
      padding: var(--base-gap);
      overflow-y: auto;
      height: auto;
      width: calc(60%);
      position: absolute;
      top: 30%;
      left: 50%;
      margin-right: -50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      border-radius: 8px;
      border: 1px solid white;
      border-top: none;
      background-color: var(--base-color01);
    }
#port-main .pop-overlay .content {
      height: 25%;
      font-size: 1em;
      color: #503f32;
      font-weight: bold;
      text-align: center;
      margin: 1em;
    }
#port-main .pop-overlay .errorBox {
      width: 100%;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      padding: 10px;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-sizing: border-box;
              box-sizing: border-box
    }
#port-main .pop-overlay .errorBox .iconError {
        width: 20%;
        height: 30px;
        position: absolute;
        left: 10%;
      }
#port-main .pop-overlay .errorBox #err_msg {
        color: #503f32;
        text-align: left;
        width: auto;
      }
#port-main .pop-overlay .okBtn {
      text-align: center;
      border-radius: 3px;
      color: #fff;
      width: 100%;
      height: 70px;
      text-align: center;
      border-radius: 6px;
      border: 1px solid #336;
      font-size: 1.2em;
      color: #fff;
      -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 2px 5px rgba(0, 0, 0, 0.7);
              box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 2px 5px rgba(0, 0, 0, 0.7);
      background-color: var(--base-color011);
      width: 100%;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      padding: var(--base-gap);
    }
#port-main .pop-overlay .msg {
      text-align: center;
      padding: 36px 0;
    }

