@charset "utf-8";

div.alert-ui.background {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(34, 34, 34, 0.4);
  z-index: 99999;
}
.alert-ui .alert {
  position: absolute;
  left: 50%;
  top: 50%;
  min-width: 340px;
  background: white;
  padding: 0;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.1s linear;
}

.alert-ui .alert.show {
  opacity: 1;
  visibility: visible;
}

.alert-ui .title {
  line-height: 40px;
  padding: 0 10px 0 10px;
  margin: 0;
  background-color: #516cc2;
  font-size: 14px;
  font-weight: bold;
  font-family: 'Nanum Gothic', '맑은 고딕', '돋움', Dotum, sans-serif;
  color: #fff;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.alert-ui .title .close-btn {
  float: right;
  width: 16px;
  height: 16px;
  margin-top: 12px;
  background-image: url(../images/close-icons.png);
}

.alert-ui .title .close-btn:hover {
  cursor: pointer;
}

.alert-ui .contents {
  padding: 40px 20px 30px 20px;
  font-size: 13px;
  text-align: center;
  line-height: 1.4;
}

.alert-ui .buttons {
  padding: 0 16px 16px 16px;
  text-align: center;
  width: 100%;
}

.alert-ui input[type="button"] {
  min-width: 100px;
  line-height: 1.1;
}

.alert-ui input[type="button"] + input[type="button"] {
  margin-left: 13px;
}

.alert-ui .btn-gray {
  display: inline-block;
  background: #969aa3;
  border: 1px solid #e2e7ec;
  padding: 8px 10px;
  color: #fff;
  border-radius: 4px;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
}

.alert-ui .btn-gray:hover {
  background: #969aa3;
  border: 1px solid #e2e7ec;
  color: #fff;
  cursor: pointer;
}

.alert-ui .btn-basic {
  display: inline-block;
  background: #516cc2;
  border: 1px solid #e2e7ec;
  padding: 8px 10px;
  color: #fff;
  border-radius: 4px;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
}

.alert-ui .btn-basic:hover {
  background: #516cc2;
  border: 1px solid #e2e7ec;
  color: #fff;
  cursor: pointer;
}

.alert-ui .alert.error .btn-basic {
  background: #f64c4c;
}
