/**
 * MobileN WooCommerce Korea - 체크아웃 스타일
 */

/* state, city 필드 숨김 */
.mwk-hidden-field {
  display: none !important;
}

/* 우편번호 필드 + 검색 버튼 레이아웃 */
.mwk-postcode-wrap {
  position: relative;
}

.mwk-postcode-wrap input[type="text"] {
  width: calc(100% - 110px) !important;
  display: inline-block;
  vertical-align: middle;
}

.mwk-postcode-btn {
  display: inline-block;
  width: 100px;
  height: 36px;
  margin-left: 8px;
  vertical-align: middle;
  background-color: #333 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  line-height: 36px;
  text-align: center;
}

.mwk-postcode-btn:hover {
  background-color: #555 !important;
}

/* readonly 필드 시각적 구분 */
.mwk-postcode-wrap input[readonly],
#billing_address_1[readonly],
#shipping_address_1[readonly] {
  background-color: #f5f5f5;
  cursor: pointer;
}

/* first_name + company 같은 행 */
#billing_first_name_field.form-row-first,
#shipping_first_name_field.form-row-first {
  width: 50%;
  float: left;
}

#billing_company_field.form-row-last,
#shipping_company_field.form-row-last {
  width: 50%;
  float: right;
}
