/*
.search {
  z-index: 10;
  position: fixed;
  top: var(--header-height);
  width: 100%;
}

.search>ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 20px auto 0 auto;
  padding: 0 20px 0 50px;
  max-width: var(--max-width);
  height: 44px;
  background: url(/yooshin_talent_portal/assets/images/common/search.png) no-repeat 22px center / 20px;
  background-color: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  box-shadow: 1.2px 1.8px 10px 0.4px rgba(0, 0, 0, 0.2);
}

.search>ul>li {
  flex: 1;
  height: 100%;
}

.search>ul>li.split {
  flex: none;
  width: 1px;
  height: 70%;
  background-color: #ddd;
}

.search input {
  padding-left: 8px;
  width: 100%;
  height: 100%;
  font-size: 0.9rem;
  color: #222;
  box-sizing: border-box;
  border: none;
  outline: none;
}

.search>ul>li.select-wrap {
  padding-right: 8px;
}

.search select {
  padding-left: 8px;
  width: 100%;
  height: 100%;
  font-size: 0.9rem;
  color: #222;
  box-sizing: border-box;
  border: none;
  outline: none;
}

.search>ul>li.btn-wrap {
  display: flex;
  align-items: center;
  padding-left: 14px;
  flex: none;
  width: 100px;
}

.search>ul>li.btn-wrap button {
  width: 100%;
  height: 70%;
  background-color: var(--color-blue);
  font-weight: 500;
  font-size: 0.9rem;
  color: #fff;
  border-radius: 8px;

  &:hover {
    opacity: 0.9;
  }
}
*/


.body-wrap {
  position: relative;
  display: flex;
  flex-direction: row;
  margin: 20px auto 0 auto;
  padding-bottom: 140px;
  max-width: var(--max-width);
  width: 100%;
}

.job-list {
  flex: 1;
}

.job-list>ul>li {
  padding: 24px 22px;
  background-color: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.5rem;
  letter-spacing: -0.01rem;
  color: #444;
  box-shadow: 1px 2px 4px 0px rgba(0, 0, 0, 0.17);
  border-left: 5px solid var(--color-blue);
  border: 1px solid #ccc;
  cursor: pointer;
  box-sizing: border-box;

  &:hover {
    background-color: #f9f9f9;
    border: 1px solid #999;
  }
}

.job-list>ul>li u {
  text-decoration: none;
  background-color: #f4b392;
}

.job-list>ul>li>p {
  text-align: left;
}

.job-list>ul>li>p.subject {
  margin-bottom: 8px;
  padding-left: 26px;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 2rem;
  color: #222;
  background: url(/yooshin_talent_portal/assets/images/common/suitcase_bk.png) no-repeat 0 center / 20px;
}

.job-list>ul>li>p.salary {
  margin: 12px 0;
  font-weight: 500;
  color: var(--color-blue);
}

.job-list>ul>li>p.description {
  margin-bottom: 12px;
}

.job-list>ul>li>p.highlights {
  margin-bottom: 12px;
}

.job-list>ul>li>p.highlights strong {
  font-weight: 600;
}

.job-list>ul>li>p.date {
  margin: 0 auto;
  margin-top: 12px;
  padding: 6px 18px 6px 36px;
  width: fit-content;
  border: 1px dashed #ccc;
  border-radius: 30px;
  background: url(/yooshin_talent_portal/assets/images/common/timer_outline.png) no-repeat 16px center / 17px;
}

.job-list>ul>li>p.more {
  margin: 0 auto;
  margin-top: 22px;
  width: 22px;
  height: 8px;
  background: url(/yooshin_talent_portal/assets/images/common/more.png) no-repeat center center / 100%;
}

.job-list>ul>li>.row-group {
  display: flex;
  flex-direction: row;
}

.job-list>ul>li>.row-group p:not(:first-child) {
  margin-left: 14px;
}

.job-list>ul>li:not(:first-child) {
  margin-top: 12px;
}

.job-list>ul>li strong {
  font-weight: 600;
  color: var(--color-darkblue);
}

#no-data-txt {
  margin-top: 80px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: -0.01rem;
  color: #777;
}

#more-btn {
  margin: 20px auto 0 auto;
  width: 180px;
  height: 44px;
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--color-blue);
  letter-spacing: -0.01rem;
  border: 1px solid var(--color-blue);
  border-radius: 40px;

  &:hover {
    opacity: 0.8;
  }
}


/**/

/*
.filter>ul::-webkit-scrollbar {
  width: 3px;
}

.filter>ul::-webkit-scrollbar-track {
  background-color: #f4f4f4;
}

.filter>ul::-webkit-scrollbar-thumb {
  background-color: #d6d6d6;
  border-radius: 100px;
}

.filter>ul::-webkit-scrollbar-thumb {
  background-color: #d6d6d6;
  border-radius: 100px;
}

.filter>ul {
  scrollbar-color: #d6d6d6;
}
*/

.filter {
  display: flex;
  flex-direction: column;
  margin-right: 14px;
  width: 320px;
  height: fit-content;
  text-align: left;
  box-sizing: border-box;
}

.filter>.wrap {
  flex: 1;
  padding: 28px 14px;
  width: 320px;
  height: fit-content;
  background-color: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  border: 1px solid #ccc;
}

.filter .title-wrap {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px dashed #ddd;
}

.filter .title-wrap h3 {
  margin-top: 3px;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.3rem;
  color: #222;
}

.filter .title-wrap button {
  margin-left: 8px;
  padding-left: 10px;
  width: 80px;
  height: 28px;
  background: url(/yooshin_talent_portal/assets/images/common/refresh.png) no-repeat 12px center / 12px;
  background-color: var(--color-orange);
  font-weight: 400;
  font-size: 0.76rem;
  color: #fff;
  border-radius: 81px;

  &:hover {
    opacity: 0.9;
  }
}

.filter .keyword-wrap {
  display: flex;
  align-items: center;
  margin-top: 20px;
  height: 34px;
}

.filter .keyword-wrap input {
  flex: 1;
  padding-left: 12px;
  height: 100%;
  font-size: 0.9rem;
  color: #222;
  border: 1px solid #999;
  border-radius: 40px;
  box-sizing: border-box;
  outline: none;
}

.filter .keyword-wrap button {
  margin-left: 4px;
  width: 34px;
  height: 34px;
  border-radius: 40px;
  background: url(/yooshin_talent_portal/assets/images/common/search_wh.png) no-repeat center center / 18px;
  background-color: var(--color-blue);

  &:hover {
    opacity: 0.9;
  }
}

.filter .top-btns-wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 10px;
}

.filter .top-btns-wrap button.apply {
  flex: 1;
  height: 32px;
  font-weight: 400;
  font-size: 0.9rem;
  color: #fff;
  background-color: var(--color-blue);
  border-radius: 8px;

  &:hover {
    opacity: 0.9;
  }
}

.filter .top-btns-wrap button.refresh {
  margin-left: 8px;
  width: 44px;
  height: 32px;
  font-weight: 400;
  font-size: 0.9rem;
  color: #fff;
  background: url(/yooshin_talent_portal/assets/images/common/refresh.png) no-repeat center / 14px;
  background-color: #999;
  border-radius: 8px;

  &:hover {
    opacity: 0.9;
  }
}

.filter ul.filter-list {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed #ddd;
}

.filter ul.filter-list li {
  width: 100%;
  font-weight: 400;
  color: #222;
  font-size: 0.9rem;
  letter-spacing: -0.01rem;
}

.filter ul.filter-list li:first-child {
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 1rem;
}

.filter ul.filter-list li:not(:first-child) {
  margin-top: 4px;
  padding-left: 6px;
}

.filter ul.filter-list li input[type=radio] {
  cursor: pointer;
}

.filter ul.filter-list li label {
  position: relative;
  top: -1px;
  cursor: pointer !important;
}

.filter ul.filter-list li.toggle button {
  padding: 4px 12px;
  font-weight: 400;
  font-size: 0.76rem;
  letter-spacing: -0.01rem;
  color: var(--color-blue);
  background-color: #eee;
  border-radius: 4px;

  &:hover {
    opacity: 0.8;
  }
}

#loading-wrap {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(20, 20, 20, 0.1);
}

#loading-wrap p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  border: 2px dashed var(--color-orange);
  background-color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--color-orange);
  letter-spacing: -0.01rem;
}

/*
.filter>ul>li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-left: calc(var(--padding-left) + 22px);
  height: 34px;
  font-size: 0.9rem;
  line-height: 0.9rem;
  background: url("/yooshin_web_admin/assets/images/common/icons/dash.png") no-repeat var(--padding-left) center / auto 5px;
  cursor: pointer;
}

.filter>ul>li.close {
  display: none;
}

.filter>ul>li.depth2 {
  padding-left: calc(var(--padding-left) + 36px);
  background: url("/yooshin_web_admin/assets/images/common/icons/dash.png") no-repeat calc(var(--padding-left) + 16px) center / auto 4px;
  opacity: 0.8;
}

.filter>ul>li.depth3 {
  padding-left: calc(var(--padding-left) + 52px);
  background: url("/yooshin_web_admin/assets/images/common/icons/dash.png") no-repeat calc(var(--padding-left) + 36px) center / auto 3px;
  opacity: 0.6;
}
  */

@media all and (max-width:1024px) {}

@media all and (max-width:768px) {}

@media all and (max-width:540px) {}