


/* searchBox */
.search-box {
    --height: 68px;
    --padding: 28px;
}

.search-box {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0 10px;
    z-index: 1;
}
.search-box .custom-select-wrapper {
    position: relative;
    z-index: 3;
    cursor: pointer;
    flex-basis: 25.7%;
}

.search-box .custom-select-wrapper + select {
    display:none;
    opacity: 0;
    visibility: hidden;
}

.search-box .custom-select-trigger {
    position: relative;
    z-index: 3;
    width: 100%; 
    height: var(--height);
    background: #fff;
    border: 2px solid #e1e1e1;
    border-radius: 999px;
    padding: 0 var(--padding);
    padding-right: calc((var(--padding) * 2) + 24px);
    color: #444;
    font-size: 18px;
    font-weight: 300;
    display: flex;
    align-items: center;    
}

.search-box .custom-select-trigger:after {
    content:'';
    position: absolute;
    display:block;
    width:24px;
    height:24px;
    right:28px;
    top:50%;
    transform: translateY(-50%);
    background: url("/img/common/chevron-down.png") no-repeat center center / contain; 
    z-index: 3;
    transition: transform 0.2s ease-out;
}

.search-box .custom-select-wrapper.open .custom-select-trigger:after {
    /* (핵심) 기존 Y축 중앙 정렬을 유지하면서 190도 회전 */
    transform: translateY(-50%) rotate(-180deg);
}

.search-box .custom-select-wrapper .custom-options {
    position: absolute;
    z-index: 2;
    top:34px;
    width: 100%;
    padding: 58px 28px 34px;
    background-color:#fff;
    border-bottom-left-radius: 34px;
    border-bottom-right-radius: 34px;
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    
    /* (중요) 0.3초 동안 부드럽게 전환 */
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-box .custom-select-wrapper .custom-options > li {
    font-size: 1.8rem;
    font-weight: 300;
    color:#444;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.search-box .custom-select-wrapper .custom-options > li:not(:last-child) {
    margin-bottom: 12px;
}

.search-box .custom-select-wrapper .custom-options > li:hover,
.search-box .custom-select-wrapper .custom-options > li.selected {
    color:#8DC63F;
}


.search-box .custom-select-wrapper.open .custom-options {
    opacity: 1;
    visibility: visible;
}

.search-box .input {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0 10px;
    position: relative; 
      flex-basis: 74.3%;
}

.search-box input {
    width: calc(100% - 78px); 
    height: var(--height);
    background: #fff;
    color: #444;
    font-size: 18px;
    font-weight: 300;
    border: 2px solid #e1e1e1;
    border-radius: 999px;
    padding: 0 var(--padding);
}

.search-box input:focus {outline:none;}

.search-box button {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border:0;
    box-shadow: none;
    padding:0;
    background-color:#54B9CB;
    transition: background-color 0.2s ease-in-out;
}

.search-box button:hover,
.search-box button:visited {
    background-color:#3960AD;
}

.search-box button i{ 
    display: inline-block; 
    width: 24px; 
    height: 100%; 
    background: url("/img/common/ico_search.svg") no-repeat center center / contain; 
}

.productSearch .search-box .input {
    flex-basis: 100%;
}

@media screen and (max-width: 720px) {
    .search-box {
        --height: 46px;
        --padding: 20px;
    }
    .search-box {
        flex-wrap: wrap;
        flex-direction: column;
        gap: 12px 0;
    }

    .search-box .custom-select-wrapper,
    .search-box .input {
        flex-basis: 100%;
        width: 100%;
    }

    .search-box .custom-select-trigger {
        font-size: 15px;
        padding-right: calc((var(--padding) * 2));
    }

    .search-box .custom-select-trigger:after {
        width: 20px;
        height: 20px;
        right: 20px;
    }

    .search-box .input {
        gap: 0 6px;
    }

    .search-box input {
        width: calc(100% - 52px);
        font-size: 15px;
    }

    .search-box button {
        width: 46px;
        height: 46px;
    }

    .search-box button i {
        width: 18px;
    }

    .search-box .custom-select-wrapper .custom-options {
        top: 20px;
        padding:44px 20px 28px;
    }

    .search-box .custom-select-wrapper .custom-options > li {
        font-size: 14px;
    }
    
    
}

/* paging */

.paginationWrap {
    border-top: 1px solid #dbdbdb;
    margin-top:120px;
}

.paging {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 80px;
}

.paging .arr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.paging .arr a:not(:last-child) {
  margin-right: 5px;
}

.paging .arr i.xi-angle-left-min:before {
    content:'';
    display:block;
    width: 16px;
    height: 16px;
    background: url("/img/common/chevron-left.png") no-repeat center center / contain; 
}

.paging .arr i.xi-angle-right-min:before {
    content:'';
    display:block;
    width: 16px;
    height: 16px;
    background: url("/img/common/chevron-right.png") no-repeat center center / contain; 
}

.paging .arr a.last,
.paging .arr a.first {
  display: none;
}

.paging .arr a.last i,
.paging .arr a.first i {
  -webkit-transform: translateX(-5px);
  transform: translateX(-5px);
}

.paging a {
  width: 40px;
  height: 40px;
  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;
  color: #444;
  font-size: 18px;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
}

.paging ul {
  margin: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.paging ul li:not(:last-child) {
  margin-right: 20px;
}

.paging ul li.on a {
  color: #fff;
  background: #54B9CB;
  border-radius: 50%;
}

@media screen and (max-width: 720px) {
    .paginationWrap {
        margin-top:60px;
    }

    .paging {
        margin-top: 40px;
    }

    .paging ul {
        margin: 0;
    }

    .paging ul li:not(:last-child) {
        margin: 0;
    }

    .paging a {
        width:33px;
        height: 33px;
        font-size: 14px;
    }
}


/* table */
.table {
  width:100%;
}

.table.tb-default {
  border-top: 1px solid #1b1b1b;
}

.table.tb-default thead{
  background-color:#f5f5f5;
  border-bottom: 1px solid #dbdbdb;
}

.table.tb-green thead{
  background-color:#17424A;
  border-bottom: 1px solid #dbdbdb;
}

.table.tb-green thead th {
    color:#fff;
}

.table thead th,
.table tbody td {
  height: 6.1rem;
  font-size: 1.6rem;
}
.table thead th{
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.2px;
  color:#1b1b1b;
}

.table tbody tr {
  border-bottom: 1px solid #dbdbdb;
}

 .table tbody th,
 .table tbody td  {
  line-height: 1.3;
  letter-spacing: -0.2px;
  color:#444;
  text-align:center;
 }

 .table tbody th {
    font-weight: 500;
 }

 .table tbody td {
    font-weight: 300;
 }

table.headColor-eee thead {
  background-color:#eee !important;
}

@media screen and (max-width:720px) {
    .table colgroup, .table  thead {
        display: none;
    }
    .table tbody tr {
        border-bottom: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        border-bottom: none;
    }
    .table tbody tr:not(:first-of-type) {
        border-top: 1px solid #dbdbdb;
    }

    .table tbody tr:not(:last-of-type) {
        margin-bottom: 20px;
    }
    .table thead th, .table tbody td {
        font-size: 14px;
    }
    .table tbody tr th,
        .table tbody tr td {
        min-height: 63px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid #dbdbdb;
        text-align: left;
        padding: 15px 20px;
        padding-left: 140px;
        position: relative;
    }
    .table tbody tr th:before,
    .table tbody tr td:before{
        content: attr(data-th);
        width: 100px;
        height: calc(100% - 40px);
        display: flex;
        justify-content: center;
        align-items: center;
        background: #f5f5f5;
        border-radius: 10px;
        font-weight: 500;
        color: #111;
        text-align: center;
        padding: 12px 10px;
        position: absolute;
        top: 50%;
        left: 5px;
        transform: translateY(-50%);
    }

    .table.headColor-eee tbody tr td:before {
        background:#eee;
    }

    .table.tb-green {
        border-top: 1px solid #1b1b1b;
    }

    .table.tb-green tbody tr th:before,
    .table.tb-green tbody tr td:before {
        background:#17424A;
        color:#fff;
    }

    .policy .privacy .table tbody tr th:before,
    .policy .privacy .table tbody tr td:before {
        background:#eee;
    }
}

/* view common */

/* 상세 페이지 */
.view-ctn{
	--ptb: 41px;
}

.view-ctn .title{ border-top: 1px solid #1b1b1b; border-bottom: 1px solid var(--borderColor); padding: var(--ptb) 0; margin-bottom: 24px; }
.view-ctn .title h2{ font-size: 3.6rem; font-weight: 500; color: #1b1b1b; margin-bottom: 16px; }
.view-ctn .title .desc {
    display:flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap:0 25px;
}

.view-ctn .title .desc span {
    display:block;
    position:relative;
    font-size: 1.6rem;
    color:#aaa;
    font-weight: 300;
}

.view-ctn .title .desc span.date {
    font-family: 'Outfit', sans-serif;
}

.view-ctn .title .desc span.writer {
    margin-top: 2px;
}

.view-ctn .title .desc span:not(:last-of-type):after {
    content: '';
    position: absolute;
    display: block;
    width: 1px;
    height: 12px;
    right: -13px;
    top: 50%;
    border-radius: 50%;
    transform: translateY(-50%);
    background-color: #dbdbdb;
}


.view-ctn .edit-content{ font-size: 18px; margin: 60px 0 80px;}

.view-ctn .files ul {
    display:flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 6px 0;
}

.view-ctn .files ul li a{ 
    display: block; 
    font-size: 1.8rem; 
    font-weight: 300; 
    color: #444; 
    line-height: 1.3; 
    letter-spacing: -0.2px;
    white-space: nowrap; 
    text-overflow: ellipsis; 
    overflow: hidden;  
    padding-left: 28px; 
    position: relative;
}
.view-ctn .files ul li a::before{ 
    content: ""; 
    width: 18px; 
    height: 18px; 
    background: url("/img/common/folder.png") no-repeat center center / contain; 
    position: absolute; 
    top: 50%; 
    left: 4px; 
    transform: translateY(-50%); 
}

.view-ctn .pages{ display: grid; grid-template-columns: repeat(2, 50%); border-top: 1px solid var(--borderColor); border-bottom: 1px solid var(--borderColor); padding: 40px; }
.view-ctn .pages dl{ display: flex; align-items: baseline; font-size: 18px; }
.view-ctn .pages dl dt{ flex-shrink: 0; width: 80px; font-family: 'OutFit', sans-serif ; font-weight: 500; color: #dbdbdb; position: relative; }
.view-ctn .pages dl dt i{ width: 7px; height: 11px; background: url("/img/common/ico_view_prev.png") no-repeat center center / contain; position: absolute; top: 50%; transform: translateY(-50%); }
.view-ctn .pages dl dd{ flex: 1 1 auto; min-width: 0; }
.view-ctn .pages dl dd a{ display: block; font-weight: 300; color: #444; line-height: 1.3; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; padding: 20px 40px; position: relative; }
.view-ctn .pages dl dd a::after{ content: ""; width: 1px; height: 100%; background: var(--borderColor); position: absolute; top: 0; right: 0; }
.view-ctn .pages dl:last-of-type dd a::after{ display: none; }

.view-ctn .pages dl:first-of-type dt{ text-align: right; }
.view-ctn .pages dl:first-of-type dt i{ left: 0; }

.view-ctn .pages dl:last-of-type{ flex-direction: row-reverse; }
.view-ctn .pages dl:last-of-type dt i{ right: 0; transform: translateY(-50%) scaleX(-1); }
.view-ctn .pages dl:last-of-type dd a{ text-align: right; }

@media screen and (max-width: 1700px){
	.view-ctn .pages{ padding: 30px; }
	.view-ctn .pages dl dd a{ padding: 10px 30px; }
}

@media screen and (max-width: 1280px){
	.view-ctn{
		--ptb: 35px;
	}
	.view-ctn .title h2{ margin-bottom: 20px; }

	.view-ctn .files ul li a{ font-size: 14px;  padding-left: 25px; }
	.view-ctn .files ul li a::before{ width: 15px; height: 16px; }

	.view-ctn .pages{ padding: 20px; }
	.view-ctn .pages dl{ font-size: 17px; }
	.view-ctn .pages dl dt{ width: 60px; }
	.view-ctn .pages dl dd a{ padding-inline: 25px; }
}

@media screen and (max-width: 900px){
	.view-ctn .title{ padding-bottom: 20px; margin-bottom: 15px;}
	.view-ctn .title h2{ font-size: 4.2rem; margin-bottom: 10px; }
    .view-ctn .title .desc span {font-size: 13px;}
    .view-ctn .title .desc span:not(:last-of-type):after {height: 9px; transform: translateY(-40%);}
	.view-ctn .files{ padding-bottom: 20px; }

	.view-ctn .pages{ grid-template-columns: repeat(1, 100%); padding: 0; }
	.view-ctn .pages dl{ padding-left: 15px; }
	.view-ctn .pages dl:not(:last-of-type){ border-bottom: 1px solid var(--borderColor); }
	.view-ctn .pages dl dd a{ padding: 20px 25px; padding-right: 15px; }
	.view-ctn .pages dl dd a::after{ display: none; }

	.view-ctn .pages dl:first-of-type dt i{ transform: translateY(-50%) rotate(90deg); }

	.view-ctn .pages dl:last-of-type{ flex-direction: row; }
	.view-ctn .pages dl:last-of-type dt{ text-align: right; }
	.view-ctn .pages dl:last-of-type dt i{ left: 0; right: unset; transform: translateY(-50%) rotate(-90deg); }
	.view-ctn .pages dl:last-of-type dd a{ text-align: left; }
}



/* grid-form */
.grid-form{
	--height: 60px;
	--padding: 20px;
	--margin: 20px;

	--second: #8DC63F;
    --grayBg: #f8f8f8;
    --mainColor:#54B9CB;
}
.grid-form{ display: flex; flex-wrap: wrap; flex-direction: column; align-items: center;}
.grid-form .bb{ border-bottom: 2px solid #000; margin-bottom: 40px; }
.grid-form .tit{ display: flex; justify-content: space-between; align-items: flex-end; padding-bottom: 40px; }
.grid-form .tit h4{ font-size: 32px; font-weight: 600; color: #111; }
.grid-form .tit p{ font-size: 18px; font-weight: 300; color: #333; }  
.grid-form .tit p i{ color: var(--second); font-style: normal; }

.grid-form .scroll-y{ height: 250px; background: var(--grayBg); border-radius: 20px; padding: 60px; overflow-x: clip; overflow-y: auto; }
.grid-form .scroll-y::-webkit-scrollbar{ width: 45px; height: 45px; }
.grid-form .scroll-y::-webkit-scrollbar-thumb{ min-height: 100px; background: #DBDBDB; background-clip: padding-box; border: 20px solid transparent; border-radius: 100px; }
.grid-form .scroll-y::-webkit-scrollbar-track{ background: transparent; background-clip: padding-box; border: 20px solid transparent; border-radius: 100px; }
.grid-form .scroll-y.has-scroll{ padding-right: 0; }

.grid-form .policy .agree {
    text-align: left;
    margin: 2.6rem 0 12.2rem;
}

.grid-form .agree {
    text-align: left;
    margin: 32px 0 60px;
}
.grid-form .agree input{ display: none; }
.grid-form .agree label{ 
    display: inline-block; 
    padding-left:38px;
    position: relative;
}
.grid-form .agree label{
	-webkit-tap-highlight-color: transparent;   
	-webkit-touch-callout: none;                    
	user-select: none;    
	cursor: pointer;
}
.grid-form .agree label::before{ 
    content:'';
    display:block;
    position:absolute;
    top:50%;
    left:0;
    transform: translateY(-45%);
    width:28px;
    height:28px;
    background: url("/img/common/agree_off.svg") no-repeat center center / contain;
 }

 .grid-form .agree input:checked + label::before{ 
    background: url("/img/common/agree_on.svg") no-repeat center center / contain;
 }

 .grid-form .agree label span {
    display: block;
    font-size: 18px; 
    font-weight: 300; 
    color: #444;
    line-height: 1.3; 
    letter-spacing: -0.2px;
 }


.grid-form .form{ width: 100%; overflow: hidden; }
.grid-form .form .form-wrap {
    border-top:1px solid #dbdbdb; padding-top: 40px;
}
.grid-form .form .grid{ margin: -12px -10px; display: grid; grid-template-columns: repeat(2, 50%); }
.grid-form .form .grid > *{
    margin:12px 10px; 
}
.grid-form .form .block{ grid-column: auto / span 2; }
.grid-form .form .flex{ display: flex; align-items: center; margin-bottom: calc(var(--margin) * -1); }
.grid-form .form .flex > *{ margin-bottom: var(--margin); }
.grid-form .form .flex > *:not(:last-child){ margin-right: var(--margin); }
.grid-form .form .flex > span{ display: inline-block; }
.grid-form .form dl dt{ font-size: 20px; font-weight: 500; color: #111; margin-bottom: 12px; line-height: 1.3; letter-spacing: -0.2px; }
.grid-form .form dl dt i{ font-size: inherit; font-weight: inherit; color: var(--second); font-style: normal; }
.grid-form .form input,
.grid-form .form select,
.grid-form .form textarea{ 
    width: 100%; 
    background: var(--grayBg); 
    border: 2px solid var(--grayBg); 
    border-radius: 10px; 
    -webkit-border-radius: 10px; 
    font-weight: 200; 
    color: #AAA; 
    outline: none; 
    transition: all 0.1s ease-in;
}
.grid-form .form input,
.grid-form .form select{ 
    height: var(--height); 
    padding: 0 var(--padding); 
}
.grid-form .form textarea{ resize: none; height: 300px; padding: var(--padding); }

.grid-form .form input:focus,
.grid-form .form select:focus,
.grid-form .form textarea:focus{ background-color: #FFF; border-color: var(--mainColor); font-weight: 300; color: #111; }

.grid-form .form select {
  -webkit-appearance: none;
  -moz-appearance: none;   
  appearance: none;        
  position: relative;
  background-image: url("http://finecem.webmoa21.co.kr/img/common/chevron-down.png"); 
  background-repeat: no-repeat;
  background-size: 24px 24px;
  background-position: right 20px center;
}
.grid-form .form select::-ms-expand {
    display: none;
}


.grid-form .form .email input,
.grid-form .form .email select{ width: calc((100% - (var(--margin) * 2) - 18px) / 3); }

.grid-form .form .file{
	--width: 320px;
}
.grid-form .form .file input{ width: calc(100% - var(--width) - var(--margin)); }
.grid-form .form .file a{ width: var(--width); height: var(--height); display: flex; justify-content: center; align-items: center; background: #555; border-radius: 10px; font-weight: 400; color: #FFF; text-align: center; }
.grid-form .form .file .fileBtn input{ display: none; }
.grid-form .form .file .fileBtn label{ width: var(--width); height: var(--height); display: flex; justify-content: center; align-items: center; background: #000; border-radius: 10px; font-weight: 400; color: #FFF; text-align: center; cursor: pointer; }

.grid-form .form .captcha{
	--width: 193px;
}
.grid-form .form .captcha figure{ width: var(--width); height: var(--height); border-radius: 10px; overflow: hidden; position: relative; }
.grid-form .form .captcha figure::before{ content: ""; width: 100%; height: 100%; border: 2px solid var(--borderColor); border-radius: inherit; position: absolute; top: 0; left: 0; box-sizing: border-box; pointer-events: none; }
.grid-form .form .captcha figure img{ height: 100% !important; width: 100%;}
.grid-form .form .captcha input{ width: calc(100% - var(--width) - var(--height) - (var(--margin) * 2)); }
.grid-form .form .captcha button{ flex-shrink: 0; width: var(--height); height: var(--height); background: #000; border: none; border-radius: 10px; padding: 10px; }
.grid-form .form .captcha button i{ display: block; height: 25px; background: url("http://2isys.webmoa21.co.kr/img/board/icon_reset.svg") no-repeat center center / contain; }


/* main grid form */
.section#contact .grid-form .form textarea {
    height: 130px;
}
.section#contact .grid-form .form input, 
.section#contact .grid-form .form select, 
.section#contact .grid-form .form textarea {
    background-color: #fff;
    border-color:#fff;
}

.section#contact .grid-form .form input:focus, 
.section#contact .grid-form .form select:focus, 
.section#contact .grid-form .form textarea:focus {
     border-color: var(--mainColor);
}

.section#contact .grid-form .form dl dt i {
    color:#009444;
}

.section#contact .grid-form .agree {
    margin: 0;
}

@media screen and (max-width: 1400px){
	.grid-form .form .grid{ margin-inline: -10px; }
	.grid-form .form .grid > *{ margin-inline: 10px; }
}

@media screen and (max-width: 1280px){
	.grid-form{
		--height: 65px;
		--padding: 20px;
		--margin: 10px;
	}
	.grid-form .bb{ margin-bottom: 20px; }
	.grid-form .tit{ padding-bottom: 15px; }
	.grid-form .tit h4{ font-size: 24px; }
	.grid-form .tit p{ font-size: 16px; }

	.grid-form .scroll-y{ padding: 25px; }

	.grid-form .agree{ margin-top: 20px; }
	.grid-form .agree label{ font-size: 17px; padding-left: 26px; }
	.grid-form .agree label::before{ width: 18px; height: 18px; }
	.grid-form .agree label::after{ left: 7px; }

	.grid-form .form *{ font-size: 18px; } 
	.grid-form .form dl dt{ font-size: 19px; margin-bottom: 10px; }

	.grid-form .form .email input,
	.grid-form .form .email select{ width: calc((100% - (var(--margin) * 2) - 16px) / 3); }

	.grid-form .form .file{
		--width: 200px;
	}

	.grid-form .form .captcha{
		--width: 146px;
	}

	/* 인재채용 - 채용정보 */
	#apply .grid-form{ padding-top: 40px; }
}

@media screen and (max-width: 1000px){
	.grid-form .form .grid{ grid-template-columns: repeat(1, 100%); }
	.grid-form .form .block{ grid-column: unset; }
	.grid-form .form textarea{ height: 250px; }
}

@media screen and (max-width: 900px){
	.grid-form{
		--height: 40px;
	}
	.grid-form .tit h4{ font-size: 22px; }

	.grid-form .form *{ font-size: 17px; } 
	.grid-form .form dl dt{ font-size: 18px; }

	.grid-form .form .file{
		--width: 120px;
	}
	.grid-form .form .file input{ width: calc(100% - var(--width) - var(--margin)); }
	.grid-form .form .file .fileBtn{ margin-right: 0; } 
	.grid-form .form .file a{ width: 100%; } 

	.grid-form .form .captcha{
		--width: 135px;
	}
	.grid-form .form .captcha button i{ height: 20px; }

	/* 인재채용 - 채용정보 */
	#apply .grid-form .form .file{ flex-wrap: wrap; }
	#apply .grid-form .form .file input{ width: calc(100% - var(--width) - var(--margin)); }
}

@media screen and (max-width: 800px){
	.grid-form .form .flex{ flex-wrap: wrap; }
    
	.grid-form .form .tel input{ width: calc((100% - (var(--margin) * 2) - 35px) / 3); }

	.grid-form .form .email input{ width: calc((100% - (var(--margin) * 2) - 15px) / 2); }
	.grid-form .form .email input:last-of-type{ margin-right: 0; }
	.grid-form .form .email select{ width: 100%; margin-right: 0 !important; }
}

@media screen and (max-width: 720px) {
    .grid-form .tit h4{ font-size: 20px; }

	.grid-form .form *{ font-size: 15px; } 
	.grid-form .form dl dt{ font-size: 16px; margin-bottom: 8px;}

    .grid-form .form .form-wrap {
        padding-top:20px;
    }
    .grid-form .agree {
        margin:16px 0 30px;
    }

    .grid-form .agree label {
        padding-left:30px;
    }

    .grid-form .agree label span {
        font-size: 14px;
    }

    .grid-form .agree label::before {
        width:20px;
        height:20px;
    }
}


/* board setting */
.board.view-thumbnail .board-wrap{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
}

.board.view-thumbnail .board-items {
    flex-grow: 0;
    flex-shrink: 1;
    overflow: hidden;
}

.board.tp-prod.view-thumbnail .board-wrap {
    gap: 80px 40px;
}

.board.view-thumbnail .board-thumb {
    position:relative;
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
    transition: border-bottom-right-radius 0.3s ease;
}

.board.view-thumbnail .board-thumb-effect {
    z-index: 2;
}

.board.view-thumbnail .board-thumb img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.board.tp-notice.view-thumbnail .board-thumb:not(.no-thumb) img {
    transform: translate(-50%, -50%) scale(1.3);
}

.board.tp-prod.view-thumbnail .board-items{
    flex-basis: calc((100% - 80px) / 3);
 }
.board.tp-prod.view-thumbnail .board-thumb {
    padding-bottom: 100%;
}

.board.tp-prod.view-thumbnail .board-thumb img {
    width: 100%;
}

.board.tp-prod.view-thumbnail .board-thumb-effect {
    position: absolute;
    bottom: -100%;
    right: -100%;
    opacity: 0;
    visibility: hidden;
    transition: bottom 0.3s ease-out, 
                right 0.3s ease-out,opacity 0.3s ease-out, visibility 0s 0.6s;
}

.board.tp-prod.view-thumbnail .board-thumb-effect .board-view {
    display:flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: 100.0rem;
    height: 100.0rem;
    border-radius: 0;
    background-color:rgba(57,96,183,0.75);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px); /* Safari 호환성 */
    transition: all 0.3s ease-out;
}

.board.tp-prod .board-items:hover .board-thumb {
    border-bottom-right-radius: 90px;
}

.board.tp-prod .board-items:hover .board-thumb-effect {
    bottom: 20px;
    right: 20px;
    opacity: 1;
    visibility: visible;
    transition: bottom 0.3s ease-out, 
                right 0.3s ease-out, 
                opacity 0.3s ease-out, 
                visibility 0s; 
}

.board.tp-prod .board-items:hover .board-thumb-effect .board-view {
    width:16.0rem;
    height:16.0rem;
    border-radius: 50%;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px); /* Safari 호환성 */
    transition: all 0s ease-out;
}

.board.tp-prod.view-thumbnail .board-thumb-effect .board-view span {
    color:#fff;
    font-weight: 600;
    font-size: 18px;
    font-family: 'Outfit',sans-serif;
}

.board.view-thumbnail .board-infos {
    margin-top: 32px;
}

.board.view-thumbnail .board-infos .board-title h3 {
    font-size: 2.8rem;
    font-weight: 500;
    color:#1b1b1b;
    letter-spacing: -0.2px;
    line-height: 1.3;
}

.board.tp-cert.view-thumbnail .board-wrap {
    gap: 60px 40px;
}

.board.tp-cert.view-thumbnail .board-items {
    flex-basis: calc(20% - 32px);
}

.board.tp-cert.view-thumbnail .board-thumb {
    border:1px solid #dbdbdb;
    padding-bottom: 140%;
}


.board.tp-cert.view-thumbnail .board-infos {
    margin-top: 24px;
    text-align:center;
}


.board.tp-cert.view-thumbnail .board-infos .board-title h3 {
    font-size: 2.0rem;
    font-weight: 500;
    color:#1b1b1b;
    letter-spacing: -0.2px;
    line-height: 1.3;
}

.board.tp-cert.view-thumbnail .board-thumb-effect{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.board.tp-cert.view-thumbnail .board-items:hover .board-thumb-effect {
    opacity: 1;
    visibility: visible;
}

.board.tp-cert.view-thumbnail .board-thumb-effect .board-view {
    width: 12.0rem;
    height: 12.0rem;
    border-radius: 50%;
    border: 0;
    box-shadow: none;
    padding: 0;
    text-align: center;
    background-color: rgba(0,0,0,0.75);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px); /* Safari 호환성 */
}

.board.tp-cert.view-thumbnail .board-thumb-effect .board-view i{ 
    display: inline-block; 
    width: 24px; 
    height: 100%; 
    background: url("/img/common/ico_search.svg") no-repeat center center / contain; 
}

.board.tp-notice.view-thumbnail .board-wrap{ 
    gap:60px 40px;
}

.board.tp-notice.view-thumbnail .board-items{
    flex-basis: calc(25% - 30px);
}

.board.tp-notice.view-thumbnail .board-items .board-thumb {
    border: 2px solid transparent;
  transition: border-color 0.3s ease;
    transition: all 0.3s ease-in-out;
    padding-bottom: 75%;
 }
.board.tp-notice.view-thumbnail .board-items:hover .board-thumb {
    border-color:#8DC63F;
}

.board.tp-notice.view-thumbnail .board-items .board-thumb.no-thumb {
    background-color:#F5F5F5;
}

.board.tp-notice.view-thumbnail .board-infos {
    margin-top:24px;
}

.board.tp-notice.view-thumbnail .board-infos .board-title h3 {
    font-size:2.2rem;
    width:100%;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

@media screen and (max-width: 960px) {

    .board.tp-cert.view-thumbnail .board-wrap,
    .board.tp-notice.view-thumbnail .board-wrap {
        gap: 35px 15px;
    }

    .board.tp-cert.view-thumbnail .board-items,
    .board.tp-notice.view-thumbnail .board-items {
        flex-basis: calc(50% - 7.5px);
    }

    .board.tp-cert.view-thumbnail .board-infos {
        margin-top:12px;
    }

    .board.tp-cert.view-thumbnail .board-infos .board-title h3 {
        font-size: 16px;
    }
}

/* 공용 */
.board-infos .board-label {
    display:flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0 10px;
    margin-bottom: 16px;
}

.board-infos .board-label span {
    font-size: 1.6rem;
    color:#fff;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.2px;
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
}

.board-infos .board-label span.color-main {
    background-color:#54B9CB;
}

.board-infos .board-label span.color-second {
    background-color:#8DC63F;
}

.board-infos .board-desc {
    margin-top:12px;
}

.board-infos .board-desc .date {
    font-size: 1.6rem;
    color:#54B9CB;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.2px;
    font-family: 'OutFit',sans-serif;
}


@media screen and (max-width:720px) {
    .board.tp-prod.view-thumbnail .board-wrap {
        gap:35px 15px;
    }

    .board.tp-prod.view-thumbnail .board-items {
        flex-basis: calc(50% - 7.5px);
    }
    .board.view-thumbnail .board-infos {
        margin-top:12px !important;
    }
    .board-infos .board-label {
        margin-bottom:10px;
    }

    .board-infos .board-label span {
        font-size: 13px;
        padding: 6px 12px;
    }

    .board.view-thumbnail .board-infos .board-title h3 {
        font-size: 16px !important;
    }

    .board-infos .board-desc {
        margin-top:6px;
    }
    .board-infos .board-desc .date {
        font-size:13px;
    }
}

@media screen and (max-width:465px) {
    .board:not(.tp-cert).view-thumbnail .board-wrap {
        flex-direction: column;
    }
    .board.view-thumbnail .board-wrap {
        gap:20px 15px;
    }

    .board.view-thumbnail .board-items {
        flex-basis: 100% ;
        width: 100%;
    }
}



/* product detail */

#detail .grid-box{
    display: grid;
    grid-template-columns: 55.129% 44.871%;
}

#detail .sticky{
    position: sticky;
    top: calc(50% - (var(--stickyT) / 2));
    left: 0;
}

#detail .board-infos .board-label {
    margin-bottom: 20px;
}

#detail .right {
    padding-left: 16.0rem;
}

#detail .buttons {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    margin-top:12.7rem;
}

#detail .buttons a {
    max-width:280px;
    width:100%;
    display:block;
}

@media screen and (max-width:760px) {
    #detail .buttons {
        margin-top:6.35rem;
    }

     #detail .buttons a{
        padding: 15px 10px;
        font-size: 12px;
     }
}

.viewLnb {
    margin-bottom: 3.2rem;
}

.viewLnb ul{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0 20px;
}

.viewLnb.noticeLnb {
    margin-bottom: 4.0rem;
}
.viewLnb.noticeLnb ul {
    justify-content: flex-end;
}
.viewLnb.privacyLnb {
    margin-bottom: 14.0rem;
}

.viewLnb ul li {
    position: relative;
    font-size: 1.8rem;
    color:#444;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.viewLnb ul li img {
    margin-top:2px;
}

.viewLnb ul li:not(:first-child):before {
    content:'';
    display:block;
    width:4px;
    height:4px;
    border-radius: 50%;
    position:absolute;
    top: 50%;
    left: -12px;
    transform: translateY(-50%);
    background-color:#e1e1e1;
}

@media screen and (max-width: 720px) {
    .viewLnb {
        margin-bottom: 28px;
    }
    .viewLnb ul {
        gap: 0 15px;
    }

    .viewLnb ul li {
        font-size: 13px;
    }

    .viewLnb ul li:not(:first-child):before {
        left: -9px;
        width:3px;
        height:3px;
    }

    .viewLnb ul li img {
        width: auto;
        height:14px;
        margin-top:1px;
    }

    .viewLnb.privacyLnb {
        margin-bottom: 7.0rem;
    }

    #detail .board-infos .board-label {
        margin-bottom: 14px;
    }
} 

.board-names {
    padding-bottom: 32px;
    margin-bottom:48px;
    border-bottom: 1px solid #dbdbdb;
    display:flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px 0;
}

.board-names .name-sub span {
    font-size: 2.8rem;
    font-weight: 300;
    font-family: 'Outfit', sans-serif;
    color:#444;
    line-height: 1.3;
}

.board-names .name-main h3 {
    font-size: 6.0rem;
    font-weight: 600;
    color:#1b1b1b;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.board-text {
    margin-bottom:64px;
}

.board-text .point-text {
    margin-bottom: 20px;
}

.board-text .point-text strong {
    font-size: 2.4rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    color:#1b1b1b;
    line-height: 1.3;
}

.board-text ul {
    display:flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px 0;
}

.board-text ul li {
    position: relative;
    padding-left: 12px;
    font-size: 2rem;
    font-weight: 300;
    color: #444;
    line-height: 1.6;
    letter-spacing: -0.2px;
}

.board-text ul li:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 4px;
    height: 4px;
    background-color: #444;
}

.board-options ul {
    display:flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0 8px;
}

.board-options ul li {
    flex:50%;
}

.board-options ul li a,
.board-options ul li button {
    display: block;
    text-align:center;
    border-radius: 40px;
    padding: 21.3px 10px;
    border:1px solid;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.3;
    box-shadow: none;
    width:100%;
}

#contactWrap .board-options{
    margin: 12.0rem auto 0;
    width: 100%;
    max-width:608px;
    padding:0 20px
}


.board.tp-resources .board-wrap{
    border-top: 1px solid #1b1b1b;
}

.board.tp-resources .board-items {
    padding: 4.0rem 0;
    border-bottom: 1px solid #dbdbdb;
    position: relative;
}

.board.tp-resources .board-items::after {
    content:'';
    display:block;
    width:0;
    height:1px;
    background-color:#444444;
    position: absolute;
    bottom: 0;
    left:0;
    transition: all .3s ease-in;
}

.board.tp-resources .board-items:hover::after {
    width:100%;
}

.board.tp-resources .board-items a {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0 2.0rem;
}


.board.tp-resources .board-infos .board-label {
    gap: 0 6px;
}

.board.tp-resources .board-infos .board-title h3 {
    font-size: 2.8rem;
    line-height: 1.3;
    letter-spacing: -0.2px;
    font-weight: 500;
    color:#1b1b1b;
}

.board.tp-resources .board-desc {
    display:flex;
    flex-wrap: nowrap;
    align-items: baseline;
    justify-content: flex-start;
    gap:0 25px;
    margin-top:16px;
}

.board.tp-resources .board-desc > div {
    display:block;
    position:relative;
    font-size: 1.6rem;
    color:#aaa;
    font-weight: 300;
}

.board.tp-resources .board-desc span {
    font-family: 'Outfit', sans-serif;

}

.board.tp-resources .board-desc > div:not(:last-of-type):after {
    content: '';
    position: absolute;
    display: block;
    width: 1px;
    height: 12px;
    right: -13px;
    top: 50%;
    border-radius: 50%;
    transform: translatey(-40%);
    background-color: #dbdbdb;
}

.board.tp-resources .board-ico {
    width:60px;
    height:60px;
}

.board.tp-resources .board-ico i{
    display:inline-block;
    width:60px;
    height: 100%;
    mask-image: url("/img/common/arrow-up-right.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    background-color: #dbdbdb;
    transition: all 0.3s ease-in-out;
}

.board.tp-resources .board-items:hover .board-ico i{
    background-color: #8DC63F;
    transform: rotate(45deg);
}

.board.tp-resources .paginationWrap {
    border:none;
}

@media screen and (max-width: 720px) {
    .board-names {
        padding-bottom: 28px;
        margin-bottom: 30px;
        gap: 10px 0;
    }

    .board-text .point-text strong {
        font-size: 16px;
    }

    .board-text {margin-bottom: 24px;}

    .board-text ul li {
        font-size: 13px;
    }

    .board-options ul li a, .board-options ul li button {
        padding:15px 10px;
        font-size: 12px;
    }

    .board.tp-resources .board-ico {
        width: 45px;
        height: 45px;
    }

    .board.tp-resources .board-ico i {
        width: 45px;
    }

    .board.tp-resources .board-desc > div,
    .board.tp-resources .board-desc span{
        font-size:13px;
    }
} 

/* faq style */
.board-faq .board-items{
    padding: 4.0rem;
    border-radius: 8px;
    background-color:#f8f8f8;
}

.board-faq .board-items:not(:last-of-type) {
    margin-bottom: 10px;
}

.board-faq .board-items > a {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0 2.0rem;
    min-height: 6.0rem;
}

.board-faq .board-items .board-ico {
    width: 16px;
    height: 9px;
}

.board-faq .board-items .board-ico i{ 
    display: block; 
    width: 16px; 
    height: 100%; 
    background: url("/img/common/faq_down.svg") no-repeat center center / contain; 
    transition: all 0.3s ease-in-out;
}

.board-faq .board-items.is-open .board-ico i{
    transform: rotate(-180deg);
}

.board-faq .board-items .board-title {
    padding-left: 10.0rem;
    position: relative;
}

.board-faq .board-items .board-title:before {
    content:'Q';
    display: block;
    width:6.0rem;
    height:6.0rem;
    line-height: 6.0rem;
    border-radius: 50%;
    background-color: #8DC63F;
    color:#fff;
    font-size:2.2rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
    text-align: center;
    position: absolute;
    top:50%;
    left:0;
    transform: translateY(-50%);
}

.board-faq .board-items .board-title h3 {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.2px;
    color:#1b1b1b ;
}

.board-faq .board-answer {
    overflow: hidden;
    height: 0;
    transition: height 0.3s ease-out;
}

.board-faq .board-answer .answerWrap {
    border-radius: 10px;
    background-color:#fff;
    padding: 30px;
    margin-top: 40px;
}

.board-faq .board-answer .answerWrap p {
    padding-left:3.5rem;
    position: relative;
    font-size: 1.8rem;
    font-weight: 300;
    color:#444;
    line-height: 1.6;
    letter-spacing: -0.2px;
}

.board-faq .board-answer .answerWrap p > a {
    color:#8DC63F;
    font-weight: 600;
    text-decoration: underline;
}

.board-faq .board-answer .answerWrap p:first-child:before {
    content:'A';
    display: block;
    line-height: 1.3;
    color:#8DC63F;
    font-size:2.2rem;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
    text-align: center;
    position: absolute;
    top:0;
    left:0;
}


@media screen and (max-width:720px) {
    .board-faq .board-items > a {
        gap: 0 20px;
    }
    .board-faq .board-items .board-title {
        padding-left:8.0rem;
    }

    .board-faq .board-items .board-title h3 {
        font-size: 15px;
    }

    .board-faq .board-answer .answerWrap {
        margin-top:20px;
        padding:3.0rem;
    }

    .board-faq .board-answer .answerWrap p {
        font-size: 13px;
    }

    .board-faq .board-answer .answerWrap p:before {
        top: 2px;
    }

}

#detail .left {
    display:flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

#detail .left .prod-bigWrap {
    display: grid;
    grid-template-columns: 80% calc(20% - 20px);
    gap: 20px;
}

#detail .left figure{ 
    display: block;
    padding-bottom: 100%; 
    position: relative; 
    overflow: hidden; }
#detail .left figure img{ 
    width: 100%; 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
}
#detail .left .big-wrap{ 
    position: relative;
    border-radius: 20px;
    width: 68.8rem;
    overflow: hidden;
    background-color:#f5f5f5;
 }

 @media screen and (max-width:830px) {
    #detail .left .big-wrap{ 
    position: relative;
    border-radius: 20px;
    width: 56.8rem;
    overflow: hidden;
 }
 }

  @media screen and (max-width:720px) {
    #detail .left .big-wrap{ 
    width:100%;
 }
 }

#detail .left .big-wrap::before{
     content: ""; 
     width: 100%;
    height: 100%; 
       position: absolute; 
       top: 0;
        left: 0;
         z-index: 10; box-sizing: border-box; pointer-events: none; }
#detail .left .auto{ flex: 1 1 auto; width: 100%; }
#detail .left .small-wrap{ width: 100%; overflow: unset; }
#detail .left .small{ cursor: pointer;  overflow: hidden; border-radius: 20px; margin-bottom: 8px; background-color:#f5f5f5;}
#detail .left .small figure::after{
     content: ""; 
     width: 100%; 
     height: 100%; 

      position: absolute; 
      top: 0; 
      left: 0; 
      box-sizing: border-box; 
}
#detail .left .bottom{ 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}
#detail .left .bottom .button-group {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    border: 1px solid #dbdbdb;
    overflow: hidden;
    border-radius: 8px;
}
#detail .left .bottom .button-group > button {
    flex: 50%;
    height: 40px;
    border:0;
    box-shadow: none;
    background-color: #fff;
}

#detail .left .bottom .button-group > button.prev i {
    display: inline-block; 
    width: 20px; 
    height: 100%; 
    background: url("/img/common/slide-chevron-up.png") no-repeat center center / contain; 
}

#detail .left .bottom .button-group > button.next {
    border-left: 1px solid #dbdbdb;
 }
#detail .left .bottom .button-group > button.next i {
    display: inline-block; 
    width: 20px; 
    height: 100%; 
    background: url("/img/common/slide-chevron-down.png") no-repeat center center / contain; 
}

#detail .left .prod-images {
    position: relative; 
    overflow: hidden;
    height: 93.8rem;
    transition: height 0.5s ease-in-out;
    margin: 12.0rem 0 20px;
}

#detail .left .prod-images:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px; /* 그라데이션 높이 */
    background: linear-gradient(to top, white, rgba(255, 255, 255, 0));
    transition: opacity 0.3s ease;
}

#detail .left .prod-images.is-open::after {
    opacity: 0;
}

#detail .left .prod-images + .btn-more {
    width:100%;
    border-radius: 8px;
    background-color:#fff;
    border: 1px solid #dbdbdb;
    height: 5.2rem;
    display:flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap:0 8px;
    transition: all 0.3s ease-in-out;
}

#detail .left .prod-images + .btn-more:hover {
    border-color:#444;
}

#detail .left .prod-images + .btn-more > span{
    display:inline-block;
    font-size:1.6rem;
    color:#444;
    font-weight: 500;
    line-height: 1.3;
}

#detail .left .prod-images + .btn-more > i {
    display:inline-block;
    width:12px;
    height: 100%;
    background:url("/img/common/item-chevron-down.png") no-repeat center center / contain
}

#detail .left .prod-images + .btn-more.open > i {
    display:inline-block;
    width:12px;
    height: 100%;
    background:url("/img/common/item-chevron-up.png") no-repeat center center / contain
}

@media screen and (max-width:720px) {
    #detail .grid-box {
        grid-template-columns: repeat(1, 100%);
        gap: 25px 0;
    }

    #detail .left {
        order:1;
        display: grid;
        grid-template-columns: repeat(1, 100%);
    }

    #detail .left .slick-list {
        margin-right: -10px;
    }


    #detail .left .small {
        margin-right:10px;
        margin-bottom: 0;
    }

    #detail .left .small:last-of-type {
        margin-right:0;
    }

    #detail .left .bottom .button-group {
        margin-top: 15px;
    }

    #detail .left .prod-bigWrap {
        grid-template-columns: repeat(1, 100%);
        gap: 15px;
    }

    #detail .left .bottom .button-group > button.prev i,#detail .left .bottom .button-group > button.next i {
        transform: rotate(-90deg);
    }
     #detail .left .prod-images {
        height: 310px;
        margin: 40px 0 20px;
    }

    #detail .left .prod-images + .btn-more {
        height: 40px;
    }

    #detail .left .prod-images + .btn-more > span {
        font-size: 13px;
    } 

    #detail .right {
        padding: 0;
        order:0;
    }

}
