/*############################ icw-popup-function ###################################*/
.popup-function.mfp-bg {
    background: rgba(0, 0, 0, 0.8);
}

.popup-function.mfp-bg.mfp-ready {
    opacity: 1;
    z-index: 10001;
}

.popup-function.mfp-wrap {
    z-index: 10002;
}

.popup-function .mfp-container {
    width: 100%;
}

.popup-function .mfp-content {
    background-color: transparent;
    max-width: 100%;
    height: 100%;
}

.popup-function .mfp-content {
    overflow: auto;
    min-height: 100vh;
    padding: 24px 0;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-function .main-container {
    margin: 0;
}

.popup-function-content {
    max-width: 1140px;
    width: 100%;
    position: relative;
    background: var(--cr-light);
    border-radius: 8px;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.04);
}

.popup-function-content .inner {
    padding: 48px;
}

.popup-function-content .sc-head {
    margin-bottom: 32px;
}

.popup-function-content .sc-head .title {
    margin-bottom: 0;
    line-height: 1.5em;
    color: var(--cr-black);
}

.popup-function-content .sc-body {
    position: relative;
}

.popup-function-content .sc-body .title {
    margin-bottom: 0;
    line-height: 1.5em;
    color: var(--cr-gray);
}

.popup-function-content .sc-body .s-title {
    margin-bottom: 16px;
    line-height: 1.5em;
    color: var(--cr-green);
}

.popup-function-content .sc-body .desc {
    color: var(--cr-gray);
    margin: 0;
}

.popup-function-content .sc-body .note {
    color: var(--cr-gray);
    margin: 0;
    font-size: 13px;
    line-height: 1.54em;
}

.popup-function-content .sc-body .row-flex+.s-title {
    margin-top: 32px;
}

.popup-function-content .sc-body .row-flex {
    margin: 0 -24px;
}

.popup-function-content .sc-body .row-flex>div {
    padding: 0 24px;
}

.popup-function-content .sc-body ul {
    padding: 0;
    margin: 0 0 0 1.5em;
}

.popup-function-content .sc-body ul>li .desc {
    line-height: 2em;
}

.popup-function-content .sc-body ul+.note {
    margin-top: 32px;
    display: block;
}

.popup-function-content .sc-note {
    background: #FAFAFA;
    padding: 16px 48px;
    border-radius: 0 0 8px 8px;
}

.popup-function-content .sc-note strong.title {
    font-size: 13px;
    display: block;
    margin-bottom: 8px;
    line-height: 1.54em;
    color: var(--cr-dark);
}

.popup-function-content .sc-note ul {
    padding: 0;
    margin: 0 0 0 1.5em;
}

.popup-function-content .sc-note ul>li {
    line-height: 1.54em;
    font-size: 13px;
    color: var(--cr-gray);
}

.popup-function-content .table-wrap {
    position: relative;
    margin-top: 24px;
}

.popup-function-content .table-wrap .table-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.65);
    display: none;
    text-align: center;
    padding: 70px 20px;
    cursor: pointer;
}

.popup-function-content .table-wrap .table-overlay .icon {
    width: 216px;
    margin: 0 auto;
}

.popup-function-content .table-wrap.scroller .table-overlay {
    display: block;
}

.popup-function-content .table-responsive {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: auto;
}

.popup-function-content .table-service {
    width: 100%;
    margin: 0 auto;
    color: #333;
    border: 0;
    border-spacing: 0;
}


.popup-function-content .table-service tbody td {
    font-size: 16px;
    text-align: center;
    padding-top: 25px;
    padding-bottom: 25px;
    vertical-align: middle;
}


.popup-function-content .table-service tbody tr td:first-child {
    border-left: 1px solid #f2f2f2;
}

.popup-function-content .table.table-service th,
.popup-function-content .table.table-service thead td,
.popup-function-content .table-heading .heading {
    font-size: 24px;
    padding: 35px 0;
}

.popup-function-content .table tbody tr {
    border-top: 1px solid #f2f2f2;
}

.popup-function-content .table .bg-tb-gray {
    background-color: #F7F7F7;
}

.popup-function-content ul>li.none {
    list-style: none;
}

@media screen and (min-width: 992px) {
    .popup-function .inner {
        padding: 48px;

    }

    .popup-function .swiper-button-prev {
        left: 48px;
    }

    .popup-function .swiper-button-next {
        right: 48px;
    }
}

/*############################ icw-popup-function ###################################*/

/*############################ popup ###################################*/
.mfp-bg,
.mfp-wrap .mfp-content,
.mfp-wrap .mfp-container {
    opacity: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.mfp-wrap.mfp-ready .mfp-container {
    opacity: 1;
    padding: 0;
}

.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
    visibility: visible;
}

.mfp-close-btn-in .mfp-close {
    width: 30px;
    height: 30px;
    background-color: #00A950;
    color: #fff;
    top: -15px;
    right: -15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 1;
    font-size: 0px;
    transition: var(--transition);
}

.mfp-close-btn-in .mfp-close:before,
.mfp-close-btn-in .mfp-close:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 18px;
    height: 2px;
    background-color: var(--cr-light);
    margin: auto;
    transition: var(--transition);
}

.mfp-close-btn-in .mfp-close:before {
    transform: rotate(45deg);
}

.mfp-close-btn-in .mfp-close:after {
    transform: rotate(-45deg);
}

.mfp-close-btn-in .mfp-close:hover:before {
    background-color: var(--cr-light);
}

.mfp-close-btn-in .mfp-close:hover:after {
    background-color: var(--cr-light);
}

.mfp-close-btn-in .mfp-close:active {
    top: 0px;
}

@media screen and (max-width: 767px) {
    .mfp-close-btn-in .mfp-close {
        top: 16px;
        right: 16px;
    }
}

/*############################ popup ###################################*/