/* 팝업들 공통 */
.sweet-overlay {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.sweet-alert,
.sweet-overlay {
  position: fixed;
  z-index: 1700;
  display: none;
}
.sweet-alert {
  top: 50%;
  left: 50%;
  width: 478px;
  padding: 20px 30px;
  margin-top: -200px;
  margin-left: -269px;
  overflow: hidden;
  text-align: center;
  background-color: #fff;
  border-radius: 3px;
  padding-bottom: 30px;
}
.sweet-alert h2 {
  font-size: 30px;
}
.sweet-alert p {
  font-weight: 300;
  color: #515151;
}
.sweet-alert button {
  display: inline-block;
  background: #9795f0;
  color: #fff;
  border-radius: 4px;
  padding: 10px 40px;
  margin-top: 30px;
  transition: all 0.3s;
}
.sweet-alert button:hover {
  background: #a9a7ff;
}
@media (max-width: 767px) {
  .sweet-alert {
    right: 15px;
    left: 15px;
    width: auto;
    margin-right: 0;
    margin-left: 0;
  }
}
.sweet-alert .icon {
  position: relative;
  width: 80px;
  height: 80px;
  box-sizing: content-box;
  margin: 20px auto;
  border: 4px solid grey;
  border-radius: 50%;
  overflow: hidden;
}
.sweet-alert .icon.error {
  border-color: #f96868;
}
.sweet-alert .icon.error .x-mark {
  position: relative;
  display: block;
}
.sweet-alert .icon.error .line {
  position: absolute;
  top: 37px;
  display: block;
  width: 47px;
  height: 5px;
  background-color: #f96868;
  border-radius: 2px;
}
.sweet-alert .icon.error .line.left {
  left: 17px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.sweet-alert .icon.error .line.right {
  right: 16px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.sweet-alert .icon.warning {
  border-color: #9795f0;
}
.sweet-alert .icon.warning .body {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 5px;
  height: 47px;
  margin-left: -2px;
  background-color: #9795f0;
  border-radius: 2px;
}
.sweet-alert .icon.warning .dot {
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 7px;
  height: 7px;
  margin-left: -3px;
  background-color: #9795f0;
  border-radius: 50%;
}
.sweet-alert .icon.info {
  border-color: #9795f0;
}
.sweet-alert .icon.info:before {
  position: absolute;
  bottom: 17px;
  left: 50%;
  width: 5px;
  height: 29px;
  margin-left: -2px;
  content: "";
  background-color: #9795f0;
  border-radius: 2px;
}
.sweet-alert .icon.info:after {
  position: absolute;
  top: 19px;
  width: 7px;
  height: 7px;
  margin-left: -3px;
  content: "";
  background-color: #9795f0;
  border-radius: 50%;
}
.sweet-alert .icon.success {
  border-color: #9795f0;
}
.sweet-alert .icon.success:after,
.sweet-alert .icon.success:before {
  position: absolute;
  width: 60px;
  height: 120px;
  content: "";
  background: #fff;
  border-radius: 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.sweet-alert .icon.success:before {
  top: -7px;
  left: -33px;
  border-radius: 120px 0 0 120px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 60px 60px;
  transform-origin: 60px 60px;
}
.sweet-alert .icon.success:after {
  top: -11px;
  left: 30px;
  border-radius: 0 120px 120px 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 0 60px;
  transform-origin: 0 60px;
}
.sweet-alert .icon.success .placeholder {
  position: absolute;
  top: -4px;
  left: -4px;
  z-index: 2;
  width: 80px;
  height: 80px;
  box-sizing: content-box;
  border: 4px solid #9795f0;
  border-radius: 50%;
}
.sweet-alert .icon.success .fix {
  position: absolute;
  top: 8px;
  left: 27px;
  z-index: 1;
  width: 7px;
  height: 90px;
  background-color: #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.sweet-alert .icon.success .line {
  position: absolute;
  z-index: 2;
  display: block;
  height: 5px;
  background-color: #9795f0;
  border-radius: 2px;
}
.sweet-alert .icon.success .line.tip {
  top: 46px;
  left: 14px;
  width: 25px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.sweet-alert .icon.success .line.long {
  top: 38px;
  right: 8px;
  width: 47px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.sweet-alert .icon.custom {
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  border: none;
  border-radius: 0;
}
.sweet-alert .btn-default:focus {
  border-color: #e4eaec;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(228, 234, 236, 0.6);
}
.sweet-alert .btn-default.focus,
.sweet-alert .btn-default:focus {
  border-color: #e4eaec;
  box-shadow: none;
}
.sweet-alert .btn-success:focus {
  border-color: #9795f0;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(70, 190, 138, 0.6);
}
.sweet-alert .btn-success.focus,
.sweet-alert .btn-success:focus {
  border-color: #9795f0;
  box-shadow: none;
}
.sweet-alert .btn-info:focus {
  border-color: #57c7d4;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(87, 199, 212, 0.6);
}
.sweet-alert .btn-info.focus,
.sweet-alert .btn-info:focus {
  border-color: #57c7d4;
  box-shadow: none;
}
.sweet-alert .btn-danger.focus,
.sweet-alert .btn-danger:focus {
  border-color: #f96868;
  box-shadow: none;
}
.sweet-alert .btn-warning:focus {
  border-color: #9795f0;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(242, 166, 84, 0.6);
}
.sweet-alert .btn-warning.focus,
.sweet-alert .btn-warning:focus {
  border-color: #9795f0;
  box-shadow: none;
}
.sweet-alert button::-moz-focus-inner {
  border: 0;
}
