@charset "utf-8";

/* 기본 초기화 (프로젝트 환경에 맞게 조정 가능) */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Pretendard', 'Malgun Gothic', '맑은 고딕', sans-serif;
    letter-spacing: -0.5px;
}

/* 딤처리 배경 (팝업을 화면 중앙에 띄우기 위함) */
.layer-popup-dim {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 0px;
}

/* 팝업 본체 */
.layer-popup {
    width: 984px;
    background: #fff;
    position: relative;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.15);
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
}

/* 팝업 상단 컬러 바 */
.layer-popup-topbar {
    display: flex;
    height: 6px;
    width: 100%;
}

.topbar-yellow {
    flex: 0 0 10%;
    background: #f49f00;
}

.topbar-green {
    flex: 0 0 20%;
    background: #85c441;
}

.topbar-blue {
    flex: 1;
    background: #0073c0;
}

/* 닫기 버튼 */
.layer-popup-close {
    position: absolute;
    top: 25px;
    right: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 10;
}

.layer-popup-close svg {
    display: block;
}

.layer-popup-close:hover svg path {
    stroke: #000;
}

/* 팝업 헤더 */
.layer-popup-header {
    display: flex;
    align-items: flex-end;
    padding: 40px 50px 30px;
    border-bottom: 1px solid #eee;
}

.header-logo-title {
    margin-right: 40px;
    flex-shrink: 0;
}

.header-logo {
    margin-bottom: 8px;
    height: 24px;
    /* 임시 높이 */
}

.header-logo img {
    height: 100%;
    vertical-align: top;
}

.logo-text-fallback {
    font-size: 16px;
    font-family: Arial, sans-serif;
}

.header-title {
    font-size: 36px;
    font-weight: 900;
    color: #222;
    line-height: 1.1;
}

.header-desc-wrap {
    flex: 1;
    padding-bottom: 5px;
}

.header-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.header-desc .desc-light {
    color: #555;
    font-weight: 400;
}

.header-desc strong {
    font-weight: 700;
    color: #111;
    font-size: 18px;
}

/* 팝업 콘텐츠 공통 */
.layer-popup-content {
    padding: 0 50px 50px;
}

/* 상단 안내 섹션 */
.info-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: url('../images_nuri/sampling_bg.png') no-repeat right center;
    background-size: 280px auto;
    min-height: 200px;
}

.info-list {
    list-style: none;
    flex: 1;
}

.info-list li {
    position: relative;
    padding-left: 14px;
    font-size: 16px;
    color: #222;
    line-height: 1.6;
    margin-bottom: 8px;
    word-break: keep-all;
    font-weight: 400;
    letter-spacing: -1px;
}

.info-list li:last-child {
    margin-bottom: 0;
}

.info-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #3870ff;
    /* 파란 점 */
}



/* 하단 카드 리스트 */
.card-section {
    display: flex;
    gap: 24px;
}

.method-card {
    flex: 1;
    background: #FAFAFA;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 30px;
}



.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-icon img {
    width: 70%;
    height: 70%;
    object-fit: cover;
}

.card-icon.right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 아이콘 이미지 없을 때 */
.card-icon img[style*="none"] {
    display: none;
}

.card-text {
    flex: 1;
    padding-top: 5px;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    text-align: left;
    margin-bottom: 12px;
}

.card-text p {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    word-break: keep-all;
    letter-spacing: -0.8px;
    padding-bottom: 20px;
}

/* 공통 버튼 스타일 */
.method-card .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
    margin-top: auto;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-cyan {
    background: #0bd2d2;
    /* 옥색 */
}

.btn-cyan:hover {
    background: #00b9b9;
}

.btn-blue {
    background: #3b71ff;
    /* 파란색 */
}

.btn-blue:hover {
    background: #2a5de0;
}

/* =========================================
   Step 2 (상세조건 추출) 스타일
========================================= */

/* 탭 메뉴 */
.tab-menu {
    display: flex;
    margin-bottom: 20px;
}

.tab-btn {
    flex: 1;
    height: 52px;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    background: #f1f3f8;
    color: #555;
    transition: all 0.2s;
    border-radius: 8px;
}

.tab-btn:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.tab-btn:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.tab-btn.active {
    background: #3b71ff;
    color: #fff;
    z-index: 1;
}

/* 표본추출방법 (라디오 필터 영역) */
.filter-box {
    display: flex;
    align-items: center;
    border: 1px solid #e1e3e8;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.filter-label {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-right: 30px;
}

.radio-group {
    display: flex;
    gap: 30px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #444;
}

.radio-label input[type="radio"] {
    /*display: none;*/
}

.radio-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ccc;
    margin-right: 8px;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
}

.radio-label input[type="radio"]:checked+.radio-icon {
    border-color: #3b71ff;
}

.radio-label input[type="radio"]:checked+.radio-icon::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #3b71ff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* 리스트박스 컨테이너 */
.listbox-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 8px;
}

.listbox-col {
    border: 1px solid #e1e3e8;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 232px;
}

.listbox-header {
    background: #f8f9fc;
    border-bottom: 1px solid #e1e3e8;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

.listbox-header svg {
    color: #3b71ff;
}

.listbox-items {
	height: 230px;      /* 원하는 높이 */
    overflow-y: auto;   /* 세로 스크롤 */
    overflow-x: hidden; /* 가로 스크롤 숨김 */
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    /*flex: 1;*/
}
<!------------------------------------------------------------------------------------------------>
.listbox-col > select {
    width: 100%;
    height: 180px;

    font-family: 'Pretendard', 'Malgun Gothic', sans-serif;
    font-size: 15px;
    color: #444;

    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;

    padding: 6px;
    outline: none;
}


.listbox-items li {
    padding: 10px 12px;
    font-size: 15px;
    color: #444;
    cursor: pointer;
    transition: background 0.1s;
}

.listbox-items li:hover {
    background: #f1f3f8;
}

.listbox-items li.active {
    background: #eef3ff;
    color: #3b71ff;
    font-weight: 600;
}

.listbox-note {
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
}

/* 숫자 범위 입력 영역 */
.range-input-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.range-input-box {
    border: 1px solid #e1e3e8;
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.range-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

.range-label svg {
    color: #3b71ff;
    flex-shrink: 0;
}

.range-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.range-inputs input {
    width: 120px;
    height: 40px;
    background: #F8FAFC;
    border: 1px solid #e1e3e8;
    border-radius: 4px;
    padding: 0 12px;
    font-size: 14px;
    text-align: right;
    color: #222;
}

.range-inputs input::placeholder {
    color: #aaa;
}

.range-inputs .dash {
    color: #888;
}

/* 추출 버튼 영역 */
.submit-btn-wrap {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.btn-extract {
    background: #3b71ff;
    color: #fff;
    border: none;
    border-radius: 8px;
    height: 52px;
    padding: 0 40px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-extract:hover {
    background: #2a5de0;
}

/* 하단 안내 박스 */
.instruction-box {
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    background: #FFF;
}

.instruction-list {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 2.2;
}

.instruction-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    align-self: stretch;
}

.instruction-list li span {
    display: flex;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #3b71ff;
    border-radius: 50%;
    color: #ffffff;
}


/* === 반응형 웹 스타일 === */

/* 태블릿 및 작은 데스크탑 */
@media screen and (max-width: 1024px) {
    .layer-popup {
        width: 90%;
        max-width: 984px;
    }

    .layer-popup-header {
        display: block;
        padding: 30px;
    }

    .info-section {
        background: none;
        min-height: auto;
        width: 100%;
        padding: 20px 0px;
    }

    .layer-popup-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 30px 20px;
    }

    .header-logo-title {
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
    }

    .header-desc-wrap {
        width: 100%;
    }

    .header-desc {
        line-height: 1.4;
    }

    .header-desc br {
        display: none;
    }

    .layer-popup-content {
        padding: 0 30px 40px;
    }

    .info-list {
        padding-right: 0;
        width: 100%;
    }

    .range-inputs input {
        width: 100%;
    }

    .card-section {
        flex-direction: column;
        gap: 20px;
    }

    .method-card {
        padding: 24px;
    }

    /* Step 2 반응형 (태블릿) */
    .filter-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .listbox-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .range-input-container {
        grid-template-columns: 1fr;
    }

    .instruction-list li {
        line-height: normal;
        padding-bottom: 10px;
    }
}

/* 모바일 세로 */
@media screen and (max-width: 480px) {
    .layer-popup-dim {
        padding: 0px;
    }

    .layer-popup {
        width: 100%;
        max-height: 100vh;
    }

    .layer-popup-header {
        padding: 30px 20px 20px;
    }

    .layer-popup-close {
        right: 20px;
    }

    .layer-popup-content {
        padding: 0 20px 30px;
    }

    .layer-popup-header {
        padding: 20px 20px 15px;
    }

    .header-title {
        font-size: 28px;
    }

    .header-logo img {
        height: 80%;
    }

    .info-section {
        background: none;
        /* 모바일에서는 배경 일러스트 숨김 처리 */
        min-height: auto;
    }

    .info-list {
        padding-right: 0;
    }

    .method-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .card-icon {
        width: 80px;
        height: 80px;
    }

    /* 층화 추출법 우측 정렬 해제 및 상단으로 위치 복구 */
    .card-icon.right {
        order: 0;
    }

    .card-text {
        align-items: center;
    }

    .card-title {
        text-align: center;
        font-size: 20px;
    }

    .method-card .btn {
        max-width: 100%;
    }

    /* Step 2 반응형 (모바일) */
    .tab-btn {
        font-size: 16px;
        height: 48px;
    }

    .radio-group {
        flex-direction: column;
        gap: 12px;
    }

    .listbox-container {
        grid-template-columns: 1fr;
    }

    .range-input-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .btn-extract {
        width: 100%;
        justify-content: center;
    }

    .listbox-col {
        height: 200px;
    }

}

/* === SVG Icons (Mask Approach) === */
.icon {
    display: inline-block;
    background-color: currentColor;
    mask-size: cover;
    -webkit-mask-size: cover;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    flex-shrink: 0;
}

.listbox-header .icon,
.range-label .icon,
.btn-extract .icon {
    width: 18px;
    height: 18px;
}

.listbox-header .icon,
.range-label .icon {
    background-color: #3b71ff;
}

.btn-extract .icon {
    margin-right: 6px;
}

.icon-map {
    mask-image: url("data:image/svg+xml;utf8,%3Csvg width%3D%2218%22 height%3D%2218%22 viewBox%3D%220 0 24 24%22 fill%3D%22none%22 stroke%3D%22black%22 stroke-width%3D%223%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22 xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath d%3D%22M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z%22%3E%3C/path%3E%3Ccircle cx%3D%2212%22 cy%3D%2210%22 r%3D%223%22%3E%3C/circle%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg width%3D%2218%22 height%3D%2218%22 viewBox%3D%220 0 24 24%22 fill%3D%22none%22 stroke%3D%22black%22 stroke-width%3D%223%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22 xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath d%3D%22M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z%22%3E%3C/path%3E%3Ccircle cx%3D%2212%22 cy%3D%2210%22 r%3D%223%22%3E%3C/circle%3E%3C/svg%3E");
}

.icon-cap {
    mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 width%3D%2218%22 height%3D%2218%22 viewBox%3D%220 0 24 24%22 fill%3D%22none%22 stroke%3D%22black%22                                 stroke-width%3D%223%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E%3Cpath d%3D%22M22 10v6M2 10l10-5 10 5-10 5z%22%3E%3C/path%3E%3Cpath d%3D%22M6 12v5c3 3 9 3 12 0v-5%22%3E%3C/path%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 width%3D%2218%22 height%3D%2218%22 viewBox%3D%220 0 24 24%22 fill%3D%22none%22 stroke%3D%22black%22                                 stroke-width%3D%223%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E%3Cpath d%3D%22M22 10v6M2 10l10-5 10 5-10 5z%22%3E%3C/path%3E%3Cpath d%3D%22M6 12v5c3 3 9 3 12 0v-5%22%3E%3C/path%3E%3C/svg%3E");
}

.icon-building {
    mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 width%3D%2218%22 height%3D%2218%22 viewBox%3D%220 0 24 24%22 fill%3D%22none%22 stroke%3D%22black%22                                 stroke-width%3D%223%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E%3Crect x%3D%224%22 y%3D%222%22 width%3D%2216%22 height%3D%2220%22 rx%3D%222%22 ry%3D%222%22%3E%3C/rect%3E%3Cpath d%3D%22M9 22v-4h6v4%22%3E%3C/path%3E%3Cpath d%3D%22M8 6h.01%22%3E%3C/path%3E%3Cpath d%3D%22M16 6h.01%22%3E%3C/path%3E%3Cpath d%3D%22M12 6h.01%22%3E%3C/path%3E%3Cpath d%3D%22M12 10h.01%22%3E%3C/path%3E%3Cpath d%3D%22M12 14h.01%22%3E%3C/path%3E%3Cpath d%3D%22M16 10h.01%22%3E%3C/path%3E%3Cpath d%3D%22M16 14h.01%22%3E%3C/path%3E%3Cpath d%3D%22M8 10h.01%22%3E%3C/path%3E%3Cpath d%3D%22M8 14h.01%22%3E%3C/path%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 width%3D%2218%22 height%3D%2218%22 viewBox%3D%220 0 24 24%22 fill%3D%22none%22 stroke%3D%22black%22                                 stroke-width%3D%223%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E%3Crect x%3D%224%22 y%3D%222%22 width%3D%2216%22 height%3D%2220%22 rx%3D%222%22 ry%3D%222%22%3E%3C/rect%3E%3Cpath d%3D%22M9 22v-4h6v4%22%3E%3C/path%3E%3Cpath d%3D%22M8 6h.01%22%3E%3C/path%3E%3Cpath d%3D%22M16 6h.01%22%3E%3C/path%3E%3Cpath d%3D%22M12 6h.01%22%3E%3C/path%3E%3Cpath d%3D%22M12 10h.01%22%3E%3C/path%3E%3Cpath d%3D%22M12 14h.01%22%3E%3C/path%3E%3Cpath d%3D%22M16 10h.01%22%3E%3C/path%3E%3Cpath d%3D%22M16 14h.01%22%3E%3C/path%3E%3Cpath d%3D%22M8 10h.01%22%3E%3C/path%3E%3Cpath d%3D%22M8 14h.01%22%3E%3C/path%3E%3C/svg%3E");
}

.icon-globe {
    mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 width%3D%2218%22 height%3D%2218%22 viewBox%3D%220 0 24 24%22 fill%3D%22none%22 stroke%3D%22black%22                                 stroke-width%3D%223%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E%3Ccircle cx%3D%2212%22 cy%3D%2212%22 r%3D%2210%22%3E%3C/circle%3E%3Cline x1%3D%222%22 y1%3D%2212%22 x2%3D%2222%22 y2%3D%2212%22%3E%3C/line%3E%3Cpath                                     d%3D%22M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z%22%3E%3C/path%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 width%3D%2218%22 height%3D%2218%22 viewBox%3D%220 0 24 24%22 fill%3D%22none%22 stroke%3D%22black%22                                 stroke-width%3D%223%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E%3Ccircle cx%3D%2212%22 cy%3D%2212%22 r%3D%2210%22%3E%3C/circle%3E%3Cline x1%3D%222%22 y1%3D%2212%22 x2%3D%2222%22 y2%3D%2212%22%3E%3C/line%3E%3Cpath                                     d%3D%22M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z%22%3E%3C/path%3E%3C/svg%3E");
}

.icon-users {
    mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 width%3D%2218%22 height%3D%2218%22 viewBox%3D%220 0 24 24%22 fill%3D%22none%22 stroke%3D%22black%22                                 stroke-width%3D%223%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E%3Cpath d%3D%22M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2%22%3E%3C/path%3E%3Ccircle cx%3D%229%22 cy%3D%227%22 r%3D%224%22%3E%3C/circle%3E%3Cpath d%3D%22M23 21v-2a4 4 0 0 0-3-3.87%22%3E%3C/path%3E%3Cpath d%3D%22M16 3.13a4 4 0 0 1 0 7.75%22%3E%3C/path%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 width%3D%2218%22 height%3D%2218%22 viewBox%3D%220 0 24 24%22 fill%3D%22none%22 stroke%3D%22black%22                                 stroke-width%3D%223%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E%3Cpath d%3D%22M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2%22%3E%3C/path%3E%3Ccircle cx%3D%229%22 cy%3D%227%22 r%3D%224%22%3E%3C/circle%3E%3Cpath d%3D%22M23 21v-2a4 4 0 0 0-3-3.87%22%3E%3C/path%3E%3Cpath d%3D%22M16 3.13a4 4 0 0 1 0 7.75%22%3E%3C/path%3E%3C/svg%3E");
}

.icon-book {
    mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 width%3D%2218%22 height%3D%2218%22 viewBox%3D%220 0 24 24%22 fill%3D%22none%22 stroke%3D%22black%22                                 stroke-width%3D%223%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E%3Cpath d%3D%22M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z%22%3E%3C/path%3E%3Cpath d%3D%22M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z%22%3E%3C/path%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 width%3D%2218%22 height%3D%2218%22 viewBox%3D%220 0 24 24%22 fill%3D%22none%22 stroke%3D%22black%22                                 stroke-width%3D%223%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E%3Cpath d%3D%22M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z%22%3E%3C/path%3E%3Cpath d%3D%22M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z%22%3E%3C/path%3E%3C/svg%3E");
}

.icon-user {
    mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 width%3D%2216%22 height%3D%2216%22 viewBox%3D%220 0 24 24%22 fill%3D%22none%22 stroke%3D%22black%22                                 stroke-width%3D%223%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E%3Cpath d%3D%22M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2%22%3E%3C/path%3E%3Ccircle cx%3D%2212%22 cy%3D%227%22 r%3D%224%22%3E%3C/circle%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 width%3D%2216%22 height%3D%2216%22 viewBox%3D%220 0 24 24%22 fill%3D%22none%22 stroke%3D%22black%22                                 stroke-width%3D%223%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E%3Cpath d%3D%22M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2%22%3E%3C/path%3E%3Ccircle cx%3D%2212%22 cy%3D%227%22 r%3D%224%22%3E%3C/circle%3E%3C/svg%3E");
}

.icon-award {
    mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 width%3D%2218%22 height%3D%2218%22 viewBox%3D%220 0 24 24%22 fill%3D%22none%22 stroke%3D%22black%22                                 stroke-width%3D%223%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E%3Ccircle cx%3D%2212%22 cy%3D%228%22 r%3D%227%22%3E%3C/circle%3E%3Cpolyline points%3D%228.21 13.89 7 23 12 20 17 23 15.79 13.88%22%3E%3C/polyline%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 width%3D%2218%22 height%3D%2218%22 viewBox%3D%220 0 24 24%22 fill%3D%22none%22 stroke%3D%22black%22                                 stroke-width%3D%223%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E%3Ccircle cx%3D%2212%22 cy%3D%228%22 r%3D%227%22%3E%3C/circle%3E%3Cpolyline points%3D%228.21 13.89 7 23 12 20 17 23 15.79 13.88%22%3E%3C/polyline%3E%3C/svg%3E");
}

.icon-calendar {
    mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 width%3D%2216%22 height%3D%2216%22 viewBox%3D%220 0 24 24%22 fill%3D%22none%22 stroke%3D%22black%22                                 stroke-width%3D%223%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E%3Crect x%3D%223%22 y%3D%224%22 width%3D%2218%22 height%3D%2218%22 rx%3D%222%22 ry%3D%222%22%3E%3C/rect%3E%3Cline x1%3D%2216%22 y1%3D%222%22 x2%3D%2216%22 y2%3D%226%22%3E%3C/line%3E%3Cline x1%3D%228%22 y1%3D%222%22 x2%3D%228%22 y2%3D%226%22%3E%3C/line%3E%3Cline x1%3D%223%22 y1%3D%2210%22 x2%3D%2221%22 y2%3D%2210%22%3E%3C/line%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 width%3D%2216%22 height%3D%2216%22 viewBox%3D%220 0 24 24%22 fill%3D%22none%22 stroke%3D%22black%22                                 stroke-width%3D%223%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E%3Crect x%3D%223%22 y%3D%224%22 width%3D%2218%22 height%3D%2218%22 rx%3D%222%22 ry%3D%222%22%3E%3C/rect%3E%3Cline x1%3D%2216%22 y1%3D%222%22 x2%3D%2216%22 y2%3D%226%22%3E%3C/line%3E%3Cline x1%3D%228%22 y1%3D%222%22 x2%3D%228%22 y2%3D%226%22%3E%3C/line%3E%3Cline x1%3D%223%22 y1%3D%2210%22 x2%3D%2221%22 y2%3D%2210%22%3E%3C/line%3E%3C/svg%3E");
}

.icon-search {
    mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 width%3D%2220%22 height%3D%2220%22 viewBox%3D%220 0 24 24%22 fill%3D%22none%22 stroke%3D%22black%22                             stroke-width%3D%223%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22 style%3D%22margin-right%3A 6px%3B%22%3E%3Ccircle cx%3D%2211%22 cy%3D%2211%22 r%3D%228%22%3E%3C/circle%3E%3Cline x1%3D%2221%22 y1%3D%2221%22 x2%3D%2216.65%22 y2%3D%2216.65%22%3E%3C/line%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 width%3D%2220%22 height%3D%2220%22 viewBox%3D%220 0 24 24%22 fill%3D%22none%22 stroke%3D%22black%22                             stroke-width%3D%223%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22 style%3D%22margin-right%3A 6px%3B%22%3E%3Ccircle cx%3D%2211%22 cy%3D%2211%22 r%3D%228%22%3E%3C/circle%3E%3Cline x1%3D%2221%22 y1%3D%2221%22 x2%3D%2216.65%22 y2%3D%2216.65%22%3E%3C/line%3E%3C/svg%3E");
}

.icon-corner-up-left {
    mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 width%3D%2218%22 height%3D%2218%22 viewBox%3D%220 0 24 24%22 fill%3D%22none%22 stroke%3D%22black%22 stroke-width%3D%223%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E%3Cpolyline points%3D%229 14 4 9 9 4%22%3E%3C/polyline%3E%3Cpath d%3D%22M20 20v-7a4 4 0 0 0-4-4H4%22%3E%3C/path%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 width%3D%2218%22 height%3D%2218%22 viewBox%3D%220 0 24 24%22 fill%3D%22none%22 stroke%3D%22black%22 stroke-width%3D%223%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E%3Cpolyline points%3D%229 14 4 9 9 4%22%3E%3C/polyline%3E%3Cpath d%3D%22M20 20v-7a4 4 0 0 0-4-4H4%22%3E%3C/path%3E%3C/svg%3E");
}
.icon-excel {
    mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 width%3D%2218%22 height%3D%2218%22 viewBox%3D%220 0 24 24%22 fill%3D%22none%22 stroke%3D%22black%22 stroke-width%3D%223%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E%3Cpath d%3D%22M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z%22%3E%3C/path%3E%3Cpolyline points%3D%2214 2 14 8 20 8%22%3E%3C/polyline%3E%3Cline x1%3D%228%22 y1%3D%2213%22 x2%3D%2212%22 y2%3D%2217%22%3E%3C/line%3E%3Cline x1%3D%2212%22 y1%3D%2213%22 x2%3D%228%22 y2%3D%2217%22%3E%3C/line%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 width%3D%2218%22 height%3D%2218%22 viewBox%3D%220 0 24 24%22 fill%3D%22none%22 stroke%3D%22black%22 stroke-width%3D%223%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E%3Cpath d%3D%22M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z%22%3E%3C/path%3E%3Cpolyline points%3D%2214 2 14 8 20 8%22%3E%3C/polyline%3E%3Cline x1%3D%228%22 y1%3D%2213%22 x2%3D%2212%22 y2%3D%2217%22%3E%3C/line%3E%3Cline x1%3D%2212%22 y1%3D%2213%22 x2%3D%228%22 y2%3D%2217%22%3E%3C/line%3E%3C/svg%3E");
}
