/* Basic Search */
.basic-search {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}

.basic-search .total {
  font-size: 1.8rem;
}

.basic-search .search {
  position: relative;
  max-width: 590px;
  width: 100%;
  height: 60px;
}

.basic-search form {
  display: block;
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  border:1px solid #959595;
}

.basic-search .search-input {
  position: relative;
  width: 100%;
  height: 100%;
  padding-right:60px;
}

.basic-search .search-input input {
  display: block;
  width:100%;
  height: 100%;
  padding: 0px 24px;
  font-size:2rem;
}

.basic-search .search-input button {
  position: absolute;
  top:0;
  right:0;
  width: 60px;
  height: 100%;
  background:#191919 url('/en/asset/img/icon/search.png') no-repeat center ;
}

@media screen and (max-width:1200px) {
  .basic-search .total {
    font-size: 1.6rem;
  }

  .basic-search .search-input input {
    font-size: 1.8rem;
  }
}
@media screen and (max-width:1024px) {
  .basic-search {
    margin-bottom: 20px;
  }

  .basic-search .total {
    font-size: 1.5rem;
  }

  .basic-search .search {
    max-width: 480px;
    height: 48px;
  }

  .basic-search .search-input {
    padding-right: 48px;
  }

  .basic-search .search-input input {
    padding: 0px 18px;
    font-size: 1.7rem;
  }

  .basic-search .search-input button {
    width: 48px;
  }
}
@media screen and (max-width:768px) {
  .basic-search .total {
    font-size: 1.4rem;
  }

  .basic-search .search {
    max-width: 400px;
    height: 40px;
  }

  .basic-search .search-input {
    padding-right: 40px;
  }

  .basic-search .search-input input {
    font-size: 1.6rem;
  }

  .basic-search .search-input button {
    width: 40px;
    background-size: auto 18px;
  }
}
@media screen and (max-width:576px) {
  .basic-search {
    flex-wrap: wrap;
    gap:12px;
    margin-bottom: 16px;
  }

  .basic-search .total {
    order: 2;
    font-size: 1.2rem;
  }
  
  .basic-search .search {
    max-width: 100%;
    height: 36px;
    order: 1;
  }  

  .basic-search .search-input {
    padding-right: 36px;
  }

  .basic-search .search-input input {
    padding: 0px 12px;
    font-size: 1.3rem;
  }

  .basic-search .search-input button {
    width: 36px;
    background-size: auto 16px;
  }
}


/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.pagination a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width:38px;
  height:38px;
	margin:0px 4px;
	border-radius:50%;
  background-repeat:no-repeat;
  background-position:center;
  background-color:transparent;
  text-align: center;
  font-size:2rem;
  color:#737373;
  transition:all ease-out .15s;
}

.pagination a:not(.current) {
  cursor:pointer;
}

.pagination a.current {
	color:#dc1e1e;
	font-weight:700;
}

.pagination a.pagination-prev {
  background-image: url('/en/asset/img/common/page_prev.png');
}

.pagination a.pagination-next {
  background-image: url('/en/asset/img/common/page_next.png');
}

.pagination a.pagination-backward {
  background-image: url('/en/asset/img/common/page_backward.png');
}

.pagination a.pagination-forward {
  background-image: url('/en/asset/img/common/page_forward.png');
}

@media screen and (max-width:1200px) {
  .pagination a {
    font-size: 1.8rem;
  }
}
@media screen and (max-width:1024px) {
  .pagination {
    margin-top: 60px;
  }

  .pagination a {
    width: 34px;
    height: 34px;
    background-size: auto 14px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width:768px) {
  .pagination {
    margin-top: 40px;
  }
  
  .pagination a {
    width: 30px;
    height: 30px;
    margin: 0px 3px;
    background-size: auto 12px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width:576px) {
  .pagination {
    margin-top: 30px;
  }

  .pagination a {
    width: 26px;
    height: 26px;
    background-size: auto 10px;
    font-size: 1.3rem;
  }
}


/* Board Story */
.bbs-story .list {
  display: flex;
  flex-wrap: wrap;
  margin: -40px -10px;
}

.bbs-story .list li {
  flex:1 1 33.33%;
  max-width: 33.33%;
  padding: 40px 10px;
}

.bbs-story .list li.list-message {
  flex:1 1 100%;
  max-width:100%;
  padding: 200px 20px;
}

.bbs-story .list .thumb {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(395/593*100%);
  overflow: hidden;
}

.bbs-story .list .thumb img {
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  transition: var(--transition-custom);
}

.bbs-story .list .category {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 180px;
  height: 40px;
  background-color: #191919;
  border-top-right-radius: 10px;
  font-size: 1.8rem;
  color:#fff;
}

.bbs-story .list .subject {
  display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1; 
	-webkit-box-orient: vertical;
	overflow: hidden;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.bbs-story .list .data {
  font-size: 1.8rem;
  color:#737373;
}

@media screen and (min-width:1201px){
  .bbs-story .list li:hover .thumb img {
    transform: scale(1.08);
  }
}
@media screen and (max-width:1366px) {
  .bbs-story .list .subject {
    font-size: 2.6rem;
  }
}
@media screen and (max-width:1200px) {
  .bbs-story .list .category {
    font-size: 1.6rem;
  }

  .bbs-story .list .subject {
    font-size: 2.4rem;
  }

  .bbs-story .list .data {
    font-size: 1.6rem;
  }
}
@media screen and (max-width:1024px) {
  .bbs-story .list {
    margin: -30px -6px;
  }

  .bbs-story .list li {
    padding: 30px 6px;
  }

  .bbs-story .list .category {
    width: 160px;
    height: 32px;
    font-size: 1.5rem;
  }

  .bbs-story .list .subject {
    margin-bottom: 20px;
    font-size: 2.2rem;
  }

  .bbs-story .list .data {
    font-size: 1.5rem;
  }
}
@media screen and (max-width:768px) {
  .bbs-story .list li {
    flex:1 1 50%;
    max-width: 50%;
  }

  .bbs-story .list .category {
    width: 140px;
    height: 28px;
    font-size: 1.4rem;
  }

  .bbs-story .list .subject {
    font-size: 2rem;
  }

  .bbs-story .list .data {
    font-size: 1.4rem;
  }
}
@media screen and (max-width:576px) {
  .bbs-story .list {
    margin: -20px -4px;
  }

  .bbs-story .list li {
    flex:1 1 100%;
    max-width: 100%;
    padding: 20px 4px;
  }

  .bbs-story .list .category {
    width: 120px;
    height: 24px;
    font-size: 1.2rem;
  }

  .bbs-story .list .subject {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }

  .bbs-story .list .data {
    font-size: 1.2rem;
  }
}


/* Board News */
.bbs-news .table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  border-top: 2px solid #959595;
  border-bottom: 2px solid #959595;
}

.bbs-news tr {
  border-bottom: 1px solid #d2d2d2;
}

.bbs-news tr.tr-notice {
  background-color: #f5f5f5;
}

.bbs-news tr.table-message .txt {
  padding: 200px 20px;
}

.bbs-news td {
  height: 70px;
  padding: 10px;
  font-size: 2rem;
}

.bbs-news td a {
  display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1; 
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media screen and (max-width:1200px) {
  .bbs-news td {
    font-size: 1.8rem;
  }
}
@media screen and (max-width:1024px) {
  .bbs-news td {
    height: 60px;
    padding: 6px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width:768px) {
  .bbs-news .table {
    display: block;
  }


  .bbs-news tbody {
    display: block;
  }

  .bbs-news tr {
    display: flex;
    flex-wrap: wrap;
    padding: 6px;
  }

  .bbs-news tr:last-child {
    border-bottom: 0px;
  }

  .bbs-news td {
    position: relative;
    height: auto;
    padding: 4px 8px;
    font-size: 1.6rem;
  }

  .bbs-news td.td-subject {
    width: 100%;
    order: 1;
  }

  .bbs-news td.td-no {
    order: 2;
  }

  .bbs-news td.td-no::after {
    content: "";
    display: block;
    position: absolute;
    top:50%;
    right:0;
    transform: translateY(-50%);
    width: 1px;
    height:12px;
    background-color:#999;
  }

  .bbs-news td.td-data {
    order: 3;
  }
}
@media screen and (max-width:576px) {
  .bbs-news .table {
    border-top-width: 1px;
    border-bottom-width: 1px;
  }

  .bbs-news tr {
    padding: 4px;
  }

  .bbs-news td {
    padding: 2px 6px;
    font-size: 1.3rem;
  }

  .bbs-news td.td-no::after {
    height: 10px;
  }
}


/* Board Gallery */
.bbs-gallery .list {
  border-top: 2px solid #959595;
}

.bbs-gallery .list li {
  padding: 50px 110px;
  border-bottom: 1px solid #d2d2d2;
}

.bbs-gallery .list .card {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bbs-gallery .list .cont {
  width: 380px;
}

.bbs-gallery .list .thumb {
  position: relative;
  width: 49.375%;
  height: 0;
  padding-top: calc(450/1600*100%);
  overflow: hidden;
}

.bbs-gallery .list .thumb.img-he-auto{
  padding-top: 0;
  max-width: 900px;
  width: calc(100% - 380px);
  height: auto;
}
.bbs-gallery .list .thumb.img-he-auto img{
  position: unset;
}

.bbs-gallery .list .thumb img {
  display: block;
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bbs-gallery .list .category {
  display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1; 
	-webkit-box-orient: vertical;
	overflow: hidden;
  font-size: 2rem;
  line-height: 1;
  color:#dc1e1e;
  margin-bottom: 10px;
}

.bbs-gallery .list .subject {
  display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1; 
	-webkit-box-orient: vertical;
	overflow: hidden;
  font-size: 3.6rem;
  font-weight: 700;
}

.bbs-gallery .list .subject::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin:30px 0px 40px;
  background-color:#a0a0a0 ;
}

.bbs-gallery .list .info dd {
  display: flex;
  font-size: 2rem;
}

.bbs-gallery .list .info dd:not(:last-child) {
  margin-bottom: 20px;
}

.bbs-gallery .list .info b {
  display: block;
  width: 130px;
}

.bbs-gallery .list .info span {
  display: block;
  width: calc(100% - 130px);
  display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1; 
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media screen and (max-width:1536px) {
  .bbs-gallery .list li {
    padding: 50px 60px;
  }

  .bbs-gallery .list .subject::after {
    margin: 20px 0px 30px;
  }
}
@media screen and (max-width:1366px) {
  .bbs-gallery .list li {
    padding: 40px 20px;
  }

  .bbs-gallery .list .info dd:not(:last-child) {
    margin-bottom: 16px;
  }
}
@media screen and (max-width:1200px) {
  .bbs-gallery .list li {
    padding: 40px 0px;
  }

  .bbs-gallery .list .category {
    font-size: 1.8rem;
  }

  .bbs-gallery .list .subject {
    font-size: 2.8rem;
  }

  .bbs-gallery .list .info dd {
    font-size: 1.8rem;
  }

  .bbs-gallery .list .thumb {
    padding-top: calc(450/1200*100%);
  }
}
@media screen and (max-width:1024px) {
  .bbs-gallery .list .cont {
    width: 320px;
  }

  .bbs-gallery .list .category {
    font-size: 1.7rem;
    margin-bottom: 6px;
  }

  .bbs-gallery .list .subject {
    font-size: 2.6rem;
  }

  .bbs-gallery .list .subject::after {
    margin: 20px 0px 24px;
  }

  .bbs-gallery .list .info dd {
    font-size: 1.7rem;
  }

  .bbs-gallery .list .info dd:not(:last-child) {
    margin-bottom: 10px;
  }

  .bbs-gallery .list .info b {
    width: 100px;
  }

  .bbs-gallery .list .info span {
    width: calc(100% - 100px);
  }
}
@media screen and (max-width:768px) {
  .bbs-gallery .list .card {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:20px;
  }

  .bbs-gallery .list .cont {
    order:2;
    width: 100%;
  }

  .bbs-gallery .list .thumb {
    order: 1;
    width: 100%;
    padding-top: 52.25%;
  }

  .bbs-gallery .list .thumb.img-he-auto{
    width: 100%;
  }
  .bbs-gallery .list .category {
    font-size: 1.6rem;
  }

  .bbs-gallery .list .subject {
    font-size: 2.4rem;
  }

  .bbs-gallery .list .subject::after {
    margin: 16px 0px 20px;
  }

  .bbs-gallery .list .info dd {
    font-size: 1.6rem;
  }
}
@media screen and (max-width:576px) {
  .bbs-gallery .list li {
    padding: 30px 0px;
  }

  .bbs-gallery .list .card {
    gap:12px;
  }

  .bbs-gallery .list .category {
    font-size: 1.3rem;
    margin-bottom: 4px;
  }

  .bbs-gallery .list .subject {
    font-size: 2rem;
  }

  .bbs-gallery .list .subject::after {
    margin:10px 0px 16px;
  }

  .bbs-gallery .list .info dd {
    font-size: 1.3rem;
  }
  
  .bbs-gallery .list .info dd:not(:last-child) {
    margin-bottom: 6px;
  }

  .bbs-gallery .list .info b {
    width: 80px;
  }

  .bbs-gallery .list .info span {
    width: calc(100% - 80px);
  }
}


/* FAQ */
.bbs-faq .list {
  border-top: 2px solid #959595; 
}

.bbs-faq .list li {
  border-bottom: 1px solid #d2d2d2;
}

.bbs-faq .list li.list-message {
  padding: 200px 20px;
}

.bbs-faq .list a {
  display: flex;
  align-items: center;
  gap:40px;
  padding: 30px 50px;
}

.bbs-faq .list em {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  color:#dc1e1e;
}

.bbs-faq .list span {
  display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1; 
	-webkit-box-orient: vertical;
	overflow: hidden;
  width: calc(100% - 70px);
  font-size: 2.4rem;
}


@media screen and (max-width:1200px) {
  .bbs-faq .list a {
    gap:20px;
  }

  .bbs-faq .list em {
    font-size: 2.4rem;
  }

  .bbs-faq .list span {
    width: calc(100% - 50px);
    font-size: 2rem;
  }
}
@media screen and (max-width:1024px) {
  .bbs-faq .list a {
    gap:12px;
    padding: 20px 36px;
  }

  .bbs-faq .list em {
    font-size: 2.3rem;
  }
  
  .bbs-faq .list span {
    width: calc(100% - 36px);
    font-size: 1.9rem;
  }
}
@media screen and (max-width:768px) {
  .bbs-faq .list a {
    padding: 20px;
  }

  .bbs-faq .list em {
    font-size: 2.2rem;
  }

  .bbs-faq .list span {
    font-size: 1.8rem;
  }
}
@media screen and (max-width:576px) {
  .bbs-faq .list a {
    gap:6px;
    padding: 12px;
  }

  .bbs-faq .list em {
    font-size: 1.4rem;
  }

  .bbs-faq .list span {
    width: calc(100% - 30px);
    font-size: 1.3rem;
  }
}



@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}


/* Board View */
.bbs-view .bbs-view-head {
  padding-bottom:50px;
  border-bottom: 2px solid #959595;
}

.bbs-view .bbs-view-head .category {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  padding: 0px 10px;
  margin-bottom: 20px;
  background-color: #191919;
  font-size: 1.6rem;
  color:#fff;
}

.bbs-view .bbs-view-head .subject {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.bbs-view .bbs-view-head .subject--faq {
  display: flex;
  gap:6px;
}

.bbs-view .bbs-view-head .subject--faq em {
  display: block;
}

.bbs-view .bbs-view-head .subject--faq span {
  width: calc(100% - 40px);
}

.bbs-view .bbs-view-head .data {
  font-size: 1.8rem;
  color:#a6a6a6;
}

.bbs-view .bbs-view-file {
  padding: 20px 0px;
  border-bottom: 1px solid #a0a0a0;
}

.bbs-view .bbs-view-file .file {
	display: flex;
	align-items: center;
	gap:10px;
}

.bbs-view .bbs-view-file .file a {
	width: calc(100% - 34px);
	font-size:1.8rem;
	color:#3b3b3b;
}

.bbs-view .bbs-view-area {
  padding: 50px 0px 100px;
  border-bottom: 1px solid #a0a0a0;
}

.bbs-view .bbs-view-nav {
  display: flex;
  justify-content: flex-end;
  gap:50px;
  padding-top: 30px;
}

.bbs-view .bbs-view-nav .btn {
  display: inline-flex;
  align-items: center;
  gap:10px;
}

.bbs-view .bbs-view-nav .btn.off {
  opacity: 0.6;
}

.bbs-view .bbs-view-nav .next {
  flex-direction: row-reverse;
}

.bbs-view .bbs-view-nav .btn i {
  display: inline-block;
  width: 27px;
  height: 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.bbs-view .bbs-view-nav .prev i {
  background-image: url('/en/asset/img/bbs/view_btn_prev.png');
}

.bbs-view .bbs-view-nav .next i {
  background-image: url('/en/asset/img/bbs/view_btn_next.png');
}

.bbs-view .bbs-view-btns {
  display: flex;
  justify-content: center;
  padding-top: 30px;
}

.bbs-view .bbs-view-btns a {
  display:inline-flex;
  justify-content: center;
  align-items: center; 
  width: 280px;
  height: 60px;
  background-color: #dc1e1e;
  font-size: 2rem;
  color:#fff;
}

@media screen and (max-width:1200px) {
  .bbs-view .bbs-view-head .category {
    font-size: 1.4rem;
  }

  .bbs-view .bbs-view-head .subject {
    font-size:2.4rem;
  }

  .bbs-view .bbs-view-head .data {
    font-size: 1.6rem;
  }

  .bbs-view .bbs-view-btns a {
    font-size: 1.8rem;
  }
}
@media screen and (max-width:1024px) {
  .bbs-view .bbs-view-head {
    padding-bottom: 36px;
  }

  .bbs-view .bbs-view-head .category {
    height: 26px;
    padding: 0px 6px;
    margin-bottom: 16px;
  }

  .bbs-view .bbs-view-head .subject {
    margin-bottom: 30px;
  }

  .bbs-view .bbs-view-area {
    padding: 36px 0px 80px;
  }

  .bbs-view .bbs-view-nav {
    gap:30px;
    padding-top: 20px;
  }

  .bbs-view .bbs-view-nav .btn i {
    width: 23px;
    height: 12px;
    background-size: auto 12px;
  }

  .bbs-view .bbs-view-btns {
    padding-top: 20px;
  }

  .bbs-view .bbs-view-btns a {
    width: 230px;
    height: 48px;
  }
}
@media screen and (max-width:768px) {
  .bbs-view .bbs-view-head {
    padding-bottom: 30px;
  }

  .bbs-view .bbs-view-head .category {
    height: 24px;
    font-size: 1.2rem;
  }

  .bbs-view .bbs-view-head .subject {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .bbs-view .bbs-view-head .data {
    font-size: 1.4rem;
  }

  .bbs-view .bbs-view-area {
    padding: 30px 0px 80px;
  }

  .bbs-view .bbs-view-nav {
    gap:24px;
  }

  .bbs-view .bbs-view-nav .btn {
    gap:6px;
  }

  .bbs-view .bbs-view-nav .btn i {
    width: 21px;
    height: 10px;
    background-size: auto 10px;
  }

  .bbs-view .bbs-view-btns a {
    width: 180px;
    height: 40px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width:576px) {
  .bbs-view .bbs-view-head {
    padding-bottom: 20px;
  }

  .bbs-view .bbs-view-head .category {
    height: 20px;
    padding: 0px 4px;
    margin-bottom: 10px;
    font-size: 1.1rem;
  }

  .bbs-view .bbs-view-head .subject {
    margin-bottom: 16px;
    font-size: 1.8rem;
  }

  .bbs-view .bbs-view-head .data {
    font-size: 1.2rem;
  }

  .bbs-view .bbs-view-area {
    padding: 20px 0px 60px;
  }

  .bbs-view .bbs-view-nav {
    padding-top: 16px;
    gap:18px;
  }

  .bbs-view .bbs-view-nav .btn {
    gap:4px;
  }

  .bbs-view .bbs-view-nav .btn i {
    width: 19px;
    height: 8px;
    background-size: auto 8px;
  }

  .bbs-view .bbs-view-btns {
    padding-top: 16px;
  }

  .bbs-view .bbs-view-btns a {
    width: 140px;
    height: 36px;
    font-size: 1.4rem;
  }

  .bbs-view .bbs-view-head .subject--faq {
    gap:4px;
  }

  .bbs-view .bbs-view-head .subject--faq span {
    width: calc(100% - 30px);
  }
}


/* Board Modal */
.board-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  padding: 20px;
  z-index: 9999;
  background-color: rgba(0,0,0,.3);
  visibility: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transition: all 0.6s cubic-bezier(0.55, 0, 0.1, 1);
	opacity: 0;
}

.board-modal.open {
  opacity: 1;
  visibility: visible;
}

.board-modal .modal-container {
  position: relative;
  max-width:1060px;
  width: 100%;
}

.board-modal .modal-close {
  display: block;
  position: absolute;
  top:0;
  right:-50px;
  width: 28px;
  height: 28px;
  background: url('/en/asset/img/icon/close01.png') no-repeat center / cover;
}

.board-modal .modal-content {
  position: relative;
  width: 100%;
}

.board-modal .modal-content .img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(604/1060*100%);
  overflow: hidden;
}

.board-modal .modal-content .img img {
  display: block;
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
}

.board-modal .modal-container.min-he-auto{
  max-width: 900px;

}
.board-modal .modal-container.min-he-auto .img{
  padding-top: 0;
  height: auto;
}

.board-modal .modal-container.min-he-auto .img img{
  position: unset;
}

@media screen and (max-width:1200px) {
  .board-modal .modal-close {
    top:-38px;
    right: 0;
  }
}
@media screen and (max-width:1024px) {
  .board-modal .modal-close {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width:768px) {
  .board-modal .modal-close {
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width:576px) {
  .board-modal .modal-close {
    top:-28px;
    width: 16px;
    height: 16px;
  }
}
