@charset "utf-8";

.form-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  margin: 24px 0 45px;
}

.form-group {
  margin-bottom: 8px;
  height: 48px;
  border: solid 0.3px #9797973d;
  width: 483px;
  position: relative;
}

.form-group label {
  width: 174px;
  height: 100%;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.5px;
  background-color: #F7FAFE;
  padding-left: 20px;
  display: inline-flex;
  align-items: center;
}

.form-group input {
  width: calc(100% - 177px);
  padding: 12px;
  font-size: 14px;
  border: none;
}

.btn-ab {
  position: absolute;
  right: 12px;
  top: 9px;
}

.time-out {
  color: red;
  position: absolute;
  right: 12px;
  top: 15px;
}

.submit-button {
  width: 148px;
  height: 48px;
  background-color: #005eae;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: block;
  margin: 24px auto 0;
}

.submit-button:hover {
  background-color: #004e90;
}

.search-summary {
  margin-bottom: 10px;
  position: relative;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.total-count {
  font-size: 12px;
  letter-spacing: -0.16px;
  display: inline;
}

.total-count span {
  font-weight: bold;
  color: #5485d4;
}

.search-order {
  height: 30px;
  border: solid 0.3px #97979742;
  position: absolute;
  right: 0;
}

/* 민원 수정 팝업 */

.apply-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.apply-popup-container {
  width: 100%;
  max-width: 1005px;
  height: 90%;
  margin: auto;
  background: #fff;
  border-radius: 8px;
  overflow: auto;
  position: relative;
  display: flex;
  flex-direction: column;
}

.apply-popup-container .popup-body {
  padding: 20px;
  flex-grow: 1;
  overflow-y: auto;
}

@media ( min-width : 1025px) {
  .apply-popup-container {
    top: 4%;
  }
  
  .apply-popup-container .popup-header {
    background-image: url(../../common/images/alert-header-bg-1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    object-fit: contain;
    height: 65px;
    min-height: 65px;
    padding: 20px 0 0 16px;
  }
  
  .apply-popup-container .popup-header .title-right-arrow {
    display: inline-block;
    border-bottom: 8px solid transparent;
    border-top: 8px solid transparent;
    border-left: 10px solid #14237f;
    border-right: 8px solid transparent;
  }
  
  .apply-popup-container .popup-header .popup-title {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: -0.22px;
    color: #14237f;
  }

  .apply-popup-container .popup-header span.close-btn {
    float: right;
    margin-right: 24px;
  }
}

@media ( max-width : 1024px) {
  .apply-popup-container {
    border-radius: 0;
    height: 100%;
  }
  
  .apply-popup-container .popup-header {
    background: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    margin-top: 24px;
  }
  
  .apply-popup-container .popup-header .popup-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.44;
    letter-spacing: -0.5px;
    color: #333;
  }
}