@charset "UTF-8";


/*------------------------------------------------------------
	contents
------------------------------------------------------------*/
#contents .box {
  background: #fff;
  border-radius: 6px;
  padding: 30px 30px 20px 30px;
  max-width: 1000px;
  margin: 40px auto 0;
}
#contents .box input {
  -webkit-appearance: button;
}
#contents .box .inputBox {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-top: 1px solid #b3b3b3;
  margin-top: 20px;
  padding-top: 20px;
}
#contents .box .deleteBox {
  border-top: 1px solid #b3b3b3;
  margin-top: 20px;
  padding-top: 20px;
}
#contents .box #param_url_table td {
  position: relative;
  padding-top: 10px;
  vertical-align: top;
  word-break: break-all;
}
#contents .box #param_url_table th:nth-child(1),
#contents .box #param_url_table td:nth-child(1) {
  padding-right: 10px;
}
#contents .box #param_url_table th:nth-child(2),
#contents .box #param_url_table td:nth-child(2) {
  white-space: nowrap;
  padding-right: 20px;
}
#contents .box #param_url_table th:nth-child(3),
#contents .box #param_url_table td:nth-child(3) {
  width: 100%;
}
#contents .box #param_url_table td input {
  position: absolute;
  top: 8px;
  left: 0;
  z-index: 2;
  width: 25px;
  height: 25px;
  margin: 0;
  vertical-align: top;
  opacity: 0;
  cursor: pointer;
}
#contents .box #param_url_table td .checkBox {
  position: relative;
  top: -2px;
  width: 25px;
  height: 25px;
  background: #f2f2f2;
  border-radius: 50%;
  cursor: pointer;
}
#contents .box #param_url_table td .checkBox::before {
  display: none;
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 6px;
  background: #3A4351;
}
#contents .box #param_url_table td input:checked + .checkBox::before {
  display: block;
}
#contents .box .btnArea {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
#contents .box #checkAll {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
#contents .box #checkAll input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 25px;
  margin: 0;
  vertical-align: top;
  opacity: 0;
  cursor: pointer;
}
#contents .box #checkAll .checkBox {
  position: relative;
  top: 0;
  width: 25px;
  height: 25px;
  background: #f2f2f2;
  border-radius: 50%;
  cursor: pointer;
}
#contents .box #checkAll .checkBox::before {
  display: none;
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 6px;
  background: #3A4351;
}
#contents .box #checkAll input:checked + .checkBox::before {
  display: block;
}
#contents .box #deleteBtn {
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
  width: 175px;
  height: 40px;
  font-size: 14px;
}
#contents .box #deleteBtn::before {
  content: "";
  background: url("/img/link/icon_deleteBtn.svg");
  width: 11px;
  height: 13px;
}
#contents .box #addBtn {
  display: block;
  width: 160px;
  height: 40px;
  margin: 15px 0 0 auto;
  font-size: 14px;
}
#contents .box #addBtn:disabled {
  background-color: rgba(0, 0, 0, 0.5);
}
#contents .link_multiBtn {
  max-width: 1000px;
  margin: 20px auto 0;
}
#contents .link_multiBtn a {
  display: block;
  background: #3A4351;
  color: #fff;
  font-weight: bold;
  height: 40px;
  width: 160px;
  line-height: 40px;
  border-radius: 6px;
  text-align: center;
}
@media only screen and (max-width:768px) {
  #contents .box {
    margin: 20px auto 0;
    padding: 20px 20px 20px 20px;
  }
  #contents .box .btnArea {
    gap: 10px;
  }
}


/*------------------------------------------------------------
	alertModal
------------------------------------------------------------*/
#alertModal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .7);
  padding: 20px;
}
#alertModal .inner {
  background: #fff;
  padding: 40px;
  border-radius: 6px;
  max-width: 400px;
  width: 100%;
}
#alertModal .inner p {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}
#alertModal .inner .btnBox {
  margin-top: 20px;
}
#alertModal .inner button {
  display: block;
  height: 40px !important;
  width: 157px;
  font-size: 16px;
  font-weight: bold;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  #alertModal .inner {
    padding: 30px 25px;
  }
}


/*------------------------------------------------------------
	deleteModal
------------------------------------------------------------*/
#deleteModal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .7);
  padding: 20px;
}
#deleteModal .inner {
  background: #fff;
  padding: 40px;
  border-radius: 6px;
  max-width: 400px;
  width: 100%;
}
#deleteModal .inner p {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}
#deleteModal .inner ul {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
#deleteModal .inner ul li {
  width: calc(50% - 3px);
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
}
#deleteModal .inner ul li button {
  height: 40px !important;
  font-size: 16px;
  font-weight: bold;
}
#deleteModal .inner ul li.cancel button {
  background: #eaeaea;
  color: #3A4351;
}
@media only screen and (max-width: 768px) {
  #deleteModal .inner {
    padding: 30px 25px;
  }
}


/*------------------------------------------------------------
	textModal
------------------------------------------------------------*/
#textModal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .7);
  padding: 20px;
}
#textModal .inner {
  background: #fff;
  padding: 40px;
  border-radius: 6px;
  max-width: 400px;
  width: 100%;
}
#textModal .inner p {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  #textModal .inner {
    padding: 30px 25px;
  }
}


/*------------------------------------------------------------
	multiBox
------------------------------------------------------------*/
#multiBox textarea {
  margin-top: 15px;
  min-height: 250px;
  resize: vertical;
}
#multiBox .btnBox {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 15px;
  gap: 10px;
}
#multiBox #saveBtn {
  display: block;
  width: 160px;
  height: 40px;
  font-size: 14px;
}
#multiBox #backBtn {
  display: block;
  width: 160px;
  height: 40px;
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  #multiBox #saveBtn {
    width: 100%;
  }
  #multiBox #backBtn {
    width: 100%;
  }
}