@charset "utf-8";
body {
    display: flex;
    flex-direction: column;
}
.wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
    font-size:16px; 
    font-size:1rem; 
    font-weight:400;
    word-break: keep-all;
    background: #fcfafa;
}
.wrap:after {
    content: '';
    display: block;
    position: absolute;
    bottom: -60px;
    width: 100%;
    height: 60px;
    z-index: 1;
    box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.1);
}
.container {
    width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 100px;
}
.header {
    position: relative;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}
.header.main-header {
    box-shadow: none;
    padding-bottom: 42px;
}

.header .logo {
    margin: 40px 0 23px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}
.header .logo > a {
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.header .util-wrap {
    padding: 40px 45px 40px 8px;
}
.main-header .util-wrap {
    padding: 40px 8px 40px;
}
.header .util-wrap a {
    display: inline-block;
    position: relative;
}

.header .gnb-wrap {
    gap: 50px;
}
.header .gnb-wrap li {
    display: inline-block;
}
.header .gnb-wrap a {
    position: relative;
    display: block;
    color: #222;
    padding: 15px 2px;
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: 500;
}
.header .gnb-wrap a:hover {
    font-weight: 700;
}
.header .gnb-wrap a:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    width: 0;
    height: 3px;
    background-color: #222;
    transition: 0.3s ease;
}
.header .gnb-wrap .active a:after,
.header .gnb-wrap a:hover:after {
    left: 0;
    right: 0;
    width: 100%;
}

.main-gnb-wrap {
    width: 400px;
    margin: 76px 0 0 0;
}
.main-gnb-wrap li a {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
    padding: 22px 0;
    border-bottom: 1px solid #222;
}
.main-gnb-wrap li a:after {
    content: '';
    position: relative;
    display: inline-block;
    margin-right: 5px;
    width: 24px;
    height: 24px;
    background: url('/include/images/potal/ico_arrow_right_bk.svg') no-repeat center;
    background-size: 100%;
    transition: transform 0.3s ease;
}
.main-gnb-wrap li a:hover:after {
    transform: translateX(5px);
}
.left-section-wrap {
    flex: 1;
    padding-right: 150px;
}
.right-section-wrap {
    width: 300px;
}
.lnb-wrap {
    width: 300px;
}
.lnb-wrap li a {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: 400;
    color: #73767c;
    line-height: 1.2;
    padding: 17px 0 18px;
    border-bottom: 1px solid #d9d9d9;
}
.lnb-wrap li a:hover,
.lnb-wrap li.active a {
    color: #000;
    font-weight: 700;
}
.lnb-wrap li a:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    display: block;
    margin-right: 5px;
    width: 0;
    height: 1px;
    background-color: #222;
    transition: width 0.3s ease;
    z-index: 1;
}
.lnb-wrap li a:hover:after {
    left: 0;
    right: 0;
    width: 100%;
}

.main-inner-contents-wrap {
    padding: 62px 0 140px;
}
.inner-contents-wrap {
    min-width: 1100px;
    padding: 80px 60px 100px;
}

/* link list */
.exlink-list > li > a {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: #222;
    line-height: 1.2;
    padding: 30px 0;
    border-bottom: 1px solid #222;
}
.exlink-list > li > a:after {
    content: '';
    position: relative;
    display: inline-block;
    margin-right: 5px;
    width: 24px;
    height: 24px;
    background: url('/include/images/potal/ico_arrow_right_bk.svg') no-repeat center;
    background-size: 100%;
    transition: transform 0.3s ease;
}
.exlink-list > li > a:hover:after {
    transform: translateX(5px);
}
.exlink-list > li > a > div {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.exlink-list > li > a strong {
    font-size: 26px;
    font-size: 1.625rem;
    font-weight: 500;
}


.exlink-list02 > li > a {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #222;
    line-height: 1.2;
    padding: 20px 0;
    border-bottom: 1px solid #eeeff0;
}
.exlink-list02 > li > a:after {
    content: '';
    position: relative;
    display: inline-block;
    margin-right: 5px;
    width: 24px;
    height: 24px;
    background: url('/include/images/potal/ico_arrow_right_bk.svg') no-repeat center;
    background-size: 100%;
    transition: transform 0.3s ease;
}
.exlink-list02 > li > a:hover:after {
    transform: translateX(5px);
}
.exlink-list02 > li > a > div {
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* bullet list */
.bullet-list > li {
    display: flex;
    flex-direction: row;
    position: relative;
    color: #222;
    font-size: 16px;
    font-size: 1rem;
}
.bullet-list > li:before {
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    margin-top: 10px;
    margin-right: 10px;
    border-radius: 50%;
    background-color: #222;
    flex-shrink: 0;
}

.grey-bullet-list > li {
    display: flex;
    flex-direction: row;
    position: relative;
    color: #73767c;
    font-size: 14px;
    font-size: 0.875rem;
    padding: 5px 0;
    line-height: 1.3;
}
.grey-bullet-list > li:before {
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    margin-top: 6px;
    margin-right: 6px;
    border-radius: 50%;
    background-color: #73767c;
    flex-shrink: 0;
}
.grey-dash-list > li {
    display: flex;
    flex-direction: row;
    position: relative;
    color: #73767c;
    font-size: 14px;
    font-size: 0.875rem;
    padding: 5px 0;
    line-height: 1.3;
}
.grey-dash-list > li:before {
    content: '-';
    display: block;
    margin-right: 5px;
    color: #73767c;
    flex-shrink: 0;
}

.chk-ico-list > li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}
.chk-ico-list > li:before {
    content: '';
    display: inline-block;
    width: 26px;
    height: 26px;
    margin-right: 3px;
    background: url('/include/images/potal/ico_chk_rd.svg') no-repeat center;
    background-size: 100%;
}



/* table */
.table-wrap01 {
    position: relative;
    border-top: 1px solid #d9d9d9;
}

.table01 {
    table-layout: fixed;
}

.table01 th {
    padding: 12px 10px;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 400;
    height: 40px;
    background-color: #f2f2f2;
    color: #73767c;
    border-left: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
}

.table01 th:first-child {
    border-left: none;
}

.table01 td {
    padding: 12px 10px;
    border-bottom: 1px solid #d9d9d9;
    border-left: 1px solid #d9d9d9;
    height: 40px;
    color: #73767c;
    font-weight: 400;
    font-size: 14px;
    font-size: 0.875rem;
}

.table01 tbody tr td:first-child {
    border-left: none;
}

/* board table */
.board-wrap01 {
    position: relative;
}

.board01 {
    table-layout: fixed;
    border-top: 1px solid #d9d9d9;
}

.board01 th, 
.board01 td {
    position: relative;
    padding: 9px 10px;
    text-align: center;
    height: 38px;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 400;
    border-bottom: 1px solid #d9d9d9;
}

.board01 th {
    color: #666;
    border-bottom: 1px solid #d9d9d9; 
}

.board01 th:before,
.board01 .th:before {
    content: '';
    display: block;
    width: 1px;
    position: absolute;
    right: 0;
    top: 12px;
    bottom: 12px;
    background-color: #cecece;
}

.board01 th:last-child:before,
.board01 .th:last-child:before {
    display: none;
}

.board01 td {
    color: #73767c;
}
.board01 td a {
    color: #333;
}
.board01 .download-file a {
    color: #73767c;
}

.board01 tbody tr td:first-child {
    border-left: none;
}

/* select */
select {
    background: #fff;
}

.select01 {
    position: relative;
}

.select01.inlineB {
    display: inline-block;
    width: auto;
}

.select01 select {
    display: block;
    width: 100%;
    height: 25px;
    padding: 0 30px 0 8px;
    font-size: 13px;
    font-size: 0.8125rem;
    color: #6c6c6c;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    box-sizing: border-box;
    outline: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: 0.4s;
}

select::-ms-expand {
    display: none;
}

.select01 select:focus {
    border-color: #222;
}

.select01 select option {
    font-weight: 400;
    color: #222;
}

.select01 select option:disabled,
.select01 select:invalid {
    color: #c6c6c6;
}

.select01:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 8px;
    width: 16px;
    height: 35px;
    margin-top: -17.5px;
    background: url('/include/images/potal/ico_chevron_down_bk.svg') no-repeat right center;
    background-size: 100%;
    z-index: 2;
    pointer-events: none;
}

/* input */
.input01 {
    position: relative;
}

.input01 input {
    display: block;
    width: 100%;
    height: 25px;
    padding: 9px 11px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-size: 0.875rem;
    color: #222;
    background: #fff;
    transition: 0.4s;
    outline: 0;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}

.input01 input:focus {
    border-color: #222;
}

.input01 input::placeholder {
    color: #c6c6c6;
}

.input01 input:-ms-input-placeholder {
    color: #c6c6c6;
}

.input01 input::-ms-input-placeholder {
    color: #c6c6c6;
}

.input01 input::-moz-placeholder {
    opacity: 1;
}

.input-with-btn .input01 input {
    padding-right: 32px;
}

.input01 input:disabled {
    color: #999;
    background-color: #f6f7f8;
}

.input01 {
    position: relative;
}

.input01 textarea {
    display: block;
    width: 100%;
    height: 140px;
    padding: 9px 11px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-size: 0.875rem;
    color: #222;
    background: #fff;
    transition: 0.4s;
    outline: 0;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}

.input01 textarea:focus {
    border-color: #222;
}

.input01 textarea::placeholder {
    color: #c6c6c6;
}

.input01 textarea:-ms-input-placeholder {
    color: #c6c6c6;
}

.input01 textarea::-ms-input-placeholder {
    color: #c6c6c6;
}

.input01 textarea::-moz-placeholder {
    opacity: 1;
}

.input-with-btn .input01 textarea {
    padding-right: 32px;
}

.input01 textarea:disabled {
    color: #999;
    background-color: #f6f7f8;
}


/* accordion list */
.accordion-detail {
    display: none;
}
.btn-acco {
	display: flex;
    flex-direction: row;
	position: relative;
    align-items: center;
    justify-content: space-between;
}
.btn-acco::after {
	content: '';
	margin-left: 10px;
	width: 24px;
	height: 24px;
	background: url('/include/images/potal/ico_chevron_down_bk.svg') no-repeat center;
	background-size: 100%;
	transform: rotate(0deg);
    transition: 0.3s;
}
.accor-list > li.active .btn-acco::after {
	transform: rotate(180deg);
}
.acco-cont {
	display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease, opacity 0.4s;
    overflow:hidden;
}
.acco-cont-child {
    min-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: visibility 0.3s;
}
.accor-list > li.active .acco-cont {
    grid-template-rows: 1fr;
    height: auto;
    opacity: 1;
    transform: translateY(0);
}
.accor-list > li.active .acco-cont-child {
    visibility: visible;
}

/* pager */
.pager {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.pager a {
    display: inline-block;
    position: relative;
    width: 20px;
    height: 30px;
    line-height: 30px;
    color: #73767c;
    font-size: 14px;
    font-size: 0.875rem;
    border-radius: 4px;
    text-align: center;
    z-index: 1;
    font-weight: 400;
}


.pager a.active {
    color: #dc143c;
    font-weight: 600;
    z-index: 2;
}

.pager .btn-prev {
    background: url('/include/images/potal/ico_arr_prev.svg') no-repeat center;
    background-size: 16px;
}

.pager .btn-next {
    background: url('/include/images/potal/ico_arr_next.svg') no-repeat center;
    background-size: 16px;
}

.pager .btn-first {
    background: url('/include/images/potal/ico_arr_go_first.svg') no-repeat center;
    background-size: 16px;
}

.pager .btn-last {
    background: url('/include/images/potal/ico_arr_go_last.svg') no-repeat center;
    background-size: 16px;
}


/* 버튼 */
.btn-see-more {
    display: inline-flex;
    align-items: center;
    color: #222;
}
.btn-see-more:after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-left: 10px;
    background: url('/include/images/potal/ico_arrow_down_bk.svg') no-repeat center;
    background-size: 100%;
}
.active .btn-see-more:after {
    transform: rotate(180deg);
}

.btn-red-common {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    min-height: 44px;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    background-color: #DA6460;
    border: 0;
    outline: 0;
    border-radius: 4px;
}
.btn-red-small {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-width: 155px;
    min-height: 36px;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    background-color: #DA6460;
    border: 0;
    outline: 0;
    border-radius: 4px;
}
.btn-red-round {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    min-height: 50px;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background-color: #DA6460;
    border: 0;
    outline: 0;
    border-radius: 30px;
}
.btn-black-common {
    display: inline-block;
    padding: 9px 14px;
    text-align: center;
    min-width: 80px;
    min-height: 36px;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    background-color: #393e48;
    border: 0;
    outline: 0;
    border-radius: 4px;
}
.btn-darkgrey-sm {
    display: inline-block;
    text-align: center;
    min-width: 68px;
    min-height: 23px;
    font-size: 12px;
    font-size: 0.75rem;
    margin: 0 5px;
    padding: 4px 15px;
    color: #fff;
    background-color: #6c6c6c;
    border: 0;
    outline: 0;
    border-radius: 5px;
}
.btn-black-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    min-height: 25px;
    font-size: 12px;
    font-size: 0.75rem;
    margin: 0 5px;
    padding: 5px 15px;
    color: #fff;
    background-color: #323a46;
    border-radius: 4px;
    box-sizing: border-box;
    border: 0;
    outline: 0;
}
.btn-line-black {
    display: inline-block;
    min-width: 30px;
    min-height: 25px;
    font-size: 13px;
    font-size: 0.8125rem;
    margin: 0 5px;
    padding: 5px 15px;
    line-height: 1;
    color: #555;
    background-color: #fff;
    border: 1px solid #222;
    border-radius: 4px;
    box-sizing: border-box;
    outline: 0;
}
.btn-line-grey {
    display: inline-block;
    min-width: 30px;
    min-height: 25px;
    font-size: 13px;
    font-size: 0.8125rem;
    margin: 0 5px;
    padding: 5px 15px;
    line-height: 1;
    color: #6c6c6c;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    outline: 0;
}
.btn-line-red {
    display: inline-block;
    min-width: 30px;
    min-height: 25px;
    font-size: 13px;
    font-size: 0.8125rem;
    margin: 0 5px;
    padding: 5px 15px;
    line-height: 1;
    color: #d9171f;
    background-color: #fff;
    border: 1px solid #d9171f;
    border-radius: 4px;
    box-sizing: border-box;
}
.btn-grey-common {
    display: inline-block;
    padding: 9px 14px;
    text-align: center;
    min-width: 155px;
    min-height: 36px;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #222;
    background-color: #f6f7f8;
    border: 1px solid #ddd;
    outline: 0;
    border-radius: 4px;
}
.btn-dark-common {
    display: inline-block;
    padding: 9px 14px;
    text-align: center;
    min-width: 155px;
    min-height: 36px;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    background-color: #393e48;
    border: 0;
    outline: 0;
    border-radius: 4px;
}

/* icon */
.ico-meritz-m {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 6px;
    background: url('/include/images/potal/ico_logo_circle_m.svg') no-repeat center;
    background-size: 100%;
}
.ico-chk-bsc {
	display: inline-block;
	font-style: normal;
	width: 10px;
	height: 5px;
	border: 2px solid #333;
	margin-right: 10px;
	border-top: 0;
	border-right: 0;
	transform: rotate(-45deg);
	transform-origin: 25% 25%;
}

/* title */
.title-h2 {
    font-size: 55px;
    font-size: 3.4375rem;
    color: #222;
    line-height: 1.25;
    font-weight: 700;
    white-space: nowrap;
}
.title-h3 {
    font-size: 40px;
    font-size: 2.5rem;
    color: #222;
    line-height: 1.25;
    font-weight: 700;
    white-space: nowrap;
}
.title-h4 {
    font-size: 26px;
    font-size: 1.625rem;
    color: #222;
    font-weight: 500;
    line-height: 160%;
}
.title-h5 {
    font-size: 16px;
    font-size: 1rem;
    color: #222;
    font-weight: 500;
    line-height: 160%;
}
.title-h6 {
    font-size: 14px;
    font-size: 0.875rem;
    color: #222;
    font-weight: 500;
}
.tit-headline {
	font-size: 16px;
	color:#232323 !important;
	font-weight: bold;
	padding: 0 5px 3px;
	background: linear-gradient(to top, #fdf2c1 50%, transparent 50%);
}

/* hr 구분선 */
.hr-grey01 {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 0;
}
.hr-black01 {
    border: 0;
    border-top: 1px solid #222;
    margin: 0;
}

/* 공통 클래스 */
.position-relative {
    position: relative;
}
.position-absolute {
    position: absolute;
}
.top-0 {
    top: 0;
}
.right-0 {
    right: 0;
}
.bottom-0 {
    bottom: 0;
}
.left-0 {
    left: 0;
}

.d-block {
    display: block !important;
}
.d-inblock {
    display: inline-block !important;
}

.d-flex {
    display: flex !important;
}
.d-inline-flex {
    display: inline-flex !important;
}

.flex-row {
    flex-direction: row !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-center {
    justify-content: center !important;
    align-items: center !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}
.flex-shrink-0 {
    flex-shrink: 0;
}

.col-1 {
    flex: 1 !important;
}

.justify-center {
    justify-content: center !important;
}

.align-center {
    align-items: center !important;
}

.justify-between {
    justify-content: space-between !important;
}

.justify-around {
    justify-content: space-around !important;
}

.justify-evenly {
    justify-content: space-evenly !important;
}
.justify-end {
    justify-content: flex-end !important;
}

.gap-xs {
    gap: 5px;
}

.gap-sm {
    gap: 10px;
}

.gap-md {
    gap: 15px;
}

.gap-lg {
    gap: 20px;
}

.gap-xl {
    gap: 30px;
}

.a11y-hidden {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    border: 0;
}

.text-nowrap {
    white-space: nowrap;
}

.ma-0 {
    margin: 0 !important;
}
.mt-0 {
    margin-top: 0 !important;
}
.mt-5 {
    margin-top: 5px !important;
}
.mt-10 {
    margin-top: 10px !important;
}
.mt-15 {
    margin-top: 15px !important;
}
.mt-20 {
    margin-top: 20px !important;
}
.mt-25 {
    margin-top: 25px !important;
}
.mt-30 {
    margin-top: 30px !important;
}
.mt-35 {
    margin-top: 35px !important;
}
.mt-40 {
    margin-top: 40px !important;
}
.mt-50 {
    margin-top: 50px !important;
}
.mt-60 {
    margin-top: 60px !important;
}
.mt-80 {
    margin-top: 80px !important;
}
.mt-100 {
    margin-top: 100px !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}
.mb-5 {
    margin-bottom: 5px !important;
}
.mb-10 {
    margin-bottom: 10px !important;
}
.mb-15 {
    margin-bottom: 15px !important;
}
.mb-20 {
    margin-bottom: 20px !important;
}
.mb-25 {
    margin-bottom: 25px !important;
}
.mb-30 {
    margin-bottom: 30px !important;
}
.mb-35 {
    margin-bottom: 35px !important;
}
.mb-40 {
    margin-bottom: 40px !important;
}
.mb-60 {
    margin-bottom: 60px !important;
}
.mb-80 {
    margin-bottom: 80px !important;
}

.ml-0 {
    margin-left: 0 !important;
}
.ml-5 {
    margin-left: 5px !important;
}
.ml-10 {
    margin-left: 10px !important;
}
.ml-15 {
    margin-left: 15px !important;
}
.ml-20 {
    margin-left: 20px !important;
}
.ml-25 {
    margin-left: 25px !important;
}
.ml-30 {
    margin-left: 30px !important;
}
.ml-35 {
    margin-left: 35px !important;
}
.ml-40 {
    margin-left: 40px !important;
}

.mr-0 {
    margin-right: 0 !important;
}
.mr-5 {
    margin-right: 5px !important;
}
.mr-10 {
    margin-right: 10px !important;
}
.mr-15 {
    margin-right: 15px !important;
}
.mr-20 {
    margin-right: 20px !important;
}
.mr-25 {
    margin-right: 25px !important;
}
.mr-30 {
    margin-right: 30px !important;
}
.mr-35 {
    margin-right: 35px !important;
}
.mr-40 {
    margin-right: 40px !important;
}
.mr-50 {
    margin-right: 50px !important;
}
.mr-60 {
    margin-right: 60px !important;
}
.mr-80 {
    margin-right: 80px !important;
}
.mr-100 {
    margin-right: 100px !important;
}

.mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.mx-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
}
.mx-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
}
.mx-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
}
.mx-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
}
.mx-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
}
.mx-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
}
.mx-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
}
.mx-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.my-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}
.my-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}
.my-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}
.my-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}
.my-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
}
.my-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}
.my-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
}
.my-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

.pa-0 {
    padding: 0px !important;
}
.pa-5 {
    padding: 5px !important;
}
.pa-10 {
    padding: 10px !important;
}
.pa-12 {
    padding: 12px !important;
}
.pa-15 {
    padding: 15px !important;
}
.pa-20 {
    padding: 20px !important;
}
.pa-25 {
    padding: 25px !important;
}
.pa-30 {
    padding: 30px !important;
}
.pa-40 {
    padding: 40px !important;
}

.px-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.px-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
}
.px-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
}
.px-12 {
    padding-left: 12px !important;
    padding-right: 12px !important;
}
.px-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
}
.px-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
}
.px-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
}
.px-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
}
.px-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
}
.px-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
}

.py-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}
.py-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}
.py-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}
.py-12 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}
.py-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}
.py-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}
.py-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}
.py-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}
.py-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}
.py-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}


.color-white {
    color: #fff !important;
}
.color-black {
    color: #000 !important;
}
.color-black01 {
    color: #222 !important;
}
.color-black02 {
    color: #1f263e !important;
}
.color-black03 {
    color: #555 !important;
}
.color-grey01 {
    color: #73767c !important;
}
.color-grey02 {
    color: #5c5e63 !important;
}
.color-grey03 {
    color: #999999 !important;
}
.color-red01 {
    color: #d71921 !important;
}
.color-brown01 {
    color: #5f4e2a !important;
}

.bg-grey01 {
    background-color: #f2f2f2 !important;
}
.bg-white {
    background-color: #fff !important;
}
.bg-brown01 {
    background-color: #f2eee6 !important;
}

/* border */
.border-grey01 {border: 1px solid #e7e7e7 !important;}

.fs-12 {
    font-size: 12px !important;
    font-size: 0.75rem !important;
}
.fs-13 {
    font-size: 13px !important;
    font-size: 0.8125rem !important;
}
.fs-14 {
    font-size: 14px !important;
    font-size: 0.875rem !important;
}
.fs-16 {
    font-size: 16px !important;
    font-size: 1rem !important;
}
.fs-18 {
    font-size: 18px !important;
    font-size: 1.125rem !important;
}
.fs-19 {
    font-size: 19px !important;
    font-size: 1.1875rem !important;
}
.fs-20 {
    font-size: 20px !important;
    font-size: 1.25rem !important;
}
.fs-22 {
    font-size: 22px !important;
    font-size: 1.375rem !important;
}


.font-thin {
    font-weight: 100 !important;
}
.font-light {
    font-weight: 300 !important;
}
.font-regular {
    font-weight: 400 !important;
}
.font-medium {
    font-weight: 500 !important;
}
.font-bold {
    font-weight: 700 !important;
}

.line-h100 {
    line-height: 1;
}
.line-h120 {
    line-height: 1.2;
}
.line-h130 {
    line-height: 1.3;
}
.line-h140 {
    line-height: 1.4;
}
.line-h150 {
    line-height: 1.5;
}
.line-h160 {
    line-height: 1.6;
}

.min-width-120 {
    min-width: 120px;
}
.min-width-140 {
    min-width: 140px;
}
.min-width-200 {
    min-width: 200px;
}
.min-width-300 {
    min-width: 300px;
}
.min-width-660 {
    min-width: 660px;
}

.max-width-300 {
    max-width: 300px;
}
.max-width-500 {
    max-width: 500px;
}

.full-width{
    width: 100% !important;
}
.full-height {
    height: 100% !important;
}
.width-auto {
    width: auto !important;
}
.height-auto {
    height: auto !important;
}
.width-660 {
    width: 660px !important;
}

.txt-left {
    text-align: left !important;
}
.txt-right {
    text-align: right !important;
}
.txt-center {
    text-align: center !important;
}

.txt-int-10 {
    padding-left: 10px;
    text-indent: -10px;
}
.txt-int-12 {
    padding-left: 12px;
    text-indent: -12px;
}
.txt-int-15 {
    padding-left: 15px;
    text-indent: -15px;
}
.txt-int-18 {
    padding-left: 18px;
    text-indent: -18px;
}

.txt-nowrap {
    white-space: nowrap;
}

.radius-4 {
    border-radius: 4px;
}
.radius-8 {
    border-radius: 8px;
}
.radius-10 {
    border-radius: 10px;
}
.radius-20 {
    border-radius: 20px;
}

.overflow-hidden {
    overflow: hidden;
}
.overflow-auto {
    overflow: auto;
}

.list-style-none {
    list-style: none;
    padding-left: 0;
}

.ellips-wrap {
    position: relative;
    overflow: hidden;
    display: block;
    max-width: 100%;
}

.ellips-line-1 {
    display: block;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.cursor-pointer {
    cursor: pointer;
}

*::-webkit-scrollbar {
    width: 6px;
    border-right: 1px solid transparent;
}
*::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 6px;
    background-clip: padding-box;
    border: 0;
    border-right: 1px solid transparent;
}
*::-webkit-scrollbar-track {
    background-color: #fff;
    border-radius: 6px;
    border-right: 1px solid transparent;
}