@charset "utf-8";

/*
 * File       : common.css
 *
 * SUMMARY:
 * 1) BUTTON
 * 2) TAB
 * 3) TABLE & SEARCH
 * 4) SELECTRIC
 * 5) PAGINATION
 * 6) FORM
 * 7) CHECK BOX 
 * 8) SCROLL
 * 9) POLICY
 * 10) A11Y
 */



/* **************************************** *
 * BUTTON
 * **************************************** */
.btn-wrap {display:flex;}
.btn-wrap.center { justify-content: center; margin-top:50rem;}
.btn-wrap > * + * { margin-left:10rem;}
.btn-basic {display: inline-block;color: var(--black-text-color);background:var(--btn-bg);border: 1rem solid var(--border-color);border-radius: 5rem; max-width:140rem; width: 100%;padding: 12rem 5rem;font-size: 16rem;text-align:center;cursor:pointer;-webkit-transition:all 300ms;transition: all 300ms;}
.btn-basic span {position:relative;display: inline-block;}
.btn-small {max-width: 100%; width: auto; font-size:14rem; padding: 10rem 20rem;}
.btn-basic__primary {background:#0084B5; border-color:#0084B5; color:#fff;}



/* **************************************** *
 * TAB
 * **************************************** 
.basic-tab {display:flex; text-align:center; margin-bottom:40rem;}
.basic-tab li {border-bottom:1rem solid #ddd;flex-grow: 1;}
.basic-tab a {font-size:20rem;color:#ccc;display: block;padding: 15rem;}
.basic-tab li.active {border-bottom:3rem solid #0070E8;pointer-events: none;}
.basic-tab li.active a {font-weight:500; color:#0070E8;}
.tab-type__narrow {border-bottom: 1rem solid #ccc; justify-content: center;}
.tab-type__narrow li {flex-grow: 0; border-bottom:none;}
.tab-type__narrow a {font-size:22rem;}
.selectric-basic-tab--mob {display:none;}
*/

/* **************************************** *
 * SELECTRIC
 * **************************************** */
.selectric {width: 100%;text-align: left;background: var(--btn-bg);border: 1rem solid var(--border-color);border-radius: 5rem;-webkit-transition: border-color 300ms;transition: border-color 300ms;}
.selectric:after {content: '';display: block;position: absolute;left: -1rem;right: -1rem;top: -1rem;bottom: -1rem; opacity: 0;-webkit-transition: opacity 300ms;transition: opacity 300ms;}
.selectric .label {height: 48rem;margin: 0 60rem 0 18rem;font-size: 15rem;line-height: 47rem;color: var(--basic-text-color);}
.selectric .button {width: 36rem;height: 50rem;}
.selectric .button:after {border-style: solid;border-width: 8px 5px 0 5px;border-color:var(--basic-text-color) transparent transparent transparent;-webkit-transition: -webkit-transform 0.4s;transition: -webkit-transform 0.4s;transition: transform 0.4s;transition: transform 0.4s, -webkit-transform 0.4s;}
.selectric-items ul, .selectric-items li {width: 100%;font-size: 15rem;text-align: left;}
.selectric-items {margin-top: 3rem;background: var(--btn-bg);border: 1rem solid var(--border-color);border-radius: 5rem;-webkit-box-shadow: none;box-shadow: 0 3rem 10rem rgba(120,120,120,0.16);opacity: 0;-webkit-transition: all 0.4s;transition: all 0.4s;}
.selectric-items ul {margin: 0;padding: 0;}
.selectric-items li {padding: 12rem 17rem 12rem;line-height: 1.4;font-weight: 400;color: var(--gray-text-color);}
html.desktop .selectric-items li:hover {background:none; color:var(--hover-text-color);}
.selectric-items li.selected {color: var(--hover-text-color);background:none;}
html.desktop .selectric-items li.selected:hover {color:var(--hover-text-color);}
.selectric-hover .selectric {background: var(--btn-bg);border-color:var(--border-color);}
.selectric-hover .selectric:after {opacity: 1;}
.selectric-hover .selectric .button:after { border-top-color: var(--basic-text-color);}
.selectric-focus .selectric {background: var(--btn-bg);border-color:var(--border-color);}
.selectric-focus .selectric:after {opacity: 1;-webkit-box-shadow:0 0 0 var(--border-color);box-shadow:0 0 0 var(--border-color);}
.selectric-open .selectric {background: var(--btn-bg);border-color: var(--border-color);}
.selectric-open .selectric:after {border-bottom: none;-webkit-box-shadow: none;box-shadow: none;opacity: 1;}
.selectric-open .selectric .button:after {-webkit-transform: rotate(-180deg);-ms-transform: rotate(-180deg);transform: rotate(-180deg);}
.selectric-open .selectric-items {opacity: 1;}
.selectric-above.selectric-open .selectric {border-top-color: var(--border-color);border-bottom-color:var(--border-color);}
.selectric-above.selectric-open .selectric:after {border-bottom:1rem solid var(--border-color);border-top: none;}
.selectric-above.selectric-open .selectric-items {border-width: 1rem 1rem 0;}



/* **************************************** *
 * FORM
 * **************************************** */
 h3.form-tit {font-size:24rem; text-align:center;border-bottom: 1rem solid #ccc;padding-bottom: 20rem;margin-bottom: 40rem;}
.form-field-wrap + .form-field-wrap {margin-top: 10rem;}
.form-field-item {position:relative; }
.form-field-item.required > label span {position:relative;}
.form-field-item.required > label span:after {content: '*';display: block;font-size: 20rem;font-weight: 600;color: #FF0000;position: absolute;top: -1rem;right: -11rem;font-family: 'NotoSansKR', sans-serif;}
.form-field-item > .form-input__wrap {position:relative;flex: 1;}
.form-input {display: inline-block;width: 100%;height: 50rem;padding: 10rem 20rem 12rem;vertical-align: middle;font-size: 15rem;line-height: 1.66;border: 1rem solid var(--border-color);background:var(--card-bg);outline: none;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;-webkit-transition: border 300ms;transition: border 300ms;text-overflow: ellipsis;}
.form-input__inner {display:flex; gap:5rem;}
textarea.form-input {width:100%;height: 360rem;padding: 18rem 20rem;overflow: auto;resize: none;}
.form-input:focus, html.desktop .form-input:hover {border-color: #aaa;}
.form-input:disabled, .form-input:-moz-read-only {color: var(--black-text-color);border-color: #333;}
.form-input:disabled, .form-input:read-only {color: var(--black-text-color);background: var(--btn-gray-bg);border-color: var(--border-color);}
.form-input:disabled:focus, html.desktop .form-input:disabled:hover, .form-input:-moz-read-only:focus, html.desktop .form-input:-moz-read-only:hover {border-color: #333;}
.form-input:disabled:focus, html.desktop .form-input:disabled:hover, .form-input:read-only:focus, html.desktop .form-input:read-only:hover {border-color: var(--border-color);}
.form-label {margin-bottom: 12rem;display: inline-block;vertical-align:middle;font-size: 18rem;font-weight: 600;color: var(--black-text-color);word-break: keep-all;width: 100%;}
.form-label.required:after {padding-left: 4rem;content: '*';color: #980d0d;}

.form-center {text-align:center;}

/* **************************************** *
 * SEARCH
 * **************************************** */
.search-box {width:100%;display: flex;}
.search-box .selectric-wrapper {margin-right:5rem;}
.search-box .selectric .label { height: 40rem; margin: 0 30rem 0 16rem; font-size: 13rem; line-height: 40rem;}
.search-box .selectric .button { height: 42rem;}
.search-label {display:inline-block;vertical-align: top;width: calc(100% - 53rem);height: 100%;}
.search-box .search-input {width: 100%;height: 42rem;padding: 10rem 16rem;font-size: 13rem;max-width: 260rem;background: var(--btn-bg);border: 1rem solid var(--border-color);border-radius: 0;text-overflow: ellipsis;line-height:1.2;}
.search-box .search-input::-webkit-input-placeholder { font-size: 13rem; } 
.search-box .search-input::-moz-placeholder  { font-size: 13rem; } 
.search-box .search-input:-ms-input-placeholder { font-size: 13rem; } 
.search-field.focus_in {border-color:#e9463f;}
.search-submit {display: inline-block;vertical-align: top;width: 90rem;height: 42rem;padding: 11rem 10rem;border: none;background: #232527;font-size: 13rem;color:#fff;cursor: pointer;}
.search-box .selectric {border-radius: 0;border-color: var(--border-color);width: 110rem;}
.search-box .selectric-items {border:none;box-shadow: 0 3rem 6rem rgba(0,0,0,0.05);}
.search-box .selectric-items ul, .search-box .selectric-items li {font-size:13rem;}
.search-box .selectric-items li {padding:6rem 10rem;}
.search-box .selectric .button:after { border-width: 6px 4px 0 4px;}



/* **************************************** *
 * PAGINATION
 * **************************************** */
 .board-pagination {display: block;width: 100%;margin-top: 30rem;font-size: 0;text-align: center;}
 .board-pagination .board-pagination__numbers {display: inline-block;border: none;background:none;width: 36rem;height: 36rem;padding: 0 6rem;margin: 0;position: relative;font-size: 14rem;line-height: 36rem;text-align: center;vertical-align: top;color: #767676;cursor: pointer;-webkit-transition: color 300ms;transition: color 300ms;}
 .board-pagination .board-pagination__numbers i {font-style:normal;display: block;position: relative;}
 .board-pagination .board-pagination__numbers.board-pagination--current {color: #fff;background: #0084B5;border-radius: 50%;cursor: default;}
 .board-pagination .board-pagination__numbers.board-pagination--current:hover {color: #fff;}
 .board-pagination .board-pagination__numbers.board-pagination--first, .board-pagination .board-pagination__numbers.board-pagination--prev, .board-pagination .board-pagination__numbers.board-pagination--next, .board-pagination .board-pagination__numbers.board-pagination--last {font-size: 0;margin: 0;width: 40rem;}
 .board-pagination .board-pagination__numbers.board-pagination--first:before, .board-pagination .board-pagination__numbers.board-pagination--prev:before, .board-pagination .board-pagination__numbers.board-pagination--next:before, .board-pagination .board-pagination__numbers.board-pagination--last:before {display: block;width: 100%;height: 100%;position: absolute;left: 0;top: 0;font-family: 'bluewave';font-size: 14rem;font-weight: normal;line-height: 36rem;color: #444;-webkit-transition: color 300ms;transition: color 300ms;}
 .board-pagination .board-pagination__numbers.board-pagination--first {margin-left: 0;margin-right: 0;}
 .board-pagination .board-pagination__numbers.board-pagination--first:before {content: '\e90a';font-size: 13rem;}
 .board-pagination .board-pagination__numbers.board-pagination--prev {margin-right:18rem;}
 .board-pagination .board-pagination__numbers.board-pagination--prev:before {content: '\e90d';}
 .board-pagination .board-pagination__numbers.board-pagination--next {margin-left:18rem;}
 .board-pagination .board-pagination__numbers.board-pagination--next:before {content: '\e90c';}
 .board-pagination .board-pagination__numbers.board-pagination--last {margin-left: 0;margin-right: 0;}
 .board-pagination .board-pagination__numbers.board-pagination--last:before {content: '\e90b';font-size: 14rem;}
 html.desktop .board-pagination__numbers:hover, html.desktop .board-pagination .board-pagination__numbers.board-pagination--first:hover:before, html.desktop .board-pagination .board-pagination__numbers.board-pagination--prev:hover:before, html.desktop .board-pagination .board-pagination__numbers.board-pagination--next:hover:before, html.desktop .board-pagination .board-pagination__numbers.board-pagination--last:hover:before {color:var(--hover-text-color);}
 


/* **************************************** *
 * TABLE
 * **************************************** */
.board-search {display: flex;justify-content: center;margin-top: 30rem;font-size: 0;}
.board-search .selectric-wrapper {width:160rem;}
.board-search select {width: 100rem;height: 52rem;padding: 0 30rem 0 10rem;border: 1rem solid #E0E1E3;background: #F7F7F7 url('../images/common/selectArrow.svg') no-repeat 90%;-moz-appearance: none;-webkit-appearance: none;appearance: none;font-size: 16rem;}
.board-search input {border: 1rem solid var(--border-color);padding: 9rem;margin: 0 12rem;font-size:16rem;width: 360rem;}
.board-search button {padding: 5rem 30rem;margin:0;border:none;background: #004EA1;font-size: 18rem;color:#fff;}

.tabel-basic {width:100%;border-top: 1rem solid var(--border-color);}
.tabel-basic caption { width: 1rem; height: 1rem; position: absolute; top: 0; left: 0; font-size: 0; line-height: 0; overflow: hidden;}
.tabel-basic thead {font-size:16rem;}
.tabel-basic th {width: 15%;text-align:center;padding: 15rem;border-bottom: 1rem solid var(--border-color);font-size: 16rem;color: var(--black-text-color);background: var(--body-sub-bg);}
.tabel-basic tbody td {width:35%;padding: 14rem 20rem;border-bottom: 1rem solid var(--border-color);font-size: 16rem;color: var(--black-text-color);}
.tabel-basic tbody td.num {font-size:16rem;}
.tabel-basic tbody td.tit {text-align:left;font-size: 20rem;}
.tabel-basic tbody td.view, .tabel-basic tbody td.date {font-size: 18rem; color:#777;}

/* BORAR LIST 
.board-list {border-top:2rem solid #000;}
.board-item {display: flex;padding: 43rem 0 43rem 50rem;border-bottom:1rem solid #BBB;transition: background .3s;}
.board-item .type {width: 15%;}
.board-item .type span {font-size:16rem;color:#004EA1;padding:6rem 16rem;background:#ECF5FF;border-radius: 30rem;transition: background .3s;}
.board-item a {font-size:22rem;flex-grow: 1;display: block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width: 61%;}
.board-item .view, .board-item time {font-size:18rem;color:#777;width: 12%;text-align: center;}
html.desktop .board-item:hover {background:#F2F8FF;}
html.desktop .board-item:hover a {font-weight:600;}
html.desktop .board-item:hover a span {border-bottom:1rem solid #000;}
html.desktop .board-item:hover .type span {background:#CFE3F9;}

/* BOARD VIEW 
.board-view__header {padding:30rem 30rem; border-top:2rem solid #000; border-bottom:1rem solid #bbb;}
.board-view__header .tit {font-size:26rem; font-weight:500;}
.board-view__header ul {margin-top:10rem;display: flex;}
.board-view__header li {position:relative;font-size:18rem;color: #777;}
.board-view__header li + li {margin-left:15rem; padding-left:15rem;}
.board-view__header li + li:before {content:''; display:block; width:1rem; height:10rem; background:#888; position:absolute; left:0; top:50%; margin-top:-5rem;}
.board-view__body {padding:50rem;border-bottom: 1rem solid #bbb;}
.board-view__body p {font-size:18rem;line-height:1.6;}
.board-view__body p + p {margin-top:30rem;}

.board-view__wrap .basic-btn__wrap {margin-top:30rem; text-align:center;}
.board-view__wrap .basic-btn__wrap .basic-btn {font-size:16rem;}

.board-file__list {margin-top:40rem;}
.board-file__item + .board-file__item {margin-top:10rem;}
.board-file__item a {align-items: center;border:1rem solid #bbb;font-size:14rem;padding:14rem 20rem;border-radius:5rem;display: inline-flex; transition: border .3s;}
.board-file__item a i {width:18rem;height:24rem;background:url(../images/icon/icon-file.svg);display: inline-block;vertical-align: middle;margin-right: 12rem;}
.board-file__item a span {position:relative; padding-right:60rem;}
.board-file__item a span:after {position:absolute; right:0; top:50%; transform:translateY(-50%);font-family: 'bluewave';content: '\e90d';font-size: 16rem;color: #000;}
html.desktop .board-file__item a:hover {border-color:#000;}
*/


/* **************************************** *
 * CHECK BOX 
 * **************************************** */
.custom-checkbox__wrap {text-align: left;}
.custom-checkbox {display: inline-block;position: relative;padding-left: 26rem;cursor: pointer;font-size: 14rem;color: var(--black-text-color);letter-spacing:-0.025em;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;}
.custom-checkbox + .custom-checkbox {margin-left: 30rem;}
.custom-checkbox input { position: absolute; opacity: 0; cursor: pointer; visibility: hidden;}
.custom-checkbox .checkmark {position: absolute;top: 50%;left: 0;height: 20rem;width: 20rem;background-color: transparent;border: 1rem solid #BFBFBF;border-radius:4rem;transform: translateY(-50%);}
.custom-checkbox:hover input ~ .checkmark {border-color: #BFBFBF;}
.custom-checkbox input:checked ~ .checkmark {background-color: #0084B5;border-color: #0084B5;}
.custom-checkbox .checkmark:after { content: ""; position: absolute; display: none; }
.custom-checkbox input:checked ~ .checkmark:after { display: block; }
.custom-checkbox .checkmark:after {font-family: 'bluewave';font-size: 10rem;font-weight: normal;color:#fff;content: '\e923';left: 50%;top: 50%;transform: translate(-50%,-50%);}

.custom-radio {display: inline-block;vertical-align: middle;position: relative;padding-left: 31rem;cursor: pointer;font-size: 16rem;letter-spacing:-0.025em;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;}
.custom-radio + .custom-radio {margin-left:40rem;}
.custom-radio input { position: absolute; opacity: 0; cursor: pointer; visibility: hidden;}
.custom-radio .checkmark {position: absolute;left: 0;height: 22rem;width: 22rem;background-color: #fff;border: 2rem solid #D2D2D2;border-radius: 50%; top: 50%; transform: translateY(-50%);}
.custom-radio .checkmark:after {content: "";position: absolute;display: block;width: 12rem;height: 12rem;background: transparent;border-radius: 50%;left: 50%;top: 50%;transform: translate(-50%,-50%);}
.custom-radio input:checked ~ .checkmark {border-color: #2D69CB;}
.custom-radio input:checked ~ .checkmark:after {display: block;background: #2D69CB;}



/* **************************************** *
 * MAGNIFIC POPUP
 * **************************************** */
.component-popup {width:100%;max-width:1300rem;margin:0 auto;padding:50rem;background:#fff;position: relative;}
.component-popup .mfp-close {font-size:0; right:4rem; top:4rem; opacity:1;}
.component-popup .mfp-close:before {font-family: 'bluewave';font-size: 20rem;font-weight: normal;color: #53503D;content: '\e920';position: absolute;left: 50%;top: 50%;transform: translate(-50%,-50%);}
.mfp-popup-open .mfp-bg {background:#000; opacity:0.5;}

/* POPUP TAB */
.component-popup .tab-list {display:flex;margin-top: 40rem;border-bottom:1rem solid #004EA1;text-align: center;}
.component-popup .tab-list li {flex-grow: 1;}
.component-popup .tab-list li a {font-size:18rem;display: block;padding: 23rem 30rem;}
.component-popup .tab-list li a.tab-button--is-active {background: transparent linear-gradient(104deg, #72BE59 0%, #009E9A 48%, #004EA1 100%) 0% 0% no-repeat padding-box;color: #fff;}
.component-popup .tab-panel__wrap {margin-top:40rem;}


 /* **************************************** *
 * SCROLL
 * **************************************** */
.scrollbar-inner .scroll-element.scroll-y {width: 5rem;right: 5rem;top: 10rem;border-radius: 30rem;overflow: hidden;height: calc(100% - 20rem);}
.scrollbar-inner > .scroll-element .scroll-element_outer, .scrollbar-inner > .scroll-element .scroll-element_track, .scrollbar-inner > .scroll-element .scroll-bar {/* border-radius: 0; */}
.scrollbar-inner > .scroll-element .scroll-bar {background-color: #CFCFCF;opacity:1;}
.scrollbar-inner > .scroll-element .scroll-element_track {opacity:1; background:#F6F6F6;}
.scroll-wrapper > .scroll-content {padding: 10rem 0 10rem;box-sizing: border-box !important;}



 /* **************************************** *
 * POLICY
 * **************************************** 
.policy-box__wrap .scroll-wrapper {height:300rem;}
.policy-box__wrap .scroll-wrapper > .scroll-content {padding:20rem;}
.policy-box + .policy-box  {margin-top:30rem;}
.policy-box__content + .policy-box__content {margin-top:20rem;}
.policy-box .policy-box__title{font-size:18rem; color:#767676;}
.policy-box .policy-box__content p {font-size:16rem; color:#767676;}
.policy-box .policy-box__content h3 {font-size:17rem; color:#767676;}
.policy-box .primary-order-list {counter-reset: item;}
.policy-box .primary-order-list > li {position: relative;font-size: 16rem;line-height: 1.7;color: #767676;padding-left: 20rem;counter-increment: item;}
.policy-box .primary-order-list > li:before {width: 13rem; height: 13rem; text-align: center; font-size: 15rem; content: '('counter(item)')';display: block;position: absolute;top:7rem;left: 0;background:none; border-radius: 50%; line-height:1;}
.policy-box .secondary-order-list > li {position:relative;padding-left: 22rem; font-size: 16rem;line-height: 1.7;color: #767676}
.policy-box .secondary-order-list > li:before {display: block; width: auto; height: auto; font-size: inherit; color: inherit; position: absolute; top: 0; left: 0;}
.policy-box .secondary-order-list > li:nth-child(1):before {content: '가.';}
.policy-box .secondary-order-list > li:nth-child(2):before {content: '나.';}
.policy-box .secondary-order-list > li:nth-child(3):before {content: '다.';}
.policy-box .secondary-order-list > li:nth-child(4):before {content: '라.';}
.policy-box .secondary-order-list > li:nth-child(5):before {content: '마.';}
.policy-box .secondary-order-list > li:nth-child(6):before {content: '바.';}
.policy-box .secondary-order-list > li:nth-child(7):before {content: '사.';}
.policy-box .secondary-order-list > li:nth-child(8):before {content: '아.';}
.policy-box .secondary-order-list > li:nth-child(9):before {content: '자.';}
.policy-box .secondary-order-list > li:nth-child(10):before {content: '차.';}
.policy-box .secondary-order-list > li:nth-child(11):before {content: '카.';}
.policy-box .secondary-order-list > li:nth-child(12):before {content: '타.';}
.policy-box .secondary-order-list > li:nth-child(13):before {content: '파.';}
.policy-box .secondary-order-list > li:nth-child(14):before {content: '하.';}
.policy-box .dot-list > li {position: relative;font-size: 16rem;line-height: 1.75;color: #767676;padding-left: 13rem;counter-increment: item;}
.policy-box .dot-list > li:before {width: 13rem; height: 13rem; text-align: center; font-size: 15rem; content: '-';display: block;position: absolute;top:7rem;left: 0;background:none; border-radius: 50%; line-height:1;}
*/


/* **************************************** *
 * SWIPER
 * **************************************** */
.swiper-navigation { font-size:0;}
.swiper-navigation > button {width: 60rem;height: 60rem;line-height: 58rem;background:none;border: 1rem solid #B1B1B1;border-radius: 50%;margin:0;padding: 0;position: relative;-webkit-transition: .3s;transition: .3s;}
.swiper-navigation > button:before {width: 100%;height: 100%;font-family:'bluewave';display:block;font-size: 24rem;font-weight:normal;color: #7A7A7A;position: absolute;top: 0;left: 0;z-index: 10;-webkit-transform:translateZ(10rem);-ms-transform:translateZ(10rem);transform:translateZ(10rem);-webkit-transition: .3s;transition: .3s;}
.swiper-navigation > button + button {margin-left:12rem}
.swiper-navigation > .swiper-button-prev {left: 0;}
.swiper-navigation > .swiper-button-prev:before {content: '\e90f';left: -1rem;}
.swiper-navigation > .swiper-button-next {right: 0;}
.swiper-navigation > .swiper-button-next:before {content: '\e904';right: -1rem;left: auto;}
.swiper-navigation > button:hover {border-color:#000;}
.swiper-navigation > button:hover:before {color:var(--hover-text-color);}

.swiper-container .swiper-pagination {display: inline-block;position: relative;display: inline-block;position: relative;width: auto;height: 31rem;vertical-align: middle;bottom: 0;}
.swiper-container .swiper-pagination .swiper-pagination-bullet {display: inline-block;width: auto;height: auto;position: relative;cursor: pointer;background: transparent;opacity: 1;vertical-align: middle;padding: 5rem;}
.swiper-container .swiper-pagination-bullet span {display: block;width: 10rem;height: 10rem;margin: 0;padding: 0;position: static;font-size: 0;border: 2rem solid #A9A9A9;border-radius: 50%;cursor: pointer;-webkit-transition: all .3s;transition: all .3s;}
.swiper-container .swiper-pagination-bullet-active > span {background: #0070E8;border-color: #0070E8;border-radius:30rem;}

/* state */
.swiper-play__state {display: inline-block;vertical-align: middle;position: relative;width: 30rem;height: 30rem;}
html.ie .swiper-play__state {top:-1px;}
.swiper-play__state-btn {display: block;width: 100%;height: 100%;margin: 0;padding: 0;position: absolute;top: 0;left: 0;background: transparent;border: none;cursor: pointer;opacity: 0;visibility: hidden;-webkit-transition: opacity 300ms;transition: opacity 300ms;}
.swiper-play__state-btn:after {display: block;font-family: 'bluewave';font-size: 12rem;font-weight: normal;text-align: center;line-height: 26rem;color: #707070;transition: color .3s;}
.swiper-play__state--play:after {content: '\e903';font-size:10rem;}
.swiper-play__state--pause:after {content: '\e902';}
.swiper-play__state.play .swiper-play__state--pause {opacity: 1; visibility: visible;}
.swiper-play__state.pause .swiper-play__state--play {opacity: 1; visibility: visible;}

/* scroll bar */
.swiper-scrollbar {background:#ECECEC;}
.swiper-container-horizontal>.swiper-scrollbar {height:3rem;}
.swiper-scrollbar-drag {background: transparent linear-gradient(94deg, #72BE59 0%, #009E9A 45%, #004EA1 100%) 0% 0% no-repeat padding-box;}



/* **************************************** *
 * TAB
 * **************************************** */
/* a11y tab */
.tab-content {display:none;}
.tabs-item.is-active .tab-content { display: block;}

.tab-panel--is-disabled { display: none;}
.tab-panel--is-active { display: block;}





/* **************************************** *
 * FULL LINK
 * **************************************** */
.full-link {cursor:pointer;}

 /* **************************************** *
 * A11Y
 * **************************************** */
.sr-only { position: absolute; clip: rect(1rem, 1rem, 1rem, 1rem); -webkit-clip-path: inset(0rem 0rem 99.9% 99.9%); clip-path: inset(0rem 0rem 99.9% 99.9%); overflow: hidden; height: 1rem; width: 1rem; padding: 0; border: 0; }

#skip a { width: 1rem; height: 1rem; position: absolute; left: -10000rem; top: auto; overflow: hidden; }
#skip a:focus { display: block; width: 100%; height: 50rem; position: fixed; top: 0; left: 0; line-height: 49rem; text-align: center; color: #fff; background: #191919; z-index: 999; }

.use-mouse, 
.use-mouse select, 
.use-mouse input[type=text], 
.use-mouse input[type=tel], 
.use-mouse input[type=email], 
.use-mouse input[type=password], 
.use-mouse input[type=url], 
.use-mouse input[type=number], 
.use-mouse input[type=search], 
.use-mouse textarea, 
.use-mouse input[type=submit], 
.use-mouse input[type=button], 
.use-mouse button, 
.use-mouse a:focus { outline: none; }



/* **************************************** *
 * FULL LINK
 * **************************************** */
.full-link {cursor:pointer;}


/* **************************************** *
 * SWEET ALERT
 * **************************************** */
.swal-modal {max-width: 380rem;padding: 50rem 30rem 46rem;border-radius:10rem; background:var(--body-bg)}
.swal-text {font-size: 16rem;color: var(--black-text-color);text-align:center;}
.swal-text:first-child {margin-top:0;}
.swal-footer {text-align:center;padding: 0;margin-top: 22rem;}
.swal-content {margin-top:0; font-size:15rem;}
.swal-button {display: inline-block;position: relative;vertical-align: middle;line-height: 1;text-align: center;min-width: 100rem;width:auto;height: 45rem;border-radius: 8rem;font-size: 15rem;padding: 0 12rem 0;cursor:pointer;-webkit-transition:all 300ms;transition: all 300ms;}
.swal-button.swal-button--cancel {border: 1rem solid #999;background: transparent;color: #999;color: #999;}
.swal-button.swal-button--confirm {border: 1rem solid #0084B5;background: #0084B5;color: #fff;}
.swal-button:not([disabled]):hover {background-color: #0084B5;}
.swal-button--cancel:not([disabled]):hover {background:transparent;}
.swal-button:focus {box-shadow:none;}