@charset "UTF-8";
@import url(plugin.css);
/* layout */
html{font-size:62.5%;}

@media only screen and (max-width : 767px) {
    html{font-size:56.25%;}
}
@media only screen and (max-width : 480px) {
    html{font-size:50%;}
}
@media only screen and (orientation : landscape) and (max-device-width : 767px) {
    html{font-size:56.25%;}
}
@media only screen and (orientation : landscape) and (max-device-width : 480px) {
    html{font-size:50%;}
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
ul,
ol {
    list-style: none;
}
img {
    border: 0;
    vertical-align: middle;
}

/* DEFAULT-STYLE */
body {
    overflow-y: scroll;
    background-color: #fff;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    color: #666;
    font-size: 14px;
    font-size:1.4rem;
    line-height: 1.5;
    font-family: 'Apple SD Gothic Neo', AppleGothic, "Malgun Gothic", sans-serif;
}
a {
    color: #666;
    text-decoration: none;
}

/* FUNCTIONAL CLASS */
.hidden {
    overflow: hidden;
    position: fixed;
    top: -9999px;
    left: -9999px;
    width: 10px;
    height: 25px;
}
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}

/* SECTIOM WRAP */
.section-wrap {
    margin-top: 60px;
}
.section-wrap .section {
    margin-top: 60px;
}
.section-wrap .section:first-child {
    margin-top: 0;
}

/* TABLE */
.table {
    position: relative;
}
.table .integral {
    position: absolute;
    top: -39px;
    right: 0;
}
table {
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    width: 100%;
    border-top: 1px solid #252525;
    border-bottom: 1px solid #e1e1e1;
}
caption span {
    overflow: hidden;
    position: fixed;
    top: -9999px;
    left: -9999px;
    width: 10px;
    height: 25px;
}
.table table thead th {
    height: 50px;
    padding: 13px 30px;
    border-left: 1px solid #e1e1e1;
    background-color: #f6f6f6;
    color: #333;
    font-weight: bold;
}
.table table thead th:first-child {
    border-left: 0;
}
.table table tbody th {
    height: 50px;
    padding: 13px 30px;
    border-top: 1px solid #e1e1e1;
    background-color: #f6f6f6;
    font-weight: bold;
    text-align: center;
}
.table table tbody td {
    height: 50px;
    padding: 13px 30px;
    border-top: 1px solid #e1e1e1;
    border-left: 1px solid #e1e1e1;
    text-align: center;
}
.table table tbody td:first-child {
    border-left: 0;
}
.table table tbody td .icon-file {
    vertical-align: middle;
}
.table table tbody td.subject {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: left;
}
.table table tbody td.subject img {
    display: inline-block;
    margin-right: 5px;
    vertical-align: middle;
}
.table.vertical-type table thead th {
    padding: 13px 10px;
    border-left: 0;
    background-color: #fff;
    color: #333;
    font-weight: normal;
}
.table.vertical-type table tbody th {
    padding: 13px 10px;
    border-right: 1px solid #e1e1e1;
    color: #333;
}
.table.vertical-type table tbody th.low-title {
    background-color: #fff;
}
.table.vertical-type table tbody td {
    padding: 13px 10px;
    letter-spacing: -1px;
}
.table.vertical-type table tbody td:first-child {
    border-left: 1px solid #e1e1e1;
}
.table.horizontal table thead th {
    padding: 15px;
}
.table.horizontal table tbody th {
    padding: 15px;
}
.table.horizontal table tbody td {
    padding: 15px;
}

/* FLUID TABLE */
.table-fluid {
    position: relative;
    border-top: 1px solid #252525;
    border-bottom: 1px solid #e1e1e1;
    padding-left: 25%;
    background-color: #f6f6f6;
}
.table-fluid .btn {
    vertical-align: middle;
}
.table-fluid .integral {
    position: absolute;
    top: -39px;
    right: 0;
}
.table-fluid .inner {
    display: table;
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    width: 100%;
}
.table-fluid .tr {
    display: table-row;
    overflow: hidden;
    width: 100%;
    border-top: 1px solid #e1e1e1;
}
.table-fluid .tr:first-child {
    border-top: 1px solid #e1e1e1;
}
.table-fluid .tr [class^="td-"] {
    display: table-cell;
    height: 50px;
    border-left: 1px solid #e1e1e1;
    background-color: #fff;
    text-align: center;
    vertical-align: middle;
}
.table-fluid .tr [class^="th-"] {
    display: none;
    height: 50px;
    color: #333;
    font-weight: bold;
    line-height: 1.3;
}
.table-fluid .tr [class^="td-"]:first-child [class^="th-"] {
    display: table;
    position: absolute;
    left: 0;
    height: 50px;
    margin-top: -1px;
    border-top: 1px solid #e1e1e1;
    vertical-align: middle;
}
.table-fluid .tr:first-child [class^="td-"]:first-child [class^="th-"] {
    border-top: 0;
}
.table-fluid .tr [class^="td-"] [class^="th-"] .title {
    display: table-cell;
    padding: 10px 30px;
    vertical-align: middle;
    text-align: left;
}
.table-fluid .tr [class*="-item"] {
    width: 25%;
}
.table-fluid .tr .exception {
    width: 75%;
}
.table-fluid .tr .value {
    display: block;
    padding: 14px 30px;
    text-align: left;
}
.table-fluid.vertical {
    padding-top: 50px;
    padding-left: 0;
}
.table-fluid.vertical .tr [class^="th-"]:first-child {
    display: none;
}
.table-fluid.vertical .tr:first-child [class^="th-"] {
    display: table;
    position: absolute;
    top: 0;
    margin-left: -1px;
}
.table-fluid.vertical .tr [class^="td-"]:first-child {
    border-left: 0;
}
.table-fluid.vertical .tr:first-child [class^="td-"] [class^="th-"] {
    border-left: 1px solid #e1e1e1;
}
.table-fluid.vertical .tr:first-child [class^="td-"]:first-child [class^="th-"] {
    border-left: 0;
}
.table-fluid.vertical .tr:first-child [class^="th-"] .title {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
.table-fluid.vertical .tr .value {
    text-align: center;
}
.table-fluid.empty {
    padding-top: 55px;
    padding-left: 0;
    background-color: #fff;
}
.table-fluid.empty .tr:first-child {
    border-top: 1px solid #252525;
}
.table-fluid.empty .tr [class^="td-"] {
    height: 55px;
    border-left: 0;
}
.table-fluid.empty .tr:first-child [class^="th-"] {
    height: 55px;
}
.table-fluid.empty .tr [class^="th-"]:first-child {
    display: none;
}
.table-fluid.empty .tr:first-child [class^="th-"] {
    display: table;
    position: absolute;
    top: 0;
    margin-left: -1px;
}
.table-fluid.empty .tr:first-child [class^="td-"]:first-child [class^="th-"] {
    border-left: 0;
}
.table-fluid.empty .tr:first-child [class^="th-"] .title {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
span.price {
    color: #535353;
    font-size: 18px;
}
span.price em {
    color: #f62332;
    font-style: normal;
    font-weight: bold;
}

/* FORM */
input[type="text"],
input[type="password"],
textarea,
select {
    outline: 0;
    color: #666;
    font: 15px/1.5 "Malgun Gothic", sans-serif;
    vertical-align: middle;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
}

/* TEXT */
input[type="text"] {
    box-sizing: border-box;
    width: 310px;
    height: 30px;
    padding: 3px 13px 5px;
    border: 1px solid #ccc;
}
input[type="text"][class="lg"] {
    height: 40px;
    padding: 8px 13px 9px;
}
input[type="text"][class="xl"] {
    height: 50px;
    padding: 13px 13px 14px;
}
input[type="text"]:focus {
    padding: 7px 12px 8px;
    border: 2px solid #363636;
}
input[type="text"][disabled] {
    background-color: #eee;
    color: #a7a7a7;
    cursor: default;
}
input[type="text"].block {
    display: block;
    width: 100%;
}

/* PASSWORD */
input[type="password"] {
    box-sizing: border-box;
    width: 200px;
    height: 30px;
    padding: 3px 13px 5px;
    border: 1px solid #ccc;
}
input[type="password"][class="lg"] {
    height: 40px;
    padding: 8px 13px 9px;
}
input[type="password"][class="xl"] {
    height: 50px;
    padding: 13px 13px 14px;
}
input[type="password"]:focus {
    padding: 7px 12px 8px;
    border: 2px solid #363636;
}
input[type="password"][disabled] {
    background-color: #eee;
    color: #a7a7a7;
    cursor: default;
}
input[type="password"].block {
    display: block;
    width: 100%;
}
.pass-grade {
    margin-left: 10px;
    font-size: 16px;
}
.pass-grade.error {
    color: #e72a30;
}
.pass-grade.low {
    color: #dabe50;
}
.pass-grade.normal {
    color: #33882d;
}
.pass-grade.high {
    color: #3d409b;
}

/* ID */
.id {
    display: inline-block;
}
.id input[type="text"] {
    width: 200px;
}
.id .btn.dark {
    width: 95px;
    padding: 1px 10px 5px;
}
.id .advice {
    margin-left: 10px;
}

/* CHECKBOX */
input[type="checkbox"] {
    position: absolute;
    left: -9999px;
}
input[type="checkbox"] + label {
    display: inline-block;
    position: relative;
    min-height: 16px;
    padding-left: 25px;
    cursor: pointer;
    color: #999;

}
input[type="checkbox"] + label:before {
    content: " ";
    position: absolute;
    top: 11px;
    left: 0;
    width: 15px;
    height: 15px;
    margin-top: -7px;
    background:#fff url(../images/uikit/checkbox.png) no-repeat 0 0;
}
input[type="checkbox"] + label.active:before {
    background-position: 0 -25px;
}
input[type="checkbox"] + label em {
    color: #333;
    font-style: normal;
    font-weight: bold;
}
input[type="checkbox"] + label em.red {
    color: #e72a30;
}
input[type="checkbox"][disabled] + label {
    cursor: default;
}
input[type="checkbox"][disabled] + label:before {
    background-color: #e7e7e7;
}
.checkbox-group {
    overflow: hidden;
}
.checkbox-group li {
    float: left;
    margin-left: 40px;
}
.checkbox-group li:first-child {
    margin-left: 0;
}
.checkbox-group.vertical li {
    float: none;
    margin-top: 10px;
    margin-left: 0;
}
.checkbox-group.vertical li:first-child {
    margin-top: 0;
}

/* RADIO */
input[type="radio"] {
    position: absolute;
    left: -9999px;
}
:root input[type="radio"] + label {
    background: none;
}
input[type="radio"] + label {
    display: inline-block;
    position: relative;
    min-height: 16px;
    padding-left: 26px;
    background: url(../images/uikit/radio.png) no-repeat 0 3px;
    cursor: pointer;
    color: #999;
}
input[type="radio"] + label.active {
    background-position: 0 -323px;
}
input[type="radio"] + label:before {
    content: " ";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    box-sizing: border-box;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    border-radius: 9px;
    vertical-align: middle;
}
:root input[type="radio"] + label:before {
    border: 1px solid #ccc;
    background: #fff;
}
input[type="radio"] + label:after {
    content: " ";
    display: block;
    position: absolute;
    top: 50%;
    left: 1px;
    box-sizing: border-box;
    width: 14px;
    height: 14px;
    margin-top: -7px;
    border-radius: 8px;
    border: 0;
    transition: border 0.2s linear;
}
input[type="radio"] + label.active {
    color: #666;
}
:root input[type="radio"] + label.active:after {
    content: " ";
    border: 4px solid #fff;
    background: #e72a30;
}
input[type="radio"][disabled] + label {
    cursor: default;
}
input[type="radio"][disabled] + label:before {
    background-color: #e7e7e7;
}
input[type="radio"][disabled] + label.active:after {
    border: 6px solid #ccc;
}
.radio-group {
    overflow: hidden;
}
.radio-group li {
    float: left;
    margin-left: 40px;
}
.radio-group li:first-child {
    margin-left: 0;
}
.radio-group.vertical li {
    float: none;
    margin-top: 10px;
    margin-left: 0;
}
.radio-group.vertical li:first-child {
    margin-top: 0;
}
.radio-choice {
    display: inline-block
}
.radio-choice input[type="radio"] + label {
    display: inline-block;
    min-width: 70px;
    padding: 0 15px 4px;
    border: 1px solid #e72a30;
    background: #fff none;
    color: #e72a30;
    font-size: 16px;
    text-align: center;
    letter-spacing: -1px;
}
.radio-choice input[type="radio"] + label.active {
    border: 1px solid #e72a30;
    background-color: #e72a30;
    color: #fff;
}
.radio-choice input[type="radio"] + label:before,
.radio-choice input[type="radio"] + label:after {
    display: none;
}

/* TEXTAREA */
textarea {
    overflow-x: hidden;
    box-sizing: border-box;
    width: 310px;
    padding: 8px 10px;
    border: 1px solid #ccc;
}
textarea:focus {
    padding: 7px 9px;
    border: 2px solid #363636;
}
textarea[disabled] {
    background-color: #eee;
    color: #a7a7a7;
}
textarea[disabled] {
    cursor: default;
}
textarea.block {
    display: block;
    width: 100%;
}

/* SELECT */
.select {
    display: inline-block;
    position: relative;
    width: 310px;
    vertical-align: middle;
}
.select.block {
    display: block;
    width: auto;
}
.select select {
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    height: 30px;
    color: #666;
    font: 15px/1.5 "Malgun Gothic", sans-serif;
    opacity: 0;
    filter: alpha(opacity=0);
    cursor: pointer;
}
.select .current-value {
    display: block;
    position: relative;
    height: 30px;
    padding: 3px 31px 4px 13px;
    border: 1px solid #ccc;
    text-align: left;
}
.select .current-value:after {
    content: " ";
    position: absolute;
    top: 11px;
    right: 10px;
    width: 0;
    height: 0;
    border-color: #8f8f8f transparent transparent transparent;
    border-style: solid;
    border-width: 6px;
}
.select .current-value em {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-style: normal;
}
.select select:focus + .current-value {
    padding: 2px 31px 3px 12px;
    border: 2px solid #363636;
}
.select select:focus + .current-value:after {
    top: 4px;
    right: 9px;
    border-color: transparent transparent #8f8f8f transparent;
    border-style: solid;
    border-width: 6px;
}
.select select:focus + .current-value em {
}
.select select[disabled] + .current-value {
    background-color: #eee;
    color: #a7a7a7;
}
.select select[disabled] {
    cursor: default;
}

/* SEARCH */
/*.srch {
    position: relative;
    max-width: 350px;
    padding-right: 40px;
}
.srch input[type="text"] {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 40px;
    padding: 8px 13px 9px 13px;
    border: 1px solid #999;
    border-right: 0;
    color: #666;
    font: 15px/1.5 "Malgun Gothic", sans-serif;
}
.srch input[type="text"]:focus {
    border: 2px solid #363636;
    border-right: 0;
    padding: 7px 13px 8px 12px;
}
.srch a.btn-srch {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: #fff url(../images/uikit/srch.png) no-repeat 100% 0;
}
.srch input[type="text"]:focus ~ a.btn-srch {
    background-position: 0 -40px;
}*/

/* FILE */
.file {
    position: relative;
    width: 274px;
    font-size: 0;
}
.file input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    z-index: 10;
    height: 40px;
    opacity: 0;
    filter: alpha(opacity=0);
    cursor: pointer;
}
.file input[type="text"] {
    position: relative;
    z-index: 20;
    width: 200px;
}
.file input[type="file"]:focus ~ input[type="text"] {
    border: 1px solid #333;
}
.file input[type="file"][disabled] ~ input[type="text"] {
    background-color: #eee;
}
.file input[type="file"][disabled] ~ input[type="text"][disabled] {
    background-color: #fff;
}
.file span {
    display: inline-block;
    margin-left: 4px;
    min-width: 52px;
    height: 40px;
    padding: 9px 10px 10px;
    background-color: #444;
    color: #fff;
    font-size: 15px;
    text-align: center;
    vertical-align: middle;
}
.file input[type="file"][disabled] ~ span {
    cursor: default;
    background-color: #ccc;
}


/* ADDRESS */
.address {
    font-size: 0;
}
.address input[type="text"] {
    width: 303px;
    margin-top: 13px;
}
.address input[type="text"].detail-addr {
    margin-left: 10px;
}
.address input[type="text"].zip-code {
    width: 158px;
    margin-top: 0;
}
.address .select {
    width: 130px;
    margin-top: 13px;
    margin-left: 10px;
    font-size: 14px;
}
.address .detail {
    display: block;
}
.address .btn {
    margin-left: 10px;
    vertical-align: middle;
}
.address .advice {
    display: block;
    margin-top: 8px;
    color: #e72a30;
    font-size: 14px;
}


/* TEL */
.tel {
    display: block;
    font-size: 0;
}
.tel .advice {
    display: block;
    margin-bottom: 20px;
    color: #e72a30;
    font-size: 14px;
}
.tel .select {
    width: 94px;
    font-size: 15px;
}
.tel input[type="text"] {
    width: 93px;
}
.tel .dash {
    display: inline-block;
    width: 20px;
    padding: 4px 0 5px;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
}
.tel input[type="text"] {
    position: relative;
}
.tel .btn {
    margin-left: 13px;
    vertical-align: middle;
}

/* EMAIL */
.email {
    font-size: 0;
}
.email input[type="text"] {
    width: 280px;
}
.email input[type="text"].user-id {
    width: 310px;
}
.email .select {
    width: 120px;
    margin-left: 10px;
    font-size: 14px;
}
.email .at {
    display: inline-block;
    width: 25px;
    padding: 4px 0 5px;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
}
.email .advice {
    display: block;
    margin-top: 8px;
    font-size: 14px;
}

/* SUB TITLE */
.sub-title {
    position: relative;
    margin-bottom: 20px;
}
.sub-title.button {
    padding-right: 130px;
}
.sub-title h3 {
    color: #000;
    font-size: 22px;
}
.sub-title .text {
    margin-top: 14px;
    font-size: 14px;
}
.sub-title .btn {
    position: absolute;
    right: 0;
    bottom: 0;
}

/* SORT */
.sub-title.sort ul {
    position: absolute;
    bottom: 0;
    right: 0;
}
.sort ul li {
    float: left;
    position: relative;
    margin-left: 15px;
    padding-left: 15px;
}
.sort ul li:before {
    content: " ";
    display: block;
    position: absolute;
    top: 4px;
    left: 0;
    width: 1px;
    height: 16px;
    border-left: 1px solid #e1e1e1;
}
.sort ul li:first-child {
    margin-left: 0;
    padding-left: 0;
}
.sort ul li:first-child:before {
    display: none;
}
.sort ul li a {
    display: block;
    font-size: 16px;
}
.sort ul li.active a {
    color: #e72a30;
}

/* CALENDAR */
.calendar {
    display: inline-block;
    font-size: 0;
}
.calendar input[type="text"] {
    position: relative;
    width: 310px;
    background: #fff url(../images/common/icon-calendar.png) no-repeat 254px center;
    cursor: pointer;
}
.calendar input[type="text"]:focus {
    background-position: 253px center;
}
.calendar .dash {
    display: inline-block;
    width: 15px;
    padding: 9px 0;
    font-size: 15px;
    text-align: center;
    vertical-align: middle;
}
.ui-datepicker {
    display: none;
    width: 260px;
    padding-bottom: 25px;
    border: 1px solid #ababab;
    border-top: 0;
    background-color: #fff;
    color: #333;
    font-size: 16px;
    text-align: center;
}
.ui-datepicker-header {
    position: relative;
    padding: 20px 0 21px;
    font-weight: bold;
}
.ui-datepicker-header a {
    display: block;
    position: absolute;
    width: 24px;
    height: 17px;
    background: url(../images/common/arrow-calendar.png) no-repeat;
    cursor: pointer;
}
.ui-datepicker-header a span.ui-icon {
    display: none;
}
.ui-datepicker-header a.ui-datepicker-prev {
    top: 20px;
    left: 17px;
}
.ui-datepicker-header a.ui-datepicker-next {
    top: 20px;
    right: 17px;
    background-position: 0 -17px;
}
.ui-datepicker-calendar {
    font-size: 14px;
}
.ui-datepicker-calendar thead tr th {
    padding-bottom: 15px;
    border-bottom: 1px solid #ababab;
}
.ui-datepicker-calendar tbody tr {
    padding: 0 20px;
}
.ui-datepicker-calendar tbody tr:first-child td {
    padding-top: 25px;
}
.ui-datepicker-calendar .ui-datepicker-week-end {
    color: #4b83a3;
}
.ui-datepicker-calendar .ui-datepicker-week-end:first-child {
    color: #f62332;
}
.ui-datepicker-calendar .ui-state-default {
    display: inline-block;
    width: 30px;
    height: 30px;
    padding: 5px 0;
    font-weight: bold;
}
.ui-datepicker-calendar .ui-datepicker-week-end .ui-state-default {
    color: #4b83a3;
}
.ui-datepicker-calendar .ui-datepicker-week-end:first-child .ui-state-default {
    color: #f62332;
}
.ui-datepicker-calendar .ui-datepicker-unselectable .ui-state-default {
    color: #d0d0d0;
}
.ui-datepicker-calendar .ui-datepicker-unselectable:first-child  .ui-state-default {
    color: #d0d0d0;
}
.ui-datepicker-calendar .ui-datepicker-today .ui-state-default {
    background: url(../images/common/bg-calendar-today.png) no-repeat;
    color: #fff;
}

/* BUTTON */
.btn {
    display: inline-block;
    min-width: 70px;
    padding: 1px 20px 5px;
    background-color: #666;
    color: #fff;
    font: 16px/1.5 "Malgun Gothic", sans-serif;
    text-align: center;
    letter-spacing: -1px;
}
.btn.red {
    background-color: #e72a30;
}
.btn.gray {
    background-color: #999;
}
.btn.xl {
    min-width: 100px;
    padding: 13px 30px;
    font-weight: bold;
}
.btn.lg {
    min-width: 100px;
    padding: 8px 20px;
}
.btn.sm {
    min-width: 70px;
    padding: 2px 19px 5px;
    border: 1px solid #999;
    font: 14px/1.5 "Malgun Gothic", sans-serif;
}
.btn.sm.red,
.btn.sm.gray,
.btn.sm.dark {
    padding: 4px 20px 5px;
    border: 0;
    color: #fff;
}
.btn.xs {
    min-width: 75px;
    padding: 1px 12px;
    border: 1px solid #999;
    color: #666;
    font: 14px/1.5 "Malgun Gothic", sans-serif;
}
.btn.xs.red,
.btn.xs.gray,
.btn.xs.dark {
    padding: 2px 13px;
    border: 0;
    color: #fff;
}
.btn.block {
    display: block;
}
.btn img {
    margin-right: 10px;
}
.btn.red-line {
    padding: 1px 19px 3px;
    border: 1px solid #f62332;
    background-color: #fff;
    color: #f62332;
}
.btn.lg.red-line {
    min-width: 100px;
    padding: 7px 20px;
}
.btn.xl.red-line {
    min-width: 100px;
    padding: 12px 30px;
    font-weight: bold;
}
/* COMPONENT
--------- */
/* BUTTON GROUP */

.button-group {
    margin-top: 20px;
    font-size: 0;
    text-align: center;
}
.button-group:before,
.button-group:after {
    content: " ";
    display: table;
}
.button-group:after {
    clear: both;
}
.button-group .right {
    float: right;
    text-align: left;
}
.button-group .left {
    float: left;
    text-align: left;
}
.button-group .btn {
    margin-left: 5px;
}
.button-group .btn:first-child {
    margin-left: 0;
}

/* TAB */
[class^="tab-"] .current-value {
    display: none;
    position: relative;
    height: 20px;
    padding: 1px 15px 3px 5px;
    border: 1px solid #999;
    background-color: #fff;
    font-size: 10px;
    text-align: left;
}
[class^="tab-"] .nav {
    display: table;
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    width: 100%;
    border-bottom: 2px solid #e72a30;
}
[class^="tab-"] .nav span,
[class^="tab-"] .nav a {
    display: table-cell;
    height: 60px;
    padding: 9px 0;
    border-top: 1px solid #e1e1e1;
    border-right: 1px solid #e1e1e1;
    border-left: 1px solid #e1e1e1;
    background-color: #fff;
    font-size: 16px;
    text-align: center;
    vertical-align: middle;
}
[class^="tab-"] .nav span.active,
[class^="tab-"] .nav a.active,
[class^="tab-"] .nav a:hover {
    border-top: 1px solid #e72a30;
    border-right: 1px solid #e72a30;
    border-left: 1px solid #e72a30;
    border-bottom: 1px solid #e72a30;
    background-color: #e72a30;
    color: #fff;
}
[class^="tab-"] .panel-wrap .panel {
    display: none;
}
[class^="tab-"] .panel-wrap .panel.active {
    display: block;
}
.panel-wrap [class^="tab-"] .nav {
    border-bottom: 1px solid #e1e1e1;
}
.panel-wrap [class^="tab-"] .nav a.active,
.panel-wrap [class^="tab-"] .nav a:hover {
    border-top: 1px solid #e1e1e1;
    border-right: 1px solid #e1e1e1;
    border-left: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
    background-color: #fff;
    color: #e72a30;
    font-weight: bold;
}

/* STEP */
.step {
    overflow: hidden;
    margin-bottom: 100px;
    border: 1px solid #ccc;
}
.step li {
    position: relative;
    float: left;
    padding: 12px 15px 12px 50px;
    background-color: #fff;
    color: #363636;
    font-size: 18px;
}
.step.type3 li {
    width: 33.3333%;
}
.step.type4 li {
    width: 25%;
}
.step li:before {
    content: " ";
    position: absolute;
    top: 0;
    right: -70px;
    z-index: 10;
    width: 0;
    height: 0;
    border-color: transparent transparent transparent #ccc;
    border-style: solid;
    border-width: 35px;
}
.step li:after {
    content: " ";
    position: absolute;
    top: 0;
    right: -69px;
    z-index: 10;
    width: 0;
    height: 0;
    border-color: transparent transparent transparent #fff;
    border-style: solid;
    border-width: 35px;
}
.step li .num {
    display: block;
    font-size: 13px;
}
.step li.active {
    background-color: #e72a30;
    color: #fff;
}
.step li.active:before {
    border-color: transparent transparent transparent #e72a30;
    border-style: solid;
    border-width: 35px;
}
.step li.active:after {
    display: none;
}

/* pagination */
.pagination {
    margin-top: 30px;
    text-align: center;
    font-size: 0;
}
.pagination .num {
    display: inline-block;
    margin: 0 20px;
    color: #333;
    font-size: 15px;
    vertical-align: middle;
}
.pagination .num .mobile-type {
    display: none;
}
.pagination .num a {
    display: inline-block;
    width: 32px;
    padding: 9px 0;
    color: #333;
    text-align: center;
}
.pagination .num a:first-child {
    margin-left: 0;
}
.pagination .num a.active {
    color: #e72a30;
    font-weight: bold;
}
.pagination .num .current-page {
    display: inline-block;
    padding: 6px 0;
    color: #e72a30;
    font-weight: bold;
    vertical-align: middle;
}
.pagination .num .pisa {
    display: inline-block;
    margin: 0 10px;
    padding: 6px 0;
    vertical-align: middle;
}
.pagination .num .total-page {
    display: inline-block;
    padding: 6px 0;
    vertical-align: middle;
}
.pagination .btn-prev {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: url(../images/uikit/pagination.png) no-repeat -40px 0;
    vertical-align: middle;
}
.pagination .btn-next {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: url(../images/uikit/pagination.png) no-repeat -80px 0;
    vertical-align: middle;
}
.pagination .btn-prev-10 {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: -1px;
    background: url(../images/uikit/pagination.png) no-repeat 0 0;
    vertical-align: middle;
}
.pagination .btn-next-10 {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-left: -1px;
    background: url(../images/uikit/pagination.png) no-repeat -120px 0;
    vertical-align: middle;
}

/* CERTIFY */
.certify {
    display: block;
    margin-top: 13px;
    color: #f62332;
    font: 15px/1.5 "나눔바른고딕", NBG, "Malgun Gothic", sans-serif;
    vertical-align: middle;
}
.certify .btn {
    margin-left: 13px;
}

/* HEADING */
[class^="heading"] {
    position: relative;
    width: 100%;
    margin: 0 auto 34px;
}
[class^="heading"][class*="-mypage"] {
    background: url(../images/mypage/bg-mypage.png) no-repeat right bottom;
}
[class^="heading"] h2 {
    float: left;
    border-bottom: 0;
    color: #333;
    font-weight: bold;
    font-size: 32px;
}
.path {
    position: absolute;
    right: 0;
    bottom: 6px;
}
.path > li {
    float: left;
    position: relative;
    margin-left: 50px;
    font-size: 16px;
}
.path > li:first-child {
    margin-left: 0;
    padding-left: 0;
    padding: 0;
}
.path > li:before {
    content: " > ";
    position: absolute;
    top: 0;
    left: -29px;
}
.path > li:first-child:before {
    display: none;
}
.path > li:last-child {
    color: #000;
    border-bottom: 1px solid #000;
}

/* LIST */
.list {
    border-top: 1px solid #e1e1e1;
    font-size: 16px;
}
.list .list-head {
    position: relative;
    padding: 12px 40px 13px;
    border-bottom: 1px solid #e1e1e1;
    background-color: #f6f6f6;
}
.list .list-head h4 {
    font-weight: normal;
    font-size: 16px;
}
.list .list-head.button {
    padding-right: 180px;
}
.list .list-head.button .btn {
    position: absolute;
    top: 10px;
    right: 40px;
    padding: 3px 20px 6px;
    font: 14px/1.5 "Malgun Gothic", sans-serif;
}
.list .desc p em {
    color: #e72a30;
    font-style: normal;
}
.list .desc {
    padding: 21px 40px;
    border-bottom: 1px solid #e1e1e1;
}
.list .desc ul {
    margin-top: 14px;
}
.list .desc > ul:first-child {
    margin-top: 0;
}
.list .desc ul li {
    position: relative;
    margin-top: 9px;
    padding-left: 15px;
    color: #666;
    font-size: 16px;
    text-indent: -13px;
}
.list .desc .indent1 > li {
    color: #333;
    text-indent: 0;
}
.list .desc ul li:first-child {
    margin-top: 0;
}
.list .desc .indent1 > li:before {
    display: inline-block;
    content: " ";
    position: absolute;
    top: 9px;
    left: 0;
    width: 4px;
    height: 4px;
    background: url(../images/uikit/icon-list-dot.png) no-repeat 0 0;
    color: #333;
}
.list .desc .indent3 > li {
    padding-left: 22px;
    text-indent: -22px;
}
.list .desc.basic {
    padding: 0;
    border-bottom: 0;
}
.list .desc.basic ul {
    margin-top: 20px;
    border-bottom: 1px solid #e1e1e1;
}
.list .desc.basic > ul:first-child {
    margin-top: 0;
}
.list .desc.basic ul li {
    margin-top: 0;
    padding: 12px 40px 13px;
    border-top: 1px solid #e1e1e1;
}
.list .desc.basic ul:first-child > li:first-child {
    border-top: 0;
}
.list .desc.basic ul > li .title {
    width: 150px;
}

/* HELPER */
.helper {
    padding: 34px 40px;
    background-color: #f6f6f6;
}
.helper p {
    margin-top: 14px;
    color: #333;
    font-size: 18px;
    text-align: center;
}
.helper p:first-child {
    margin-top: 0;
}
.helper em {
    font-style:normal;
    color: #e72a30;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 0 20px;
    background: url(../images/uikit/bg-modal.png);
    -webkit-overflow-scrolling: touch;
}
.modal .dialog {
    position: relative;
    max-width: 600px;
    height: auto;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    margin: 100px auto;
    padding: 40px;
    border-top: 2px solid #e72a30;
    background-color: #fff;
}
.modal .dialog .modal-head {
    border-bottom: 0;
    color: #e72a30;
    font-size: 22px;
}
.modal .dialog .modal-body {
    margin-top: 36px;
}
.modal .dialog .section-wrap {
    margin-top: 0;
}
.modal .section-wrap .section {
    margin-top: 40px;
}
.modal .dialog .sub-title h3 {
    color: #333;
    font-size: 16px;
}
.modal .button-group {
    margin-top: 40px;
}
.modal .terms-wrap {
    overflow-x: hidden;
    overflow-y: scroll;
    height: 75px;
    border: 1px solid #ccc;
}
.modal .terms-wrap .inner {
    overflow: hidden;
    width: 503px;
    min-height: 75px;
    padding: 15px 20px 16px;
    word-break: break-all;
}
.modal .terms-wrap ul {
    margin-top: 10px;
}
.modal .terms-wrap ul:first-child {
    margin-top: 0;
}
.modal .terms-wrap ul li {
    margin-left: 10px;
}
.modal .terms-wrap ul > li  {
    margin-left: 0;
}
.modal .table-fluid .tr [class^="td-"]:first-child [class^="th-"] .title {
    padding: 10px 20px;
    text-align: left;
}
.modal .table-fluid .tr .value {
    padding: 14px 20px;
    text-align: left;
}
.modal .dialog .btn-close {
    position: absolute;
    top: -2px;
    right: -40px;
}
.modal-open {
    overflow: hidden;
}
.modal-open body {
    overflow: hidden;
    padding-right: 17px;
}
:root .modal {
    background: rgba(0, 0, 0, 0.7);
}

@media screen and (max-width: 1200px) {

    /* CHECKBOX */
    .checkbox-group.tab-type li {
        float: none;
        margin-top: 3px;
        margin-left: 0;
    }
    .checkbox-group.tab-type li:first-child {
        margin-top: 0;
    }
    input[type="checkbox"] + label {
        font-size: 12px;
        background-position: 0 1px;
    }
    input[type="checkbox"] + label.active {
        background-position: 0 -24px;
    }
    .checkbox-group.horizontal li {
        float: left;
        margin-top: 0;
        margin-left: 40px;
    }
    .checkbox-group.horizontal li:first-child {
        margin-left: 0;
    }
    .checkbox-group.vertical li {
        margin-top: 5px;
    }

    /* RADIO */
    .radio-group.tab-type li {
        float: none;
        margin-top: 3px;
        margin-left: 0;
    }
    .radio-group.tab-type li:first-child {
        margin-top: 0;
    }
    .radio-group.horizontal li {
        float: left;
        margin-top: 0;
        margin-left: 40px;
    }
    .radio-group.horizontal li:first-child {
        margin-left: 0;
    }
    .radio-group.vertical li {
        margin-top: 5px;
    }

    /* EMAIL */
    .email input[type="text"] {
        width: 160px;
    }
    .email input[type="text"].user-id {
        width: 160px;
    }

    /* ADDRESS */
    .address input[type="text"].zip-code {
        width: 343px;
    }
    .address input[type="text"].nomal-addr {
        display: block;
        width: 100%;
    }
    .address input[type="text"].detail-addr {
        width: 65%;
        margin-left: 0;
    }
    .address .select {
        width: 31%;
        margin-left: 4%;
    }

    /* step */
    .step {
        margin-bottom: 60px;
    }
http://localhost:8080/intro/contact.do

    /* HELPER */
    .helper p {
        font-size: 14px;
    }

} /* (max-width: 1024px) */

@media screen and (max-width: 767px) {
    /* CHECKBOX */
    .checkbox-group.mobile-type li {
        float: none;
        margin-top: 3px;
        margin-left: 0;
    }
    .checkbox-group.mobile-type li:first-child {
        margin-top: 0;
    }
    /* RADIO */
    .radio-group.mobile-type li {
        float: none;
        margin-top: 3px;
        margin-left: 0;
    }
    .radio-group.mobile-type li:first-child {
        margin-top: 0;
    }

    /* SECTIOM WRAP */
    .section-wrap {
        margin-top: 30px;
    }
    .section-wrap .section {
        margin-top: 30px;
    }

    /* TABLE */
    .table .integral {
        position: static;
        margin-bottom: 5px;
        font-size: 12px;
        text-align: right;
    }
    .table .mCustomScrollBox {
        overflow: auto;
    }
    .table .mCustomScrollBox {
        overflow: auto;
    }
    .table.vertical-type table thead th,
    .table.vertical-type table tbody th,
    .table.vertical-type table tbody td { padding: 7px 5px; font-size: 12px; }
    .table.horizontal-scrolling {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .table.horizontal-scrolling table {
        width: 750px;
    }

    /* FLUID TABLE */
    .table-fluid {
        margin-top: 25px;
        padding-left: 0;
    }
    .table-fluid .integral {
        top: -20px;
        font-size: 11px;
    }
    .table-fluid .tr:first-child {
        border-top: 0;
    }
    .table-fluid .tr [class^="td-"] {
        display: table;
        width: 100%;
        border-left: 0;
    }
    .table-fluid .tr [class^="th-"] {
        display: table-cell;
        position: relative;
        width: 80px;
        padding: 15px 10px;
        background-color: #f5f5f5;
        line-height: 1.5;
        vertical-align: middle;
    }
    .table-fluid .tr [class^="td-"]:first-child [class^="th-"] {
        display: table-cell;
        position: relative;
        width: 80px;
        padding: 15px 10px;
        border-top: 0;
    }
    .table-fluid .tr [class^="td-"] [class^="th-"] .title {
        padding: 0;
    }
    .table-fluid .tr .value {
        display: table-cell;
        padding: 15px 10px;
        vertical-align: middle;
        text-align: left;
    }
    .table-fluid .tr .value {
        padding: 10px 20px;
    }
    .table-fluid .tr [class^="td-"] .value {
        border-left: 1px solid #ddd;
    }

    .table-fluid.vertical {
        padding-top: 0;
    }
    .table-fluid.vertical .inner {
        border-collapse: separate;
    }
    .table-fluid.vertical .tr [class^="th-"] {
        position: static;
        margin-left: 0;
        border-top: 1px solid #ddd;
    }
    .table-fluid.vertical .tr [class^="td-"] .value {
        border-left: 1px solid #ddd;
    }
    .table-fluid.vertical .tr:first-child {
        border-top: 0;
    }
    .table-fluid.vertical .tr:first-child [class^="th-"] {
        position: static;
        margin-left: 0;
    }
    .table-fluid.vertical .tr [class^="td-"] [class^="th-"] {
        display: table-cell;
    }
    .table-fluid.vertical .tr [class^="td-"]:first-child [class^="th-"],
    .table-fluid.vertical .tr [class^="td-"]:first-child .value {
        border-top: 1px solid #999;
    }
    .table-fluid.vertical .tr:first-child [class^="td-"]:first-child [class^="th-"],
    .table-fluid.vertical .tr:first-child [class^="td-"]:first-child .value {
        border-top: 0;
    }
    .table-fluid.vertical .tr .value {
        border-top: 1px solid #ddd;
    }

    .table-fluid.empty {
        padding-top: 0;
    }
    .table-fluid.empty .inner {
        border-collapse: separate;
    }
    .table-fluid.empty .tr [class^="th-"] {
        position: static;
        margin-left: 0;
        border-top: 1px solid #ddd;
        background-color: #fff;
    }
    .table-fluid.empty .tr [class^="td-"] .value {
        border-left: 1px solid #ddd;
    }
    .table-fluid.empty .tr:first-child {
        border-top: 0;
    }
    .table-fluid.empty .tr:first-child [class^="th-"] {
        position: static;
        margin-left: 0;
    }
    .table-fluid.empty .tr [class^="td-"] [class^="th-"] {
        display: table-cell;
    }
    .table-fluid.empty .tr [class^="td-"]:first-child [class^="th-"],
    .table-fluid.empty .tr [class^="td-"]:first-child .value {
        border-top: 1px solid #999;
    }
    .table-fluid.empty .tr:first-child [class^="td-"]:first-child [class^="th-"],
    .table-fluid.empty .tr:first-child [class^="td-"]:first-child .value {
        border-top: 0;
    }
    .table-fluid.empty .tr .value {
        border-top: 1px solid #ddd;
    }


    /*
    .table-fluid .tr:first-child [class^="td-"]:first-child .value {
    border-top: 0;
}
    .table-fluid.empty .tr {
    border-top: 1px solid #999;
}

}*/

    /* FORM */
    input[type="text"],
    input[type="password"],
    textarea,
    select {
        font: 11px/1.5 "Malgun Gothic", sans-serif;
    }

    input[type="password"],
    .id input[type="text"]{
        width: 140px;
    }
    .pass-grade {
        display: block;
        margin-top: 5px;
        margin-left: 0;
        font-size: 11px;
    }
    .id .btn.dark {
        display: block;
        width: 140px;
        margin-top: 5px;
        margin-left: 0;
        font-size: 11px;
        padding: 0 10px 3px;
    }
    .id .advice {
        margin-top: 5px;
        margin-left: 0;
        font-size: 11px;
    }

    /* TEXT */
    input[type="text"] {
        height: 20px;
        padding: 1px 6px 2px;
    }
    input[type="text"]:focus{
        padding: 0 5px 1px;
    }
    input[type="text"].mobile-block {
        display: block;
        width: 100%;
    }

    /* PASSWORD */
    input[type="password"] {
        height: 20px;
        padding: 1px 6px 2px;
    }
    input[type="password"].mobile-block {
        display: block;
        width: 100%;
    }

    /* TEXTAREA */
    textarea.mobile-block {
        display: block;
        width: 100%;
    }

    /* CHECKBOX */
    input[type="checkbox"] + label {
        padding-left: 21px;
        background-position: 0 1px;
        font-size: 12px;
    }

    /* RADIO */
    input[type="radio"] + label {
        padding-left: 21px;
        background-position: 0 0;
        font-size: 12px;
    }
    .radio-choice input[type="radio"] + label {
        min-width: 60px;
        padding: 0 10px;
        font-size: 12px;
    }

    /* SELECT */
    .select {
        margin-top: 0;
    }
    .select select {
        height: 20px;
        font: 11px/1.5 "Malgun Gothic", sans-serif;
    }
    .select .current-value {
        height: 20px;
        padding: 1px 13px 2px 3px;
    }
    .select select:focus + .current-value {
        padding: 0px 12px 1px 2px;
        border: 2px solid #363636;
    }
    .select .current-value em {
        font-size: 11px;
    }
    .select .current-value:after {
        top: 7px;
        right: 5px;
        border-width: 4px;
    }
    .select select:focus + .current-value:after {
        top: 1px;
        right: 4px;
        border-width: 4px;
    }
    .select.mobile-block {
        display: block;
        width: auto;
    }

    /* SEARCH */
    /*.srch.mobile-block {
        max-width: 100%;
    }*/

    /* ADDRESS */
    .address input[type="text"] {
        margin-top: 5px;
    }
    .address input[type="text"].zip-code {
        width: 44%;
    }
    .address input[type="text"].detail-addr {
        width: 64%;
    }
    .address .select {
        width: 34%;
        margin-top: 5px;
        margin-left: 2%;
    }
    .address .btn {
        width: 52%;
        margin-left: 4%;
        font-size: 11px;
        padding: 1px 5px 4px;
    }


    /* TEL */
    .tel {
        margin-top: 0;
    }
    .tel .advice {
        font-size: 12px;
        margin-bottom: 5px;
    }
    .tel .select {
        width: 47px;
    }
    .tel .dash {
        width: 8px;
        padding: 2px 0 3px;
        font-size: 10px;
    }
    .tel input[type="text"] {
        width: 43px;
        padding: 1px 6px 2px;
    }
    .tel input[type="text"]:focus {
        padding: 0px 5px 1px;
    }
    .tel .select {
        font-size: 11px;
    }


    /* E-MAIL */
    .email {
        display: block;
    }
    .email input[type="text"] {
        width: 55%;
    }
    .email input[type="text"].user-id {
        width: 88%;
        margin-top: 0;
    }
    .email .at {
        width: 12%;
    }
    .email .select {
        width: 40%;
        margin-left: 5%;
    }
    .email .advice {
        margin-top: 5px;
        font-size: 11px;
    }

    /* SUB TITLE */
    .sub-title {
        margin-bottom: 10px;
        padding-right: 0;
    }
    .sub-title h3 {
        font-size: 16px;
    }
    .sub-title.button {
        padding-right: 0;
    }
    .sub-title .btn {
        position: static;
        width: 100%;
        margin-top: 10px;
    }

    /* SORT */
    .sub-title.sort {
        margin-bottom: 10px;
        padding-bottom: 26px;
    }
    .sub-title.sort ul {
        top: 36px;
    }
    .sort ul li:before {
        height: 14px;
    }
    .sort ul li a {
        font-size: 14px;
    }

    /* CALENDAR */
    .calendar > span {
        display: block;
        margin-top: 13px;
    }
    .calendar > span:first-child {
        margin-top: 0;
    }
    .calendar input[type="text"] {
        width: 250px;
        background-position: 214px center;
    }
    .calendar input[type="text"]:focus {
        background-position: 213px center;
    }
    .calendar .dash {
        display: none;
    }
    .ui-datepicker {
        width: 250px;
    }

    /* BUTTON */
    .btn.mobile-btn.lg,
    .btn.mobile-btn.xl {
        min-width: 70px;
        padding: 1px 15px 3px;
    }
    .btn.mobile-btn.xl.red,
    .btn.mobile-btn.xl.gray,
    .btn.mobile-btn.xl.dark {
        padding: 2px 15px 4px;
        border: 0;
    }
    .btn.mobile-btn.lg.red,
    .btn.mobile-btn.lg.gray,
    .btn.mobile-btn.lg.dark {
        padding: 2px 15px 4px;
        border: 0;
    }
    .btn.mobile-btn.red,
    .btn.mobile-btn.gray,
    .btn.mobile-btn.dark {
        padding: 2px 15px 4px;
        border: 0;
    }

    /* BUTTON GROUP */
    .button-group .btn.xl,
    .button-group .btn.xl.red,
    .button-group .btn.xl.gray,
    .button-group .btn.xl.dark {
        padding: 7px 19px 9px;
        border: 0;
    }
    .button-group .mobile-btn {
        margin-left: 4px;
    }

    /* TAB */
    [class^="tab-"] .nav span, [class^="tab-"] .nav a {
        height: 40px;
        font-size: 12px;
        letter-spacing: -1px;
    }

    /* step */
    .step {
        margin-bottom: 30px;
    }
    .step li {
        padding: 14px 0 15px;
        border-left: 1px solid #e1e1e1;
        font-size: 14px;
    }
    .step li:first-child,
    .step li.active {
        border-left: 0;
    }
    .step li:before,
    .step li:after {
        display: none;
    }
    .step li .num {
        font-size: 14px;
        text-align: center;
    }
    .step li .text {
        display: none;
    }

    /* PAGINATION */
    .pagination .num .pc-type {
        display: none;
    }
    .pagination .num .mobile-type {
        display: inline;
    }

    /* CERTIFY */
    .certify .btn {
        display: block;
        width: 100%;
        margin-top: 13px;
        margin-left: 0;
    }

    /* HEADING */
    [class^="heading"] {
        margin-bottom: 20px;
    }
    [class^="heading"][class*="-mypage"] {
        background: none;
    }
    [class^="heading"] h2 {
        float: none;
        margin-top: 26px;
        font-size: 22px;
        line-height: 1.3;
        letter-spacing: -1px;
    }
    .path {
        display: block;
        position: static;
        bottom: 0;
        margin: 0 -25px;
        padding: 0;
        border-top: 1px solid #e1e1e1;
        border-bottom: 1px solid #e1e1e1;
        background-color: #f8f8f8;
    }
    .path > li {
        margin-left: 0;
        padding: 11px 0 11px 30px;
        font-size: 12px;
    }
    .path > li:first-child {
        padding: 13px 0 14px 10px;
    }

    .path > li img {
        display: block;
    }
    .path > li:before {
        content: " ";
        position: absolute;
        top: 0;
        left: auto;
        left: 1px;
        width: 0;
        height: 0;
        border: 20px solid transparent;
        border-right: 0;
        border-left: 20px solid #e1e1e1;
    }
    .path > li:after {
        content: " ";
        position: absolute;
        top: 0;
        left: auto;
        left: 0;
        z-index: 10;
        width: 0;
        height: 0;
        border: 20px solid transparent;
        border-right: 0;
        border-left: 20px solid #f8f8f8;
    }
    .path > li:first-child:before,
    .path > li:first-child:after {
        display: none;
    }
    .path > li:last-child {
        border-bottom: 0;
    }

    /* LIST*/
    .list .list-head h4 {
        font-size: 14px;
    }
    .list .list-head.button {
        padding: 12px 20px 13px;
    }
    .list .list-head.button .btn {
        right: 20px;
        font-size: 12px;
    }
    .list .desc {
        padding: 10px 20px;
        font-size: 12px;
    }
    .list .desc ul li {
        margin-top: 3px;
        padding-left: 10px;
        font-size: 12px;
        text-indent: -8px;
    }
    .list .desc ul {
        margin-top: 5px;
    }
    .list .desc ul li{
        margin-top: 3px;
    }
    .list .desc .indent3 > li {
        padding-left: 15px;
        text-indent: -15px;
    }
    .list .desc.basic ul {
        margin-top: 10px;
    }
    .list .desc.basic ul li{
        padding: 6px 20px;
    }

    /* HELPER */
    .helper {
        padding: 17px 20px;
    }
    .helper p {
        margin-top: 7px;
        font-size: 14px;
    }

    /* MODAL */
    .modal {
        padding: 0 15px;
    }
    .modal .dialog {
        margin: 50px auto;
        padding: 15px;
    }
    .modal .dialog .modal-head {
        font-size: 16px;
    }
    .modal .dialog .sub-title h3 {
        font-size: 14px;
    }
    .modal .dialog .sub-title .text {
        font-size: 12px;
    }
    .modal .dialog .modal-body {
        margin-top: 20px;
    }
    .modal .section-wrap .section {
        margin-top: 20px;
    }
    .modal .terms-wrap .inner {
        width: 100%;
    }
    .modal .table-fluid .tr [class^="td-"]:first-child [class^="th-"] .title {
        padding: 0;
        text-align: left;
        font-size: 12px;
    }
    .modal .table-fluid .tr .value {
        padding: 10px;
        font-size: 12px;
    }
    .modal .button-group {
        margin-top: 20px;
    }
    .modal .dialog .btn-close {
        position: absolute;
        top: -42px;
        right: 0;
    }
    .modal-open body {
        padding-right: 0;
    }

} /* (max-width: 767px) */
