@charset "UTF-8";
/*
==========================================================================
  common
==========================================================================
*/
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  /*ie8이상*/
}

html,
body {
  font-family: "Pretendard", "sans-serif";
  color: #222222;
  font-weight: 400;
  font-size: 16px;
}

body {
  background-color: #ffffff;
}

input,
button,
textarea,
select,
a {
  outline: none;
  color: inherit;
}

button:focus {
  outline: none !important;
}

p {
  margin: 0;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

a,
button {
  text-decoration: none;
  -webkit-transition: all 0.12s ease-in;
  transition: all 0.12s ease-in;
}

a:hover,
button:hover {
  -webkit-transition: all 0.12s ease-in;
  transition: all 0.12s ease-in;
  text-decoration: none;
}

a:active {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

.modal-dialog .modal-content {
  border-radius: 1.25rem;
}

.modal-dialog .modal-header {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
  position: relative;
  border-bottom: none;
}

.modal-dialog .modal-header::after {
  content: "";
  display: inline-block;
  height: 1px;
  background-color: #082e59;
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0;
}

.modal-dialog .modal-header .modal-title {
  color: #082e59;
  font-size: 1.25rem;
  font-weight: 700;
}

.modal-dialog .modal-header .close {
  position: absolute;
  display: block;
  width: 1.875rem;
  height: 1.875rem;
  background: url("../images/icon_modal_close.png") center/100% no-repeat;
  top: 50%;
  right: 1rem;
  padding: 0;
  margin: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.modal-dialog .modal-header .close:hover {
  opacity: 1;
}

.modal-dialog .modal-body {
  text-align: center;
  padding-top: 2rem;
}

.modal-dialog .modal-body .form-control {
  margin-top: 1rem;
  height: 3.25rem;
}

.modal-dialog .modal-body .schedule .date {
  font-size: 1.5rem;
  color: #87be10;
}

.modal-dialog .modal-body .schedule .time {
  font-size: 1.25rem;
  color: #87be10;
  margin-top: 0.125rem;
}

.modal-dialog .modal-body .schedule .title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-top: 1rem;
}

.modal-dialog .modal-body .schedule .loc {
  font-size: 1rem;
  color: #555555;
}

.modal-dialog .modal-footer {
  border-top: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*
==========================================================================
  2. Layout
==========================================================================
*/
html,
body {
  width: 100%;
  height: 100%;
}

body {
  position: relative;
}

.scroll-wrap {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow-y: auto;
  z-index: 50;
}

.body-wrap {
  min-height: 100%;
  position: relative;
  padding-bottom: 11.875rem;
}

.body-wrap header {
  width: 100%;
  height: 9.4375rem;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
}

.body-wrap footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 11.875rem;
  background-color: #eeeeee;
}

.body-wrap .contents {
  width: 100%;
}

.container-fluid {
  max-width: 86rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.container-fluid.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.row {
  margin-left: -1rem;
  margin-right: -1rem;
}

.sub-header {
  width: 100%;
  background-color: #87be10;
  color: #ffffff;
}

.sub-header.second {
  background-color: #29a569;
}

.sub-header .container-fluid {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.sub-header h2 {
  width: 16.5625rem;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  font-size: 1.875rem;
  font-weight: 800;
}

.sub-header p {
  font-size: 1.125rem;
}

.contents-wrap {
  padding-top: 3.25rem;
}

.contents-wrap .container-fluid {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
}

.contents-wrap aside {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 13.1875rem;
  margin-right: 4rem;
}

.contents-wrap section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  word-break: break-all;
}

@media (max-width: 767.98px) {
  .body-wrap {
    padding-bottom: 17.875rem;
  }
  .body-wrap header {
    height: 4.4375rem;
  }
  .body-wrap footer {
    height: 17.875rem;
  }
  .sub-header {
    text-align: center;
  }
  .sub-header .container-fluid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow: hidden;
  }
  .sub-header h2 {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 2.125rem;
            flex: 1 1 2.125rem;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
  .sub-header p {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    font-size: 1rem;
    width: 100%;
  }
}

@media (max-width: 1199.98px) {
  .contents-wrap aside {
    display: none;
  }
}

/*  INPUT FORM STYLE  */
.form-group {
  margin-bottom: 0.5rem;
}

.form-group > label {
  font-size: 1rem;
  color: #888888;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-group.checkbox {
  position: relative;
}

.form-group.checkbox label {
  margin: 0;
  cursor: pointer;
}

.form-group.checkbox input[type="checkbox"] {
  display: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.form-group.checkbox input[type="checkbox"] + span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  font-weight: 400;
}

.form-group.checkbox input[type="checkbox"] + span::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background: url("../images/img_check_unsel.png") center/100% no-repeat;
  position: relative;
  margin-right: 0.625rem;
}

.form-group.checkbox input[type="checkbox"]:checked + span::before {
  background: url("../images/img_check_sel.png") center/100% no-repeat;
}

.form-group.radio {
  position: relative;
}

.form-group.radio label {
  margin: 0;
  cursor: pointer;
}

.form-group.radio input[type="radio"] {
  display: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.form-group.radio input[type="radio"] + span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  font-weight: 400;
}

.form-group.radio input[type="radio"] + span::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background: url("../images/img_radiobox_off.png") center/100% no-repeat;
  position: relative;
  top: -0.125rem;
  margin-right: 0.625rem;
}

.form-group.radio input[type="radio"]:checked + span::before {
  background: url("../images/img_radiobox_on.png") center/100% no-repeat;
}

.form-group > .valid {
  font-size: 0.875rem;
  color: #eb5757;
  padding-top: 0.25rem;
  display: none;
}

.form-group > .caution {
  font-size: 0.875rem;
  color: #87be10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.5rem;
}

.form-group > .caution::before {
  content: "";
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  background: url("../images/ico_assistive_text.png") center/100% no-repeat;
  margin-right: 0.375rem;
}

.form-group.invalid > .valid {
  display: block;
}

.form-group.invalid > .caution {
  display: none;
}

.form-group.invalid .form-control {
  border-color: #eb5757;
}

.form-group.hidden {
  display: none;
  visibility: hidden;
}

.form-group.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

select.form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #ffffff url("../images/ico-select.png") right 0.75rem center/0.625rem 0.3125rem no-repeat;
  padding-right: 3rem !important;
  height: 2.625rem;
}

select.form-control::-ms-expand {
  display: none;
}

.form-control {
  height: 3.25rem;
  border-radius: 0.1875rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  border: 1px solid #dddddd;
}

.form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #87be10;
}

.form-control::-webkit-input-placeholder {
  opacity: 1;
  color: #999999;
}

.form-control:-ms-input-placeholder {
  opacity: 1;
  color: #999999;
}

.form-control::-ms-input-placeholder {
  opacity: 1;
  color: #999999;
}

.form-control::placeholder {
  opacity: 1;
  color: #999999;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #dddddd;
  color: #999999;
}

.form-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-flex > .form-control {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.form-flex > .btn {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-left: 0.5rem;
}

/*  BUTTON STYLE  */
.btn {
  height: 3.25rem;
  padding: 0 1.25rem;
  border-radius: 0.1875rem;
  font-size: 1rem;
  border: none;
  font-size: 1rem;
  font-weight: 700;
}

.btn:focus, .btn:active {
  background-color: inherit;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn.btn-primary {
  background-color: #87be10;
}

.btn.btn-primary:hover {
  background-color: #628712;
}

.btn.btn-primary:focus, .btn.btn-primary:active {
  background-color: #628712 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.btn.btn-secondary {
  background-color: #29a569;
}

.btn.btn-secondary:hover {
  background-color: #198652;
}

.btn.btn-secondary:focus, .btn.btn-secondary:active {
  background-color: #198652 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.btn.btn-cancel {
  background-color: #999999;
  color: #ffffff;
}

.btn.btn-cancel:hover {
  background-color: #555555;
}

.btn.btn-cancel:focus, .btn.btn-cancel:active {
  background-color: #555555 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.btn.btn-border {
  background-color: #ffffff;
  border: 1px solid #87be10;
  color: #87be10;
}

.btn.btn-border:hover {
  background-color: #dfe4d4;
  color: #87be10;
}

.btn.w-100 {
  width: 100%;
}

.btn.btn-sm {
  height: auto;
  padding: 0.25rem 0.5rem;
  border-radius: 0.1875rem;
  font-size: 0.875rem;
}

.btn.btn-lg {
  height: 3.75rem;
  padding: 0 2.5rem;
  font-size: 1.25rem;
}

/* 카로셀 테마 */
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 1rem;
}

.owl-theme .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.owl-theme .owl-dots .owl-dot span {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #e3e3e3;
  margin: 0.25rem;
}

.owl-theme .owl-dots .owl-dot.active span {
  background-color: #87be10;
}

/*정렬 리스트 기능*/
.contents-sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contents-sort .item {
  font-size: 0.875rem;
  color: #999999;
}

.contents-sort .item.active > a {
  font-weight: 600;
  color: #29a569;
  display: inline-block;
  height: 1.25rem;
  line-height: 1.25rem;
  margin-top: -0.3125rem;
}

.contents-sort .item.active > a::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background: url("../images/ico_sort_select.png") center/100% no-repeat;
  margin-right: 0.5rem;
  position: relative;
  top: 0.25rem;
}

.contents-sort .item > a:hover {
  color: #87be10;
}

.contents-sort .item::after {
  content: "";
  display: inline-block;
  width: 0.0625rem;
  height: 0.9375rem;
  background-color: #dddddd;
  margin-left: 0.875rem;
  margin-right: 0.875rem;
  position: relative;
  bottom: -0.1875rem;
}

.contents-sort .item:last-of-type::after {
  content: none;
}

/*콘텐츠 검색*/
.contents-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contents-search .form-control {
  height: 2.625rem;
  max-width: 16.75rem;
}

.contents-search .btn-search {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  height: 2.625rem;
  margin-left: 0.5rem;
}

/*스피너 로더*/
.loader,
.loader:before,
.loader:after {
  background: #29a569;
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}

.loader {
  color: #29a569;
  text-indent: -9999em;
  margin: 88px auto;
  position: relative;
  font-size: 11px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  content: "";
}

.loader:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.loader:after {
  left: 1.5em;
}

@-webkit-keyframes load1 {
  0%,
  80%,
  100% {
    -webkit-box-shadow: 0 0;
            box-shadow: 0 0;
    height: 4em;
  }
  40% {
    -webkit-box-shadow: 0 -2em;
            box-shadow: 0 -2em;
    height: 5em;
  }
}

@-webkit-keyframes load1 {
  0%,
  80%,
  100% {
    -webkit-box-shadow: 0 0;
            box-shadow: 0 0;
    height: 4em;
  }
  40% {
    -webkit-box-shadow: 0 -2em;
            box-shadow: 0 -2em;
    height: 5em;
  }
}

@keyframes load1 {
  0%,
  80%,
  100% {
    -webkit-box-shadow: 0 0;
            box-shadow: 0 0;
    height: 4em;
  }
  40% {
    -webkit-box-shadow: 0 -2em;
            box-shadow: 0 -2em;
    height: 5em;
  }
}

/*사이드 검색 필터*/
.search-filter {
  position: relative;
  background-color: #f1f6e6;
  border-radius: 0.625rem;
  margin-top: 2.25rem;
}

.search-filter .filter-contents {
  padding: 1rem;
  margin: auto;
}

.search-filter .filter-contents select {
  position: relative;
  color: #999999;
  width: 100%;
  height: 2.625rem;
  font-size: 0.875rem;
  padding-left: 0.5rem;
  border: 1px solid #dddddd;
  border-radius: 0.1875rem;
  background-position: 95%;
  background-repeat: no-repeat;
  background-size: 0.625rem 0.3125rem;
  background-image: url("../images/ico-select.png");
  background-color: #ffffff;
  -webkit-appearance: none;
  /* for chrome */
  -moz-appearance: none;
  /*for firefox*/
  appearance: none;
  margin-bottom: 0.5rem;
}

.search-filter .filter-contents select:disabled {
  background-color: #dddddd;
}

.search-filter .filter-contents select:last-of-type {
  margin-bottom: 0;
}

.search-filter .filter-contents select::-ms-expand {
  display: none;
  /*for IE*/
}

.search-filter .filter-contents .filter-btn {
  position: absolute;
  top: 1.1875rem;
  right: 1rem;
  content: "";
  display: inline-block;
  width: 100%;
  border: none;
  width: 1.125rem;
  height: 1.125rem;
  background-image: url("../images/ico_refresh.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.search-filter .filter-contents .btn {
  width: 100%;
  height: 2.625rem;
  color: #ffffff;
  margin-top: 0.5rem;
  background: #87be10;
}

.search-filter .filter-contents h2 {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.search-filter .filter-contents h2 span {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.search-filter .filter-contents label {
  margin: 0;
}

.search-filter .filter-contents .filter-area .sub-title {
  display: block;
  margin-bottom: 0.375rem;
}

.search-filter .filter-contents .support-type {
  margin-top: 1.5rem;
}

.search-filter .filter-contents .support-type .sub-title {
  display: block;
  margin-bottom: 0.375rem;
}

.search-filter .filter-contents .support-type li:nth-child(2),
.search-filter .filter-contents .support-type li:nth-child(3) {
  color: #555555;
}

.search-filter .filter-contents .support-type li input[type="checkbox"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  vertical-align: middle;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid;
  margin-right: 0.5rem;
}

.search-filter .filter-contents .support-type li input[type="checkbox"] + span::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background: url("../images/img_check_unsel.png") center/100% no-repeat;
  position: relative;
  margin-right: 0.625rem;
  -webkit-transform: translateY(0.3rem);
          transform: translateY(0.3rem);
}

.search-filter .filter-contents .support-type li input[type="checkbox"]:checked + span::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background: url("../images/img_check_sel.png") center/100% no-repeat;
  position: relative;
  margin-right: 0.625rem;
}

.search-filter .filter-contents .support-type li #text {
  vertical-align: middle;
}

.search-filter .filter-contents .select-tag {
  margin-top: 1.6875rem;
}

.search-filter .filter-contents .select-tag li {
  position: relative;
  word-break: keep-all;
  display: inline-block;
  padding: 0.1875rem 1.375rem 0.1875rem 0.375rem;
  margin-bottom: 0.25rem;
  border: 1px solid #dddddd;
  color: #555555;
  font-size: 0.75rem;
  background-color: #ffffff;
}

.search-filter .filter-contents .select-tag li button {
  position: absolute;
  top: 38%;
  right: 0.375rem;
  width: 0.375rem;
  height: 0.375rem;
  border: none;
  background: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/ico_close.png");
}

.search-filter .filter-contents .select-tag li:last-child {
  margin-bottom: 0rem;
}

.search-filter .filter-contents .filter-field {
  margin-top: 1.5rem;
}

.search-filter .filter-contents .filter-field .sub-title {
  display: block;
  margin-bottom: 0.375rem;
}

/*스위치*/
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 32px;
  margin-bottom: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch input:checked + .slider {
  background-color: #29a569;
}

.switch input:checked + .slider::before {
  -webkit-transform: translateX(28px);
          transform: translateX(28px);
}

.switch input:focus + .slider {
  -webkit-box-shadow: 0 0 1px #29a569;
          box-shadow: 0 0 1px #29a569;
}

.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #9ba6ac;
  border-radius: 30px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.switch .slider:before {
  position: absolute;
  content: "";
  height: 28px;
  width: 28px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  border-radius: 50%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 50;
}

header::before {
  content: "";
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  height: 0.3125rem;
  background: linear-gradient(45deg, #87be10, #29a569);
}

header .container-fluid {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

header .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 1.25rem;
  padding-bottom: 0.75rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

header .top .logo {
  width: 12.3125rem;
  height: auto;
}

header .top .right {
  color: #555555;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .top .right .btn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .top .right .btn-list li a {
  padding-right: 1rem;
}

header .top .right .btn-list li:last-of-type a {
  padding-right: 0;
  padding-left: 1rem;
}

header .top .right .btn-list li:last-of-type::before {
  content: "";
  display: inline-block;
  height: 0.875rem;
  width: 0.0625rem;
  background-color: #dddddd;
  position: relative;
  top: 0.0625rem;
}

header .top .right .btn-menu {
  display: none;
  width: 1.875rem;
  height: 1.875rem;
  background: url("../images/ico_h_sitemap.png") center/100% no-repeat;
}

header .top .right .user-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .top .right .user-info .user {
  font-size: 1rem;
  color: #555555;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 1.125rem;
}

header .top .right .user-info .user::before {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background: url("../images/ico_user.png") center/100% no-repeat;
  margin-right: 0.5rem;
}

header .top .right .user-info .user .name {
  display: inline-block;
  padding-left: 0.3125rem;
  padding-right: 0.3125rem;
  color: #87be10;
  font-weight: 700;
}

header nav {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header nav .menubar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header nav .menubar .btn-sitemap {
  width: 1.875rem;
  height: 1.875rem;
  background: url("../images/ico_h_sitemap.png") center/100% no-repeat;
  margin-right: 2.625rem;
}

header nav .menubar .btn-sitemap:hover {
  opacity: 0.6;
}

header nav .menubar .gnb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header nav .menubar .gnb .item {
  margin-right: 4.75rem;
  line-height: 1;
}

header nav .menubar .gnb .item:last-of-type {
  margin-right: 0;
}

header nav .menubar .gnb .item.active {
  color: #87be10;
}

header nav .menubar .gnb .item a {
  font-size: 1.25rem;
  font-weight: 600;
}

header nav .menubar .gnb .item a:hover {
  color: inherit;
  opacity: 0.7;
}

header .searchbar {
  width: 33%;
  max-width: 26.875rem;
}

header .searchbar .form-search {
  width: 100%;
  font-size: 1rem;
  height: 3.125rem;
  background: url("../images/ico_search.png") center right 1.25rem/1.625rem 1.625rem #eeeeee no-repeat;
  border-radius: 1.5625rem;
  border: none;
  padding-left: 1.5rem;
  padding-right: 3rem;
}

@media (max-width: 991.98px) {
  header nav .menubar .gnb .item {
    margin-right: 2.25rem;
  }
}

@media (max-width: 767.98px) {
  header nav {
    display: none;
  }
  header .top {
    padding-top: 0;
    padding-bottom: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 4.125rem;
  }
  header .top .logo {
    width: 9.875rem;
  }
  header .top .right .non-login,
  header .top .right .user-info {
    display: none;
  }
  header .top .right .btn-menu {
    display: block;
  }
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .container-fluid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

footer .left .logo {
  width: 10.1875rem;
  height: auto;
}

footer .left .copyright {
  font-size: 0.75rem;
  color: #888888;
  margin-top: 2.5rem;
}

footer .right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

footer .right .foot-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

footer .right .foot-link li::after {
  content: "";
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: #dddddd;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  position: relative;
  top: -0.1875rem;
}

footer .right .foot-link li:last-of-type::after {
  content: none;
}

footer .right .foot-link li a {
  display: inline-block;
  font-size: 1rem;
  color: #555555;
  padding: 0.25rem;
  letter-spacing: -0.0625rem;
}

footer .right .contact-info {
  margin-top: 2rem;
  font-size: 1rem;
  color: #888888;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

footer .right .contact-info .number {
  margin-top: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .right .contact-info .number li {
  margin-right: 1.5rem;
}

footer .right .contact-info .number li:last-of-type {
  margin-right: 0;
}

footer .right .contact-info .number li::before {
  content: attr(data-label);
  display: inline-block;
  border-right: 1px solid #dddddd;
  line-height: 0.7;
  padding-right: 0.75rem;
  margin-right: 0.75rem;
}

@media (max-width: 767.98px) {
  footer .container-fluid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  footer .left {
    text-align: center;
    min-height: 4.375rem;
  }
  footer .left .logo {
    width: 6.5625rem;
  }
  footer .left .copyright {
    font-size: 0.6875rem;
    margin-top: 1.125rem;
  }
  footer .right {
    margin-bottom: 2.375rem;
    min-height: 8.875rem;
  }
  footer .right .foot-link li::after {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
    width: 0.25rem;
    height: 0.25rem;
    top: -0.1875rem;
  }
  footer .right .foot-link .item a {
    font-size: 0.875rem;
    letter-spacing: -0.09375rem;
  }
  footer .right .contact-info {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 0.875rem;
  }
  footer .right .contact-info .number {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .right .contact-info .number li {
    margin-right: 0;
  }
  footer .right .contact-info .number li:last-of-type {
    margin-top: 0.375rem;
  }
}

.m-nav {
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: none;
  overflow-y: auto;
}

.m-nav .header {
  padding: 1.25rem 1rem;
  background: linear-gradient(45deg, #87be10, #29a569);
  position: relative;
}

.m-nav .header .btn-login {
  font-size: 1.375rem;
  font-weight: 700;
  color: #ffffff;
}

.m-nav .header .btn-close {
  position: absolute;
  top: 1.25rem;
  right: 1rem;
  width: 1.875rem;
  height: 1.875rem;
  background: url("../images/ico_mnav_close.png") center/100% no-repeat;
}

.m-nav .header .my-info {
  padding-right: 2.75rem;
}

.m-nav .header .my-info .title {
  font-size: 1.375rem;
  font-weight: 400;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.m-nav .header .my-info .title::before {
  content: "";
  display: block;
  width: 1.625rem;
  height: 1.625rem;
  background: url("../images/ico_myuser.png") center/100% no-repeat;
  margin-right: 1rem;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.m-nav .header .my-info .title .name {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.m-nav .header .my-info .title .name::after {
  content: "님";
  font-weight: 400;
}

.m-nav .header .my-info .btn-mypage {
  display: inline-block;
  color: #ffffff;
  font-size: 0.875rem;
  margin-left: 2.75rem;
  margin-top: 0.5rem;
}

.m-nav .header .my-info .btn-mypage::after {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background: url("../images/ico_arrow.png") center/100% no-repeat;
  position: relative;
  bottom: -0.3125rem;
}

.m-nav .header .search-wrap {
  margin-top: 1.875rem;
}

.m-nav .header .search-wrap input {
  width: 100%;
  height: 3.125rem;
  border: none;
  border-radius: 1.5625rem;
  padding-left: 1.5rem;
  background: url("../images/ico_search.png") center right 1.25rem/1.625rem 1.625rem #ffffff no-repeat;
}

.m-nav .header .func-container {
  text-align: right;
  margin-top: 0.5rem;
}

.m-nav .header .func-container a {
  font-size: 0.875rem;
  color: #ffffff;
  text-decoration: underline;
}

.m-nav .menu > .item .title {
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 1.125rem;
  display: block;
  height: 3.75rem;
  border-bottom: 1px solid #e2e2e2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.m-nav .menu > .item .title.open + .sub {
  display: block;
  height: auto;
  max-height: 600px;
  padding: 0.5rem 0;
}

.m-nav .menu > .item .sub {
  background-color: #eeeeee;
  padding: 0;
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.15s ease-in-out;
  transition: max-height 0.15s ease-in-out;
}

.m-nav .menu > .item .sub > .item a {
  display: block;
  padding: 0.5625rem 2.25rem;
  font-size: 1rem;
  color: #555555;
}

.sitemap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: #ffffff;
  display: none;
}

.sitemap .container-fluid {
  padding-top: 7rem;
}

.sitemap .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5rem;
}

.sitemap .header h2 {
  font-size: 2rem;
  font-weight: 700;
}

.sitemap .header .btn-close {
  display: block;
  width: 1.875rem;
  height: 1.875rem;
  background: url("../images/ico_sitemap_close.png") center/100% no-repeat;
}

.sitemap .site-group {
  margin-left: 0;
  margin-right: 0;
}

.sitemap .site-group .item {
  border-left: 0.0625rem solid #dddddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 4rem;
}

.sitemap .site-group .item:last-of-type {
  border-right: 0.0625rem solid #dddddd;
}

.sitemap .site-group .item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #87be10;
  margin-bottom: 1.5rem;
}

.sitemap .site-group .item .link-list li {
  margin-bottom: 1rem;
}

.sitemap .site-group .item .link-list li:last-of-type {
  margin-bottom: 0;
}

.sitemap .site-group .item .link-list li > a {
  font-size: 0.875rem;
}

.sitemap .site-group .item .link-list li > a:hover {
  color: #87be10;
}

.sign-section .header {
  color: #ffffff;
}

.sign-section .header.signup {
  background-color: #29a569;
}

.sign-section .header.signin {
  background-color: #87be10;
}

.sign-section .header .container-fluid {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.sign-section .header h2 {
  font-size: 1.875rem;
  font-weight: 800;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 15rem;
}

.sign-section .header p {
  font-size: 1.125rem;
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
}

.sign-section .contents {
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
  max-width: calc(27.25rem + 2rem);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 9.5rem;
}

.sign-section .contents > img {
  display: block;
  width: 100%;
  height: auto;
}

.sign-section .contents > img.img-sns {
  margin-top: 3.5rem;
  margin-bottom: 3rem;
}

.sign-section .contents > img.img-complete {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.sign-section .contents > img.img-error {
  margin: 0 auto;
  margin-top: 3rem;
  margin-bottom: 3rem;
  max-width: 22.5rem;
}

.sign-section .contents .welcome {
  text-align: center;
  margin-top: 3.5rem;
  margin-bottom: 2rem;
}

.sign-section .contents .welcome h4 {
  font-size: 1.625rem;
  margin-bottom: 1.125rem;
  font-weight: 700;
}

.sign-section .contents .welcome p {
  font-size: 1.125rem;
}

.sign-section .contents .btn-sign {
  display: block;
  width: 100%;
  border: none;
  height: 3.75rem;
  font-size: 1.25rem;
  border-radius: 0.3125rem;
  margin-bottom: 0.5rem;
}

.sign-section .contents .btn-sign.btn-google {
  color: #888888;
  border: 1px solid #dddddd;
  background: url("../images/ico_google.png") no-repeat;
  background-position: 1.2rem center;
  background-size: 1.5375rem 1.803125rem;
}

.sign-section .contents .btn-sign.btn-naver {
  color: #ffffff;
  background: url("../images/ico_naver.png") no-repeat #00c850;
  background-size: 1.1875rem 1.0625rem;
  background-position: 1.54875rem center;
}

.sign-section .contents .btn-sign.btn-kakao {
  color: #222222;
  background: url("../images/ico_kakao.png") no-repeat #fede00;
  background-size: 1.2468675rem 1.514375rem;
  background-position: 1.54875rem center;
}

.sign-section .contents .btn-sign.btn-email {
  color: #ffffff;
  background-color: #87be10;
  background-size: 1.5rem;
  background-position: 1.54875rem center;
}

.sign-section .contents .btn-sign.btn-email::before {
  display: inline-block;
  content: "";
  width: 1.375rem;
  height: 1.375rem;
  background-image: url("../images/ico_email.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  margin-right: 0.625rem;
  position: relative;
  top: 3px;
}

.sign-section .contents .split {
  text-align: center;
  font-size: 1.625rem;
  font-weight: 700;
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}

.sign-section .contents .btn-send {
  width: 100%;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
}

.sign-section .contents .btn-send::before {
  display: inline-block;
  content: "";
  width: 1.375rem;
  height: 1.375rem;
  background-image: url("../images/ico_send.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  margin-right: 0.625rem;
  position: relative;
  top: 0.1875rem;
}

.sign-section .contents .btn-confirm {
  width: 100%;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
}

.sign-section .contents .btn-confirm::before {
  display: inline-block;
  content: "";
  width: 1.375rem;
  height: 1.375rem;
  background-image: url("../images/ico_check.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  margin-right: 0.625rem;
  position: relative;
  top: 0.25rem;
}

.sign-section .contents .form-auth > .form-group {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.sign-section .contents .form-auth .btn-resend {
  font-size: 1rem;
  font-weight: 700;
  color: #628712;
  background-color: #e2f2c0;
  height: 3.25rem;
  padding: 0 1.25rem;
  margin-left: 0.5rem;
}

.sign-section .contents .terms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sign-section .contents .terms > .form-group {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  position: relative;
  top: 0.25rem;
}

.sign-section .contents .terms p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.sign-section .contents .terms p > a {
  color: #87be10;
}

.sign-section .contents .terms p > a:hover {
  text-decoration: underline;
}

.sign-section .contents .btn-between > button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 1rem;
  font-weight: 600;
  padding: 0;
}

.sign-section .contents .btn-between > button:last-of-type {
  margin-right: 0;
}

.sign-section .contents .btn-login {
  margin-top: 2rem;
}

.sign-section .contents .bottom-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 1.5rem;
}

.sign-section .contents .bottom-link > a {
  font-size: 0.875rem;
  text-decoration: underline;
}

.sign-section .contents .bottom-link > a.signup {
  font-weight: 600;
  color: #87be10;
}

.sign-section .contents .bottom-link > a.reset-pwd {
  color: #888888;
}

@media (max-width: 767.98px) {
  .sign-section .header .container-fluid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .sign-section .header .container-fluid h2 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
  .sign-section .header .container-fluid p {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 1rem;
  }
}

.home-hero {
  background: url("../images/bg_hero.jpg") no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-box-shadow: inset 0 10rem 8rem -2rem rgba(25, 39, 21, 0.8);
          box-shadow: inset 0 10rem 8rem -2rem rgba(25, 39, 21, 0.8);
  padding-top: 4.5rem;
  padding-bottom: 8rem;
  padding-left: 2rem;
  padding-right: 2rem;
  position: relative;
}

.home-hero h1 {
  font-family: "GmarketSans", "sans-serif";
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  margin-bottom: 3.75rem;
  position: relative;
}

.home-hero h1 span {
  display: inline-block;
}

.home-hero h1 img {
  display: block;
  width: 269px;
  height: auto;
  margin: 0 auto;
  margin-bottom: 8px;
}

.home-hero .tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1.875rem;
}

.home-hero .tab .tab-item {
  font-size: 1.25rem;
  font-weight: 600;
}

.home-hero .tab .tab-item::after {
  content: "";
  display: inline-block;
  width: 0.0625rem;
  height: 1rem;
  background-color: #999999;
  margin-left: 1.375rem;
  margin-right: 1.375rem;
  position: relative;
  top: 0.0625rem;
}

.home-hero .tab .tab-item:last-of-type::after {
  content: none;
}

.home-hero .tab .tab-item > a {
  color: #999999;
}

.home-hero .tab .tab-item > a:hover {
  opacity: 0.7;
}

.home-hero .tab .tab-item.active > a {
  color: #ffffff;
}

.home-hero .recomm-video .item {
  height: 21.25rem;
  background-color: #87be10;
  -webkit-box-shadow: 0px 0.25rem 0.625rem rgba(0, 0, 0, 0.4);
          box-shadow: 0px 0.25rem 0.625rem rgba(0, 0, 0, 0.4);
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0.875rem;
}

.home-hero .recomm-video .item:nth-of-type(even) {
  background-color: #29a569;
}

.home-hero .recomm-video .item .thumbnail {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  height: 12rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.2);
}

.home-hero .recomm-video .item .info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1rem 1.5rem;
  padding-top: 1.5rem;
  position: relative;
}

.home-hero .recomm-video .item .info .title {
  font-size: 1.625rem;
  font-weight: 700;
  padding: 0 0.5rem;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  line-height: 1.4em;
  height: calc(1.4em * 2);
}

.home-hero .recomm-video .item .info .count-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  right: 1.5rem;
}

.home-hero .recomm-video .item .info .count-wrap .category {
  font-size: 1rem;
  text-decoration: underline;
}

.home-hero .recomm-video .item .info .count-wrap .count {
  font-size: 0.875rem;
  color: #dddddd;
}

.home-hero .recomm-video .item .info .count-wrap .count > span {
  color: #ffffff;
  padding: 0 0.3125rem;
}

.home-hero .recomm-video .item .info .count-wrap .count > span.view::before {
  content: "조회 ";
}

.home-hero .recomm-video .item .info .count-wrap .count > span.like::before {
  content: "추천 ";
}

.home-hero .recomm-video .item .info .count-wrap .count > span.like {
  padding-right: 0;
}

.home-hero .recomm-program .item {
  height: 21.25rem;
  -webkit-box-shadow: 0px 0.25rem 0.625rem rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0.25rem 0.625rem rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #ffffff;
}

.home-hero .recomm-program .item .organ {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 100%;
  height: 9.5rem;
  background-color: #87be10;
  color: #ffffff;
  text-align: center;
}

.home-hero .recomm-program .item .organ .organ-name {
  font-size: 1.875rem;
  font-weight: 700;
  width: 100%;
  margin-top: 2.125rem;
  padding-left: 2.125rem;
  padding-right: 2.125rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-hero .recomm-program .item .organ .state {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1;
  padding: 0.375rem 0.625rem;
  border: 0.125rem solid rgba(255, 255, 255, 0.8);
  margin-top: 1rem;
}

.home-hero .recomm-program .item:nth-of-type(even) .organ {
  background-color: #29a569;
}

.home-hero .recomm-program .item .info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}

.home-hero .recomm-program .item .info .title {
  margin-top: 1.5rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  font-size: 1.375rem;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  line-height: 1.4em;
  height: calc(1.4em * 2);
}

.home-hero .recomm-program .item .info .detail {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  color: #555555;
  font-size: 0.875rem;
}

.home-hero .recomm-program .item .info .detail li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.375rem;
}

.home-hero .recomm-program .item .info .detail li::before {
  content: "";
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  margin-right: 0.875rem;
}

.home-hero .recomm-program .item .info .detail li.date::before {
  background: url("../images/ico_calendar.png") center/100% no-repeat;
}

.home-hero .recomm-program .item .info .detail li.number::before {
  background: url("../images/ico_recruit.png") center/100% no-repeat;
}

.home-hero .recomm-program .item .info .detail li.number .appli::before {
  content: "잔여";
}

.home-hero .recomm-program .item .info .detail li.number .appli::after {
  content: "명";
}

.home-hero .recomm-program .item .info .detail li.number .recruit {
  color: #888888;
}

.home-hero .recomm-program .item .info .detail li.number .recruit::before {
  content: "모집";
}

.best-section {
  padding-top: 4.5rem;
  padding-bottom: 3.5rem;
}

.best-section .tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.5rem;
}

.best-section .tab .tab-item {
  font-size: 1rem;
  color: #888888;
}

.best-section .tab .tab-item::after {
  content: "";
  display: inline-block;
  height: 1.0625rem;
  width: 0.0625rem;
  background-color: #dddddd;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  position: relative;
  top: -0.0625rem;
}

.best-section .tab .tab-item:last-of-type::after {
  content: none;
}

.best-section .tab .tab-item > a:hover {
  color: inherit;
  opacity: 0.8;
}

.best-section .tab .tab-item.active {
  font-size: 1.625rem;
  font-weight: 700;
  color: #222222;
}

.best-section .tab-container .tab-title {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  display: none;
}

.best-section .tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.best-section .best-program .item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 20%;
          flex: 1 1 20%;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  border: 0.0625rem solid #dddddd;
  border-radius: 0.3125rem;
  height: 13.75rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

.best-section .best-program .item .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0.5rem;
}

.best-section .best-program .item .top .rank {
  font-family: "GmarketSans", "sans-serif";
  font-size: 2rem;
}

.best-section .best-program .item .top .state {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  background-color: #555555;
  border-radius: 0.75rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.best-section .best-program .item .top .state::before {
  content: attr(data-state);
}

.best-section .best-program .item .top .state[data-state="모집중"] {
  background-color: #eb5757;
}

.best-section .best-program .item .top .state[data-state="마감"] {
  background-color: #bcbcbc;
}

.best-section .best-program .item .top .state[data-state="진행중"] {
  background-color: #ffb800;
}

.best-section .best-program .item .title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  line-height: 1.4em;
  height: calc(1.4em * 2);
  font-size: 1.125rem;
  font-weight: 400;
}

.best-section .best-program .item .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 0.75rem;
  line-height: 1;
  margin-top: 1.75rem;
}

.best-section .best-program .item .number::before {
  content: "";
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  margin-right: 0.875rem;
  background: url("../images/ico_recruit.png") center/100% no-repeat;
}

.best-section .best-program .item .number .appli::before {
  content: "신청";
}

.best-section .best-program .item .number .appli::after {
  content: "명";
}

.best-section .best-program .item .number .recruit {
  color: #888888;
}

.best-section .best-program .item .number .recruit::before {
  content: "모집";
}

.best-section .best-program .item .organ {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: right;
  color: #555555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.best-section .best-video .item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 23%;
          flex: 1 1 23%;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  height: 13.75rem;
  margin-bottom: 1rem;
}

.best-section .best-video .item .thumbnail {
  height: 11.25rem;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.best-section .best-video .item .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.5rem 0.25rem;
}

.best-section .best-video .item .info .rank {
  font-family: "GmarketSans", "sans-serif";
  font-size: 2rem;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 1.25rem;
  position: relative;
  top: -0.125rem;
}

.best-section .best-video .item .info .txt-wrap .title {
  font-size: 1rem;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  line-height: 1.4em;
  height: calc(1.4em * 2);
}

.best-section .best-video .item .info .txt-wrap .detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.75rem;
  color: #888888;
  margin-top: 0.125rem;
}

.best-section .best-video .item .info .txt-wrap .detail li::after {
  content: "";
  width: 0.0625rem;
  height: 0.8125rem;
  display: inline-block;
  background-color: #dddddd;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  position: relative;
  top: 0.1875rem;
}

.best-section .best-video .item .info .txt-wrap .detail li:last-of-type::after {
  content: none;
}

.best-section .best-video .item .info .txt-wrap .detail li.category {
  color: #87be10;
}

.board-section .board-wrap {
  border-top: 0.0625rem solid #dddddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.board-section .board-wrap .board {
  width: 50%;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.board-section .board-wrap .board.notice {
  padding-right: 2rem;
}

.board-section .board-wrap .board.promotion {
  padding-left: 2rem;
}

.board-section .board-wrap .board .title {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 2rem;
  width: 5rem;
}

.board-section .board-wrap .board .title h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.board-section .board-wrap .board .title .more {
  font-size: 0.875rem;
  color: #555555;
}

.board-section .board-wrap .board .title .more::after {
  content: "";
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  background: url("../images/ico_more_arrow.png") center/100% no-repeat;
  position: relative;
  top: 0.1875rem;
}

.board-section .board-wrap .board .board-list {
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.board-section .board-wrap .board .board-list li {
  margin-bottom: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
}

.board-section .board-wrap .board .board-list li h4 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1rem;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 1rem;
}

.board-section .board-wrap .board .board-list li .date {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 5rem;
  font-size: 0.875rem;
  color: #888888;
  text-align: right;
}

.home-review-section .title {
  font-weight: 700;
  font-size: 1.625rem;
  margin-bottom: 1.5rem;
}

.home-review-section .review-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 4rem;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.home-review-section .review-list .item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 23%;
          flex: 1 1 23%;
  border-radius: 0.3125rem;
  border: 0.0625rem solid #dddddd;
  cursor: pointer;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  margin-bottom: 1rem;
}

.home-review-section .review-list .item .thumbnail {
  height: 11.25rem;
  border-radius: 0.3125rem 0.3125rem 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url("../images/bg_default_thumbnail.png");
}

.home-review-section .review-list .item .description {
  padding: 1rem;
}

.home-review-section .review-list .item .description .review-title {
  font-size: 1rem;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  line-height: 1.35em;
  height: calc(1.35em * 2);
}

.home-review-section .review-list .item .description .count {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #888888;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home-review-section .review-list .item .description .count > li::before {
  content: attr(aria-value);
  padding-right: 0.25rem;
}

.home-review-section .review-list .item .description .count > li:first-child::after {
  content: "";
  display: inline-block;
  width: 0.0625rem;
  height: 0.75rem;
  background-color: #888888;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  position: relative;
  top: 0.125rem;
}

.home-review-section .review-list .item .description .prod-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #555555;
  margin-top: 1.625rem;
  width: 100%;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 767.98px) {
  .home-hero h1 {
    font-size: 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .home-hero h1 img {
    width: 210px;
  }
  .home-hero .tab .tab-item {
    font-size: 1rem;
  }
  .best-section {
    padding-top: 1rem;
  }
  .best-section .tab {
    display: none;
  }
  .best-section .tab-container {
    display: block !important;
  }
  .best-section .tab-container .tab-title {
    display: block;
    margin-top: 2rem;
  }
}

.corona-state {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.corona-state .status {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 3.75rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #eeeeee;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.corona-state .status .jab-status,
.corona-state .status .infection-status {
  height: 1.9375rem;
}

.corona-state .status div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.corona-state .status .sub-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.corona-state .status .list::after {
  border-right: 1px solid #999999;
}

.corona-state .status .list:first-child {
  padding-right: 0px;
}

.corona-state .status .list:last-child {
  padding-right: 0.6875rem;
}

.corona-state .status .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0.6875rem;
}

.corona-state .status .list p {
  font-size: 0.75rem;
}

.corona-state .status .list p span {
  font-size: 0.75rem;
  padding-left: 0.5rem;
  font-weight: 700;
}

.corona-state .status .list-center {
  padding-right: 0px;
}

.corona-state .status .list::after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  content: "";
  display: inline-block;
  padding-left: 0.6875rem;
  width: 0.0625rem;
  height: 1rem;
}

.corona-state .status .list:last-child::after {
  display: none;
}

.corona-state .status .jab-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0.5rem;
}

.corona-state .status .jab-status div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.corona-state .status .jab-status .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  margin: 0rem 1rem 0rem 2rem;
  color: #555555;
}

.corona-state .status .jab-status .sub-title {
  width: 5.8125rem;
  background: #29a569;
}

.corona-state .status .jab-status .list-box {
  border: 1px solid #29a569;
  background: #ffffff;
}

.corona-state .status .jab-status .list-box .list span {
  color: #29a569;
}

.corona-state .status .infection-status .sub-title {
  width: 4.3125rem;
  background: #eb5757;
}

.corona-state .status .infection-status .list-box {
  border: 1px solid #eb5757;
  background: #ffffff;
}

.corona-state .status .infection-status .list-box .list span {
  color: #eb5757;
}

.corona-state .status .status-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.75rem;
  color: #555555;
  margin: 0rem 7rem 0rem 1rem;
  margin-right: 0;
}

.corona-state .status .site-go {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  color: #555555;
  padding-right: 2rem;
}

.corona-state .status .site-go a {
  font-size: 0.75rem;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.corona-state .status .site-go a::before {
  content: "";
  display: inline-block;
  width: 1.0625rem;
  height: 0.9375rem;
  margin-right: 0.4375rem;
  background-image: url("../images/img_go_logo.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.corona-state .status .site-go a::after {
  content: "";
  display: inline-block;
  width: 0.28125rem;
  height: 0.5625rem;
  margin-left: 0.546875rem;
  background-image: url("../images/ico_goto.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (max-width: 991.98px) {
  .best-section {
    padding-bottom: 2rem;
  }
  .best-section .best-program .item,
  .best-section .best-video .item {
    -ms-flex-preferred-size: 38%;
        flex-basis: 38%;
  }
  .home-review-section .review-list .item {
    -ms-flex-preferred-size: 38%;
        flex-basis: 38%;
  }
  .board-section {
    padding-bottom: 2rem;
  }
  .board-section .board-wrap {
    border-top: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .board-section .board-wrap .board {
    width: 100%;
    padding: 0;
    display: block;
  }
  .board-section .board-wrap .board.notice {
    padding-right: 0;
  }
  .board-section .board-wrap .board.promotion {
    padding-left: 0;
  }
  .board-section .board-wrap .board .title {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 1rem;
    padding-top: 1rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 0.125rem solid #222;
  }
  .board-section .board-wrap .board .title h3 {
    margin: 0;
  }
  .board-section .board-wrap .board .board-list {
    margin-top: 1rem;
  }
}

@media (max-width: 1375.99px) {
  .corona-state {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .best-section .best-program .item,
  .best-section .best-video .item {
    -ms-flex-preferred-size: 90%;
        flex-basis: 90%;
  }
  .home-review-section .review-list .item {
    -ms-flex-preferred-size: 90%;
        flex-basis: 90%;
  }
}

.side-menu {
  width: 100%;
}

.side-menu .side-list {
  border-top: 2px solid #222;
  border-bottom: 2px solid #222;
  padding: 1.5rem 1.3125rem;
}

.side-menu .side-list li {
  position: relative;
  padding-bottom: 1.5rem;
}

.side-menu .side-list li:last-child {
  padding-bottom: 0px;
}

.side-menu .side-list a:hover {
  color: #87be10;
}

.side-menu .side-list a.active {
  font-weight: 700;
  color: #87be10;
}

.side-menu .side-list a.active::before {
  position: absolute;
  display: inline-block;
  top: 0.4375rem;
  left: -1.3125rem;
  content: "";
  width: 0.75rem;
  height: 0.375rem;
  background-color: #87be10;
}

.recomm-video .owl-stage .owl-item:nth-of-type(even) .item {
  background-color: #29a569;
}

.recomm-program .owl-stage .owl-item:nth-of-type(even) .item .organ {
  background-color: #29a569;
}

.owl-carousel .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.75rem;
}

.owl-carousel .owl-nav button {
  display: block;
  width: 2.25rem;
  height: 2.25rem;
}

.owl-carousel .owl-nav button > span {
  display: none;
}

.owl-carousel .owl-nav button.owl-prev {
  background: url("../images/btn_slide_prev.png") center/100% no-repeat;
  margin-right: 1rem;
}

.owl-carousel .owl-nav button.owl-next {
  background: url("../images/btn_slide_next.png") center/100% no-repeat;
}

.owl-carousel .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1rem;
}

.owl-carousel .owl-dots button.owl-dot {
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: #dddddd;
  margin-right: 0.625rem;
}

.owl-carousel .owl-dots button.owl-dot:last-of-type {
  margin-right: 0;
}

.owl-carousel .owl-dots button.owl-dot.active {
  background-color: #87be10;
}

section {
  position: relative;
  overflow: hidden;
}

section .sub-title {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

section .contents-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1rem;
}

section .contents-toolbar.right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

section.promotion .detail-container, section.notice .detail-container {
  padding-left: 2rem;
  padding-right: 2rem;
  margin-bottom: 5rem;
}

.video-list .item .thumbnail {
  position: relative;
  height: 12.5rem;
  border-radius: 0.3125rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url("../images/bg_default_thumbnail.png");
}

.video-list .item .thumbnail .icons {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0.9375rem;
  left: 0.9375rem;
}

.video-list .item .thumbnail .icons div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  height: 1.5rem;
  font-size: 0.75rem;
  border-radius: 0.25rem;
  color: #ffffff;
}

.video-list .item .thumbnail .icons .best {
  width: 3rem;
  margin-right: 0.5rem;
  background-color: #eb5757;
}

.video-list .item .thumbnail .icons .new {
  width: 2.375rem;
  background-color: #29a569;
}

.video-list .item .title {
  margin: 0.875rem 0;
  font-size: 1.125rem;
  line-height: 1.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  line-height: 1.4em;
  height: calc(1.4em * 2);
}

.video-list .item .like {
  margin-bottom: 0.875rem;
}

.video-list .item .like button::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
  background-image: url("../images/ico_like.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  -webkit-transform: translateY(0.125rem);
          transform: translateY(0.125rem);
}

.video-list .item .like button.active::before {
  background-image: url("../images/ico_like_on.png");
}

.video-list .item .like button {
  border: none;
  background: none;
}

.video-list .item .today {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #888888;
  font-size: 0.875rem;
}

.video-list .item p {
  padding-right: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.video-list .item p:first-child::after {
  content: "";
  display: inline-block;
  padding-right: 0.8rem;
  border-right: 1px solid #dddddd;
  height: 1.1875rem;
}

.video-list .item p:last-child {
  padding: 0px;
}

.organ-list .item {
  border: 1px solid #dddddd;
  border-radius: 0.3125rem;
  overflow: hidden;
}

.organ-list .item .list-info {
  padding: 1rem 1.5rem;
}

.organ-list .item .list-info li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.organ-list .item .list-info li span {
  margin-right: 0.5rem;
  font-weight: 700;
}

.organ-list .item .list-info li:nth-child(3) {
  padding: 0.375rem 0;
}

.organ-list .item .list-info .list-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.organ-list .item .info-text {
  color: #555555;
  padding: 0 1.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  line-height: 1.35em;
  height: calc(1.35em * 2);
}

.organ-list .item .list-progress {
  position: relative;
  padding: 1rem 1.5rem;
  margin-top: 1.25rem;
}

.organ-list .item .list-progress .state {
  font-weight: 700;
  color: #29a569;
}

.organ-list .item .list-progress .state:before {
  content: "";
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  background-image: url("../images/ico_institution.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: translateY(0.2rem);
          transform: translateY(0.2rem);
  margin-right: 0.625rem;
}

.organ-list .item .list-progress li:nth-child(2) {
  margin: 0.5rem 0;
}

.organ-list .item .list-progress li span:before {
  content: "";
  display: inline-block;
  width: 0.0625rem;
  height: 0.9rem;
  padding-right: 0.5rem;
  border-left: 1px solid #dddddd;
}

.organ-list .item .list-progress li span {
  padding-left: 0.5rem;
  font-weight: 700;
}

.organ-list .item .list-progress:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.1;
  width: 100%;
  height: 100%;
  background: #29a569;
}

.program-list.custom-list .item .list-progress::after {
  background-color: #87be10;
  opacity: 0.12;
}

.program-list.promotion .item .list-progress::after {
  background-color: #87be10;
  opacity: 0.12;
}

.program-list.promotion .item .list-title {
  margin-bottom: 3rem;
}

.program-list.edit .item {
  position: relative;
}

.program-list.edit .item .list-title {
  margin-right: 3.5rem;
}

.program-list.edit .item .btn-delete {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: url("../images/Ico_comment_close.png") center/100% no-repeat;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.program-list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #dddddd;
  border-radius: 0.3125rem;
  overflow: hidden;
}

.program-list .item .list-title {
  margin: 1.5rem 1.5rem 0 1.5rem;
  font-size: 1.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  line-height: 1.3em;
  height: calc(1.3em * 2);
  margin-bottom: 1.25rem;
}

.program-list .item .hash-tag {
  padding: 0rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.program-list .item .hash-tag li {
  margin-right: 0.375rem;
  padding: 0.1875rem;
  font-size: 0.875rem;
  color: #999999;
  background-color: #eeeeee;
  margin-bottom: 0.1875rem;
}

.program-list .item .list-info {
  padding: 0rem 1.5rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.program-list .item .list-info li {
  padding: 0.1875rem 0;
}

.program-list .item .list-info li span {
  margin-right: 0.5rem;
  font-weight: 700;
}

.program-list .item .write-info {
  margin-top: 0.25rem;
  padding: 0 1.5rem;
  font-size: 0.875rem;
  color: #888888;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.program-list .item .write-info li::after {
  content: "";
  display: inline-block;
  width: 0.0625rem;
  height: 0.8125rem;
  background-color: #dddddd;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  position: relative;
  top: 0.125rem;
}

.program-list .item .write-info li:last-of-type::after {
  content: none;
}

.program-list .item .list-progress {
  margin-top: 1.25rem;
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 1.375rem;
}

.program-list .item .list-progress .reserve span::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 1rem;
  background-image: url("../images/icon_reserve.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-transform: translateY(0.3rem);
          transform: translateY(0.3rem);
}

.program-list .item .list-progress li.address {
  font-size: 0.875rem;
  color: #555555;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.program-list .item .list-progress li.reserve {
  margin-top: 0.1875rem;
}

.program-list .item .list-progress li.reserve span {
  color: #29a569;
  font-weight: 700;
}

.program-list .item .list-progress .organ-name {
  padding: 0;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.3125rem;
}

.program-list .item .list-progress .flag span {
  height: 1.5rem;
  font-size: 0.75rem;
  border-radius: 0.9375rem;
  font-weight: 700;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background: #10b2bb;
  color: #ffffff !important;
  padding: 0.1875rem 0.65625rem;
  margin-right: 0.5rem;
}

.program-list .item .list-progress .flag span:last-of-type {
  margin-right: 0;
}

.program-list .item .list-progress .flag span.part {
  background: #10b2bb;
}

.program-list .item .list-progress .flag span.part::before {
  content: "";
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  background: url("../images/ico_timer.png") center/100% no-repeat;
  position: relative;
  margin-right: 0.25rem;
  top: 0.125rem;
}

.program-list .item .list-progress .flag span.state {
  background-color: #555555;
}

.program-list .item .list-progress .flag span.state::before {
  content: attr(data-state);
}

.program-list .item .list-progress .flag span.state[data-state="모집중"] {
  background-color: #eb5757;
}

.program-list .item .list-progress .flag span.state[data-state="마감"] {
  background-color: #bcbcbc;
}

.program-list .item .list-progress .flag span.state[data-state="진행중"] {
  background-color: #ffb800;
}

.program-list .item .list-progress:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.1;
  width: 100%;
  height: 100%;
  background: #29a569;
}

.review-list .item {
  border-radius: 0.3125rem;
  border: 0.0625rem solid #dddddd;
}

.review-list .item .thumbnail {
  position: relative;
  height: 12.5rem;
  border-radius: 0.3125rem 0.3125rem 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url("../images/bg_default_thumbnail.png");
}

.review-list .item .title {
  font-size: 1.5rem;
  line-height: 1.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  line-height: 1.4em;
  height: calc(1.4em * 2);
  margin: 1.5rem;
}

.review-list .item .date,
.review-list .item .program-name {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 1rem;
  color: #555555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-list .item .date > .value::before,
.review-list .item .program-name > .value::before {
  content: "";
  display: inline-block;
  width: 0.0625rem;
  height: 0.8125rem;
  background-color: #dddddd;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  position: relative;
  top: 0.0625rem;
}

.review-list .item .program-name {
  margin-top: 0.25rem;
}

.review-list .item .program-name > .value {
  color: #87be10;
}

.review-list .item .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.5rem;
}

.review-list .item .bottom .view {
  font-size: 0.875rem;
  color: #888888;
  line-height: 1;
}

.review-list .item .bottom .like button::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
  background-image: url("../images/ico_like.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  -webkit-transform: translateY(0.125rem);
          transform: translateY(0.125rem);
}

.review-list .item .bottom .like button.active::before {
  background-image: url("../images/ico_like_on.png");
}

.review-list .item .bottom .like button {
  border: none;
  background: none;
  font-weight: 700;
}

.card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 6.75rem;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.card-list .item {
  width: calc(33.333% - 1.5rem);
  margin-left: 0.75rem;
  margin-right: 0.75rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
}

.card-list .item.loader-item {
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 6.25rem;
  background: none !important;
  border: none !important;
  border-radius: 0;
}

.card-list .item.loader-item .loader {
  -webkit-transform: scale(50%);
          transform: scale(50%);
}

.card-list .item.empty {
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: none !important;
  border: none;
  border-radius: 0;
  border-top: 0.0625rem solid #888888;
  border-bottom: 0.0625rem solid #888888;
  padding: 6.25rem 2rem;
}

.card-list .item.empty > h5 {
  font-size: 1.125rem;
  color: #87be10;
  font-weight: 400;
  margin-bottom: 0.625rem;
}

.card-list .item.empty > h5::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  background: url("../images/ico_assistive_text.png") center/100% no-repeat;
  margin-right: 0.625rem;
  position: relative;
  top: 0.3125rem;
}

.card-list .item.empty > p {
  font-size: 1rem;
  color: #888888;
}

.video-frame-wrap {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.video-frame-wrap .response {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.video-frame-wrap .response > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.detail-container {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
}

.detail-container.mb-user {
  margin-bottom: 3.5rem;
}

.detail-container .left {
  -webkit-box-flex: 0.2;
      -ms-flex: 0.2 0.5 22rem;
          flex: 0.2 0.5 22rem;
  margin-right: 4rem;
}

.detail-container .left .basic-info-wrap {
  width: 100%;
  border: 1px solid #dddddd;
  padding: 2rem;
  margin-right: 4rem;
  margin-bottom: 2rem;
}

.detail-container .left .basic-info-wrap .list-title {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.35;
}

.detail-container .left .basic-info-wrap .category {
  font-size: 1rem;
  padding: 1rem 0;
  color: #87be10;
}

.detail-container .left .basic-info-wrap .organ-name {
  font-size: 1rem;
  color: #87be10;
  font-weight: 700;
  display: inline-block;
  margin-top: 1rem;
}

.detail-container .left .basic-info-wrap .organ-name::after {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background: url("../images/ico_organ_arrow.png") center/100% no-repeat;
  position: relative;
  top: 0.25rem;
}

.detail-container .left .basic-info-wrap .organ-name:hover {
  opacity: 0.7;
}

.detail-container .left .basic-info-wrap .detail-info {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.detail-container .left .basic-info-wrap .detail-info .para-group {
  margin-top: 1.25rem;
}

.detail-container .left .basic-info-wrap .detail-info .para-group .label {
  font-size: 0.875rem;
  color: #999999;
  margin-bottom: 0.125rem;
}

.detail-container .left .basic-info-wrap .detail-info .para-group .value {
  font-size: 1.125rem;
}

.detail-container .left .basic-info-wrap .detail-info .para-group .value a:hover {
  color: #87be10;
  text-decoration: underline;
}

.detail-container .left .basic-info-wrap .hash-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 3rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -0.25rem;
}

.detail-container .left .basic-info-wrap .hash-tag li {
  margin-right: 0.375rem;
  margin-top: 0.25rem;
  padding: 0.1875rem;
  font-size: 0.875rem;
  color: #999999;
  background-color: #eeeeee;
}

.detail-container .left .basic-info-wrap .list-score {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.detail-container .left .basic-info-wrap .list-score li:first-child {
  font-weight: bold;
  font-size: 1.875rem;
  margin-right: 1.125rem;
}

.detail-container .left .basic-info-wrap .list-score li:nth-child(2) {
  color: #888888;
  font-size: 0.875rem;
}

.detail-container .left .basic-info-wrap .icon-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1.15625rem 0 0.875rem;
}

.detail-container .left .basic-info-wrap .icon-contents .like {
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.detail-container .left .basic-info-wrap .icon-contents .like button::before {
  content: "";
  display: inline-block;
  width: 1.5375rem;
  height: 1.5625rem;
  margin-right: 0.5rem;
  background-image: url("../images/ico_like.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}

.detail-container .left .basic-info-wrap .icon-contents .like button.active::before {
  background-image: url("../images/ico_like_on.svg");
}

.detail-container .left .basic-info-wrap .icon-contents .like button {
  border: none;
  background: none;
}

.detail-container .left .basic-info-wrap .icon-contents .icons button {
  border: none;
  background: none;
}

.detail-container .left .basic-info-wrap .icon-contents .icons button::after {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.detail-container .left .basic-info-wrap .icon-contents .icons .share::after {
  width: 1.171875rem;
  height: 1.40625rem;
  background-image: url("../images/ico_share.svg");
  margin-right: 1.203125rem;
}

.detail-container .left .basic-info-wrap .icon-contents .icons .favorite::after {
  width: 1.09375rem;
  height: 1.40625rem;
  background-image: url("../images/ico_favorite_off.svg");
}

.detail-container .left .basic-info-wrap .icon-contents .icons .favorite.active::after {
  width: 1.09375rem;
  height: 1.40625rem;
  background-image: url("../images/ico_favorite.svg");
}

.detail-container .left .basic-info-wrap .today {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #888888;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.detail-container .left .basic-info-wrap .today p {
  color: #888888;
  font-size: 0.875rem;
  padding-right: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.detail-container .left .basic-info-wrap .today p:first-child::after {
  content: "";
  display: inline-block;
  padding-right: 0.8rem;
  border-right: 1px solid #dddddd;
  height: 1.1875rem;
}

.detail-container .left .basic-info-wrap .today p:last-child {
  padding: 0px;
}

.detail-container .right {
  -webkit-box-flex: 2;
      -ms-flex: 2 2 25rem;
          flex: 2 2 25rem;
}

.detail-container .right article {
  margin-bottom: 2.5rem;
}

.detail-container .right article .sub-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.detail-container .right article p {
  font-size: 1rem;
  color: #555555;
}

.detail-container .right .comment-tab {
  border-top: 0.125rem solid #87be10;
  border-bottom: 0.0625rem solid #bcbcbc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
}

.detail-container .right .comment-tab .item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}

.detail-container .right .comment-tab .item::after {
  content: "";
  display: inline-block;
  width: 0.0625rem;
  height: 0.9375rem;
  background-color: #dddddd;
  position: absolute;
  right: 0;
  top: 0.875rem;
}

.detail-container .right .comment-tab .item:last-of-type::after {
  content: none;
}

.detail-container .right .comment-tab .item a {
  padding: 0.625rem 0;
  width: 100%;
  display: inline-block;
  text-align: center;
  color: #999999;
}

.detail-container .right .comment-tab .item.active a {
  color: #87be10;
  font-weight: 600;
}

.detail-container .tab-container {
  margin-bottom: 7.5rem;
}

.detail-container .write-comment {
  border: 0.0625rem solid #dddddd;
  border-radius: 0.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 1.5rem;
}

.detail-container .write-comment > textarea {
  border: 0;
  padding: 1rem 1.25rem;
  resize: none;
  width: 100%;
  min-height: 5rem;
  overflow-y: hidden;
  color: #555555;
  font-size: 1rem;
}

.detail-container .write-comment .btn-confirm {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  height: 2.625rem;
  margin: 1rem;
}

.detail-container .basic-comment button,
.detail-container .star-comment button {
  background: none;
}

.detail-container .basic-comment .comment-list > li,
.detail-container .star-comment .comment-list > li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.5rem 1.5rem;
  background-color: #eee;
  border-bottom: 1px solid #dddddd;
}

.detail-container .basic-comment .comment-list > li button,
.detail-container .star-comment .comment-list > li button {
  border: none;
}

.detail-container .basic-comment .comment-list > li button::before,
.detail-container .star-comment .comment-list > li button::before {
  top: 0.9375rem;
  right: 0.9375rem;
  position: absolute;
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0.375rem;
  display: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url("../images/ico_comment_close.png");
}

.detail-container .basic-comment .comment-list > li .me,
.detail-container .star-comment .comment-list > li .me {
  top: 0.9375rem;
  right: 0.9375rem;
  position: absolute;
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0.375rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url("../images/ico_comment_close.png");
}

.detail-container .basic-comment .comment-list > li .comment-info span:first-child,
.detail-container .star-comment .comment-list > li .comment-info span:first-child {
  font-weight: 700;
  margin-right: 1rem;
}

.detail-container .basic-comment .comment-list > li .comment-info span:last-child,
.detail-container .star-comment .comment-list > li .comment-info span:last-child {
  color: #888888;
  font-size: 0.875rem;
}

.detail-container .basic-comment .comment-list > li .star-score,
.detail-container .star-comment .comment-list > li .star-score {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.detail-container .basic-comment .comment-list > li .star-score .star,
.detail-container .star-comment .comment-list > li .star-score .star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.5rem;
}

.detail-container .basic-comment .comment-list > li .star-score .star li,
.detail-container .star-comment .comment-list > li .star-score .star li {
  padding: 0px;
}

.detail-container .basic-comment .comment-list > li .star-score .star li.half:before,
.detail-container .star-comment .comment-list > li .star-score .star li.half:before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  padding-right: 0.354375rem;
  background: url("../images/ico_star_half.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.detail-container .basic-comment .comment-list > li .star-score .star li.on:before,
.detail-container .star-comment .comment-list > li .star-score .star li.on:before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  padding-right: 0.354375rem;
  background: url("../images/ico_star.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.detail-container .basic-comment .comment-list > li .star-score .star li:before,
.detail-container .star-comment .comment-list > li .star-score .star li:before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  padding-right: 0.354375rem;
  background: url("../images/ico_star_off.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.detail-container .basic-comment .comment-list > li .star-score span,
.detail-container .star-comment .comment-list > li .star-score span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  margin-left: 0.854375rem;
  -webkit-transform: translateY(0.1rem);
          transform: translateY(0.1rem);
}

.detail-container .basic-comment .comment-list > li .text,
.detail-container .star-comment .comment-list > li .text {
  color: #555555;
  margin-top: 0.75rem;
  line-height: 1.35;
}

.detail-container .rating-container {
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 2rem;
}

.detail-container .rating-container .rating-score {
  font-weight: 800;
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

.detail-container .rating-container .rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1rem;
}

.detail-container .rating-container .rating > a {
  font-size: 0;
  color: rgba(255, 255, 255, 0);
  display: block;
  width: 1.875rem;
  height: 3.125rem;
  background-repeat: no-repeat;
  background-size: 1.5625rem 3.125rem;
  background-image: url("../images/ico_star_off_left.png");
  background-position: center right;
}

.detail-container .rating-container .rating > a:nth-of-type(even) {
  background-image: url("../images/ico_star_off_right.png");
  background-position: center left;
}

.detail-container .rating-container .rating > a.on {
  background-image: url("../images/ico_star_on_left.png");
}

.detail-container .rating-container .rating > a.on:nth-of-type(even) {
  background-image: url("../images/ico_star_on_right.png");
  background-position: center left;
}

.organ-info {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 3.75rem;
}

.organ-info .thumbnail {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 1rem;
          flex: 1 1 1rem;
  height: 22rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 4rem;
  background-image: url("../images/bg_default_thumbnail.png");
}

.organ-info .txt-info {
  -webkit-box-flex: 1.2;
      -ms-flex: 1.2 0.8 1.25rem;
          flex: 1.2 0.8 1.25rem;
  font-size: 1rem;
}

.organ-info .txt-info .organ-name {
  font-size: 1.625rem;
  font-size: 700;
  margin-bottom: 1.5rem;
}

.organ-info .txt-info .address {
  margin-bottom: 0.375rem;
}

.organ-info .txt-info .tel,
.organ-info .txt-info .fax {
  font-weight: 700;
}

.organ-info .txt-info .tel > span,
.organ-info .txt-info .fax > span {
  display: inline-block;
  font-weight: 400;
  padding-left: 0.5rem;
}

.organ-info .txt-info .description {
  margin-top: 1.5rem;
  color: #555555;
}

.organ-tab {
  border-top: 0.125rem solid #29a569;
  border-bottom: 0.0625rem solid #bcbcbc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
}

.organ-tab .item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}

.organ-tab .item::after {
  content: "";
  display: inline-block;
  width: 0.0625rem;
  height: 0.9375rem;
  background-color: #dddddd;
  position: absolute;
  right: 0;
  top: 0.875rem;
}

.organ-tab .item:last-of-type::after {
  content: none;
}

.organ-tab .item a {
  padding: 0.625rem 0;
  width: 100%;
  display: inline-block;
  text-align: center;
  color: #999999;
}

.organ-tab .item.active a {
  color: #29a569;
  font-weight: 600;
}

/*추천 프로그램*/
.custom-container {
  width: 100%;
  max-width: 66.8125rem;
  overflow: hidden;
  /*추천 프로그램 목록*/
}

.custom-container .custom-empty {
  padding: 1.5rem 2.5rem;
  background-color: #f5f5f5;
  border-radius: 0.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 4rem;
}

.custom-container .custom-empty .left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.custom-container .custom-empty .left > img {
  width: 4.6875rem;
  height: auto;
  margin-right: 2.5rem;
}

.custom-container .custom-empty .left .txt-wrap {
  font-size: 1rem;
  color: #555555;
}

.custom-container .custom-empty .left .txt-wrap .caution {
  font-size: 1.25rem;
  color: #29a569;
  margin-bottom: 1rem;
}

.custom-container .custom-empty .left .txt-wrap .caution::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  background: url("../images/ico_assistive_second.png") center/100% no-repeat;
  margin-right: 0.5rem;
  position: relative;
  top: 0.3125rem;
}

.custom-container .custom-empty .left .txt-wrap .name {
  color: #29a569;
}

.custom-container .custom-empty .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 3rem;
  margin-left: 1.5rem;
}

.custom-container .custom-empty .btn::before {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background: url("../images/ico_pen.png") center/100% no-repeat;
  margin-right: 0.625rem;
}

.custom-container .custom-list {
  margin-bottom: 4rem;
  width: 100%;
  overflow: hidden;
}

.custom-container .custom-list .item {
  margin-right: 0.0625rem;
  min-height: 24.8125rem;
}

.custom-container .custom-list.user-list .item {
  min-height: 12.75rem;
}

/*활동 모집 상세정보*/
.recruit-info .recruit-top .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.recruit-info .recruit-top .info .left-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
}

.recruit-info .recruit-top .info .left-icon .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  height: 2.625rem;
  padding-left: 1.125rem;
  padding-right: 1.125rem;
  margin-right: 0.5rem;
}

.recruit-info .recruit-top .info .left-icon .icon:last-of-type {
  margin-right: 0;
}

.recruit-info .recruit-top .info .left-icon .icon::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.75rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.recruit-info .recruit-top .info .left-icon .icon.state::before {
  background-image: url("../images/ico-recruiting.png");
}

.recruit-info .recruit-top .info .left-icon .icon.state[data-state="모집중"] {
  background-color: #eb5757;
}

.recruit-info .recruit-top .info .left-icon .icon.state[data-state="모집중"]::after {
  content: attr(data-state);
}

.recruit-info .recruit-top .info .left-icon .icon.state[data-state="마감"] {
  background-color: #bcbcbc;
}

.recruit-info .recruit-top .info .left-icon .icon.state[data-state="마감"]::after {
  content: attr(data-state);
}

.recruit-info .recruit-top .info .left-icon .icon.state[data-state="진행중"] {
  background-color: #ffb800;
}

.recruit-info .recruit-top .info .left-icon .icon.state[data-state="진행중"]::after {
  content: attr(data-state);
}

.recruit-info .recruit-top .info .left-icon .icon.state[data-state="완료"] {
  background-color: #555555;
}

.recruit-info .recruit-top .info .left-icon .icon.state[data-state="완료"]::before {
  background-image: url("../images/ico_recruiting_complete.png");
}

.recruit-info .recruit-top .info .left-icon .icon.state[data-state="완료"]::after {
  content: attr(data-state);
}

.recruit-info .recruit-top .info .left-icon .icon.part-time {
  background-color: #10b2bb;
}

.recruit-info .recruit-top .info .left-icon .icon.part-time::before {
  background-image: url("../images/ico-possible.png");
}

.recruit-info .recruit-top .info .right-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.recruit-info .recruit-top .info .right-icon button {
  border: none;
  background: none;
}

.recruit-info .recruit-top .info .right-icon button.btn-share {
  display: inline-block;
  width: 1.875rem;
  height: 1.875rem;
  margin-right: 0.625rem;
  background: url("../images/ico_share.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.recruit-info .recruit-top .info .right-icon button.btn-favorite {
  display: inline-block;
  width: 1.09375rem;
  height: 1.40625rem;
  margin-right: 0.625rem;
  background: url("../images/ico_favorite_off.png") center/100% no-repeat;
}

.recruit-info .recruit-top .info .right-icon button.btn-favorite.active {
  background: url("../images/ico_favorite.png") center/100% no-repeat;
}

.recruit-info .recruit-top .hash-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.25rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.recruit-info .recruit-top .hash-tag li {
  margin-right: 0.375rem;
  text-align: center;
  height: 1.1875rem;
  padding: 0 0.1875rem;
  line-height: 1.3rem;
  font-size: 0.875rem;
  color: #999999;
  background-color: #eeeeee;
  margin-bottom: 0.1875rem;
}

.recruit-info .recruit-top .attach-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.recruit-info .recruit-top .attach-file li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #888888;
  margin-right: 1rem;
}

.recruit-info .recruit-top .attach-file li a:hover {
  color: inherit;
  text-decoration: underline;
}

.recruit-info .recruit-top .attach-file li:last-of-type {
  margin-right: 0;
}

.recruit-info .recruit-top .attach-file li::before {
  content: "";
  display: inline-block;
  width: 1.215rem;
  height: 1.288125rem;
  margin-right: 0.5rem;
  background: url("../images/ico-file.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.recruit-info .recruit-top::after {
  content: "";
  display: block;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid #222222;
}

.recruit-info .contents {
  width: 100%;
}

.recruit-info .contents ul .title {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.recruit-info .contents ul li {
  margin-bottom: 0.625rem;
}

.recruit-info .contents ul li:last-child {
  margin-bottom: 2.5rem;
}

.recruit-info .contents .list-01 span {
  display: inline-block;
  color: #999999;
  font-size: 0.875rem;
  width: 3.4375rem;
  margin-right: 1rem;
}

.recruit-info .contents p {
  font-size: 1rem;
  color: #555555;
}

.recruit-info .contents .map {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  height: 25rem;
  background-color: #eeeeee;
}

.recruit-info .contents .list-02 span {
  margin-right: 0.5rem;
  font-weight: 700;
  color: #222222;
}

.recruit-info .contents img {
  width: 100%;
  height: auto;
}

/*봉사자 목록 스타일*/
.user-list .item {
  border: 1px solid #dddddd;
  border-radius: 0.3125rem;
  padding: 1.5rem;
}

.user-list .item .list-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
}

.user-list .item .list-profile .list-info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0%;
          flex: 1 1 0%;
  overflow: hidden;
}

.user-list .item .list-profile .list-info .title {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1.1875rem;
  color: #222222;
}

.user-list .item .list-profile .list-info li {
  color: #555555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-list .item .list-profile .thumbnail {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: inline-block;
  width: 6.25rem;
  height: 6.25rem;
  background-image: url("../images/servant_basic.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0.625rem;
  margin-right: 1.125rem;
}

.user-list .item .hash-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -0.25rem;
}

.user-list .item .hash-tag li {
  margin-right: 0.375rem;
  margin-bottom: 0.25rem;
  text-align: center;
  height: 1.1875rem;
  padding: 0 0.1875rem;
  line-height: 1.3rem;
  font-size: 0.875rem;
  color: #999999;
  background-color: #eeeeee;
}

.servant-profile {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 100%;
  height: 27.125rem;
  border-radius: 0.3125rem;
  border: 2px solid transparent;
  background: linear-gradient(white, white), linear-gradient(45deg, #87be10 0%, #29a569 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
}

.servant-profile .list-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0rem;
}

.servant-profile .list-profile {
  margin: auto;
}

.servant-profile .list-profile .list-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 0rem;
}

.servant-profile .list-profile .list-info .title {
  font-weight: 600;
  font-size: 1.5rem;
  color: #222222;
}

.servant-profile .list-profile .list-info li {
  margin: 0.125rem 0;
  color: #555555;
}

.servant-profile .list-profile .list-info li:first-child {
  margin: 0px;
  margin-bottom: 0.9375rem;
}

.servant-profile .list-profile input[type="checkbox"]:checked {
  content: "";
  display: inline-block;
  position: absolute;
  top: 1.234375rem;
  right: 1.390625rem;
  width: 1.125rem;
  height: 1.40625rem;
  margin: auto;
  margin-bottom: 2.9375rem;
  background-image: url("../images/ico_favorite.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.servant-profile .list-profile input[type="checkbox"] {
  content: "";
  display: inline-block;
  position: absolute;
  top: 1.234375rem;
  right: 1.390625rem;
  width: 1.125rem;
  height: 1.40625rem;
  margin: auto;
  margin-bottom: 2.9375rem;
  background-image: url("../images/ico_favorite_off.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  cursor: pointer;
}

.servant-profile .list-profile .img-profile {
  display: inline-block;
  width: 10rem;
  height: 10rem;
  margin: auto;
  margin-bottom: 2.1875rem;
  background-image: url("../images/servant_basic.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #cfdeaf;
  border-radius: 0.625rem;
}

.servant-info {
  width: 100%;
}

.servant-info .servant-contents .list-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #dddddd;
  margin-bottom: 1.25rem;
}

.servant-info .servant-contents .list-info ul {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 22.5rem;
}

.servant-info .servant-contents .list-info ul span {
  font-weight: 700;
  color: #888888;
  margin-right: 1rem;
}

.servant-info .servant-contents .list-info button {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.servant-info .servant-contents .list-info button:before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.729375rem;
  background-image: url("../images/ico_email.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  top: 0.25rem;
}

.servant-info .servant-contents .line::after {
  content: "";
  display: block;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.servant-info .servant-contents .m-line::after {
  display: none;
}

.servant-info .servant-contents .my-memo h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.servant-info .servant-contents .my-memo p {
  color: #555555;
}

.servant-info .servant-contents .hash-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 2rem 0px 1.5rem 0px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -0.25rem;
}

.servant-info .servant-contents .hash-tag li {
  margin-right: 0.375rem;
  margin-top: 0.25rem;
  text-align: center;
  height: 1.1875rem;
  padding: 0 0.1875rem;
  line-height: 1.3rem;
  font-size: 0.875rem;
  color: #999999;
  background-color: #eeeeee;
}

.user-status {
  margin-bottom: 4rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.user-status .title {
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.servant-count.mypage {
  margin-bottom: 3rem;
}

.servant-count .item .item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2rem;
  border-radius: 0.3125rem;
  color: #ffffff;
  line-height: 1.3;
  font-size: 1.25rem;
}

.servant-count .item .item-wrap .label {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.servant-count .item .item-wrap .count {
  font-family: "GmarketSans", "sans-serif";
  font-weight: 700;
  font-size: 2.625rem;
}

.servant-count .item .item-wrap.subs {
  background-color: #87be10;
}

.servant-count .item .item-wrap.compl {
  background-color: #29a569;
}

.servant-count .item .item-wrap.compl-time {
  background-color: #10b2bb;
}

.detail-info-top {
  border-top: 0.125rem solid #222;
  border-bottom: 0.0625rem solid #999999;
  padding: 2rem 2.125rem;
}

.detail-info-top .title {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.35;
}

.detail-info-top .count-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 1.125rem;
  font-size: 1rem;
  color: #888888;
}

.detail-info-top .count-info .view::before {
  content: "조회 : ";
}

.detail-info-top .link-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 1.125rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.detail-info-top .link-info .attach-file {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.detail-info-top .link-info .attach-file li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #888888;
  margin-right: 1rem;
}

.detail-info-top .link-info .attach-file li a:hover {
  color: inherit;
  text-decoration: underline;
}

.detail-info-top .link-info .attach-file li:last-of-type {
  margin-right: 0;
}

.detail-info-top .link-info .attach-file li::before {
  content: "";
  display: inline-block;
  width: 1.215rem;
  height: 1.288125rem;
  margin-right: 0.375rem;
  background: url("../images/ico-file.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.detail-info-top .link-info .btn-share {
  width: 1.875rem;
  height: 1.875rem;
  display: block;
  background: url("../images/ico_share.png") center/100% no-repeat;
  margin-left: auto;
}

.img-view-list {
  margin-top: 1.625rem;
  margin-bottom: 2.5rem;
}

.img-view-list .item {
  height: 13.75rem;
  overflow: hidden;
}

/* 공지사항 */
.notice-wrap .notice-list {
  width: 100%;
  margin-bottom: 2.5rem;
}

.notice-wrap .notice-list::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.125rem;
  background-color: #87be10;
}

.notice-wrap .notice-list li {
  padding: 0 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 0.0625rem solid #e2e2e2;
  padding: 0.75rem 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
}

.notice-wrap .notice-list li.empty {
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: none !important;
  border: none;
  border-radius: 0;
  border-bottom: 0.0625rem solid #888888;
  padding: 6.25rem 2rem;
}

.notice-wrap .notice-list li.empty > h5 {
  font-size: 1.125rem;
  color: #87be10;
  font-weight: 400;
  margin-bottom: 0.625rem;
}

.notice-wrap .notice-list li.empty > h5::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  background: url("../images/ico_assistive_text.png") center/100% no-repeat;
  margin-right: 0.625rem;
  position: relative;
  top: 0.3125rem;
}

.notice-wrap .notice-list li.empty > p {
  font-size: 1rem;
  color: #888888;
}

.notice-wrap .notice-list li.head {
  text-align: center;
  border-bottom: 1px solid #888888;
  padding: 0.78125rem 0;
}

.notice-wrap .notice-list li.head p {
  color: #87be10;
  font-weight: 700;
}

.notice-wrap .notice-list li p {
  font-size: 1rem;
  color: #999999;
  padding-left: 1rem;
  padding-right: 1rem;
}

.notice-wrap .notice-list li p:nth-of-type(1) {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.notice-wrap .notice-list li p:nth-of-type(2) {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 12.5rem;
  text-align: center;
}

.notice-wrap .notice-list li p:nth-of-type(3) {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 7.5rem;
  text-align: right;
}

.notice-wrap .notice-list li p.title {
  font-size: 1.125rem;
  color: #222222;
  overflow: hidden;
}

.notice-wrap .notice-list li p.title > a {
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notice-wrap .notice-list li p.title > a:hover {
  color: #87be10;
}

.notice-wrap .view-more {
  width: 100%;
  margin-bottom: 2.5rem;
  padding: 0.78125rem 0;
  font-size: 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top: 0.0625rem solid #555555;
  border-bottom: 0.0625rem solid #555555;
}

.notice-wrap .view-more::before {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background: url("../images/ico_notice_more.png") center/100% no-repeat;
  margin-right: 0.625rem;
}

/* 통합검색 */
.total-search-input {
  margin-bottom: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.total-search-input .input-wrap {
  max-width: 27.5rem;
  width: 100%;
  height: 3.75rem;
  border-radius: 1.875rem;
  border: 3px solid transparent;
  background: linear-gradient(white, white), linear-gradient(45deg, #87be10 0%, #29a569 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
}

.total-search-input .input-wrap > input {
  display: block;
  border: none;
  width: 100%;
  height: 100%;
  padding-left: 1.5rem;
  font-size: 1.25rem;
  color: #555555;
  background-image: url("../images/ico_search.png");
  background-repeat: no-repeat;
  background-size: 1.625rem 1.625rem;
  background-position: center right 1.5rem;
  background-color: transparent;
  padding-right: 3.5rem;
}

.total-search-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
  margin-bottom: 2rem;
}

.total-search-tab .item {
  height: 3rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 0.0625rem solid #bcbcbc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
  margin-right: -0.0625rem;
  background-color: #ffffff;
}

.total-search-tab .item > a {
  display: block;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.total-search-tab .item > a:hover {
  color: #87be10;
}

.total-search-tab .item:last-of-type {
  margin-right: 0;
}

.total-search-tab .item.active {
  background-color: #f0f7e2;
  border-color: #87be10;
}

.total-search-tab .item.active > a {
  color: #87be10;
  font-weight: 700;
}

.total-search-result .parts-wrap {
  margin-bottom: 2.5rem;
}

.total-search-result .parts-wrap .sub-title {
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.total-search-result .parts-wrap .card-list {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  section .sub-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
  }
  section .contents-toolbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  section .contents-toolbar .contents-sort {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
  }
  section .contents-toolbar .contents-search .form-control {
    max-width: none;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .card-list .item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    min-width: 18.75rem;
  }
  .servant-info .servant-contents .list-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .servant-info .servant-contents .list-info button {
    margin-top: 1rem;
  }
  .notice-wrap .notice-list li.head {
    display: none;
  }
  .notice-wrap .notice-list li p.title {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }
  .notice-wrap .notice-list li p.title a {
    text-overflow: unset;
    overflow: auto;
    white-space: normal;
  }
  .notice-wrap .notice-list li p.date {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: auto;
    text-align: left;
    font-size: 0.875rem;
  }
  .notice-wrap .notice-list li p.view {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: auto;
    font-size: 0.875rem;
  }
  .notice-wrap .notice-list li p.view::before {
    content: "조회 : ";
  }
  .total-search-tab .item {
    font-size: 0.875rem;
  }
}

@media (max-width: 991.98px) {
  .card-list .item {
    width: calc(50% - 1.5rem);
  }
  .organ-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .organ-info .thumbnail {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    height: 60vw;
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  .organ-info .txt-info {
    -webkit-box-flex: 1.2;
        -ms-flex: 1.2 0.8 1.25rem;
            flex: 1.2 0.8 1.25rem;
  }
  .custom-empty {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .custom-empty .left {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .custom-empty .left > img {
    width: 4.6875rem;
    height: auto;
    margin: 0;
    margin-bottom: 1rem;
  }
  .custom-empty .left .txt-wrap {
    text-align: center;
  }
  .custom-empty .left .txt-wrap .caution {
    margin-bottom: 0.5rem;
  }
  .custom-empty .left .txt-wrap .caution::before {
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    display: inline-block;
    background: url("../images/ico_assistive_second.png") center/100% no-repeat;
    margin-right: 0.5rem;
    position: relative;
    top: 0.3125rem;
  }
  .custom-empty .left .txt-wrap .name {
    color: #29a569;
  }
  .custom-empty .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    margin: 0;
    margin-top: 2rem;
  }
  .total-search-tab .item {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 33.333%;
  }
  .total-search-tab .item:nth-of-type(4), .total-search-tab .item:nth-of-type(5), .total-search-tab .item:nth-of-type(6) {
    margin-top: -0.0625rem;
  }
}

@media (max-width: 1199.98px) {
  .detail-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .detail-container .left {
    margin-right: 0;
    margin-bottom: 2rem;
  }
  .detail-container .left .basic-info-wrap {
    margin-bottom: 0;
  }
  .custom-container {
    max-width: 72.9375rem;
  }
}

.modal-dialog .modal-header {
  padding: 1.25rem 1.25rem;
}

.modal-dialog .modal-header::after {
  background-color: #aaaaaa;
  left: 0;
  right: 0;
}

.modal-dialog .modal-header .modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #222222;
}

.modal-dialog .modal-body {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.modal-dialog .modal-body .program-list {
  text-align: left;
}

.modal-dialog .modal-body .program-list .item {
  margin-bottom: 1.25rem;
}

.modal-dialog .modal-body .program-list .item.select {
  border: 0.125rem solid #29a569;
}

.modal-dialog .modal-footer {
  position: relative;
}

.modal-dialog .modal-footer::after {
  content: "";
  display: inline-block;
  height: 1px;
  background-color: #aaaaaa;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}

.modal-dialog .modal-footer button.btn-success {
  background-color: #29a569;
  border-color: #29a569;
}

.modal-dialog .modal-footer button.btn-success:focus {
  background-color: #198652 !important;
  border-color: #29a569 !important;
}

.modal-dialog .modal-footer button.btn-danger {
  background-color: #eb5757;
  border-color: #eb5757;
}

.modal-dialog .modal-footer button.btn-danger:focus {
  background-color: #eb5757 !important;
  border-color: #eb5757 !important;
}

.text-contents-view,
.text-contents-view #printContent {
  font-size: 12pt;
  line-height: inherit;
}

.text-contents-view ul,
.text-contents-view #printContent ul {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 1rem;
}

.text-contents-view ul ul,
.text-contents-view #printContent ul ul {
  list-style-type: circle;
}

.text-contents-view ul ul ul,
.text-contents-view #printContent ul ul ul {
  list-style-type: square;
}

.text-contents-view ol,
.text-contents-view #printContent ol {
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 2rem;
}

.text-contents-view p,
.text-contents-view #printContent p {
  margin-bottom: 0.5rem;
}

.my-info-container .my-info {
  margin-bottom: 4rem;
}

.my-info-container .my-info .my-info-list {
  height: 7.5rem;
  background: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 2;
}

.my-info-container .my-info .my-info-list .profile-img {
  margin-left: 4rem;
  width: 10rem;
  height: 10rem;
  border-radius: 1.875rem;
  background-image: url("../images/ico_basic_profile.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-box-shadow: 0 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.2);
  position: relative;
  top: 100%;
}

.my-info-container .my-info .my-info-list .profile-img .btn-picture {
  border: none;
  display: block;
  width: 3.125rem;
  height: 3.125rem;
  background: url("../images/btn_picture.png") center/100% no-repeat;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(25%, 25%);
          transform: translate(25%, 25%);
  border-radius: 50%;
  -webkit-box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.2);
}

.my-info-container .my-info .my-info-list .profile-img input[type="file"] {
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  display: none;
}

.my-info-container .my-info .my-info-list .pc-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 8.9375rem;
  height: 3.25rem;
  font-weight: 700;
  color: #87be10;
  border-radius: 0.1875rem;
  border: 1px solid #87be10;
  background: #ffffff;
  position: relative;
  top: 70%;
  cursor: pointer;
  z-index: 1;
}

.my-info-container .my-info .my-info-list .pc-btn::before {
  content: "";
  display: inline-block;
  width: 0.833125rem;
  height: 0.833125rem;
  margin-right: 0.833125rem;
  background-image: url("../images/ico_correction.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.my-info-container .my-info .my-info-profile {
  position: relative;
  margin-left: 18rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.my-info-container .my-info .my-info-profile .my-contact-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0rem;
  margin-top: 2rem;
  font-size: 1.125rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.my-info-container .my-info .my-info-profile .my-contact-list li:first-child {
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.my-info-container .my-info .my-info-profile .my-contact-list li:nth-child(2) {
  margin-bottom: 0.125rem;
}

.my-info-container .my-info .my-info-profile .my-contact-list::after,
.my-info-container .my-info .my-info-profile .my-profile-list::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #dddddd;
  margin-top: 2rem;
}

.my-info-container .my-info .my-info-profile .my-profile-list {
  margin: 2rem 0;
}

.my-info-container .my-info .my-info-profile .my-profile-list li {
  margin-bottom: 0.375rem;
}

.my-info-container .my-info .my-info-profile .my-profile-list li span {
  font-weight: 700;
  color: #888888;
  margin-right: 1rem;
}

.my-info-container .my-info .my-info-profile .my-profile-list li:last-child {
  margin: 0rem;
}

.my-info-container .my-info .my-info-profile .my-memo h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.my-info-container .my-info .my-info-profile .my-memo p {
  color: #555555;
}

.my-info-container .my-info .my-info-edit {
  margin-left: 18rem;
  padding-top: 2rem;
}

.my-info-container .my-info .my-info-edit > .form-group {
  margin-bottom: 1.5rem;
}

.my-info-container .my-info .my-info-edit > .form-group .form-control.max-w {
  max-width: 30rem;
}

.my-info-container .my-info .my-info-edit .gender {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.my-info-container .my-info .my-info-edit .gender .label {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 100%;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #888888;
}

.my-info-container .my-info .my-info-edit .gender > .form-group {
  margin-right: 1rem;
}

.my-info-container .my-info .my-info-edit textarea {
  resize: none;
  width: 100%;
  height: 14rem;
}

.my-info-container .my-info-bottom {
  border-top: 1px solid #888888;
  padding-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 4rem;
}

.my-info-container .my-info-bottom .secession {
  font-size: 1rem;
  color: #888888;
  text-decoration: underline;
}

.my-info-container .my-info-bottom .btn-save::before {
  content: "";
  display: inline-block;
  width: 0.885625rem;
  height: 0.56875rem;
  margin-right: 0.833125rem;
  background-image: url("../images/ico_save_check.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.custom-info-container {
  border-top: 1px solid #222222;
}

.custom-info-container .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.custom-info-container .header .left .title {
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.custom-info-container .header .left p {
  font-size: 1rem;
  color: #888888;
}

.custom-info-container .header .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.custom-info-container .header .right p {
  margin-right: 0.5rem;
  color: #29a569;
  font-weight: 700;
}

.custom-info-container .customized-info {
  width: 100%;
  height: 100%;
  background: #f1f6e6;
  border-radius: 0.3125rem;
  border: 1px solid #dddddd;
  padding: 1.5rem;
}

.custom-info-container .customized-info .customized select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #ffffff url("../images/ico-select.png");
  background-repeat: no-repeat;
  background-size: 0.625rem 0.3125rem;
  background-position: right 1rem center;
}

.custom-info-container .customized-info .customized select::-ms-expand {
  display: none;
}

.custom-info-container .customized-info .customized h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.custom-info-container .customized-info .customized .wish {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.custom-info-container .customized-info .customized .wish .form-group {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.custom-info-container .customized-info .customized .wish .form-group select {
  width: 100%;
  padding-left: 0.875rem;
  height: 2.625rem;
  color: #999999;
  border: 1px solid #dddddd;
  padding-right: 2.75rem;
}

.custom-info-container .customized-info .customized .wish button {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 4.25rem;
  height: 2.625rem;
  color: #ffffff;
  border-radius: 0.1875rem;
  border: none;
  background: #87be10;
  margin-left: 0.5rem;
}

.custom-info-container .customized-info .customized .select-tag {
  margin-top: 1.6875rem;
}

.custom-info-container .customized-info .customized .select-tag li {
  position: relative;
  word-break: keep-all;
  display: inline-block;
  padding: 0.1875rem 1.375rem 0.1875rem 0.375rem;
  margin-bottom: 0.25rem;
  border: 1px solid #dddddd;
  color: #555555;
  font-size: 0.75rem;
  background-color: #ffffff;
}

.custom-info-container .customized-info .customized .select-tag li button {
  position: absolute;
  top: 35%;
  right: 0.375rem;
  width: 0.5rem;
  height: 0.5rem;
  border: none;
  background: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/ico_close.png");
}

.custom-info-container .customized-info .customized .select-tag li:last-child {
  margin-bottom: 0rem;
}

.custom-info-container .customized-info .customized .check-group {
  padding-bottom: 2rem;
}

.custom-info-container .customized-info .customized .check-group .form-group {
  margin-bottom: 0.25rem;
}

.custom-info-container .customized-info .customized .check-group .form-group span {
  color: #222;
}

/* 검색 조건 영역 */
.search-container {
  background-color: #eeeeee;
  border-radius: 0.3125rem;
  border: 0.0625rem solid #dddddd;
  padding: 2rem;
  margin-bottom: 2rem;
}

.search-container .guide {
  font-size: 0.875rem;
  color: #888888;
  display: block;
  margin-bottom: 0.25rem;
}

.search-container .flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.search-container .flexbox-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.search-container .split {
  font-size: 0.875rem;
  display: inline-block;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.search-container .form-control {
  height: 2.625rem;
}

.search-container .btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.search-container .btn-group .item {
  margin-right: 0.375rem;
}

.search-container .btn-group .item:last-of-type {
  margin-right: 0;
}

.search-container .btn-group .item a {
  font-size: 0.875rem;
  letter-spacing: -0.0625rem;
  color: #555555;
  line-height: 1;
  padding: 0.3125rem 0.5rem;
  background-color: #ffffff;
  border: 0.0625rem solid #dddddd;
}

.search-container .btn-search {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  height: 2.625rem;
  margin-left: 0.375rem;
}

.mypage-tab {
  border-top: 0.125rem solid #87be10;
  border-bottom: 0.0625rem solid #bcbcbc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
}

.mypage-tab .item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}

.mypage-tab .item::after {
  content: "";
  display: inline-block;
  width: 0.0625rem;
  height: 0.9375rem;
  background-color: #dddddd;
  position: absolute;
  right: 0;
  top: 0.875rem;
}

.mypage-tab .item:last-of-type::after {
  content: none;
}

.mypage-tab .item a {
  padding: 0.625rem 0;
  width: 100%;
  display: inline-block;
  text-align: center;
  color: #999999;
}

.mypage-tab .item.active a {
  color: #87be10;
  font-weight: 600;
}

.request-program-wrap .title {
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

@media (max-width: 767.98px) {
  .search-container .flexbox-right {
    margin-top: 0.5rem;
  }
  .search-container .flexbox-right .form-group {
    width: 100%;
  }
  .search-container .btn-group .item a {
    font-size: 0.75rem;
  }
  .mypage-tab {
    font-size: 0.875rem;
  }
}

@media (max-width: 991.98px) {
  .my-info-container .my-info {
    margin-bottom: 2rem;
  }
  .my-info-container .my-info .my-info-list {
    padding: 2rem 1rem;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .my-info-container .my-info .my-info-list .profile-img {
    margin: 0;
    margin-bottom: 3rem;
    top: 0;
  }
  .my-info-container .my-info .my-info-list .pc-btn {
    top: 0;
  }
  .my-info-container .my-info .my-info-list.edit .profile-img {
    margin-bottom: 0;
  }
  .my-info-container .my-info .my-info-profile {
    margin-left: 0;
  }
  .my-info-container .my-info .my-info-edit {
    margin-left: 0;
  }
  .my-info-container .my-info .my-info-edit > .form-group .form-control.max-w {
    max-width: 100%;
  }
  .custom-info-container .header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .custom-info-container .header .left {
    margin-bottom: 1rem;
  }
}

/* faq tab */
.faq-tab {
  border-top: 0.125rem solid #29a569;
  border-bottom: 0.0625rem solid #bcbcbc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.faq-tab .item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}

.faq-tab .item::after {
  content: "";
  display: inline-block;
  width: 0.0625rem;
  height: 0.9375rem;
  background-color: #dddddd;
  position: absolute;
  right: 0;
  top: 0.875rem;
}

.faq-tab .item:last-of-type::after {
  content: none;
}

.faq-tab .item a {
  padding: 0.625rem 0;
  width: 100%;
  display: inline-block;
  text-align: center;
  color: #999999;
}

.faq-tab .item.active a {
  color: #29a569;
  font-weight: 600;
}

/* accordian */
.faq-container .accordion .title {
  -webkit-box-shadow: inset 0px -1px 0px #e2e2e2;
          box-shadow: inset 0px -1px 0px #e2e2e2;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.125rem;
  padding-left: 0.875rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0.8125rem 0.5rem;
  cursor: pointer;
}

.faq-container .accordion .title::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: url("../images/ico_accordian_arrow.png") center/100% no-repeat;
  -webkit-transition: all linear 0.12s;
  transition: all linear 0.12s;
}

.faq-container .accordion .title.active::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.faq-container .accordion .title.active + .desc {
  height: auto;
  max-height: 60rem;
}

.faq-container .accordion .title .question {
  width: 2.25rem;
  text-align: center;
  font-family: "GmarketSans", "sans-serif";
  font-weight: 800;
  font-size: 1.25rem;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.faq-container .accordion .title .question-title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.faq-container .accordion .desc {
  background: rgba(135, 190, 16, 0.12);
  padding: 0;
  font-size: 1rem;
  line-height: 1.4;
  color: #555555;
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: max-height ease-in-out 0.2s;
  transition: max-height ease-in-out 0.2s;
}

.faq-container .accordion .desc .desc-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.5rem 1.625rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 0.0625rem solid #e2e2e2;
}

.faq-container .accordion .desc .desc-wrap::before {
  content: "";
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 0.875rem;
  height: 0.875rem;
  background: url("../images/img_connect.png") center/100% no-repeat;
  margin-right: 0.625rem;
}

.faq-container .accordion .desc .desc-wrap .answer {
  font-family: "GmarketSans", "sans-serif";
  font-weight: 800;
  color: #87be10;
  font-size: 1.25rem;
  margin-right: 0.625rem;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.faq-container .accordion .desc .desc-wrap .var {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.agreement-view {
  padding: 2.5rem 2rem;
  padding-bottom: 0;
  border-top: 0.125rem solid #222222;
  border-bottom: 0.0625rem solid #888888;
  margin-bottom: 4rem;
}

.agreement-view * {
  line-height: 1.6;
}

.agreement-view h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.agreement-view .para {
  margin-bottom: 2.25rem;
}

.agreement-view .para h4 {
  font-size: 1.125rem;
  margin-bottom: 0.875rem;
  font-weight: 600;
}

.agreement-view .para p {
  font-size: 1rem;
  color: #555555;
  margin-bottom: 0.5rem;
}

.agreement-view .para table {
  border: 1px solid #bcbcbc;
  font-size: 0.875rem;
  width: 100%;
  margin-bottom: 1rem;
}

.agreement-view .para table tr td,
.agreement-view .para table tr th {
  border-right: 1px solid #bcbcbc;
  border-top: 1px solid #bcbcbc;
  padding: 0.25rem 0.5rem;
}

.agreement-view .para table tr td:last-of-type,
.agreement-view .para table tr th:last-of-type {
  border-right: 0;
}

.agreement-view .para table th,
.agreement-view .para table td {
  text-align: center;
  word-break: break-all;
}

.agreement-view .para table th {
  background-color: #eaedf2;
}

.agreement-view strong {
  display: inline-block;
  margin-bottom: 1rem;
}
