@charset "utf-8";

.uix-unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.uix-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1200;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  background-color: rgba(0, 0, 0, 0.54118);
  transition: 200ms ease opacity;
  will-change: opacity;
}

.uix-draggable {
  cursor: move;
}
.uix-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1203;
}

.uix-resizable-n {
  cursor: n-resize;
  height: 10px;
  width: 100%;
  top: -5px;
  left: 0;
}
.uix-resizable-e {
  cursor: e-resize;
  width: 10px;
  right: -5px;
  top: 0;
  height: 100%;
}
.uix-resizable-s {
  cursor: s-resize;
  height: 10px;
  width: 100%;
  bottom: -5px;
  left: 0;
}
.uix-resizable-w {
  cursor: w-resize;
  width: 10px;
  left: -5px;
  top: 0;
  height: 100%;
}
.uix-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}
.uix-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}
.uix-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}
.uix-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}

.uix-dialog-footer {
  position: absolute;
  bottom: 0px;
  width: 100%;
  margin-top: 0px;
}

.uix-dialog-scrollable [data-role="body"] {
  overflow-x: hidden;
  overflow-y: scroll;
}

.uix-dialog {
  background-color: #fff;
  border: 1px solid #c1c1c1;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,.3);
  box-sizing: border-box;
  position: fixed;
  outline: 0;
  z-index: 1200;
  max-height: 100%;
  overflow-y: auto;
}

.uix-dialog-header {
  padding: 20px;
  color: #fff;
  line-height: 24px;
}

.uix-dialog-title {
  margin: 0;
  display: inline-block;
  line-height: 24px;
  vertical-align: middle;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: -1.05px;
  color: #333;
  font-family: '맑은 고딕', 'Nanum Gothic', '돋움', sans-serif;
}

.uix-dialog-header .btn.btn-icon {
  float: right;
  padding: 0;
  width: auto;
  height: auto;
  line-height: 20px;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  margin-left: 10px;
}
.uix-dialog-header .btn.btn-icon:last-child {
  margin-left: 0;
}

.uix-dialog-body {
  padding: 0 28px 28px;
}

.dialog-icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  padding: 0;
  margin: 0;
  vertical-align: middle;
  background-image: url(../images/dialog-icon-close.png);
  background-repeat: no-repeat;
}
/*
.dialog-icon.minimize {
  background-position-x: -20px;
}
.dialog-icon.maximize {
  background-position-x: 0;
}
.dialog-icon.close {
  background-position-x: 0;
}
.dialog-icon.new-win {
  background-position-x: -40px;
}
.dialog-icon.setting {
  background-position-x: -80px;
}
*/

.uix-resizable .uix-dialog-body {
  position: relative;
  height: calc(100% - 82px);
};
