@charset "UTF-8";

@font-face {
 font-family: 'NanumBarunGothic';
 font-style: normal;
 font-weight: 300;
 src: url('//cdn.jsdelivr.net/font-nanumlight/1.0/NanumBarunGothicWebLight.eot');
 src: url('//cdn.jsdelivr.net/font-nanumlight/1.0/NanumBarunGothicWebLight.eot?#iefix') format('embedded-opentype'), url('//cdn.jsdelivr.net/font-nanumlight/1.0/NanumBarunGothicWebLight.woff') format('woff'), url('//cdn.jsdelivr.net/font-nanumlight/1.0/NanumBarunGothicWebLight.ttf') format('truetype');
}

/* ---------------버튼 효과--------------- */
.common_btn {
  z-index: 1;
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-align: center;
  color: #1c1c1c;
  width: 150px;
  height: 45px;
  line-height: 45px;
  border-radius: 10px !important;
  background: #FFF;
}

.common_btn_inner {
  z-index: -1;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.common_btn_itembox {
  position: relative;
  display: block;
  height: 100%;
  -webkit-filter: url("#start_hover");
          filter: url("#start_hover");
}

.common_btn_item {
  position: absolute;
  top: 0;
  width: 25%;
  height: 100%;
  background: #fad713;
  border-radius: 100%;
  -webkit-transform: translate3d(0, 150%, 0) scale(1.7);
          transform: translate3d(0, 150%, 0) scale(1.7);
  -webkit-transition: -webkit-transform 0.45s;
  transition: -webkit-transform 0.45s;
  transition: transform 0.45s;
  transition: transform 0.45s, -webkit-transform 0.45s;
}

@supports ((-webkit-filter: url("#start_hover")) or (filter: url("#start_hover"))) {
  .common_btn_item {
    -webkit-transform: translate3d(0, 150%, 0) scale(1.4);
            transform: translate3d(0, 150%, 0) scale(1.4);
  }
}

.common_btn_item:nth-of-type(1) {
  left: 0%;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.common_btn_item:nth-of-type(2) {
  left: 30%;
  -webkit-transition-delay: 0.08s;
          transition-delay: 0.08s;
}

.common_btn_item:nth-of-type(3) {
  left: 60%;
  -webkit-transition-delay: 0.16s;
          transition-delay: 0.16s;
}

.common_btn_item:nth-of-type(4) {
  left: 90%;
  -webkit-transition-delay: 0.24s;
          transition-delay: 0.24s;
}

@media screen and (min-width: 850px) {
  .common_btn:hover .common_btn_item {
    -webkit-transform: translateZ(0) scale(1.7);
            transform: translateZ(0) scale(1.7);
  }
  @supports ((-webkit-filter: url("#start_hover")) or (filter: url("#start_hover"))) {
    .common_btn:hover .common_btn_item {
      -webkit-transform: translateZ(0) scale(1.4);
              transform: translateZ(0) scale(1.4);
    }
  }
}

@media screen and (min-width: 850px) and (max-height: 780px) {
  .common_btn:hover .common_btn_item {
    -webkit-transform: translateZ(0) scale(1.85);
            transform: translateZ(0) scale(1.85);
  }
  @supports ((-webkit-filter: url("#start_hover")) or (filter: url("#start_hover"))) {
    .common_btn:hover .common_btn_item {
      -webkit-transform: translateZ(0) scale(1.55);
              transform: translateZ(0) scale(1.55);
    }
  }
}

.common_btn.h50 {
  height: 50px;
  line-height: 50px;
  border-radius: 12px !important;
}

.common_btn.yellow_start {
  background-color: #fad713;
}

.common_btn.yellow_start .common_btn_item {
  background: #FFF;
}

.common_btn.sky_start {
  background-color: #dae7ff;
  -webkit-transition: color 0.45s;
  transition: color 0.45s;
}

@media screen and (min-width: 850px) {
  .common_btn.sky_start:hover {
    color: #FFF;
  }
}

@media screen and (max-width: 850px) {
  .common_btn.sky_start {
    background-color: #1865f5;
    color: #FFF;
  }
}

.common_btn.sky_start .common_btn_item {
  background: #1865f5;
}

.common_btn.blue_start {
  color: #FFF;
  background-color: #1865f5;
}

.common_btn.blue_start .common_btn_item {
  background: #0d53d4;
}

.common_btn.black_start {
  color: #FFF;
  background-color: #1c1c1c;
}

.common_btn.black_start .common_btn_item {
  background: #555;
}

/* ---------------버튼 효과 end--------------- */
/* 

*/
/* ---------------페이지네이션--------------- */
.pagination_btns {
  text-align: center;
  margin-top: 40px;
}

@media screen and (max-width: 600px) {
  .pagination_btns {
    margin-top: 25px;
  }
}

.pagination_btns ul {
  display: inline-block;
}

.pagination_btns ul li {
  float: left;
  margin: 0 3px;
}

.pagination_btns ul li * {
  font-family: 'S-CoreDream-7ExtraBold';
}

.pagination_btns ul li .pgn_btn {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 3px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #d7d7d7;
  -webkit-transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  /* i{
                    transition: color 0.3s;
                }//pagination_btns>ul>li>pgn_btn>i */
}

.pagination_btns ul li .pgn_btn.active {
  background-color: #3266f5;
  border-color: #3266f5;
  color: #FFF;
}

.pagination_btns ul li .pgn_btn.active i {
  color: #FFF;
}

@media screen and (min-width: 850px) {
  .pagination_btns ul li .pgn_btn:hover {
    border-color: #3266f5;
    background-color: #3266f5;
    color: #FFF;
  }
  .pagination_btns ul li .pgn_btn:hover i {
    color: #FFF;
  }
}

/* ---------------페이지네이션 end--------------- */
/* 

*/
/* ---------------gallery_section--------------- */
.search_section {
  padding-top: 200px;
}

@media screen and (max-width: 850px) {
  .search_section {
    padding-top: 150px;
  }
}

@media screen and (max-width: 600px) {
  .search_section {
    padding-top: 80px;
  }
}

.gallery_section .search_box {
  position: relative;
  float: right;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0;
}

@media screen and (max-width: 850px) {
  .gallery_section .search_box {
    float: none;
    padding: 30px 0;
  }
}

@media screen and (max-width: 600px) {
  .gallery_section .search_box {
    padding: 20px 0;
  }
}

.gallery_section .search_box .search_input {
  display: block;
  width: 385px;
  height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 2px solid #1c1c1c;
  padding: 0 10px;
}

@media screen and (max-width: 850px) {
  .gallery_section .search_box .search_input {
    width: 100%;
    height: 50px;
  }
}

.gallery_section .search_box .search_input::-webkit-input-placeholder {
  font-size: 17px;
}

.gallery_section .search_box .search_input:-ms-input-placeholder {
  font-size: 17px;
}

.gallery_section .search_box .search_input::-ms-input-placeholder {
  font-size: 17px;
}

.gallery_section .search_box .search_input::placeholder {
  font-size: 17px;
}

@media screen and (max-width: 600px) {
  .gallery_section .search_box .search_input::-webkit-input-placeholder {
    font-size: 16px;
  }
  .gallery_section .search_box .search_input:-ms-input-placeholder {
    font-size: 16px;
  }
  .gallery_section .search_box .search_input::-ms-input-placeholder {
    font-size: 16px;
  }
  .gallery_section .search_box .search_input::placeholder {
    font-size: 16px;
  }
}

.gallery_section .search_box .search_btn {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 25px;
  height: 25px;
}

.gallery_section .search_box .search_btn span {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery_section .search_box .search_btn span svg {
  display: block;
  max-width: 100%;
}

.gallery_section .cate_list {
  margin-bottom: 40px;
}

@media screen and (max-width: 850px) {
  .gallery_section .cate_list {
    text-align: right;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 650px) {
  .gallery_section .cate_list {
    margin-bottom: 20px;
  }
}

.gallery_section .cate_list li {
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 10px;
}

.gallery_section .cate_list li:not(:nth-of-type(1))::before {
  content: '|';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  color: #9c9c93;
}

.gallery_section .cate_list li a {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #9c9c93;
}

.gallery_section .cate_list li a.active {
  color: #dc2222;
}

.gallery_section .sub_title {
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 8px;
}

.gallery_section .sub_title_small {
	font-size: 19px;
	color: #999;
	margin-bottom: 20px;
}

@media screen and (max-width: 850px) {
  .gallery_section .sub_title {
    font-size: 21px;
  }

  .gallery_section .sub_title_small {
		font-size: 16px;
	}
}

@media screen and (max-width: 600px) {
  .gallery_section .sub_title {
    font-size: 18px;
  }
  
	.gallery_section .sub_title_small {
		font-size: 15px;
		margin-bottom: 15px;
	}
}

.gallery_section .gallery_slider,
.gallery_section .gallery_list {
  position: relative;
}

.gallery_section .gallery_slider .slick-list,
.gallery_section .gallery_list .slick-list {
  /* @media screen and (max-width:850px){
                padding: 0 25% 0 0 !important;
            }
            @media screen and (max-width:600px){
                padding: 0 15% 0 0 !important;
            }
            @media screen and (max-width:380px){
                padding: 0 0 0 0 !important;
            }
            @media screen and (max-width:330px){
                padding: 0 25% 0 0 !important;
            } */
}

.gallery_section .gallery_slider .slick-list .slick-track .slick-slide > div,
.gallery_section .gallery_list .slick-list .slick-track .slick-slide > div {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 12.5px;
  /* @media screen and (max-width:600px){
                            padding: 0 2.5px;
                        } */
}

@media screen and (max-width: 850px) {
  .gallery_section .gallery_slider .slick-list .slick-track .slick-slide > div,
  .gallery_section .gallery_list .slick-list .slick-track .slick-slide > div {
    padding: 0 10px;
  }
}

@media screen and (max-width: 650px) {
  .gallery_section .gallery_slider .slick-list .slick-track .slick-slide > div,
  .gallery_section .gallery_list .slick-list .slick-track .slick-slide > div {
    padding: 0 5px;
  }
}

.gallery_section .gallery_slider > button,
.gallery_section .gallery_list > button {
  z-index: 1;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 35px;
  height: 35px;
}

.gallery_section .gallery_slider > button:hover span,
.gallery_section .gallery_list > button:hover span {
  background-color: #999;
}

@media screen and (max-width: 1350px) {
  .gallery_section .gallery_slider > button:hover span,
  .gallery_section .gallery_list > button:hover span {
    background-color: #FFF;
  }
}

@media screen and (max-width: 850px) {
  .gallery_section .gallery_slider > button,
  .gallery_section .gallery_list > button {
    top: calc(50% - 20px);
  }
}

@media screen and (max-width: 600px) {
  .gallery_section .gallery_slider > button,
  .gallery_section .gallery_list > button {
    top: calc(50% - 40px);
  }
}

.gallery_section .gallery_slider > button.prev,
.gallery_section .gallery_list > button.prev {
  left: -60px;
}

@media screen and (max-width: 1350px) {
  .gallery_section .gallery_slider > button.prev,
  .gallery_section .gallery_list > button.prev {
    left: 12.5px;
  }
}

@media screen and (max-width: 850px) {
  .gallery_section .gallery_slider > button.prev,
  .gallery_section .gallery_list > button.prev {
    left: 5px;
  }
}

@media screen and (max-width: 600px) {
  .gallery_section .gallery_slider > button.prev,
  .gallery_section .gallery_list > button.prev {
    left: 2.5px;
  }
}

.gallery_section .gallery_slider > button.prev span.line1,
.gallery_section .gallery_list > button.prev span.line1 {
  -webkit-transform: skew(-40deg);
          transform: skew(-40deg);
}

.gallery_section .gallery_slider > button.prev span.line2,
.gallery_section .gallery_list > button.prev span.line2 {
  -webkit-transform: skew(40deg);
          transform: skew(40deg);
}

.gallery_section .gallery_slider > button.next,
.gallery_section .gallery_list > button.next {
  right: -60px;
}

@media screen and (max-width: 1350px) {
  .gallery_section .gallery_slider > button.next,
  .gallery_section .gallery_list > button.next {
    right: 12.5px;
  }
}

@media screen and (max-width: 850px) {
  .gallery_section .gallery_slider > button.next,
  .gallery_section .gallery_list > button.next {
    right: 5px;
  }
}

@media screen and (max-width: 600px) {
  .gallery_section .gallery_slider > button.next,
  .gallery_section .gallery_list > button.next {
    right: 2.5px;
  }
}

.gallery_section .gallery_slider > button.next span.line1,
.gallery_section .gallery_list > button.next span.line1 {
  -webkit-transform: skew(40deg);
          transform: skew(40deg);
}

.gallery_section .gallery_slider > button.next span.line2,
.gallery_section .gallery_list > button.next span.line2 {
  -webkit-transform: skew(-40deg);
          transform: skew(-40deg);
}

.gallery_section .gallery_slider > button span,
.gallery_section .gallery_list > button span {
  display: block;
  width: 12px;
  height: 50%;
  margin: 0 auto;
  background-color: #d9d9d9;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}

.gallery_section .gallery_slider > button span.line2,
.gallery_section .gallery_list > button span.line2 {
  margin-top: -0.1px;
}

@media screen and (max-width: 1350px) {
  .gallery_section .gallery_slider > button span,
  .gallery_section .gallery_list > button span {
    background-color: rgba(255, 255, 255, 0.8);
  }
}

.gallery_section .gallery_slider .sliderbox.gallerybox,
.gallery_section .gallery_slider .gallerybox.gallerybox,
.gallery_section .gallery_list .sliderbox.gallerybox,
.gallery_section .gallery_list .gallerybox.gallerybox {
  float: left;
  /* @media screen and (min-width:850px) and (max-width:1100px){
                    &:not(:nth-of-type(3n+1)){margin-left: 30px;}
                    width: calc(33.333% - ((30px * 2) / 3));
                    margin-bottom: 30px;
                } */
  /* @media screen and (min-width:850px){
                    &:nth-of-type(3n+1){clear: both;}
                    &:nth-last-of-type(1), &:nth-last-of-type(2), &:nth-last-of-type(3){margin-bottom: 0;}
                } */
  /* @media screen and (max-width:600px){
                    &:not(:nth-of-type(2n+1)){margin-left: 15px;}
                    width: calc(50% - (15px / 2));
                    margin-bottom: 15px;
                    &:nth-last-of-type(1), &:nth-last-of-type(2){margin-bottom: 0;}
                } */
}

@media screen and (min-width: 1000px) {
  .gallery_section .gallery_slider .sliderbox.gallerybox,
  .gallery_section .gallery_slider .gallerybox.gallerybox,
  .gallery_section .gallery_list .sliderbox.gallerybox,
  .gallery_section .gallery_list .gallerybox.gallerybox {
    /* &:not(:nth-of-type(3n+1)){margin-left: 45px;}
                    width: calc(33.333% - ((45px * 2) / 3));
                    margin-bottom: 45px; */
  }
  .gallery_section .gallery_slider .sliderbox.gallerybox:nth-of-type(4n+1),
  .gallery_section .gallery_slider .gallerybox.gallerybox:nth-of-type(4n+1),
  .gallery_section .gallery_list .sliderbox.gallerybox:nth-of-type(4n+1),
  .gallery_section .gallery_list .gallerybox.gallerybox:nth-of-type(4n+1) {
    clear: both;
  }
}

@media screen and (min-width: 850px) {
  .gallery_section .gallery_slider .sliderbox.gallerybox,
  .gallery_section .gallery_slider .gallerybox.gallerybox,
  .gallery_section .gallery_list .sliderbox.gallerybox,
  .gallery_section .gallery_list .gallerybox.gallerybox {
    margin: 0 12.5px;
    /* width: calc(33.333% - 25px); */
    width: calc(25% - 25px);
    margin-bottom: 45px;
    /* &:nth-of-type(3n+1){clear: both;} */
    /* &:nth-last-of-type(1), &:nth-last-of-type(2), &:nth-last-of-type(3){margin-bottom: 0;} */
  }
  .gallery_section .gallery_slider .sliderbox.gallerybox:nth-last-of-type(1), .gallery_section .gallery_slider .sliderbox.gallerybox:nth-last-of-type(2), .gallery_section .gallery_slider .sliderbox.gallerybox:nth-last-of-type(3), .gallery_section .gallery_slider .sliderbox.gallerybox:nth-last-of-type(4),
  .gallery_section .gallery_slider .gallerybox.gallerybox:nth-last-of-type(1),
  .gallery_section .gallery_slider .gallerybox.gallerybox:nth-last-of-type(2),
  .gallery_section .gallery_slider .gallerybox.gallerybox:nth-last-of-type(3),
  .gallery_section .gallery_slider .gallerybox.gallerybox:nth-last-of-type(4),
  .gallery_section .gallery_list .sliderbox.gallerybox:nth-last-of-type(1),
  .gallery_section .gallery_list .sliderbox.gallerybox:nth-last-of-type(2),
  .gallery_section .gallery_list .sliderbox.gallerybox:nth-last-of-type(3),
  .gallery_section .gallery_list .sliderbox.gallerybox:nth-last-of-type(4),
  .gallery_section .gallery_list .gallerybox.gallerybox:nth-last-of-type(1),
  .gallery_section .gallery_list .gallerybox.gallerybox:nth-last-of-type(2),
  .gallery_section .gallery_list .gallerybox.gallerybox:nth-last-of-type(3),
  .gallery_section .gallery_list .gallerybox.gallerybox:nth-last-of-type(4) {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 650px) and (max-width: 1000px) {
  .gallery_section .gallery_slider .sliderbox.gallerybox,
  .gallery_section .gallery_slider .gallerybox.gallerybox,
  .gallery_section .gallery_list .sliderbox.gallerybox,
  .gallery_section .gallery_list .gallerybox.gallerybox {
    margin: 0 12.5px;
    width: calc(33.333% - 25px);
    margin-bottom: 45px;
  }
  .gallery_section .gallery_slider .sliderbox.gallerybox:nth-of-type(3n+1),
  .gallery_section .gallery_slider .gallerybox.gallerybox:nth-of-type(3n+1),
  .gallery_section .gallery_list .sliderbox.gallerybox:nth-of-type(3n+1),
  .gallery_section .gallery_list .gallerybox.gallerybox:nth-of-type(3n+1) {
    clear: both;
  }
  .gallery_section .gallery_slider .sliderbox.gallerybox:nth-last-of-type(1), .gallery_section .gallery_slider .sliderbox.gallerybox:nth-last-of-type(2), .gallery_section .gallery_slider .sliderbox.gallerybox:nth-last-of-type(3),
  .gallery_section .gallery_slider .gallerybox.gallerybox:nth-last-of-type(1),
  .gallery_section .gallery_slider .gallerybox.gallerybox:nth-last-of-type(2),
  .gallery_section .gallery_slider .gallerybox.gallerybox:nth-last-of-type(3),
  .gallery_section .gallery_list .sliderbox.gallerybox:nth-last-of-type(1),
  .gallery_section .gallery_list .sliderbox.gallerybox:nth-last-of-type(2),
  .gallery_section .gallery_list .sliderbox.gallerybox:nth-last-of-type(3),
  .gallery_section .gallery_list .gallerybox.gallerybox:nth-last-of-type(1),
  .gallery_section .gallery_list .gallerybox.gallerybox:nth-last-of-type(2),
  .gallery_section .gallery_list .gallerybox.gallerybox:nth-last-of-type(3) {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 850px) {
  .gallery_section .gallery_slider .sliderbox.gallerybox,
  .gallery_section .gallery_slider .gallerybox.gallerybox,
  .gallery_section .gallery_list .sliderbox.gallerybox,
  .gallery_section .gallery_list .gallerybox.gallerybox {
    /* &:nth-of-type(2n+1){clear: both;}
                    &:not(:nth-of-type(2n+1)){margin-left: 30px;}
                    width: calc(50% - (30px / 2));
                    margin-bottom: 30px;
                    &:nth-last-of-type(1), &:nth-last-of-type(2){margin-bottom: 0;} */
    margin: 0 10px;
    /* width: calc(50% - 20px); */
    width: calc(33.333% - 20px);
    margin-bottom: 30px;
    /* &:nth-of-type(2n+1){clear: both;} */
    /* &:nth-last-of-type(1), &:nth-last-of-type(2){margin-bottom: 0;} */
  }
}

@media screen and (max-width: 650px) {
  .gallery_section .gallery_slider .sliderbox.gallerybox,
  .gallery_section .gallery_slider .gallerybox.gallerybox,
  .gallery_section .gallery_list .sliderbox.gallerybox,
  .gallery_section .gallery_list .gallerybox.gallerybox {
    margin: 0 5px;
    margin-bottom: 20px;
    width: calc(50% - 10px);
  }
  .gallery_section .gallery_slider .sliderbox.gallerybox:nth-of-type(2n+1),
  .gallery_section .gallery_slider .gallerybox.gallerybox:nth-of-type(2n+1),
  .gallery_section .gallery_list .sliderbox.gallerybox:nth-of-type(2n+1),
  .gallery_section .gallery_list .gallerybox.gallerybox:nth-of-type(2n+1) {
    clear: both;
  }
  .gallery_section .gallery_slider .sliderbox.gallerybox:nth-last-of-type(1), .gallery_section .gallery_slider .sliderbox.gallerybox:nth-last-of-type(2),
  .gallery_section .gallery_slider .gallerybox.gallerybox:nth-last-of-type(1),
  .gallery_section .gallery_slider .gallerybox.gallerybox:nth-last-of-type(2),
  .gallery_section .gallery_list .sliderbox.gallerybox:nth-last-of-type(1),
  .gallery_section .gallery_list .sliderbox.gallerybox:nth-last-of-type(2),
  .gallery_section .gallery_list .gallerybox.gallerybox:nth-last-of-type(1),
  .gallery_section .gallery_list .gallerybox.gallerybox:nth-last-of-type(2) {
    margin-bottom: 0;
  }
}

.gallery_section .gallery_slider .sliderbox .open_action,
.gallery_section .gallery_slider .gallerybox .open_action,
.gallery_section .gallery_list .sliderbox .open_action,
.gallery_section .gallery_list .gallerybox .open_action {
  display: block;
  width: 100%;
}

.gallery_section .gallery_slider .sliderbox .open_action .box .bgbox,
.gallery_section .gallery_slider .gallerybox .open_action .box .bgbox,
.gallery_section .gallery_list .sliderbox .open_action .box .bgbox,
.gallery_section .gallery_list .gallerybox .open_action .box .bgbox {
  position: relative;
  width: 100%;
  height: 215px;
}

.bgbox .state {display: block; position: absolute; right: 0; bottom: 0; padding: 4px 10px; font-size: 13px; color: #fff; }
.bgbox .state.on { background: #ff8a00;}
.bgbox .state.off { background: #007e7f;}

.bgbox_imgbox_end {
	position: relative;
}

.bgbox_imgbox_end::after {
	content: "종료되었습니다.";
	z-index: 1;
	display: flex;
	font-family: 'NanumSquare', sans-serif;
	font-weight:700;
	font-size: 22px;
	color: #fff;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}



@media screen and (max-width: 850px) {
  .gallery_section .gallery_slider .sliderbox .open_action .box .bgbox,
  .gallery_section .gallery_slider .gallerybox .open_action .box .bgbox,
  .gallery_section .gallery_list .sliderbox .open_action .box .bgbox,
  .gallery_section .gallery_list .gallerybox .open_action .box .bgbox {
    height: 180px;
  }


	.bgbox_imgbox_end::after {
		font-size: 18px;
	}
}

@media screen and (max-width: 600px) {
  .gallery_section .gallery_slider .sliderbox .open_action .box .bgbox,
  .gallery_section .gallery_slider .gallerybox .open_action .box .bgbox,
  .gallery_section .gallery_list .sliderbox .open_action .box .bgbox,
  .gallery_section .gallery_list .gallerybox .open_action .box .bgbox {
    height: 150px;
  }
}

@media screen and (max-width: 450px) {
  .gallery_section .gallery_slider .sliderbox .open_action .box .bgbox,
  .gallery_section .gallery_slider .gallerybox .open_action .box .bgbox,
  .gallery_section .gallery_list .sliderbox .open_action .box .bgbox,
  .gallery_section .gallery_list .gallerybox .open_action .box .bgbox {
    height: 130px;
  }

  .bgbox_imgbox_end::after {
		font-size: 16px;
		font-weight:500;
	}
}

@media screen and (max-width: 360px) {
  .gallery_section .gallery_slider .sliderbox .open_action .box .bgbox,
  .gallery_section .gallery_slider .gallerybox .open_action .box .bgbox,
  .gallery_section .gallery_list .sliderbox .open_action .box .bgbox,
  .gallery_section .gallery_list .gallerybox .open_action .box .bgbox {
    height: 110px;
  }
}

.gallery_section .gallery_slider .sliderbox .open_action .box .bgbox .bg,
.gallery_section .gallery_slider .gallerybox .open_action .box .bgbox .bg,
.gallery_section .gallery_list .sliderbox .open_action .box .bgbox .bg,
.gallery_section .gallery_list .gallerybox .open_action .box .bgbox .bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: rgba(0, 128, 0, 0.15);
  border:1px solid #ddd;
  box-sizing: border-box;
}

.gallery_section .gallery_slider .sliderbox .open_action .box .bgbox .cate,
.gallery_section .gallery_slider .gallerybox .open_action .box .bgbox .cate,
.gallery_section .gallery_list .sliderbox .open_action .box .bgbox .cate,
.gallery_section .gallery_list .gallerybox .open_action .box .bgbox .cate {
  position: absolute;
  left: 10px;
  top: 10px;
  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;
  text-align: center;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  font-size: 12px;
  line-height: 150%;
}

@media screen and (max-width: 850px) {
  .gallery_section .gallery_slider .sliderbox .open_action .box .bgbox .cate,
  .gallery_section .gallery_slider .gallerybox .open_action .box .bgbox .cate,
  .gallery_section .gallery_list .sliderbox .open_action .box .bgbox .cate,
  .gallery_section .gallery_list .gallerybox .open_action .box .bgbox .cate {
    font-size: 11px;
    width: 45px;
    height: 45px;
  }
}

@media screen and (max-width: 600px) {
  .gallery_section .gallery_slider .sliderbox .open_action .box .bgbox .cate,
  .gallery_section .gallery_slider .gallerybox .open_action .box .bgbox .cate,
  .gallery_section .gallery_list .sliderbox .open_action .box .bgbox .cate,
  .gallery_section .gallery_list .gallerybox .open_action .box .bgbox .cate {
    font-size: 10px;
    width: 40px;
    height: 40px;
    left: 7px;
    top: 7px;
  }
}

.gallery_section .gallery_slider .sliderbox .open_action .box .bgbox .cate span,
.gallery_section .gallery_slider .gallerybox .open_action .box .bgbox .cate span,
.gallery_section .gallery_list .sliderbox .open_action .box .bgbox .cate span,
.gallery_section .gallery_list .gallerybox .open_action .box .bgbox .cate span {
  line-height: 130%;
  max-width: 90%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 3px;
}

.gallery_section .gallery_slider .sliderbox .open_action .box .textbox,
.gallery_section .gallery_slider .gallerybox .open_action .box .textbox,
.gallery_section .gallery_list .sliderbox .open_action .box .textbox,
.gallery_section .gallery_list .gallerybox .open_action .box .textbox {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 25px;
}

@media screen and (max-width: 850px) {
  .gallery_section .gallery_slider .sliderbox .open_action .box .textbox,
  .gallery_section .gallery_slider .gallerybox .open_action .box .textbox,
  .gallery_section .gallery_list .sliderbox .open_action .box .textbox,
  .gallery_section .gallery_list .gallerybox .open_action .box .textbox {
    padding-top: 20px;
  }
}

@media screen and (max-width: 600px) {
  .gallery_section .gallery_slider .sliderbox .open_action .box .textbox,
  .gallery_section .gallery_slider .gallerybox .open_action .box .textbox,
  .gallery_section .gallery_list .sliderbox .open_action .box .textbox,
  .gallery_section .gallery_list .gallerybox .open_action .box .textbox {
    padding-top: 15px;
  }
}

.gallery_section .gallery_slider .sliderbox .open_action .box .textbox .tit,
.gallery_section .gallery_slider .gallerybox .open_action .box .textbox .tit,
.gallery_section .gallery_list .sliderbox .open_action .box .textbox .tit,
.gallery_section .gallery_list .gallerybox .open_action .box .textbox .tit {
  font-size: 18px;
  font-weight: 600;
  line-height: 130%;
}

@media screen and (max-width: 1100px) {
  .gallery_section .gallery_slider .sliderbox .open_action .box .textbox .tit,
  .gallery_section .gallery_slider .gallerybox .open_action .box .textbox .tit,
  .gallery_section .gallery_list .sliderbox .open_action .box .textbox .tit,
  .gallery_section .gallery_list .gallerybox .open_action .box .textbox .tit {
    font-size: 16px;
  }
}

@media screen and (max-width: 850px) {
  .gallery_section .gallery_slider .sliderbox .open_action .box .textbox .tit,
  .gallery_section .gallery_slider .gallerybox .open_action .box .textbox .tit,
  .gallery_section .gallery_list .sliderbox .open_action .box .textbox .tit,
  .gallery_section .gallery_list .gallerybox .open_action .box .textbox .tit {
    font-size: 14px;
  }
}

@media screen and (max-width: 600px) {
  .gallery_section .gallery_slider .sliderbox .open_action .box .textbox .tit,
  .gallery_section .gallery_slider .gallerybox .open_action .box .textbox .tit,
  .gallery_section .gallery_list .sliderbox .open_action .box .textbox .tit,
  .gallery_section .gallery_list .gallerybox .open_action .box .textbox .tit {
    font-size: 13px;
  }
}

.gallery_section .gallery_slider .sliderbox .open_action .box .textbox .date,
.gallery_section .gallery_slider .gallerybox .open_action .box .textbox .date,
.gallery_section .gallery_list .sliderbox .open_action .box .textbox .date,
.gallery_section .gallery_list .gallerybox .open_action .box .textbox .date {
  font-size: 15px;
  font-weight: 400;
  color: #606060;
  margin-top: 10px;
  line-height: 130%;
}

@media screen and (max-width: 1100px) {
  .gallery_section .gallery_slider .sliderbox .open_action .box .textbox .date,
  .gallery_section .gallery_slider .gallerybox .open_action .box .textbox .date,
  .gallery_section .gallery_list .sliderbox .open_action .box .textbox .date,
  .gallery_section .gallery_list .gallerybox .open_action .box .textbox .date {
    font-size: 13px;
  }
}

@media screen and (max-width: 850px) {
  .gallery_section .gallery_slider .sliderbox .open_action .box .textbox .date,
  .gallery_section .gallery_slider .gallerybox .open_action .box .textbox .date,
  .gallery_section .gallery_list .sliderbox .open_action .box .textbox .date,
  .gallery_section .gallery_list .gallerybox .open_action .box .textbox .date {
    font-size: 12px;
  }
}

@media screen and (max-width: 600px) {
  .gallery_section .gallery_slider .sliderbox .open_action .box .textbox .date,
  .gallery_section .gallery_slider .gallerybox .open_action .box .textbox .date,
  .gallery_section .gallery_list .sliderbox .open_action .box .textbox .date,
  .gallery_section .gallery_list .gallerybox .open_action .box .textbox .date {
    margin-top: 7px;
    font-size: 11px;
  }
}

.gallery_section .gallery_slider .sliderbox .open_action .box .textbox .hashtags,
.gallery_section .gallery_slider .gallerybox .open_action .box .textbox .hashtags,
.gallery_section .gallery_list .sliderbox .open_action .box .textbox .hashtags,
.gallery_section .gallery_list .gallerybox .open_action .box .textbox .hashtags {
  margin-top: 10px;
  font-size: 15px;
  line-height: 130%;
}

@media screen and (max-width: 1100px) {
  .gallery_section .gallery_slider .sliderbox .open_action .box .textbox .hashtags,
  .gallery_section .gallery_slider .gallerybox .open_action .box .textbox .hashtags,
  .gallery_section .gallery_list .sliderbox .open_action .box .textbox .hashtags,
  .gallery_section .gallery_list .gallerybox .open_action .box .textbox .hashtags {
    font-size: 13px;
  }
}

@media screen and (max-width: 850px) {
  .gallery_section .gallery_slider .sliderbox .open_action .box .textbox .hashtags,
  .gallery_section .gallery_slider .gallerybox .open_action .box .textbox .hashtags,
  .gallery_section .gallery_list .sliderbox .open_action .box .textbox .hashtags,
  .gallery_section .gallery_list .gallerybox .open_action .box .textbox .hashtags {
    font-size: 12px;
  }
}

@media screen and (max-width: 600px) {
  .gallery_section .gallery_slider .sliderbox .open_action .box .textbox .hashtags,
  .gallery_section .gallery_slider .gallerybox .open_action .box .textbox .hashtags,
  .gallery_section .gallery_list .sliderbox .open_action .box .textbox .hashtags,
  .gallery_section .gallery_list .gallerybox .open_action .box .textbox .hashtags {
    margin-top: 7px;
    font-size: 11px;
  }
}

.gallery_section .gallery_slider .sliderbox .open_action .box .textbox .hashtags li,
.gallery_section .gallery_slider .gallerybox .open_action .box .textbox .hashtags li,
.gallery_section .gallery_list .sliderbox .open_action .box .textbox .hashtags li,
.gallery_section .gallery_list .gallerybox .open_action .box .textbox .hashtags li {
  display: inline-block;
  font-weight: 400;
  color: #606060;
}

/* ---------------gallery_section end--------------- */
/* 

*/
/* ---------------buttons--------------- */
.buttons {
  margin-top: 50px;
  text-align: right;
}

.buttons.tac {
  text-align: center;
}

@media screen and (max-width: 850px) {
  .buttons {
    text-align: center;
  }
}

.buttons .delet_btn,
.buttons .modify_btn,
.buttons .write_btn {
  display: inline-block;
  width: 120px;
  height: 40px;
  border-radius: 3px;
  margin: 0 3px;
  text-align: center;
  line-height: 40px;
  vertical-align: middle;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}

@media screen and (max-width: 600px) {
  .buttons .delet_btn,
  .buttons .modify_btn,
  .buttons .write_btn {
    width: 100px;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
  }
}

@media screen and (max-width: 400px) {
  .buttons .delet_btn,
  .buttons .modify_btn,
  .buttons .write_btn {
    width: 80px;
    height: 30px;
    line-height: 30px;
    font-size: 13px;
  }
}

.buttons .delet_btn {
  background-color: #ededed;
}

.buttons .modify_btn {
  background-color: #999;
  color: #FFF;
}

.buttons .write_btn {
  background-color: #1865f5;
  color: #FFF;
}

@media screen and (min-width: 850px) {
  .buttons .delet_btn:hover {
    background-color: #d7d7d7;
  }
  .buttons .modify_btn:hover {
    background-color: #666;
  }
  .buttons .write_btn:hover {
    background-color: #0c48b8;
  }
}

/* ---------------buttons end--------------- */
/* 

*/
/* ---------------뱃지색--------------- */
.cate.inside {
  background: linear-gradient(135deg, #ff6169, #feadd3);
}

.cate.power {
  background: linear-gradient(135deg, #fd843f, #ffc96a);
}

.cate.mic {
  background: linear-gradient(135deg, #fdff33, #f7f9c9);
}

.cate.learn {
  background: linear-gradient(135deg, #339a3c, #8ed191);
}

.cate.energy {
  background: linear-gradient(135deg, #3666f5, #47d2e8);
}

.cate.start {
  background: linear-gradient(135deg, #b730ef, #d78ef8);
}

.cate.life {
  background: linear-gradient(135deg, #f866f3, #fda7f5);
}

/* ---------------뱃지색end--------------- */
/* 

*/
/* ---------------마이크룸 view (신청하기 이전페이지)--------------- */
.apply_section {
  overflow: hidden;
  padding-top: 160px;
}

@media screen and (max-width: 850px) {
  .apply_section {
    padding-top: 110px;
  }
}

@media screen and (max-width: 600px) {
  .apply_section {
    padding-top: 80px;
  }
}

.apply_section .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: top;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}



.apply_section .top .left {
  width: calc(50% - 100px);
}

@media screen and (max-width: 1100px) {
  .apply_section .top .left {
    width: 40%
  }
}

@media screen and (max-width: 991px) {
    .apply_section .top { flex-direction: column; }
    .apply_section .top .left { width: 100%; margin-bottom: 25px; }
    .apply_section .top .left .bgbox { margin: 0 auto; width: 100%; max-width: 500px; height: 300px; }
}

@media screen and (max-width: 600px) {
  .apply_section .top .left {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 400px) {
  .apply_section .top .left {
    margin-bottom: 15px;
  }
}

.apply_section .top .left .bgbox {
  position: relative;
  width: 100%;
  height: 350px;
}

@media screen and (max-width: 1100px) {
  .apply_section .top .left .bgbox {
    height: 320px;
  }
}

@media screen and (max-width: 600px) {
  .apply_section .top .left .bgbox {
    height: 280px;
  }
}

@media screen and (max-width: 400px) {
  .apply_section .top .left .bgbox {
    height: 260px;
  }
}

@media screen and (max-width: 320px) {
  .apply_section .top .left .bgbox {
    height: 240px;
  }
}

.apply_section .top .left .bgbox .bg { width: 100%; height: 100%; background-size: cover; background-position: center center; background-repeat: no-repeat; border:1px solid #ddd; }

.apply_section .top .left .bgbox .cate { display: flex; align-items: center; justify-content: center; flex-direction: column; position: absolute; left: 10px; top: 10px; width: 50px; height: 50px; text-align: center; font-size: 12px; line-height: 150%; border-radius: 100%;}

@media screen and (max-width: 850px) {
  .apply_section .top .left .bgbox .cate {
    font-size: 11px;
    width: 45px;
    height: 45px;
  }
}

@media screen and (max-width: 600px) {
  .apply_section .top .left .bgbox .cate {
    font-size: 10px;
    width: 42px;
    height: 42px;
    left: 7px;
    top: 7px;
  }
}

.apply_section .top .left .bgbox .cate span {
  line-height: 130%;
  max-width: 90%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 3px;
}

.apply_section .top .right {
  width: 50%;
}

.apply_section .top .right .info_wrap {
  position: relative;
}

.apply_section .top .right .info_wrap .profile_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}

@media(max-width:1100px){
    .apply_section .top .right { width: 57%;}
}
@media(max-width:991px){
    .apply_section .top .right { width: 100%;}

    .apply_calendar > table,
    .apply_calendar > table > tbody,
    .apply_calendar > table > tbody > tr,
    .apply_calendar > table > tbody > tr > td{ display: block;}
    .apply_calendar .list { margin-bottom: 20px;}

    .apply_calendar #wrap-calendar .pager { width: 100%;}
    .apply_calendar #wrap-time > div { width: 100% !important;}
}

@media screen and (max-width: 600px) {
  .apply_section .top .right .info_wrap .profile_box { margin-bottom: 10px; }
  .apply_section .top .right .info_wrap .profile_box .profile_img { width: 35px; height: 35px; }
}
@media screen and (max-width:576px){
  
}

.apply_section .top .right .info_wrap .profile_box .profile_img { overflow: hidden; width: 40px; height: 40px; border-radius: 100%; }

.apply_section .top .right .info_wrap .profile_box .profile_img .mic_img {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.apply_section .top .right .info_wrap .profile_box .profile_name {
  margin-left: 10px;
}

@media screen and (max-width: 600px) {
  .apply_section .top .right .info_wrap .profile_box .profile_name {
    font-size: 14px;
  }
}

.apply_section .top .right .info_wrap .profile_box .profile_name .mic_name {
  font-size: 18px;
}

@media screen and (max-width: 600px) {
  .apply_section .top .right .info_wrap .profile_box .profile_name .mic_name {
    font-size: 16px;
  }
}

.apply_section .top .right .info_wrap .titbox .tit {
  font-size: 25px;
  line-height: 130%;
  margin-bottom: 30px;
}

@media screen and (max-width: 850px) {
  .apply_section .top .right .info_wrap .titbox .tit {
    font-size: 23px;
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 600px) {
  .apply_section .top .right .info_wrap .titbox .tit {
    font-size: 21px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 400px) {
  .apply_section .top .right .info_wrap .titbox .tit {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.apply_section .top .right .info_wrap .titbox .date {
  font-size: 18px;
  color: #606060;
  margin-bottom: 40px;
}

@media screen and (max-width: 600px) {
  .apply_section .top .right .info_wrap .titbox .date {
    margin-bottom: 30px;
    font-size: 16px;
  }
}

@media screen and (max-width: 400px) {
  .apply_section .top .right .info_wrap .titbox .date {
    margin-bottom: 20px;
    font-size: 14px;
  }
}

.apply_section .top .right .info_wrap .applybox .price {
  display: block;
  font-size: 25px;
  margin-bottom: 40px;
}

@media screen and (max-width: 850px) {
  .apply_section .top .right .info_wrap .applybox .price {
    font-size: 23px;
  }
}

@media screen and (max-width: 600px) {
  .apply_section .top .right .info_wrap .applybox .price {
    margin-bottom: 30px;
    font-size: 21px;
  }
}

@media screen and (max-width: 400px) {
  .apply_section .top .right .info_wrap .applybox .price {
    margin-bottom: 20px;
    font-size: 18px;
  }
}

.apply_section .top .right .info_wrap .applybox .price .icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

@media screen and (max-width: 600px) {
  .apply_section .top .right .info_wrap .applybox .price .icon {
    width: 15px;
    height: 15px;
  }
}

.apply_section .top .right .info_wrap .applybox .price .icon svg {
  display: block;
  max-width: 100%;
}

.apply_section .top .right .info_wrap .applybox .apply_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.apply_section .top .right .info_wrap .applybox .apply_btns .btn {
  display: block;
}

.apply_section .top .right .info_wrap .applybox .apply_btns .btn.apply_btn {
  width: 190px;
  height: 50px;
  line-height: 50px;
  font-size: 20px;
}

@media screen and (max-width: 850px) {
  .apply_section .top .right .info_wrap .applybox .apply_btns .btn.apply_btn {
    font-size: 18px;
  }
}

@media screen and (max-width: 600px) {
  .apply_section .top .right .info_wrap .applybox .apply_btns .btn.apply_btn {
    width: 180px;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
  }
}

.apply_section .top .right .info_wrap .applybox .apply_btns .btn.heart_btn {
  margin-left: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #CCC;
  border-radius: 10px;
  padding: 0 20px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

@media screen and (max-width: 600px) {
  .apply_section .top .right .info_wrap .applybox .apply_btns .btn.heart_btn {
    padding: 0 15px;
    height: 45px;
    line-height: 45px;
  }
}

.apply_section .top .right .info_wrap .applybox .apply_btns .btn.heart_btn.active {
  background-color: #CCC;
}

.apply_section .top .right .info_wrap .applybox .apply_btns .btn.heart_btn.active .text {
  color: #1c1c1c;
}

.apply_section .top .right .info_wrap .applybox .apply_btns .btn.heart_btn.active .icon svg path {
  fill: #de0000;
  stroke: #de0000;
}

.apply_section .top .right .info_wrap .applybox .apply_btns .btn.heart_btn .text {
  display: block;
  font-size: 20px;
  color: #b5b5b5;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

@media screen and (max-width: 850px) {
  .apply_section .top .right .info_wrap .applybox .apply_btns .btn.heart_btn .text {
    font-size: 18px;
  }
}

@media screen and (max-width: 600px) {
  .apply_section .top .right .info_wrap .applybox .apply_btns .btn.heart_btn .text {
    font-size: 16px;
  }
}

.apply_section .top .right .info_wrap .applybox .apply_btns .btn.heart_btn .icon {
  margin-left: 5px;
  display: block;
  width: 18px;
  height: 18px;
}

@media screen and (max-width: 600px) {
  .apply_section .top .right .info_wrap .applybox .apply_btns .btn.heart_btn .icon {
    width: 16px;
    height: 16px;
  }
}

.apply_section .top .right .info_wrap .applybox .apply_btns .btn.heart_btn .icon svg {
  display: block;
  width: 130%;
  height: 130%;
  margin-top: -2px;
}

.apply_section .top .right .info_wrap .applybox .apply_btns .btn.heart_btn .icon svg path {
  fill: transparent;
  stroke: #b5b5b5;
  stroke-width: 5;
  -webkit-transition: fill 0.3s, stroke 0.3s;
  transition: fill 0.3s, stroke 0.3s;
}

.apply_section .bottom {
  margin-top: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 600px) {
  .apply_section .bottom {
    margin-top: 30px;
  }
}

.apply_section .bottom.active {
  padding-top: 60px;
}

@media screen and (max-width: 850px) {
  .apply_section .bottom.active {
    padding-top: 90px;
  }
}

.apply_section .bottom.active .mic_menu {
  z-index: 99;
  position: fixed;
  width: 95%;
  max-width: 1200px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 60px;
}

.apply_section .bottom .mic_menu {
  background-color: #FFF;
}

.apply_section .bottom .mic_menu ul {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #FFF;
}

.apply_section .bottom .mic_menu ul::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #a7a7a7;
  -webkit-transform: scaleX(2);
          transform: scaleX(2);
}

.apply_section .bottom .mic_menu ul li {
  float: left;
  width: 25%;
  background-color: #FFF;
}

@media screen and (max-width: 850px) {
  .apply_section .bottom .mic_menu ul li {
    width: 50%;
  }
}

.apply_section .bottom .mic_menu ul li button {
  position: relative;
  width: 100%;
  height: 60px;
  line-height: 60px;
  display: block;
  text-align: center;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 20px;
  background-color: #FFF;
}

@media screen and (max-width: 850px) {
  .apply_section .bottom .mic_menu ul li button {
    height: 45px;
    line-height: 45px;
    font-size: 18px;
  }
}

@media screen and (max-width: 600px) {
  .apply_section .bottom .mic_menu ul li button {
    font-size: 16px;
  }
}

@media screen and (max-width: 450px) {
  .apply_section .bottom .mic_menu ul li button {
    font-size: 14px;
  }
}

.apply_section .bottom .mic_menu ul li button.active {
  color: #3266f5;
}

.apply_section .bottom .mic_menu ul li button.active::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #3266f5;
}

@media screen and (min-width: 850px) {
  .apply_section .bottom .mic_menu ul li button:hover {
    color: #3266f5;
  }
}



.apply_section .bottom .content_wrap .mic_content {
  /* min-height: 1000px; */
  width: 100%;
  background-color: #FFF;
}
.apply_section .bottom .content_wrap .mic_content>.content{
    display: flex;
    width: 100%;
}
.apply_section .bottom .content_wrap .mic_content>.content .title_left{
    width: 25%;
    min-width: 200px;
}
.apply_section .bottom .content_wrap .mic_content>.content .title_left h5 {
    font-size: 35px;
    line-height: 1.2;
}
.apply_section .bottom .content_wrap .mic_content>.content .content_right{
    width: 70%;
    margin-left: 5%;
}

.apply_section .bottom .content_wrap .mic_content>.content .content_right .txt img{
    width: 100% !important;
}


.apply_section .bottom .content_wrap .mic_content>.content .content_right .txt.hide{
    position: relative;
    overflow: hidden;
    height: 600px;
}

.apply_section .bottom .content_wrap .mic_content>.content .content_right .txt.hide p, .apply_section .bottom .content_wrap .mic_content>.content .content_right .txt p {
	font-family: 'NanumBarunGothic', sans-serif !important;
	line-height: 1.5 !important;
}


.apply_section .bottom .content_wrap .mic_content>.content .content_right .txt.hide:after{
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40%;
    background :  linear-gradient(to top, #fff ,rgba(255, 255, 255, 0.3));
    content: '';
}

.apply_section .bottom .content_wrap .mic_content>.content .content_right .more{
    display: none;
    color: #3266f5;
    font-size: 18px;
    font-weight: 700;
    margin-top: 50px;
}
.apply_section .bottom .content_wrap .mic_content>.content .content_right .more:after{
    display: inline-block;
    content: '+더보기';
}
.apply_section .bottom .content_wrap .mic_content>.content .content_right .more.fold:after{
    display: inline-block;
    content: '-접기';
}

@media screen and (max-width: 850px) {
    .apply_section .bottom .content_wrap .mic_content>.content .title_left{
        min-width: unset;
    }
    .apply_section .bottom .content_wrap .mic_content>.content .title_left h5{
        font-size: 30px;
    }
}


@media screen and (max-width: 840px) {
	.apply_section .bottom .content_wrap .mic_content>.content .content_right .txt img {
		width: 100% !important;
	}
}



@media screen and (max-width: 600px) {
    .apply_section .bottom .content_wrap .mic_content>.content{
        flex-direction: column;
    }
    .apply_section .bottom .content_wrap .mic_content>.content .title_left{
        width: 100%;
        margin-bottom: 20px;
    }
    .apply_section .bottom .content_wrap .mic_content>.content .title_left h5 {
        margin-left: unset;
        font-size: 25px;
    }
    .apply_section .bottom .content_wrap .mic_content>.content .title_left h5 br{display: none;}
    .apply_section .bottom .content_wrap .mic_content>.content .content_right{
        width: 100%;
        margin-left: unset;
    }
}

@media screen and (max-width: 450px) {
    .apply_section .bottom .content_wrap .mic_content>.content .title_left h5 {
        font-size: 20px;
    }
    .apply_section .bottom .content_wrap .mic_content>.content .content_right .more{
        font-size: 15px;
    }
}


/* 
.apply_section .bottom .content_wrap .mic_content.mic_content1 {
  background-color: rgba(255, 0, 0, 0.1);
}

.apply_section .bottom .content_wrap .mic_content.mic_content2 {
  background-color: rgba(255, 165, 0, 0.1);
  min-height: 600px;
}

.apply_section .bottom .content_wrap .mic_content.mic_content3 {
  background-color: rgba(0, 128, 0, 0.1);
}

.apply_section .bottom .content_wrap .mic_content.mic_content4 {
  background-color: rgba(0, 0, 255, 0.1);
} */


.apply_section .bottom .content_wrap .mic_content .mic_content_tit {
  text-align: center;
  font-size: 25px;
  margin-bottom: 40px;
  line-height: 130%;
}

@media screen and (max-width: 850px) {
  .apply_section .bottom .content_wrap .mic_content .mic_content_tit {
    font-size: 23px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 600px) {
  .apply_section .bottom .content_wrap .mic_content .mic_content_tit {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 450px) {
  .apply_section .bottom .content_wrap .mic_content .mic_content_tit {
    font-size: 18px;
    margin-bottom: 15px;
  }
}



/* 첫 리뷰 작성 요청 */
.apply_section .bottom .content_wrap .mic_content2 .comment{
    display: none;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin: 100px 0;
}

@media screen and (max-width: 450px) {
    .apply_section .bottom .content_wrap .mic_content2 .comment{
      font-size: 15px;
      margin: 60px 0;
    }
  }



.apply_section .bottom .content_wrap .mic_content .review_list {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: 1px solid #e2e2e2;
}

.apply_section .bottom .content_wrap .mic_content .review_list > li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0;
  border-bottom: 1px solid #e2e2e2;
}

@media screen and (max-width: 600px) {
  .apply_section .bottom .content_wrap .mic_content .review_list > li {
    padding: 30px 0;
  }
}

@media screen and (max-width: 450px) {
  .apply_section .bottom .content_wrap .mic_content .review_list > li {
    padding: 20px 0;
  }
}

.apply_section .bottom .content_wrap .mic_content .review_list > li .review_profile {
  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: 30px;
}

@media screen and (max-width: 600px) {
  .apply_section .bottom .content_wrap .mic_content .review_list > li .review_profile {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 450px) {
  .apply_section .bottom .content_wrap .mic_content .review_list > li .review_profile {
    margin-bottom: 15px;
  }
}

.apply_section .bottom .content_wrap .mic_content .review_list > li .review_profile .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.apply_section .bottom .content_wrap .mic_content .review_list > li .review_profile .left .rv_profile_img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  overflow: hidden;
}

@media screen and (max-width: 600px) {
  .apply_section .bottom .content_wrap .mic_content .review_list > li .review_profile .left .rv_profile_img {
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width: 450px) {
  .apply_section .bottom .content_wrap .mic_content .review_list > li .review_profile .left .rv_profile_img {
    width: 40px;
    height: 40px;
  }
}

.apply_section .bottom .content_wrap .mic_content .review_list > li .review_profile .left .rv_profile_img .lis_img {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.apply_section .bottom .content_wrap .mic_content .review_list > li .review_profile .left .rv_profile_right {
  margin-left: 15px;
}

@media screen and (max-width: 600px) {
  .apply_section .bottom .content_wrap .mic_content .review_list > li .review_profile .left .rv_profile_right {
    margin-left: 10px;
  }
}

.apply_section .bottom .content_wrap .mic_content .review_list > li .review_profile .left .rv_profile_right .rv_profile_name {
  font-size: 18px;
  margin-bottom: 7px;
}

@media screen and (max-width: 600px) {
  .apply_section .bottom .content_wrap .mic_content .review_list > li .review_profile .left .rv_profile_right .rv_profile_name {
    font-size: 16px;
  }
}

.apply_section .bottom .content_wrap .mic_content .review_list > li .review_profile .left .rv_profile_right .stars li {
  float: left;
}

.apply_section .bottom .content_wrap .mic_content .review_list > li .review_profile .left .rv_profile_right .stars li:not(:nth-of-type(1)) {
  margin-left: 3px;
}

@media screen and (max-width: 600px) {
  .apply_section .bottom .content_wrap .mic_content .review_list > li .review_profile .left .rv_profile_right .stars li:not(:nth-of-type(1)) {
    margin-left: 2px;
  }
}

.apply_section .bottom .content_wrap .mic_content .review_list > li .review_profile .left .rv_profile_right .stars li span {
  display: block;
  width: 15px;
  height: 15px;
}

@media screen and (max-width: 600px) {
  .apply_section .bottom .content_wrap .mic_content .review_list > li .review_profile .left .rv_profile_right .stars li span {
    width: 13px;
    height: 13px;
  }
}

.apply_section .bottom .content_wrap .mic_content .review_list > li .review_profile .left .rv_profile_right .stars li span svg {
  display: block;
  max-width: 100%;
}

.apply_section .bottom .content_wrap .mic_content .review_list > li .review_profile .left .rv_profile_right .stars li span svg path {
  fill: #ff9600;
}

.apply_section .bottom .content_wrap .mic_content .review_list > li .review_profile .right .rv_date {
  font-size: 14px;
}

@media screen and (max-width: 600px) {
  .apply_section .bottom .content_wrap .mic_content .review_list > li .review_profile .right .rv_date {
    font-size: 13px;
  }
}

.apply_section .bottom .content_wrap .mic_content .review_list > li .review_content.active p {
  -webkit-line-clamp: 3;
}

.apply_section .bottom .content_wrap .mic_content .review_list > li .review_content p {
  line-height: 150%;
  margin-bottom: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  text-align: left;
  word-break: break-all;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 600px) {
  .apply_section .bottom .content_wrap .mic_content .review_list > li .review_content p {
    font-size: 15px;
    margin-bottom: 10px;
  }
}

.apply_section .bottom .content_wrap .mic_content .review_list > li .review_content .review_more_btn {
  position: relative;
  display: block;
  font-size: 18px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

@media screen and (max-width: 600px) {
  .apply_section .bottom .content_wrap .mic_content .review_list > li .review_content .review_more_btn {
    font-size: 16px;
  }
}

@media screen and (min-width: 850px) {
  .apply_section .bottom .content_wrap .mic_content .review_list > li .review_content .review_more_btn:hover {
    color: #3266f5;
  }
  .apply_section .bottom .content_wrap .mic_content .review_list > li .review_content .review_more_btn:hover::before {
    background-color: #3266f5;
  }
}

.apply_section .bottom .content_wrap .mic_content .review_list > li .review_content .review_more_btn::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #1c1c1c;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.calender_box {margin-top: 30px;}
/* ---------------마이크룸 view (신청하기 이전페이지) end--------------- */
/* 

*/
/* ---------------마이크룸 신청하기--------------- */
.request_section {
  background-color: #FFF;
  overflow: hidden;
  padding-top: 160px;
}

@media screen and (max-width: 850px) {
  .request_section {
    padding-top: 110px;
  }
}

@media screen and (max-width: 600px) {
  .request_section {
    padding-top: 80px;
  }
}

.request_section .titlebox {
  margin-bottom: 60px;
}

@media screen and (max-width: 600px) {
  .request_section .titlebox {
    margin-bottom: 30px;
  }
}

.request_section .titlebox .r_tit {
  font-size: 30px;
  text-align: center;
  margin-bottom: 10px;
}

@media screen and (max-width: 600px) {
  .request_section .titlebox .r_tit {
    font-size: 25px;
  }
}

.request_section .titlebox .r_desc {
  display: block;
  text-align: center;
  font-size: 13px;
}

@media screen and (max-width: 600px) {
  .request_section .titlebox .r_desc {
    font-size: 12px;
  }
}

@media screen and (min-width: 850px) {
  .request_section .request_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;
  }
}

.request_section .request_wrap .left {
  width: 38.6%;
  padding: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #BBB;
  border-radius: 10px;
}

@media screen and (max-width: 1100px) {
  .request_section .request_wrap .left {
    padding: 30px;
  }
}

@media screen and (max-width: 850px) {
  .request_section .request_wrap .left {
    width: 100%;
  }
}

@media screen and (max-width: 450px) {
  .request_section .request_wrap .left {
    padding: 20px;
  }
}

.request_section .request_wrap .left .inner .pass_list {
  max-height: 270px;
  overflow-y: auto;
}

.request_section .request_wrap .left .inner .pass_list li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 0;
  border-bottom: 1px dashed #a0a0a0;
}

@media screen and (max-width: 600px) {
  .request_section .request_wrap .left .inner .pass_list li {
    padding: 15px 0;
  }
}

.request_section .request_wrap .left .inner .pass_list li:nth-of-type(1) {
  padding-top: 0;
}

.request_section .request_wrap .left .inner .pass_list li .pass_box .pass_tit {
  font-size: 18px;
  line-height: 130%;
  margin-bottom: 10px;
}

@media screen and (max-width: 600px) {
  .request_section .request_wrap .left .inner .pass_list li .pass_box .pass_tit {
    font-size: 16px;
    margin-bottom: 7px;
  }
}

.request_section .request_wrap .left .inner .pass_list li .pass_box .pass_tit .pass_name {
  font-size: 25px;
}

@media screen and (max-width: 600px) {
  .request_section .request_wrap .left .inner .pass_list li .pass_box .pass_tit .pass_name {
    font-size: 20px;
  }
}

.request_section .request_wrap .left .inner .pass_list li .pass_box .pass_tit .check {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #3266f5;
  border-radius: 100%;
}

@media screen and (max-width: 600px) {
  .request_section .request_wrap .left .inner .pass_list li .pass_box .pass_tit .check {
    width: 14px;
    height: 14px;
  }
}

.request_section .request_wrap .left .inner .pass_list li .pass_box .pass_tit .check::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 10px;
  height: 10px;
  background-color: #3266f5;
  border-radius: 100%;
}

@media screen and (max-width: 600px) {
  .request_section .request_wrap .left .inner .pass_list li .pass_box .pass_tit .check::before {
    width: 8px;
    height: 8px;
  }
}

.request_section .request_wrap .left .inner .pass_list li .pass_box .pass_remain {
  margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
  .request_section .request_wrap .left .inner .pass_list li .pass_box .pass_remain {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.request_section .request_wrap .left .inner .pass_list li .pass_box .pass_remain .remain {
  font-size: 18px;
}

@media screen and (max-width: 600px) {
  .request_section .request_wrap .left .inner .pass_list li .pass_box .pass_remain .remain {
    font-size: 16px;
  }
}

.request_section .request_wrap .left .inner .pass_list li .pass_box .pass_date {
  display: block;
  line-height: 130%;
}

@media screen and (max-width: 600px) {
  .request_section .request_wrap .left .inner .pass_list li .pass_box .pass_date {
    font-size: 14px;
  }
}

.request_section .request_wrap .left .inner .pass_list li .pass_box .coupon_name {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 7px;
}

@media screen and (max-width: 600px) {
  .request_section .request_wrap .left .inner .pass_list li .pass_box .coupon_name {
    margin-bottom: 5px;
  }
}

.request_section .request_wrap .left .inner .pass_list li .pass_box .coupon_name, .request_section .request_wrap .left .inner .pass_list li .pass_box .coupon_date {
  display: block;
  font-size: 14px;
  line-height: 130%;
}

@media screen and (max-width: 600px) {
  .request_section .request_wrap .left .inner .pass_list li .pass_box .coupon_name, .request_section .request_wrap .left .inner .pass_list li .pass_box .coupon_date {
    font-size: 13px;
  }
}

.request_section .request_wrap .left .inner .left_desc {
  margin-top: 90px;
  text-align: center;
  font-size: 14px;
  line-height: 150%;
  color: #888;
}

@media screen and (max-width: 600px) {
  .request_section .request_wrap .left .inner .left_desc {
    font-size: 13px;
    margin-top: 50px;
  }
}

.request_section .request_wrap .right {
  width: 58.4%;
}

@media screen and (max-width: 850px) {
  .request_section .request_wrap .right {
    width: 100%;
    margin-top: 30px;
  }
}

@media screen and (max-width: 600px) {
  .request_section .request_wrap .right {
    margin-top: 25px;
  }
}

.request_section .request_wrap .right .textbox .send_tit {
  text-align: center;
  margin-bottom: 10px;
  font-size: 23px;
}

@media screen and (max-width: 600px) {
  .request_section .request_wrap .right .textbox .send_tit {
    font-size: 20px;
  }
}

.request_section .request_wrap .right .textbox .send_desc {
  font-size: 14px;
  color: #888;
  margin-bottom: 20px;
  text-align: center;
  line-height: 140%;
}

@media screen and (max-width: 600px) {
  .request_section .request_wrap .right .textbox .send_desc {
    font-size: 13px;
    margin-bottom: 15px;
  }
}

.request_section .request_wrap .right .inner {
  width: 100%;
  height: 320px;
  padding: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #BBB;
  border-radius: 10px;
}

@media screen and (max-width: 1100px) {
  .request_section .request_wrap .right .inner {
    padding: 30px;
  }
}

@media screen and (max-width: 450px) {
  .request_section .request_wrap .right .inner {
    padding: 20px;
  }
}

.request_section .request_wrap .right .inner .req_textarea {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 16px;
  line-height: 130%;
}

@media screen and (max-width: 600px) {
  .request_section .request_wrap .right .inner .req_textarea {
    font-size: 14px;
  }
}

.request_section .request_wrap .right .req_btns {
  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;
  margin-top: 15px;
}

.request_section .request_wrap .right .req_btns .cancel_btn {
  display: block;
  width: 150px;
  background-color: #1c1c1c;
  text-align: center;
  color: #FFF;
  border-radius: 10px;
  margin-left: 7px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

@media screen and (min-width: 850px) {
  .request_section .request_wrap .right .req_btns .cancel_btn:hover {
    background-color: #464646;
  }
}

.request_section .request_wrap .right .req_btns .request_btn,
.request_section .request_wrap .right .req_btns .cancel_btn {
  height: 50px;
  line-height: 50px;
  font-size: 20px;
}

@media screen and (max-width: 600px) {
  .request_section .request_wrap .right .req_btns .request_btn,
  .request_section .request_wrap .right .req_btns .cancel_btn {
    height: 45px;
    line-height: 45px;
    font-size: 18px;
  }
}

@media screen and (max-width: 450px) {
  .request_section .request_wrap .right .req_btns .request_btn,
  .request_section .request_wrap .right .req_btns .cancel_btn {
    width: 130px;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
  }
}

/* ---------------마이크룸 신청하기 end--------------- */
/* 

*/
/* ---------------검색 페이지 타이틀--------------- */
.search_title {
  text-align: center;
  font-size: 25px;
  font-weight: 500;
  line-height: 130%;
}

@media screen and (max-width: 850px) {
  .search_title {
    font-size: 23px;
  }
}

@media screen and (max-width: 600px) {
  .search_title {
    font-size: 20px;
  }
}

@media screen and (max-width: 450px) {
  .search_title {
    font-size: 18px;
  }
}

.search_title .keyword_text {
  font-weight: 700;
}

.search_title .keyword_text .keyword {
  position: relative;
  display: inline-block;
}

.search_title .keyword_text .keyword::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #1865f5;
}

.search_title .search_count {
  font-weight: 700;
}

/* ---------------검색 페이지 타이틀 end--------------- */
/* 

*/
/* ---------------terms 관련 팝업--------------- */
.terms_popup {
  display: none;
  z-index: 95;
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 95%;
  max-width: 500px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 30px;
  background-color: #FFF;
}

.terms_popup .inner {
  width: 100%;
}

.terms_popup .inner .terms_popup_title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
}

.terms_popup .inner .textbox {
  height: 350px;
  overflow: auto;
  margin: 30px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #e4e5e6;
  border-radius: 5px;
  padding: 10px;
}

.terms_popup .inner .textbox * {
  color: #999;
}

@media screen and (max-width: 500px) {
  .terms_popup .inner .textbox {
    height: 300px;
  }
}

@media screen and (max-width: 400px) {
  .terms_popup .inner .textbox {
    height: 250px;
  }
}

@media screen and (max-width: 350px) {
  .terms_popup .inner .textbox {
    height: 200px;
  }
}

.terms_popup .inner .textbox .content > ol > li {
  margin-bottom: 20px;
}

.terms_popup .inner .textbox .content > ol > li > h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.terms_popup .inner .textbox .content > ol > li > h3 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 130%;
}

.terms_popup .inner .textbox .content > ol > li .h3_desc {
  line-height: 130%;
}

.terms_popup .inner .textbox .content > ol > li > ul > li h4 {
  font-size: 15px;
  margin: 5px 0;
  line-height: 130%;
}

.terms_popup .inner .textbox .content > ol > li > ul > li > .descbox h5 {
  font-size: 14px;
  line-height: 130%;
  margin: 5px 0;
}

.terms_popup .inner .textbox .content > ol > li > ul > li > .descbox .h5_desc {
  font-size: 14px;
  line-height: 130%;
  margin: 5px 0;
}

.terms_popup .inner .textbox .content > ol > li > ul > li > .descbox .h5_desc small {
  display: block;
  font-size: 13px;
  line-height: 130%;
  margin: 3px 0;
}

.terms_popup .inner .textbox .content .terms_table {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: 1px solid #777;
}

.terms_popup .inner .textbox .content .terms_table thead, .terms_popup .inner .textbox .content .terms_table tbody {
  width: 100%;
}

.terms_popup .inner .textbox .content .terms_table thead tr, .terms_popup .inner .textbox .content .terms_table tbody tr {
  width: 100%;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-right: 1px solid #777;
}

.terms_popup .inner .textbox .content .terms_table thead tr th, .terms_popup .inner .textbox .content .terms_table thead tr td, .terms_popup .inner .textbox .content .terms_table tbody tr th, .terms_popup .inner .textbox .content .terms_table tbody tr td {
  width: 25%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-left: 1px solid #777;
  border-bottom: 1px solid #777;
  vertical-align: middle;
  padding: 7px;
  font-size: 14px;
  line-height: 130%;
}

.terms_popup .inner .textbox .content .terms_table.terms_table3 thead tr th, .terms_popup .inner .textbox .content .terms_table.terms_table3 thead tr td, .terms_popup .inner .textbox .content .terms_table.terms_table3 tbody tr th, .terms_popup .inner .textbox .content .terms_table.terms_table3 tbody tr td, .terms_popup .inner .textbox .content .terms_table.terms_table4 thead tr th, .terms_popup .inner .textbox .content .terms_table.terms_table4 thead tr td, .terms_popup .inner .textbox .content .terms_table.terms_table4 tbody tr th, .terms_popup .inner .textbox .content .terms_table.terms_table4 tbody tr td {
  width: 20%;
}

.terms_popup .inner ul.buttons {
  width: 100%;
  padding-top: 0;
}

.terms_popup .inner ul.buttons li {
  width: 100%;
}

.terms_popup .inner ul.buttons li:nth-last-of-type(1) {
  margin-top: 15px;
}

.terms_popup .inner ul.buttons li button {
  display: block;
  width: 100%;
  font-weight: 600;
  height: 40px;
  line-height: 40px;
  border-radius: 3px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.terms_popup .inner ul.buttons li button.terms_check_btn {
  color: #FFF;
  background-color: #1865f5;
}

@media screen and (min-width: 850px) {
  .terms_popup .inner ul.buttons li button.terms_check_btn:hover {
    background-color: #0d53d4;
  }
}

.terms_popup .inner ul.buttons li button.terms_close_btn {
  background-color: #ededed;
}

@media screen and (min-width: 850px) {
  .terms_popup .inner ul.buttons li button.terms_close_btn:hover {
    background-color: #d7d7d7;
  }
}

/* ---------------terms 관련 팝업 end--------------- */
/* 

*/

/* 캘린더 */
.apply_calendar { margin-top: 30px; }


.pager { display: flex;  justify-content: center; }
.pager > li { width:calc(100% - 80px);height:46px; line-height:46px; border-top: 1px solid #e0e0e0; text-align:center; }
.pager > li.prev, .pager > li.next { width:40px; }
.pager > li.prev { border-left: 1px solid #e0e0e0 ;}
.pager > li.next { border-right: 1px solid #e0e0e0; }
.calendar > table { width: 100%; margin: 0 10px 0 0; font-size:12px; border-top: 1px solid #e0e0e0; border-right: 1px solid #e0e0e0;table-layout: fixed; }
.calendar > table th { height: 22px; line-height: 22px; padding: 0; border-left: 1px solid #e0e0e0; border-bottom: 1px solid #e0e0e0; color: #999; }
.calendar > table td { width:40px; height:39px; text-align: center; border-left: 1px solid #e0e0e0; border-bottom: 1px solid #e0e0e0; }
.calendar > table td.imposs {  }
.calendar > table td.imposs .day{ height:38px; line-height:38px; color:#ccc; padding-right:0px; text-decoration:line-through; }
.calendar > table td.live { position: relative; background:#ffd014; overflow: hidden; }
.calendar > table td.live > a { display: flex; justify-content:center; align-items:center; width: 100%; height: 100%;  position: absolute; top: 0; left: 0; color: #111; font-weight: bold; }
.calendar > table td.live > a:hover, .calendar > table td.live > a.active { background:#1865f5; color:#fff; font-weight:bold; }
.calendar > table td.end { position: relative; background-color:#ccc;  overflow: hidden; }
.calendar > table td.end .day{ height:38px; line-height:38px; color:#111; padding-right:0px; }
.calendar > table td.expected { position: relative; background-color:#f6f6f6; overflow: hidden; }
.calendar > table td.expected .day{ height:38px; line-height:38px; color:#555; padding-right:0px;}
.calendar > table tfoot td { height:34px; }

.calendar .box-sun {color:#ff252c}
.calendar .box-sat {color:#38be1e}
.calendar .txday {font-size:12px;font-weight:bold;color:#111l}

.calendar .exp > span { display: inline-flex; padding: 12px 5px; text-align:center; }
.calendar .exp > span > span.ico { display: inline-block; width: 11px; height: 11px; margin-right:5px; }
.calendar .exp > span > span.txt { font-size: 10px; font-weight: normal; color: #999; }
.calendar .exp > span > span.color1 { background-color: #fdca31; }
.calendar .exp > span > span.color2 { background-color: #f6f6f6; }
.calendar .exp > span > span.color3 { background-color: #ccc; }
.calendar .exp > span > span.color4 { position: relative; background-color: #fff; border:1px solid #ccc; }
.calendar .exp > span > span.color4::after { content: ""; position: absolute; left: 0; width: 100%; height: 5px; border-bottom: 1px solid #ccc; }
.apply_calendar tbody > tr > td:nth-of-type(2) { position: relative; }
.apply_calendar #wrap-time > div { position: relative; top: 1px;  height: 307px; margin: 0; border: 1px solid #e0e0e0; margin-left:-1px; font-size:12px; }
.apply_calendar #wrap-time > div > strong { display:block; padding:20px 0 8px; color:#111; font-weight:bold; text-align:center; }
.apply_calendar #wrap-time > div > p { display:block; padding-bottom:10px; line-height:15px; color:#999; text-align:center; border-bottom:1px solid #e0e0e0;  }
.apply_calendar #wrap-time > div > ul { margin: 10px 20px; color:#999; font-weight: bold; }
.apply_calendar #wrap-time > div > ul > li { position: relative; padding-top: 5px; }
.apply_calendar #wrap-time > div > ul > li > input { position: absolute; margin-top:-1px; }
.apply_calendar #wrap-time > div > ul > li > label { margin-left: 20px; overflow:hidden; }
.apply_calendar #wrap-time > div > ul > li > label b { color:#111; }
.apply_calendar #wrap-time > div > ul > li > label b.disabled { color: #999; /*text-decoration-line: line-through;*/ }
.apply_calendar #wrap-time > div > ul > li > label .state { margin-left:5px; padding:2px 4px; background:#ececec; color:#555; font-size:10px; }
.apply_calendar #wrap-time > div > ul > li > label .price { float: right; }
.apply_calendar #wrap-time > div > ul > li > label .price num { color: #1865f5; }
.apply_calendar #wrap-time > div > .timeli.live { position: absolute; bottom: 0; width:100%; height:30px; line-height:30px; background:#1865f5; color:#fff; font-weight:bold; text-align:center; }



/* 캘린더 end */
.textbox .state { display: inline; position: relative; top:-2px; padding: 4px 10px; font-size: 13px; color: #fff; }
.textbox .state.end { background: #000;}
.textbox .state.open { background: #007e7f;} 


.titbox .state { display: inline; padding: 4px 15px; font-size: 14px; color: #fff; vertical-align: middle; }
.titbox .state.on { background: #ff8a00;}
.titbox .state.off { background: #007e7f;}


@media(max-width:1100px){
	.textbox .state { padding: 4px 7px; font-size: 11px; }
}


@media(min-width:992px){
	.apply_calendar { max-width: 921px;}
    .apply_calendar .cal_td { width: calc(100% - 420px);}
	.apply_calendar .time_td { width: 420px;}
	.pager > li.next { border-right: 0;}
}