/* nav */
.nav {
  position: fixed;
  right: 16px;
  top: 153px;
  z-index: 90;
}

.nav span {
  display: block;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 12px;
  line-height: 1.2em;
}

.nav span:hover {
  color: #fd9b5a;
}

.nav span + span {
  margin-top: 4px;
}

.nav span.on {
  color: #fd9b5a;
}

.empty {
  padding: 100px 0;
  height: 100vh;
  text-align: center;
  opacity: 0.5;
}

.sub-body {
  margin-top: 185px;
  min-height: calc(100vh - 270px);
}

.search-con {
  padding: 40px 0;
  height: calc(185px- 60px);
  background-color: #f3f3f3;
}

.search-con .search {
  width: 100%;
  position: relative;
}

.search-con .search input {
  width: 100%;
  height: 45px;
  border-radius: 4px;
  background-color: #fff;
  outline: none;
  border: none;
  padding: 0 60px 0 16px;
}

.search-con .search input::placeholder {
  color: #999;
  font-size: 1rem;
}

.search-con .search .btn {
  position: absolute;
  z-index: 1;
  cursor: pointer;
  right: 16px;
  top: 50%;
  width: 30px;
  height: 30px;
  background: url(../img/common/search.png) no-repeat;
  background-size: cover;
  margin-top: -15px;
}

/* list */
.list-con + .list-con {
  margin-top: 20px;
}

.list-con > strong.alph {
  display: block;
  font-size: 20px;
  margin-left: 4px;
}

.list-con > ul > li {
  list-style: none;
}

.list-con > ul > li + li {
  margin-top: 12px;
}

.list-box {
  background-color: #fff;
  padding: 20px 16px;
  display: flex;
  vertical-align: middle;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.list-box:hover {
  box-shadow: 0 5px 14px 0 rgba(61, 82, 96, 0.15);
}

/* .list-box .company-img, .list-box .company-info, .list-box .button{display: table-cell;vertical-align: middle;} */
.list-box .company-img {
  width: 70px;
  height: 0;
  padding-bottom: 70px;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  box-shadow: 0 5px 14px 0 rgba(61, 82, 96, 0.15);
}

.list-box .company-img img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 55px;
  height: auto;
  transform: translate(-50%, -50%);
}

.list-box .company-info {
  padding-left: 16px;
  width: calc(100% - 100px);
  overflow: hidden;
}

.list-box .company-info strong,
.list-box .company-info p {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: break-all;
}

.list-box .bttn {
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: relative;
}

.list-box .bttn span.arrow {
  width: 15px;
  height: 3px;
  display: block;
  border-radius: 5px;
  background-color: #aaa;
  position: absolute;
  top: 50%;
  right: 0;
}

.list-box .bttn span.arrow.top {
  transform: rotate(-45deg);
  margin-top: 4px;
}

.list-box .bttn span.arrow.bottom {
  transform: rotate(45deg);
  margin-top: -5px;
}

/* list-view */
.view-body {
  margin-top: 60px;
  padding: 20px 0;
}

/* 로고 이미지 추가20210611 dongatg 시작*/
.view-top .view-logo {
  width: 90px;
  height: 90px;
  padding-bottom: 70px;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 14px 0 rgb(61 82 96 / 15%);
  margin: 0 auto;
}

.view-top .view-logo img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  max-width: 80px;
  height: auto;
  transform: translate(-50%, -50%);
}

/* 로고 이미지 추가 20210611dongatg 끝*/

.view-top .view-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
}

.view-top .view-title strong {
  font-size: 1.3rem;
}

.view-top .view-title a {
  display: block;
  transition: all 0.2s;
}

.view-top .view-title a:hover {
  color: #168dc0;
}

.view-top .view-img {
  padding: 20px 0 40px;
}

.view-info {
  padding: 40px 0;
}

.view-section strong {
  display: block;
  color: #168dc0;
  font-size: 1.1rem;
}

.view-section + .view-section {
  margin-top: 24px;
}

.view-section ul li span {
  display: block;
  font-weight: bold;
}

.view-section ul li + li {
  margin-top: 12px;
}

.view-section dl {
  display: table;
  width: 100%;
}

.view-section dl dt,
.view-section dd {
  display: table-cell;
  vertical-align: top;
}

.view-section dl dt {
  width: 80px;
  font-weight: 600;
}

.move-btn-wrap {
  display: flex;
  height: 60px;
}

.move-btn-wrap .move-btn {
  width: 100%;
  text-align: center;
  line-height: 60px;
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid #ddd;
}

.move-btn-wrap .move-btn:hover span {
  opacity: 0.5;
}

.move-btn-wrap .move-btn span {
  transition: all 0.2s;
}

.move-btn-wrap .move-btn span i {
  margin: 0 12px;
}

.move-btn-wrap .move-btn + .move-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 20px;
  background-color: #ddd;
}

/* search */
.search-wrap + .search-button {
  margin-top: 26px;
}

.search-section + .search-section {
  margin-top: 26px;
}

.searchiing-tab {
  text-align: center;
}

.searchiing-tab button {
  height: 45px;
  display: block;
  font-family: "Rubik", "Noto Sans KR", sans-serif;
  font-size: 1rem;
  line-height: 42px;
  border-radius: 4px;
  width: 100%;
  border: 1px solid #168dc0;
  background-color: #fff;
  color: #168dc0;
}

.searchiing-tab button.on {
  background-color: #168dc0;
  color: #fff;
}

.search-button button {
  background: #fd9b5a;
  display: block;
  border-radius: 4px;
  width: 100%;
  color: #fff;
  font-family: "Rubik", "Noto Sans KR", sans-serif;
  font-size: 1rem;
  height: 45px;
}

/* guide */
.guide-top span {
  display: block;
  width: 100%;
  height: 250px;
  background: url(../img/common/guidance01.jpg) no-repeat;
  background-position: 50% 48%;
  background-size: cover;
}

.guide-body {
  padding: 40px 0;
}

.guide-body .title {
  padding-bottom: 32px;
}

.guide-body .title h3 {
  font-size: 2rem;
}

.guide-body .title span {
  display: block;
  color: #168dc0;
}

.guide-body .contents p {
  font-size: 1rem;
}

.guide-body .contents p + p {
  margin-top: 16px;
}

/* category */
.selectric-wrapper {
  position: relative;
  cursor: pointer;
}

.selectric-responsive {
  width: 100%;
}

.selectric {
  border: 1px solid #dddddd;
  background: #ffffff;
  position: relative;
  border-radius: 4px;
}

.selectric .label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 38px 0 10px;
  font-size: 12px;
  line-height: 45px;
  color: #444444;
  height: 45px;
}

.selectric .button {
  /*background: ;*/
  border-radius: 0px;
  display: block;
  position: absolute;
  /* right: undefinedpx; */
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 38px;
  height: 38px;
  color: #444444;
  text-align: center;
  font: 0/0 a;
}

.selectric .button:after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-top-color: #444444;
  border-bottom: none;
}

.selectric-focus .selectric {
  border-color: #aaa;
}

.selectric-hover .selectric {
  border-color: #c4c4c4;
}

.selectric-hover .selectric .button {
  color: #c4c4c4;
}

.selectric-hover .selectric .button:after {
  border-top-color: #c4c4c4;
}

.selectric-open {
  z-index: 9999;
}

.selectric-open .selectric {
  /* border-color: #c4c4c4; */
  /* background: #e6e6e6; */
  background: #fff;
}

.selectric-open .selectric-items {
  display: block;
}

.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}

.selectric-hide-select select {
  position: absolute;
  left: -100%;
}

.selectric-hide-select.selectric-is-native {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.selectric-hide-select.selectric-is-native select {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  z-index: 1;
  box-sizing: border-box;
  opacity: 0;
}

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  /**font: 0/0 a !important;*/
  background: none !important;
}

.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important;
}

/* Items box */
.selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  /* background: #F8F8F8; */
  background: #fff;
  border: 1px solid #c4c4c4;
  z-index: -1;
  box-shadow: 0 0 10px -6px;
}

.selectric-items .selectric-scroll {
  height: 100%;
  overflow: auto;
}

.selectric-above .selectric-items {
  top: auto;
  bottom: 100%;
}

.selectric-items ul,
.selectric-items li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 20px;
  min-height: 20px;
}

.selectric-items li {
  display: block;
  padding: 8px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #eee;
  color: #666;
  cursor: pointer;
}

.selectric-items li.selected {
  background: #efefef;
  color: #444;
}

.selectric-items li.highlighted {
  /* background: #D0D0D0; */
  background: #fff;
  color: #444;
}

.selectric-items li:hover {
  background: #f0f0f0;
  color: #444;
}

.selectric-items .disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default !important;
  background: none !important;
  color: #666 !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.selectric-items .selectric-group .selectric-group-label {
  font-weight: bold;
  padding-left: 10px;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: none;
  color: #444;
}

.selectric-items .selectric-group.disabled li {
  filter: alpha(opacity=100);
  opacity: 1;
}

.selectric-items .selectric-group li {
  padding-left: 25px;
}

#company_name_background {
  background-color: #00b8e0;
  margin-top: 12px;
  color: white;
  padding: 4px 8px;
  position: relative;
}

#qr_code_div {
  width: 100px;
  height: 101px;
  border: 1px solid #00b8e0;
  border-radius: 4px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: white;
}

#company_name {
  font-size: 32px;
  font-weight: 600;
}

#contact_contents {
  display: flex;
}

@media screen and (max-width: 500px) {
  #company_name_background {
    padding: 4px 83px 4px 8px;
  }

  #company_name {
    font-size: 20px;
  }

  #qr_code_div {
    width: 75px;
    height: 75px;
  }

  #contact_contents {
    flex-direction: column;
  }
}
