﻿/* media */
@media screen and (min-width:361px) { html { font-size: 16px; } } @media screen and (max-width:360px) { html { font-size: 16px; } } @media screen and (max-width:350px) { html { font-size: 15.5px; } } @media screen and (max-width:340px) { html { font-size: 15px; } } @media screen and (max-width:330px) { html { font-size: 14.6px; } } @media screen and (max-width:320px) { html { font-size: 14.2px; } } @media screen and (max-width:310px) { html { font-size: 13.7px; } } @media screen and (max-width:300px) { html { font-size: 13.3px; } } @media screen and (max-width:280px) { html { font-size: 12.4px; } }






/* ----------- */



/*범용 기본 스타일 적용*/
:root {
    --sat: env(safe-area-inset-top);
}

html {
    position: fixed;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    font-family: 'Pretendard';
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: fixed;
    background-color: var(--clc-body-background-color);
}

textarea, text {
    resize: none;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

@media screen and (min-width: 769px){
    ::-webkit-scrollbar {
        width: 10px; /* 스크롤바 너비 */
        background: transparent; /* 트랙(배경) 색상 */
    }

    ::-webkit-scrollbar-thumb {
        background: #C8C8C8; /* 스크롤바 색상 */
        border-radius: 6px; /* 둥근 모서리 */
    }

        ::-webkit-scrollbar-thumb:hover {
            background: #969696; /* 마우스 오버 시 색상 */
        }
}

@media screen and (max-width: 768px){
    ::-webkit-scrollbar {
        width: 5px; /* 스크롤바 너비 */
        background: transparent; /* 트랙(배경) 색상 */
    }

    ::-webkit-scrollbar-thumb {
        background: #C8C8C8; /* 스크롤바 색상 */
        border-radius: 6px; /* 둥근 모서리 */
    }

        ::-webkit-scrollbar-thumb:hover {
            background: #969696; /* 마우스 오버 시 색상 */
        }
}


/*클레비 컴포넌트 이쪽에서 조정*/

.clc-layout .clc-body {
    overflow: hidden !important;
    padding: 0;
}

.clc-header {
    background-color: var(--clc-layout-body-background-color) !important;
}

.body-full-height {
    flex: 1;
    height: calc(var(--vh, 1vh) * 100 - 54px);
    font-family: 'Pretendard';
    overflow-y: auto;
    padding: 0;
    margin: 0;
}

.clc-dialog{
    max-height: 80vh !important;
}

.clc-dialog-alert-message{
    text-align:center;
    word-break: keep-all;
}
.clc-dialog-alert-buttons {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}
    .clc-dialog-alert-buttons .clc-button {
        margin:auto;
        flex: 1;
        max-width: fit-content;
    }
.clc-dropdown-item.clc-state-highlight {
    background-color: var(--clc-assign-base-200) !important;
    color: var(--clc-text-color);
}

.clc-notification-title, .clc-notification-content{
    color: var(--clc-text-color);
}

/*사이드바 관련적용*/
@media screen and (min-width: 769px) {
    .clc-sidebar-collapsed {
        width: 60px !important;
        opacity: 0;
    }
}

.clc-sidebar-collapsed .sidebar-contents_wrap{
    display: none !important;
}

.clc-sidebar-collapsed .bord-sidebar_body {
    display: none !important;
}

.clc-sidebar-collapsed .side-area-header {
    flex-direction:column;
    align-items:center;
    gap: 20px;
}

    .clc-sidebar-collapsed .side-area-header .menu-button_wrap {
        flex-direction: column-reverse;
    }

.clc-sidebar-collapsed .sidebar-bottom_usersetting{
    padding: 0 12px !important;
}

    .clc-sidebar-collapsed .sidebar-bottom_usersetting .left{
        display: none !important;
    }

@media (max-width: 767px) {
    .body-full-height {
        height: calc(var(--vh, 1vh) * 100 - 52px);
    }
}

@supports (-webkit-touch-callout: none) {
    .body-full-height {
        height: calc(var(--vh, 1vh) * 100 - 110px - var(--sat));
    }
}

@media (min-width: 550px) {
    .clc-body {
        padding: 10px;
    }
}

@media screen and (max-width: 550px) {
    .clc-body::-webkit-scrollbar {
        width: 1px !important;
    }

    .clc-body {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .clc-dialog:not(.clc-dialog-confirm):not(.clc-dialog-alert) {
        inset-block-start: unset !important;
        bottom:0;
        height: fit-content;
        margin: auto;
    }
}

.clc-layout .clc-sidebar {
    display: flex;
    flex-direction: column;
    -webkit-flex-direction: column;
}

.clc-multiselect-trigger, .clc-dropdown-trigger {
    position: absolute;
    display: flex;
    align-items: center;
    right: 0;
    top: 0;
    bottom: 0;
    justify-content: end;
}

.clc-datepicker-trigger .clci-calendar, .clc-datepicker-trigger .clci-time {
    width: fit-content;
    margin: 5px 0;
}

.clc-paginator-element:not(.clc-state-disabled), .clc-button:not(.clc-state-disabled) {
    width: fit-content;
    height: fit-content;
}
.clc-variant-text.clc-secondary {
    color: #A1A1A1 !important;
}

.clc-menu:not(.clc-profile-menu) .clc-menu-toggle-item{
    display: none !important;
}
.clc-menu:not(.clc-profile-menu).clc-menu-closed .clc-navigation-item{
    display: block !important;
}

/*클레비 컴포넌트 이쪽에서 조정 끝*/




/*빈페이지시 사용하는 문구*/
.cl_empty-page {
    height: calc(100vh - 400px);
    display: flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
}

    .cl_empty-page div {
        display: flex;
        flex-direction: column;
        -webkit-flex-direction: column;
        align-items: center;
        -webkit-align-items: center;
        justify-content: center;
        -webkit-justify-content: center;
    }

    .cl_empty-page img {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .cl_empty-page .text {
        font-weight: 600;
        font-size: 15px;
        text-align: center;
        margin: auto;
        color: #c3c3c3;
    }

    .cl_empty-page button {
        font-size: 15px;
        width: 100px;
        border: none;
        border-radius: 3px;
        -webkit-border-radius: 3px;
        color: var(--clc-on-primary);
        background-color: var(--clc-primary);
        margin-top: 15px;
        padding: 5px 15px;
    }

/*빈페이지시 사용하는 문구 끝*/


/*페이지 타이틀 버튼 반응형*/

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

    .cl--header-button_desktop {
        display: none !important;
    }

    .cl--header-button_mobile {
        display: block !important;
    }

    .cl--header_button-wrap {
        margin-right: 5px;
    }
}

.cl--header-button {
    display: flex;
    column-gap: 5px;
    -webkit-column-gap: 5px;
    justify-content: end;
    -webkit-justify-content: end;
    padding: 0 10px;
    right: 0px;
}

.cl--header-button_desktop {
    display: flex;
    column-gap: 5px;
    -webkit-column-gap: 5px;
    justify-content: end;
    -webkit-justify-content: end;
    padding: 0 10px;
    right: 0px;
}

    .cl--header-button_desktop img {
        width: 17px;
        height: 17px;
    }

    .cl--header-button_desktop .clc-button {
        height: fit-content;
        min-height: unset;
        white-space: nowrap;
    }
        .cl--header-button_desktop .clc-button .clc-text-body1 {
            margin: 0;
            font-size: 13px;
        }

        .cl--header-button_desktop .clc-button:last-child {
            margin-right: 0px;
        }

.cl--header-button_mobile {
    display: none;
    right: 0px;
}

.cl--header_button-wrap {
    display: flex;
    align-items: center;
    flex-flow: row;
    -webkit-flex-flow: row;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    column-gap: 5px;
    -webkit-column-gap: 5px;
}

.cl--header-button_mobile .clc-button {
    height: fit-content;
    padding: 0 5px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    background-color: transparent !important;
}
.cl--header-button_mobile .cl--header_button-wrap {
    display:flex;
    gap: 10px !important;
}

.cl--header-button_mobile img {
    width: 24px;
    height: 24px;  
}

.cl_topbar-page_title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
}
@media screen and (max-width: 768px){
    .cl_topbar-page_title {
        font-size: 14px !important;
    }
}
@media screen and (min-width: 769px){
    .cl_topbar-page_title {
        font-size: 18px !important;
    }
}

/*페이지 타이틀 버튼 반응형 끝*/


/*검색창 search wrap*/
.cl-gc-search_wrap {
    display: flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    width: 100%;
    align-items: center;
    -webkit-align-items: center;
    position: relative;
}

    .cl-gc-search_wrap textarea {
        width: 100%;
        justify-content: center;
        -webkit-justify-content: center;
        padding: 7px 0 7px 15px;
        width: 100%;
        background-color: #F8F9FA;
        border-color: transparent;
        border: 1px solid #dcdcdc;
        border-radius: 30px;
        -webkit-border-radius: 30px;
        display: flex;
        align-items: center;
        -webkit-align-items: center;
        border: none;
        outline: none;
        font-size: 13px;
        color: #a4a4a4;
    }

    .cl-gc-search_wrap input {
        height: 100%;
        justify-content: center;
        -webkit-justify-content: center;
        padding: 7px 0 7px 15px;
        flex: 1;
        border: 1px solid #dcdcdc;
        border-radius: 30px;
        -webkit-border-radius: 30px;
        display: flex;
        align-items: center;
        -webkit-align-items: center;
        font-size: 13px;
        color: #a4a4a4;
        background-color:transparent;
    }

        .cl-gc-search_wrap input:hover, .cl-gc-search_wrap textarea:hover {
            outline: none !important;
        }

        .cl-gc-search_wrap input:active, .cl-gc-search_wrap textarea:active {
            outline: none !important;
            border: 1px solid #5864ff;
        }

        .cl-gc-search_wrap input:focus, .cl-gc-search_wrap textarea:focus {
            outline: none !important;
            border: 1px solid #5864ff;
        }

    .cl-gc-search_wrap button {
        position: absolute;
        right: 0;
    }

/*검색창 search wrap 끝*/


/*슬라이드 애니메이션*/
.slide.on {
    display: block;
    animation: slideUp 0.7s forwards;
    -webkit-animation: slideUp 0.7s forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(30vh);
        -webkit-transform: translateY(30vh);
    }

    to {
        transform: translateY(0);
        -webkit-transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        -webkit-transform: translateY(0);
    }

    to {
        display: none;
        transform: translateY(65vh);
        -webkit-transform: translateY(65vh);
    }
}

.clc-dropdown-panel {
    /*width: fit-content !important;*/
    width: 100px !important;
}




/* icon svg */
[class*=ico-]{width:1.5rem;height:1.5rem;display:inline-block;background-position:50% 50% !important;background-repeat:no-repeat !important;background-size:100% 100% !important;}
.ico-lock{width:0.875rem;height:1.125rem;background-image: url("data:image/svg+xml,%3Csvg width='14' height='18' viewBox='0 0 14 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 0C4.43333 0 2.33333 2.1 2.33333 4.66667V8H0V17.3333H14V8H11.6667V4.66667C11.6667 2.1 9.56667 0 7 0ZM7 2.33333C8.30667 2.33333 9.33333 3.36 9.33333 4.66667V8H4.66667V4.66667C4.66667 3.36 5.69333 2.33333 7 2.33333Z' fill='%23AFAFAF'/%3E%3C/svg%3E%0A");}
.ico-back{width:0.625rem;height:1.125rem;background-image: url("data:image/svg+xml,%3Csvg width='10' height='18' viewBox='0 0 10 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.2697 0.0561407C9.90749 0.315797 10.1768 1.00227 9.87859 1.60831C9.83514 1.69664 8.58049 2.98835 6.22457 5.37033L2.6367 8.99781L6.25433 12.659C9.66133 16.107 9.87546 16.3305 9.93246 16.4988C10.1943 17.2718 9.61906 18.0548 8.8318 17.997C8.38252 17.964 8.67227 18.2322 4.21643 13.7254C-0.384189 9.0722 -0.0082786 9.49971 0.0174139 8.94998C0.0287741 8.7071 0.0484571 8.61516 0.11784 8.48107C0.183293 8.35461 1.18124 7.32829 4.24361 4.23793C7.66203 0.788276 8.30848 0.150376 8.4482 0.0888646C8.68475 -0.0152448 9.05782 -0.0301224 9.2697 0.0561407Z' fill='%238F8F8F'/%3E%3C/svg%3E%0A");}
.ico-new-plus {width:40px;height:40px;border:1px solid #e1e1e1;border-radius:6px;display:flex;justify-content:center;align-items:center; }
.ico-new-plus:before{content:'';display:block;width:0.625rem;height:0.625rem;background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 0H6V10H4V0Z' fill='%23AAAAAA'/%3E%3Cpath d='M0 4H10V6H0V4Z' fill='%23AAAAAA'/%3E%3C/svg%3E%0A");}
.ico-copy {background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUuNDUxNzMgMTcuNUwxMy45NjM2IDE3LjVDMTQuOTAzOCAxNy41IDE1LjY2NiAxNi41NjE5IDE1LjY2NiAxNS40MDQ4VjQuOTI4NTdDMTUuNjY2IDMuNzcxNCAxNC45MDM4IDIuODMzMyAxMy45NjM2IDIuODMzM0g1LjQ1MTczQzQuNTExNTMgMi44MzMzIDMuNzQ5MzUgMy43NzE0IDMuNzQ5MzUgNC45Mjg2VjE1LjQwNDhDMy43NDkzNSAxNi41NjE5IDQuNTExNTMgMTcuNSA1LjQ1MTczIDE3LjVaIiBzdHJva2U9IiM5Njk2OTYiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE1Ljk yNjMgNi4zMzMzSDE3LjUwMDdDMTguNDM3MSA2LjMzMzMgMTkuMjAzMSA3LjI3NjE5IDE5LjIwMzEgOC40Mjg1N1YxOC45MDQ4QzE5LjIwMzEgMjAuMDU3MSAxOC40MzcxIDIxIDE3LjUwMDcgMjFIOC4xMTY4MkM3LjE4MDUxIDIxIDYuNDE0NCAyMC4wNTcxIDYuNDE0NCAxOC45MDQ4VjE3LjUiIHN0cm9rZT0iIzk2OTY5NiIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4=");}
.ico-custom {background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.66406 10.8327C2.5849 10.8327 3.33073 11.5785 3.33073 12.4993C3.33073 11.5785 4.07656 10.8327 4.9974 10.8327C4.07656 10.8327 3.33073 10.0868 3.33073 9.16602C3.33073 10.0868 2.5849 10.8327 1.66406 10.8327Z' stroke='%238F8F8F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13.3359 15.584C14.5791 15.584 15.5859 16.5909 15.5859 17.834C15.5859 16.5909 16.5928 15.584 17.8359 15.584C16.5928 15.584 15.5859 14.5771 15.5859 13.334C15.5859 14.5771 14.5791 15.584 13.3359 15.584Z' fill='%238F8F8F' stroke='%238F8F8F' stroke-width='1.35' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5 4.16602C6.38125 4.16602 7.5 5.28477 7.5 6.66602C7.5 5.28477 8.61875 4.16602 10 4.16602C8.61875 4.16602 7.5 3.04727 7.5 1.66602C7.5 3.04727 6.38125 4.16602 5 4.16602Z' fill='%238F8F8F' stroke='%238F8F8F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16.425 8.43411L7.35832 17.5008H5V15.1424L14.0667 6.07578C14.3917 5.75078 14.9167 5.75078 15.2417 6.07578L16.4167 7.25078C16.7417 7.57578 16.7417 8.10078 16.4167 8.42578L16.425 8.43411Z' stroke='%238F8F8F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12.5742 7.5752L14.9242 9.9252' stroke='%238F8F8F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");}
.ico-exit-red {background-image: url("data:image/svg+xml;utf8,<svg width='24' height='24' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M8.26 12.2503L10.85 11.6728C11.3225 11.5678 11.6608 11.1478 11.6608 10.6578V3.36029C11.6608 2.87612 11.3225 2.45612 10.85 2.34529L8.26 1.76779C7.6125 1.62195 7 2.11779 7 2.78279V11.2353C7 11.9003 7.6125 12.3903 8.26 12.2503Z' stroke='%23EF7165' stroke-linecap='round' stroke-linejoin='round'/><path d='M8.75 6.4043V7.57096' stroke='%23EF7165' stroke-linecap='round' stroke-linejoin='round'/><path d='M2.33301 9.33301V10.523C2.33301 11.1647 2.85801 11.6897 3.49967 11.6897H5.24967' stroke='%23EF7165' stroke-linecap='round' stroke-linejoin='round'/><path d='M2.33301 4.66634V3.49967C2.33301 2.85801 2.85801 2.33301 3.49967 2.33301H5.24967' stroke='%23EF7165' stroke-linecap='round' stroke-linejoin='round'/><path d='M2.33301 7H5.24967' stroke='%23EF7165' stroke-linecap='round' stroke-linejoin='round'/><path d='M4.08301 8.16634L5.24967 6.99967L4.08301 5.83301' stroke='%23EF7165' stroke-linecap='round' stroke-linejoin='round'/></svg>");}
.ico-edit {background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.2929 4.29327C15.0641 2.52204 17.9359 2.52204 19.7071 4.29326C21.4784 6.0645 21.4784 8.93624 19.7071 10.7075L18.7073 11.7073L11.6135 18.8011C10.8766 19.538 9.92793 20.0262 8.89999 20.1975L4.16441 20.9868C3.84585 21.0399 3.52127 20.9359 3.29291 20.7075C3.06454 20.4792 2.96053 20.1546 3.01362 19.836L3.80288 15.1004C3.9742 14.0725 4.46243 13.1238 5.19932 12.3869L13.2929 4.29327ZM13 7.41458L6.61353 13.8011C6.1714 14.2432 5.87846 14.8125 5.77567 15.4292L5.21656 18.7839L8.57119 18.2248C9.18795 18.122 9.75719 17.829 10.1993 17.3869L16.5858 11.0004L13 7.41458ZM18 9.58616L14.4142 6.00038L14.7071 5.70748C15.6973 4.71729 17.3027 4.71729 18.2929 5.70748C19.2831 6.69767 19.2831 8.30308 18.2929 9.29327L18 9.58616Z' fill='%238F8F8F'/%3E%3C/svg%3E%0A");}
.ico-up {background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.1318 2.50389C12.3321 2.15338 12.7235 1.95768 13.124 2.00775L13.5778 2.06447C16.0449 2.37286 17.636 4.83353 16.9048 7.20993L16.354 8.99999H17.0722C19.7097 8.99999 21.6253 11.5079 20.9313 14.0525L19.5677 19.0525C19.0931 20.7927 17.5124 22 15.7086 22H6C4.34315 22 3 20.6568 3 19V12C3 10.3431 4.34315 8.99999 6 8.99999H8C8.25952 8.99999 8.49914 8.86094 8.6279 8.63561L12.1318 2.50389ZM10 20H15.7086C16.6105 20 17.4008 19.3964 17.6381 18.5262L19.0018 13.5262C19.3488 12.2539 18.391 11 17.0722 11H15C14.6827 11 14.3841 10.8494 14.1956 10.5941C14.0071 10.3388 13.9509 10.0092 14.0442 9.70591L14.9932 6.62175C15.3384 5.49984 14.6484 4.34036 13.5319 4.08468L10.3644 9.62789C10.0522 10.1742 9.56691 10.5859 9 10.8098V19C9 19.5523 9.44772 20 10 20ZM7 11V19C7 19.3506 7.06015 19.6872 7.17071 20H6C5.44772 20 5 19.5523 5 19V12C5 11.4477 5.44772 11 6 11H7Z' fill='%23656565'/%3E%3C/svg%3E%0A");}
.ico-up.on {background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.1318 2.50389C12.3321 2.15338 12.7235 1.95768 13.124 2.00775L13.5778 2.06447C16.0449 2.37286 17.636 4.83353 16.9048 7.20993L16.354 8.99999H17.0722C19.7097 8.99999 21.6253 11.5079 20.9313 14.0525L19.5677 19.0525C19.0931 20.7927 17.5124 22 15.7086 22H6C4.34315 22 3 20.6568 3 19V12C3 10.3431 4.34315 8.99999 6 8.99999H8C8.25952 8.99999 8.49914 8.86094 8.6279 8.63561L12.1318 2.50389ZM10 20H15.7086C16.6105 20 17.4008 19.3964 17.6381 18.5262L19.0018 13.5262C19.3488 12.2539 18.391 11 17.0722 11H15C14.6827 11 14.3841 10.8494 14.1956 10.5941C14.0071 10.3388 13.9509 10.0092 14.0442 9.70591L14.9932 6.62175C15.3384 5.49984 14.6484 4.34036 13.5319 4.08468L10.3644 9.62789C10.0522 10.1742 9.56691 10.5859 9 10.8098V19C9 19.5523 9.44772 20 10 20ZM7 11V19C7 19.3506 7.06015 19.6872 7.17071 20H6C5.44772 20 5 19.5523 5 19V12C5 11.4477 5.44772 11 6 11H7Z' fill='%235F60FF'/%3E%3C/svg%3E%0A");}
.ico-down {background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.1318 21.4961C12.3321 21.8466 12.7235 22.0423 13.124 21.9923L13.5778 21.9355C16.0449 21.6271 17.636 19.1665 16.9048 16.7901L16.354 15H17.0722C19.7097 15 21.6253 12.4921 20.9313 9.9475L19.5677 4.9475C19.0931 3.2073 17.5124 2 15.7086 2H6C4.34315 2 3 3.3432 3 5V12C3 13.6569 4.34315 15 6 15H8C8.25952 15 8.49914 15.1391 8.6279 15.3644L12.1318 21.4961ZM10 4H15.7086C16.6105 4 17.4008 4.6036 17.6381 5.4738L19.0018 10.4738C19.3488 11.7461 18.391 13 17.0722 13H15C14.6827 13 14.3841 13.1506 14.1956 13.4059C14.0071 13.6612 13.9509 13.9908 14.0442 14.2941L14.9932 17.3783C15.3384 18.5002 14.6484 19.6596 13.5319 19.9153L10.3644 14.3721C10.0522 13.8258 9.56691 13.4141 9 13.1902V5C9 4.4477 9.44772 4 10 4ZM7 13V5C7 4.6494 7.06015 4.3128 7.17071 4H6C5.44772 4 5 4.4477 5 5V12C5 12.5523 5.44772 13 6 13H7Z' fill='%23656565'/%3E%3C/svg%3E%0A");}
.ico-down.on {background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.1318 21.4961C12.3321 21.8466 12.7235 22.0423 13.124 21.9923L13.5778 21.9355C16.0449 21.6271 17.636 19.1665 16.9048 16.7901L16.354 15H17.0722C19.7097 15 21.6253 12.4921 20.9313 9.9475L19.5677 4.9475C19.0931 3.2073 17.5124 2 15.7086 2H6C4.34315 2 3 3.3432 3 5V12C3 13.6569 4.34315 15 6 15H8C8.25952 15 8.49914 15.1391 8.6279 15.3644L12.1318 21.4961ZM10 4H15.7086C16.6105 4 17.4008 4.6036 17.6381 5.4738L19.0018 10.4738C19.3488 11.7461 18.391 13 17.0722 13H15C14.6827 13 14.3841 13.1506 14.1956 13.4059C14.0071 13.6612 13.9509 13.9908 14.0442 14.2941L14.9932 17.3783C15.3384 18.5002 14.6484 19.6596 13.5319 19.9153L10.3644 14.3721C10.0522 13.8258 9.56691 13.4141 9 13.1902V5C9 4.4477 9.44772 4 10 4ZM7 13V5C7 4.6494 7.06015 4.3128 7.17071 4H6C5.44772 4 5 4.4477 5 5V12C5 12.5523 5.44772 13 6 13H7Z' fill='%235F60FF'/%3E%3C/svg%3E%0A");}
.ico-reset {background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.06956 10.8763C3.6233 6.43564 7.40966 3 12 3C14.2824 3 16.4028 3.85067 18.0118 5.25439V4C18.0118 3.44772 18.4595 3 19.0118 3C19.5641 3 20.0118 3.44772 20.0118 4V8C20.0118 8.55228 19.5641 9 19.0118 9H15C14.4477 9 14 8.55228 14 8C14 7.44772 14.4477 7 15 7H16.9571C15.6757 5.76379 13.9101 5 12 5C8.43107 5 5.48465 7.67174 5.05419 11.1237C4.98585 11.6718 4.48618 12.0607 3.93814 11.9923C3.3901 11.924 3.00122 11.4243 3.06956 10.8763ZM20.0618 12.0077C20.6099 12.076 20.9988 12.5757 20.9304 13.1237C20.3767 17.5644 16.5903 21 12 21C9.72321 21 7.60761 20.1535 5.99998 18.7559V20C5.99998 20.5523 5.55227 21 4.99998 21C4.4477 21 3.99998 20.5523 3.99998 20V16C3.99998 15.4477 4.4477 15 4.99998 15H8.99998C9.55227 15 9.99998 15.4477 9.99998 16C9.99998 16.5523 9.55227 17 8.99998 17H7.04284C8.32432 18.2362 10.0899 19 12 19C15.5689 19 18.5153 16.3283 18.9458 12.8763C19.0141 12.3282 19.5138 11.9393 20.0618 12.0077Z' fill='%23656565'/%3E%3C/svg%3E%0A");}
.ico-chat {background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.58635 2.57912C1.83311 3.33026 1.39535 4.5135 1.39535 6.26152V10.8997C1.39535 13.1588 1.85457 14.2894 2.55244 14.8983C3.27336 15.5273 4.43094 15.7697 6.27907 15.7697H6.74419C6.75917 15.7697 6.77415 15.7702 6.7891 15.7712C7.25795 15.8014 7.70919 16.014 8.02434 16.3911C8.03197 16.4003 8.03936 16.4096 8.04651 16.4191L9.44186 18.2743C9.45511 18.292 9.46752 18.3102 9.47903 18.329C9.52365 18.4018 9.58383 18.4618 9.65683 18.5063L9.66765 18.5129C9.95322 18.6941 10.3417 18.6096 10.5277 18.3183C10.5373 18.3032 10.5474 18.2886 10.5581 18.2743L11.9535 16.4191L11.9562 16.4155C12.2628 16.0132 12.7461 15.7697 13.2558 15.7697H13.7209C15.4739 15.7697 16.6604 15.3332 17.4136 14.5821C18.1669 13.8309 18.6046 12.6477 18.6046 10.8997V8.11678C18.6046 7.73254 18.917 7.42106 19.3023 7.42106C19.6876 7.42106 20 7.73254 20 8.11678V10.8997C20 12.8622 19.5075 14.4619 18.4003 15.566C17.2931 16.6701 15.6889 17.1612 13.7209 17.1612H13.2558C13.1892 17.1612 13.1149 17.1956 13.0681 17.2562C13.0677 17.2566 13.0674 17.2571 13.0671 17.2575L11.6888 19.0901C11.0884 20.0017 9.8571 20.2785 8.92379 19.6903C8.67477 19.5374 8.4649 19.3313 8.30791 19.0857L6.944 17.2723C6.89014 17.2129 6.81139 17.1712 6.7163 17.1612H6.27907C4.40627 17.1612 2.77315 16.9398 1.6336 15.9455C0.471008 14.931 0 13.2787 0 10.8997V6.26152C0 4.29901 0.492475 2.69934 1.59969 1.59522C2.70691 0.491098 4.31106 0 6.27907 0H11.8605C12.2458 0 12.5581 0.311486 12.5581 0.695724C12.5581 1.07996 12.2458 1.39145 11.8605 1.39145H6.27907C4.52615 1.39145 3.3396 1.82798 2.58635 2.57912Z' fill='%238F8F8F'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.7907 9.04441C12.7907 8.5321 13.2072 8.11678 13.7209 8.11678H13.7302C14.244 8.11678 14.6605 8.5321 14.6605 9.04441C14.6605 9.55673 14.244 9.97205 13.7302 9.97205H13.7209C13.2072 9.97205 12.7907 9.55673 12.7907 9.04441Z' fill='%238F8F8F'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.06068 9.04441C9.06068 8.5321 9.47716 8.11678 9.99091 8.11678H10.0002C10.514 8.11678 10.9305 8.5321 10.9305 9.04441C10.9305 9.55673 10.514 9.97205 10.0002 9.97205H9.99091C9.47716 9.97205 9.06068 9.55673 9.06068 9.04441Z' fill='%238F8F8F'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.33975 9.04441C5.33975 8.5321 5.75623 8.11678 6.26999 8.11678H6.27929C6.79304 8.11678 7.20952 8.5321 7.20952 9.04441C7.20952 9.55673 6.79304 9.97205 6.27929 9.97205H6.26999C5.75623 9.97205 5.33975 9.55673 5.33975 9.04441Z' fill='%238F8F8F'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M17.4136 2.57912C18.1669 3.33026 18.6047 4.5135 18.6047 6.26152L18.6046 10.8997C18.6046 13.1588 18.1454 14.2894 17.4476 14.8983C16.7266 15.5273 15.5691 15.7697 13.7209 15.7697H13.2558C13.2408 15.7697 13.2258 15.7702 13.2109 15.7712C12.742 15.8014 12.2908 16.014 11.9757 16.3911C11.968 16.4003 11.9606 16.4096 11.9535 16.4191L10.5581 18.2743C10.5449 18.292 10.5325 18.3102 10.521 18.329C10.4764 18.4018 10.4162 18.4618 10.3432 18.5063L10.3324 18.5129C10.0468 18.6941 9.65826 18.6096 9.47232 18.3183C9.46273 18.3032 9.45257 18.2886 9.44186 18.2743L8.04651 16.4191L8.04383 16.4155C7.73716 16.0132 7.25388 15.7697 6.74419 15.7697H6.27907C4.52615 15.7697 3.3396 15.3332 2.58635 14.5821C1.83311 13.8309 1.39535 12.6477 1.39535 10.8997V8.11678C1.39535 7.73254 1.08299 7.42106 0.697674 7.42106C0.31236 7.42106 7.96956e-08 7.73254 7.96956e-08 8.11678L0 10.8997C0 12.8622 0.492474 14.4619 1.59969 15.566C2.70691 16.6701 4.31106 17.1612 6.27907 17.1612H6.74419C6.81078 17.1612 6.88507 17.1956 6.93194 17.2562C6.93227 17.2566 6.93259 17.2571 6.93291 17.2575L8.31118 19.0901C8.91164 20.0017 10.1429 20.2785 11.0762 19.6903C11.3252 19.5374 11.5351 19.3313 11.6921 19.0857L13.056 17.2723C13.1099 17.2129 13.1886 17.1712 13.2837 17.1612H13.7209C15.5937 17.1612 17.2268 16.9398 18.3664 15.9455C19.529 14.931 20 13.2787 20 10.8997V6.26152C20 4.29901 19.5075 2.69934 18.4003 1.59522C17.2931 0.491098 15.6889 0 13.7209 0H8.13953C7.75422 0 7.44186 0.311486 7.44186 0.695724C7.44186 1.07996 7.75422 1.39145 8.13953 1.39145H13.7209C15.4739 1.39145 16.6604 1.82798 17.4136 2.57912Z' fill='%238F8F8F'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.20952 9.04441C7.20952 8.5321 6.79304 8.11678 6.27929 8.11678H6.26999C5.75623 8.11678 5.33975 8.5321 5.33975 9.04441C5.33975 9.55673 5.75623 9.97205 6.26999 9.97205H6.27929C6.79304 9.97205 7.20952 9.55673 7.20952 9.04441Z' fill='%238F8F8F'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.9393 9.04441C10.9393 8.5321 10.5228 8.11678 10.0091 8.11678H10.0002C9.48646 8.11678 9.06955 8.5321 9.06955 9.04441C9.06955 9.55673 9.48646 9.97205 10.0002 9.97205H10.0091C10.5228 9.97205 10.9393 9.55673 10.9393 9.04441Z' fill='%238F8F8F'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.6605 9.04441C14.6605 8.5321 14.244 8.11678 13.7302 8.11678H13.7209C13.2072 8.11678 12.7907 8.5321 12.7907 9.04441C12.7907 9.55673 13.2072 9.97205 13.7209 9.97205H13.7302C14.244 9.97205 14.6605 9.55673 14.6605 9.04441Z' fill='%238F8F8F'/%3E%3C/svg%3E%0A");}
.ico-new-chat_black {background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEzIDE3SDE4QzE5LjY2IDE3IDIxIDE1LjY2IDIxIDE0VjZDMjEgNC4zNCAxOS42NiAzIDE4IDNINkM0LjM0IDMgMyA0LjM0IDMgNlYxNEMzIDE1LjY2IDQuMzQgMTcgNiAxN0g4VjIxTDEzIDE3WiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0xMiA3VjEzIiBzdHJva2U9IiMzMzMzMzMiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE1IDEwSDkiIHN0cm9rZT0iIzMzMzMzMyIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4=");}
.ico-new-chat {background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEzIDE3SDE4QzE5LjY2IDE3IDIxIDE1LjY2IDIxIDE0VjZDMjEgNC4zNCAxOS42NiAzIDE4IDNINkM0LjM0IDMgMyA0LjM0IDMgNlYxNEMzIDE1LjY2IDQuMzQgMTcgNiAxN0g4VjIxTDEzIDE3WiIgc3Ryb2tlPSIjNjQ2NDY0IiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0xMiA3VjEzIiBzdHJva2U9IiM2NDY0NjQiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE1IDEwSDkiIHN0cm9rZT0iIzY0NjQ2NCIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4=");}
.ico-chat-bubble {background-image: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.0833 18.4167H19.5C21.2983 18.4167 22.75 16.965 22.75 15.1667V6.5C22.75 4.70167 21.2983 3.25 19.5 3.25H6.5C4.70167 3.25 3.25 4.70167 3.25 6.5V15.1667C3.25 16.965 4.70167 18.4167 6.5 18.4167H8.66667V22.75L14.0833 18.4167Z' stroke='%23333333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");}
.ico-rect-check {background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.0385 2.5H5.96154C4.04978 2.5 2.5 4.04978 2.5 5.96154V14.0385C2.5 15.9502 4.04978 17.5 5.96154 17.5H14.0385C15.9502 17.5 17.5 15.9502 17.5 14.0385V5.96154C17.5 4.04978 15.9502 2.5 14.0385 2.5Z' stroke='%238F8F8F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.0679 6.49217C14.0264 6.50443 13.9453 6.5377 13.8876 6.56609C13.8299 6.59451 12.5961 7.76857 11.1458 9.1751C9.69554 10.5816 8.50228 11.7383 8.49411 11.7456C8.48597 11.7528 7.9695 11.2642 7.34639 10.66C6.10504 9.4561 6.0884 9.44335 5.75512 9.44221C5.41523 9.44104 5.13607 9.63925 5.04139 9.949C4.98547 10.132 4.98586 10.1818 5.04473 10.3774C5.09056 10.5297 5.15025 10.5922 6.56908 11.974C7.54358 12.9231 8.08727 13.4317 8.16786 13.4697C8.35009 13.5555 8.63612 13.5483 8.83325 13.4528C8.95559 13.3936 9.58663 12.7932 11.9371 10.4995C14.0271 8.46003 14.9034 7.58609 14.9426 7.50236C15.0683 7.2335 14.9804 6.84569 14.7491 6.64836C14.5781 6.50247 14.2711 6.43211 14.0679 6.49217Z' fill='%238F8F8F'/%3E%3C/svg%3E%0A");}
.ico-rect-minus {background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.53846 10H13.4615M5.96154 2.5H14.0385C15.9502 2.5 17.5 4.04978 17.5 5.96154V14.0385C17.5 15.9502 15.9502 17.5 14.0385 17.5H5.96154C4.04978 17.5 2.5 15.9502 2.5 14.0385V5.96154C2.5 4.04978 4.04978 2.5 5.96154 2.5Z' stroke='%238F8F8F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");}
.ico-rect-plus {background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 6.53846V13.4615M6.53846 10.0003H13.4615M5.96154 2.5H14.0385C15.9502 2.5 17.5 4.04978 17.5 5.96154V14.0385C17.5 15.9502 15.9502 17.5 14.0385 17.5H5.96154C4.04978 17.5 2.5 15.9502 2.5 14.0385V5.96154C2.5 4.04978 4.04978 2.5 5.96154 2.5Z' stroke='%238F8F8F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");}
.ico-storage {background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.26458 2.15404C3.58581 2.15404 3.03556 2.7087 3.03556 3.39291V16.6075C3.03556 17.2917 3.58581 17.8464 4.26458 17.8464H15.7354C16.4142 17.8464 16.9644 17.2917 16.9644 16.6075V3.39291C16.9644 2.7087 16.4142 2.15404 15.7354 2.15404H4.26458ZM2.21622 3.39291C2.21622 2.25256 3.1333 1.32813 4.26458 1.32813H15.7354C16.8667 1.32813 17.7838 2.25256 17.7838 3.39291V16.6075C17.7838 17.7479 16.8667 18.6723 15.7354 18.6723H4.26458C3.1333 18.6723 2.21622 17.7479 2.21622 16.6075V3.39291Z' fill='%238F8F8F'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.21622 10.0002C2.21622 9.77215 2.39963 9.58726 2.62589 9.58726H17.3741C17.6004 9.58726 17.7838 9.77215 17.7838 10.0002C17.7838 10.2283 17.6004 10.4132 17.3741 10.4132H2.62589C2.39963 10.4132 2.21622 10.2283 2.21622 10.0002Z' fill='%238F8F8F'/%3E%3Cpath d='M11.0342 6.32362C11.0342 6.73895 10.7002 7.07563 10.2882 7.07563C9.87618 7.07563 9.54218 6.73895 9.54218 6.32362C9.54218 5.9083 9.87618 5.57162 10.2882 5.57162C10.7002 5.57162 11.0342 5.9083 11.0342 6.32362Z' fill='%238F8F8F'/%3E%3Cpath d='M11.0342 14.345C11.0342 14.7603 10.7002 15.097 10.2882 15.097C9.87618 15.097 9.54218 14.7603 9.54218 14.345C9.54218 13.9297 9.87618 13.593 10.2882 13.593C10.7002 13.593 11.0342 13.9297 11.0342 14.345Z' fill='%238F8F8F'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2 3.39291C2 2.13391 3.01281 1.11133 4.26458 1.11133H15.7354C16.9872 1.11133 18 2.13391 18 3.39291V16.6075C18 17.8665 16.9872 18.8891 15.7354 18.8891H4.26458C3.01281 18.8891 2 17.8665 2 16.6075V3.39291ZM2.43243 10.5993V16.6075C2.43243 17.6292 3.25379 18.4555 4.26458 18.4555H15.7354C16.7462 18.4555 17.5676 17.6292 17.5676 16.6075V10.5993C17.5067 10.6192 17.4417 10.63 17.3741 10.63H17.1807V16.6075C17.1807 17.4104 16.5347 18.0632 15.7354 18.0632H4.26458C3.46532 18.0632 2.81935 17.4104 2.81935 16.6075V10.63H2.62589C2.55831 10.63 2.49331 10.6192 2.43243 10.5993ZM2.81935 10.1964H2.62589C2.52012 10.1964 2.43243 10.1096 2.43243 10.0002C2.43243 9.8908 2.52012 9.80406 2.62589 9.80406H2.81935V10.1964ZM3.25178 10.63V16.6075C3.25178 17.1731 3.7063 17.6296 4.26458 17.6296H15.7354C16.2937 17.6296 16.7482 17.1731 16.7482 16.6075V10.63H3.25178ZM16.7482 10.1964H3.25178V9.80406H16.7482V10.1964ZM17.1807 10.1964H17.3741C17.4799 10.1964 17.5676 10.1096 17.5676 10.0002C17.5676 9.8908 17.4799 9.80406 17.3741 9.80406H17.1807V10.1964ZM17.1807 9.37046H17.3741C17.4417 9.37046 17.5067 9.38121 17.5676 9.40108V3.39291C17.5676 2.37122 16.7462 1.54493 15.7354 1.54493H4.26458C3.25379 1.54493 2.43243 2.37122 2.43243 3.39291V9.40108C2.49331 9.38121 2.55831 9.37046 2.62589 9.37046H2.81935V3.39291C2.81935 2.59005 3.46532 1.93724 4.26458 1.93724H15.7354C16.5347 1.93724 17.1807 2.59005 17.1807 3.39291V9.37046ZM3.25178 9.37046H16.7482V3.39291C16.7482 2.82736 16.2937 2.37085 15.7354 2.37085H4.26458C3.7063 2.37085 3.25178 2.82736 3.25178 3.39291V9.37046ZM10.2882 5.78842C9.99667 5.78842 9.75839 6.02696 9.75839 6.32362C9.75839 6.62029 9.99667 6.85883 10.2882 6.85883C10.5797 6.85883 10.818 6.62029 10.818 6.32362C10.818 6.02696 10.5797 5.78842 10.2882 5.78842ZM9.32596 6.32362C9.32596 5.78965 9.7557 5.35482 10.2882 5.35482C10.8207 5.35482 11.2504 5.78965 11.2504 6.32362C11.2504 6.8576 10.8207 7.29243 10.2882 7.29243C9.7557 7.29243 9.32596 6.8576 9.32596 6.32362ZM10.2882 13.8098C9.99667 13.8098 9.75839 14.0484 9.75839 14.345C9.75839 14.6417 9.99667 14.8802 10.2882 14.8802C10.5797 14.8802 10.818 14.6417 10.818 14.345C10.818 14.0484 10.5797 13.8098 10.2882 13.8098ZM9.32596 14.345C9.32596 13.811 9.7557 13.3762 10.2882 13.3762C10.8207 13.3762 11.2504 13.811 11.2504 14.345C11.2504 14.879 10.8207 15.3138 10.2882 15.3138C9.7557 15.3138 9.32596 14.879 9.32596 14.345Z' fill='%238F8F8F'/%3E%3C/svg%3E%0A");}
.ico-search {background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.5 4C14.0898 4.00002 17 6.91016 17 10.5C17 12.1149 16.4094 13.5908 15.4346 14.7275L19.8535 19.1465L19.918 19.2246C20.0461 19.4187 20.0244 19.6827 19.8535 19.8535C19.6827 20.0244 19.4187 20.0461 19.2246 19.918L19.1465 19.8535L14.7275 15.4346C13.5908 16.4094 12.1149 17 10.5 17C6.91015 17 4 14.0898 4 10.5C4 6.91015 6.91015 4 10.5 4ZM10.5 5C7.46244 5 5 7.46243 5 10.5C5 13.5376 7.46244 16 10.5 16C13.5376 16 16 13.5376 16 10.5C16 7.46245 13.5376 5.00002 10.5 5Z' fill='%23969696'/%3E%3C/svg%3E");}.ico-settig {background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.4473 1.79604L12.0089 3.32538L12.1731 3.77467L12.5964 4.00796L14.1862 4.88927L14.5837 5.11392L15.033 5.03615L16.7351 4.74238L18.1176 7.05798L17.0548 8.25898L16.7351 8.63051V9.12301V10.8856V11.3781L17.0548 11.7497L18.0917 12.9334L16.7179 15.2576L15.0157 14.9725L14.5664 14.8947L14.169 15.1107L12.5792 15.992L12.1558 16.2253L11.9916 16.6746L11.43 18.1953H8.52686L7.96524 16.6746L7.80107 16.2253L7.3777 15.992L5.78789 15.1107L5.41635 14.8861L4.96706 14.9638L3.26492 15.249L1.89111 12.9247L2.92795 11.741L3.24764 11.3695V10.877V9.11437V8.62187L2.93659 8.25898L1.87383 7.05798L3.25628 4.74238L4.95842 5.03615L5.40771 5.11392L5.80517 4.88927L7.39498 4.00796L7.81835 3.77467L7.98252 3.32538L8.54414 1.79604H11.4473V1.79604ZM11.6719 0.5H8.32813C7.9134 0.5 7.54186 0.750568 7.40362 1.1221L6.76424 2.87608L5.18306 3.75739L3.26492 3.42906C3.21308 3.42042 3.1526 3.42042 3.10075 3.42042C2.76378 3.42042 2.43545 3.59322 2.26265 3.89563L0.629632 6.61733C0.422265 6.97158 0.465467 7.41223 0.733316 7.71464L1.96888 9.11437V10.877L0.759236 12.2508C0.491387 12.5532 0.448186 12.9939 0.655553 13.3481L2.27129 16.0871C2.44409 16.3809 2.77242 16.5623 3.1094 16.5623C3.16124 16.5623 3.21308 16.5537 3.27356 16.545L5.18306 16.2253L6.77288 17.1066L7.40362 18.8693C7.54186 19.2494 7.90476 19.5 8.31949 19.5H11.6719C12.078 19.5 12.4495 19.2494 12.5878 18.8693L13.2272 17.1239L14.817 16.2426L16.7265 16.5623C16.7783 16.5709 16.8388 16.5796 16.8907 16.5796C17.2363 16.5796 17.556 16.3981 17.7288 16.1044L19.3445 13.3654C19.5519 13.0198 19.5087 12.5791 19.2408 12.2681L18.0312 10.8943V9.13165L19.2667 7.73192C19.5346 7.42087 19.5778 6.98022 19.3704 6.63461L17.7374 3.90427C17.5646 3.6105 17.2363 3.42906 16.8993 3.42906C16.8475 3.42906 16.787 3.4377 16.7351 3.44634L14.8256 3.77467L13.2358 2.89336L12.5878 1.1221C12.4495 0.750568 12.078 0.5 11.6719 0.5Z' fill='%238F8F8F'/%3E%3Cpath d='M9.99518 7.83608C11.1875 7.83608 12.1553 8.8038 12.1553 9.99616C12.1553 11.1885 11.1875 12.1562 9.99518 12.1562C8.80282 12.1562 7.83511 11.1885 7.83511 9.99616C7.83511 8.8038 8.80282 7.83608 9.99518 7.83608ZM9.99518 6.54004C8.08567 6.54004 6.53906 8.08665 6.53906 9.99616C6.53906 11.9057 8.08567 13.4523 9.99518 13.4523C11.9047 13.4523 13.4513 11.9057 13.4513 9.99616C13.4513 8.08665 11.9047 6.54004 9.99518 6.54004Z' fill='%238F8F8F'/%3E%3C/svg%3E%0A");}
.ico-modify {background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 17.6154H19V19H1V17.6154ZM17.5471 5.84615C18.1129 5.29231 18.1129 4.46154 17.5471 3.90769L15.0014 1.41538C14.4357 0.861538 13.5871 0.861538 13.0214 1.41538L2.41429 11.8V16.2308H6.94L17.5471 5.84615ZM14.0114 2.38462L16.5571 4.87692L14.4357 6.95385L11.89 4.46154L14.0114 2.38462ZM3.82857 14.8462V12.3538L10.9 5.43077L13.4457 7.92308L6.37429 14.8462H3.82857Z' fill='%238F8F8F'/%3E%3C/svg%3E%0A");}
.ico-top-fix{background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.92575 8.01865C3.69054 10.4101 1.86172 12.3741 1.86172 12.3831C1.86172 12.3921 2.93102 12.3994 4.23794 12.3994H5.80033V18.1387H14.1997V12.3994H15.7621C17.069 12.3994 18.1383 12.3921 18.1383 12.383C18.1383 12.3652 10.0167 3.67057 9.99998 3.67057C9.99437 3.67057 8.16097 5.62721 5.92575 8.01865ZM13.3757 8.16593L16.7411 11.7666H13.6286V17.5027L13.5215 17.5161C13.4626 17.5235 11.3845 17.5267 9.89804 17.5231L6.38164 17.5167L6.37648 13.3651L6.37134 11.7666H3.25894L6.62436 8.16593C8.47535 6.18557 9.99439 4.56527 10 4.56527C10.0057 4.56527 11.5247 6.18557 13.3757 8.16593Z' fill='%238F8F8F'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.81397 3.35998C9.83702 3.34728 9.92906 3.31552 9.99996 3.30851C10.0862 3.31893 10.1881 3.36127 10.208 3.37428C10.2166 3.38056 10.2298 3.39085 10.2345 3.39479C10.2425 3.40153 10.2486 3.40731 10.2505 3.40917C10.2557 3.41404 10.2603 3.4187 10.2631 3.42145L10.2852 3.44415C10.3021 3.46168 10.3262 3.48695 10.3565 3.51896C10.4175 3.5832 10.506 3.67704 10.6179 3.79602C10.8418 4.03408 11.1607 4.37401 11.5426 4.78176C12.3065 5.59732 13.3234 6.68484 14.3397 7.77285C15.356 8.86086 16.3719 9.94949 17.1337 10.7673C17.5146 11.1762 17.8321 11.5175 18.0545 11.7572C18.1656 11.877 18.2533 11.9718 18.3133 12.037C18.3432 12.0695 18.3668 12.0953 18.3831 12.1134L18.4043 12.137C18.4057 12.1386 18.4076 12.1407 18.4097 12.1432C18.4115 12.1454 18.4136 12.1478 18.4156 12.1503C18.4174 12.1524 18.4226 12.1587 18.4286 12.1669C18.4321 12.1717 18.4412 12.1849 18.4466 12.1935C18.4576 12.2128 18.4918 12.3059 18.5 12.3827C18.5 12.5027 18.4427 12.5864 18.4035 12.6287C18.366 12.6692 18.328 12.6914 18.3098 12.7012C18.2728 12.7212 18.2408 12.7299 18.2317 12.7323C18.2083 12.7386 18.189 12.7412 18.1837 12.742C18.1693 12.7439 18.1562 12.7448 18.1503 12.7452C18.1358 12.7462 18.1187 12.7469 18.1019 12.7475C18.0669 12.7486 18.0175 12.7497 17.9567 12.7507C17.8343 12.7527 17.6585 12.7545 17.4428 12.756C17.011 12.7589 16.4161 12.7608 15.7621 12.7608H14.5614V18.5H5.43861V12.7608H4.23792C3.5839 12.7608 2.98898 12.7589 2.55723 12.756C2.34152 12.7545 2.1657 12.7527 2.04335 12.7507C1.98251 12.7497 1.93312 12.7487 1.89813 12.7475C1.8813 12.747 1.86423 12.7463 1.84978 12.7453C1.84385 12.7449 1.831 12.744 1.81658 12.742C1.81134 12.7413 1.79186 12.7387 1.76849 12.7324C1.75948 12.73 1.72749 12.7214 1.69048 12.7014C1.67239 12.6917 1.63436 12.6695 1.59677 12.629C1.55756 12.5868 1.5 12.503 1.5 12.3827C1.50334 12.3337 1.52057 12.2625 1.52937 12.2399C1.53512 12.2272 1.5456 12.2069 1.55006 12.1991C1.5585 12.1847 1.56612 12.1741 1.56881 12.1704C1.57524 12.1615 1.58081 12.1546 1.58263 12.1524C1.58733 12.1466 1.59176 12.1415 1.59422 12.1387C1.59986 12.1322 1.60683 12.1244 1.61414 12.1163C1.6292 12.0996 1.65083 12.0759 1.67819 12.0461C1.73314 11.9862 1.81377 11.8989 1.91705 11.7875C2.12374 11.5644 2.42243 11.243 2.7908 10.8474C3.5276 10.0562 4.54377 8.96715 5.66148 7.77131C6.77916 6.57552 7.79642 5.48838 8.53501 4.70015C8.90428 4.30606 9.204 3.98657 9.4118 3.76554C9.51566 3.65508 9.59678 3.56897 9.65221 3.51038L9.71659 3.44261L9.73586 3.42266L9.74596 3.41256C9.74746 3.4111 9.75225 3.40644 9.75837 3.40096C9.76071 3.39887 9.76867 3.39175 9.77945 3.38347C9.78568 3.37879 9.80284 3.36693 9.81397 3.35998ZM9.99254 4.20397C9.99506 4.20369 9.99755 4.20344 10 4.20322C10.0028 4.20347 10.0057 4.20376 10.0085 4.20409C10.0058 4.20121 10.0032 4.19836 10.0005 4.19553C9.99785 4.19832 9.99521 4.20113 9.99254 4.20397ZM15.9079 11.4045L13.1114 8.41256C12.186 7.42247 11.3436 6.52245 10.7319 5.87C10.4261 5.54375 10.178 5.27954 10.0062 5.09696C10.0041 5.09477 10.002 5.09258 10 5.09042C9.99796 5.09259 9.9959 5.09477 9.99384 5.09696C9.82197 5.27954 9.57392 5.54375 9.26805 5.87C8.65637 6.52245 7.814 7.42247 6.88859 8.41256L4.09209 11.4045H6.73186L6.73816 13.3635L6.74287 17.1553L9.89868 17.1611C10.6413 17.1628 11.5322 17.1629 12.2444 17.1616C12.6006 17.161 12.9118 17.16 13.1375 17.1588C13.1845 17.1585 13.2278 17.1582 13.2669 17.1579V11.4045H15.9079Z' fill='%238F8F8F'/%3E%3Cpath d='M1.86172 1.86206H18.1383V2.76631H1.86172V1.86206Z' fill='%238F8F8F'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.5 1.5H18.5V3.12766H1.5V1.5ZM2.2234 2.2234V2.40426H17.7766V2.2234H2.2234Z' fill='%238F8F8F'/%3E%3C/svg%3E%0A");}
.ico-trash{background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.1111 5.33328V4.71106C13.1111 3.83986 13.1111 3.40427 12.9416 3.07152C12.7924 2.77882 12.5545 2.54085 12.2618 2.39171C11.929 2.22217 11.4934 2.22217 10.6222 2.22217H9.37778C8.50659 2.22217 8.07099 2.22217 7.73824 2.39171C7.44554 2.54085 7.20757 2.77882 7.05843 3.07152C6.88889 3.40427 6.88889 3.83986 6.88889 4.71106V5.33328M8.44444 9.61106V13.4999M11.5556 9.61106V13.4999M3 5.33328H17M15.4444 5.33328V14.0444C15.4444 15.3512 15.4444 16.0046 15.1901 16.5037C14.9664 16.9427 14.6095 17.2997 14.1704 17.5234C13.6713 17.7777 13.0179 17.7777 11.7111 17.7777H8.28889C6.9821 17.7777 6.32871 17.7777 5.82958 17.5234C5.39053 17.2997 5.03358 16.9427 4.80987 16.5037C4.55556 16.0046 4.55556 15.3512 4.55556 14.0444V5.33328' stroke='%238F8F8F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");}
.ico-trash-red{background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.1111 5.33377V4.71155C13.1111 3.84035 13.1111 3.40476 12.9416 3.072C12.7924 2.77931 12.5545 2.54134 12.2618 2.3922C11.929 2.22266 11.4934 2.22266 10.6222 2.22266H9.37778C8.50659 2.22266 8.07099 2.22266 7.73824 2.3922C7.44554 2.54134 7.20757 2.77931 7.05843 3.072C6.88889 3.40476 6.88889 3.84035 6.88889 4.71155V5.33377M8.44444 9.61155V13.5004M11.5556 9.61155V13.5004M3 5.33377H17M15.4444 5.33377V14.0449C15.4444 15.3517 15.4444 16.0051 15.1901 16.5042C14.9664 16.9432 14.6095 17.3002 14.1704 17.5239C13.6713 17.7782 13.0179 17.7782 11.7111 17.7782H8.28889C6.9821 17.7782 6.32871 17.7782 5.82958 17.5239C5.39053 17.3002 5.03358 16.9432 4.80987 16.5042C4.55556 16.0051 4.55556 15.3517 4.55556 14.0449V5.33377' stroke='%23D92D20' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");}
.ico-menu {background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMgNUgyMSIgc3Ryb2tlPSIjNjQ2NDY0IiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik05IDEyTDIxIDEyIiBzdHJva2U9IiM2NDY0NjQiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTMgMTlIMjEiIHN0cm9rZT0iIzY0NjQ2NCIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4=");}
.ico-kebob{background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.4453 11.9987C12.4453 11.7467 12.2413 11.5547 12.0013 11.5547C11.7493 11.5547 11.5573 11.7587 11.5573 11.9987C11.5573 12.2387 11.7613 12.4427 12.0013 12.4427C12.2413 12.4427 12.4453 12.2387 12.4453 11.9867' stroke='%23323232' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12.4453 17.7985C12.4453 17.5465 12.2413 17.3545 12.0013 17.3545C11.7493 17.3545 11.5573 17.5585 11.5573 17.7985C11.5573 18.0385 11.7613 18.2425 12.0013 18.2425C12.2413 18.2425 12.4453 18.0385 12.4453 17.7865' stroke='%23323232' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12.4453 6.19888C12.4453 5.94688 12.2413 5.75488 12.0013 5.75488C11.7493 5.75488 11.5573 5.95888 11.5573 6.19888C11.5573 6.43888 11.7613 6.64287 12.0013 6.64287C12.2413 6.64287 12.4453 6.43887 12.4453 6.18687' stroke='%23323232' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");}
.ico-kebob-width{background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M17.5 12C17.5 12.28 17.72 12.5 18 12.5C18.28 12.5 18.5 12.28 18.5 12C18.5 11.72 18.28 11.5 18 11.5C17.72 11.5 17.5 11.72 17.5 12Z' stroke='%238F8F8F' fill='%238F8F8F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.5 12C11.5 12.28 11.72 12.5 12 12.5C12.28 12.5 12.5 12.28 12.5 12C12.5 11.72 12.28 11.5 12 11.5C11.72 11.5 11.5 11.72 11.5 12Z' stroke='%238F8F8F' fill='%238F8F8F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5.5 12C5.5 12.28 5.72 12.5 6 12.5C6.28 12.5 6.5 12.28 6.5 12C6.5 11.72 6.28 11.5 6 11.5C5.72 11.5 5.5 11.72 5.5 12Z' stroke='%238F8F8F' fill='%238F8F8F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0'%3E%3Crect width='24' height='24' fill='%238F8F8F' transform='matrix(0 -1 1 0 0 24)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");}
.ico-clear-up{width:1.25rem;height:1.25rem;background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.47873 15.0125L9.47873 1.98751C9.47873 1.721 9.71548 1.5 10.001 1.5C10.2865 1.5 10.5232 1.721 10.5232 1.98751L10.5232 15.0125C10.5232 15.279 10.2865 15.5 10.001 15.5C9.71548 15.5 9.47873 15.279 9.47873 15.0125Z' fill='%23919191'/%3E%3Cpath d='M2 8.96815C2 8.84465 2.04874 8.72114 2.15319 8.62364L9.63181 1.64253C9.83375 1.45403 10.168 1.45403 10.3699 1.64253L17.8485 8.62364C18.0505 8.81215 18.0505 9.12415 17.8485 9.31265C17.6466 9.50116 17.3124 9.50116 17.1104 9.31265L10.0009 2.67605L2.89131 9.31265C2.68937 9.50116 2.35513 9.50116 2.15319 9.31265C2.04874 9.21515 2 9.09165 2 8.96815Z' fill='%23919191'/%3E%3Cpath d='M1 17.5H19V18.5H1V17.5Z' fill='%23919191'/%3E%3Cpath d='M9.47873 15.0125L9.47873 1.98751C9.47873 1.721 9.71548 1.5 10.001 1.5C10.2865 1.5 10.5232 1.721 10.5232 1.98751L10.5232 15.0125C10.5232 15.279 10.2865 15.5 10.001 15.5C9.71548 15.5 9.47873 15.279 9.47873 15.0125Z' stroke='%23919191' stroke-width='0.5'/%3E%3Cpath d='M2 8.96815C2 8.84465 2.04874 8.72114 2.15319 8.62364L9.63181 1.64253C9.83375 1.45403 10.168 1.45403 10.3699 1.64253L17.8485 8.62364C18.0505 8.81215 18.0505 9.12415 17.8485 9.31265C17.6466 9.50116 17.3124 9.50116 17.1104 9.31265L10.0009 2.67605L2.89131 9.31265C2.68937 9.50116 2.35513 9.50116 2.15319 9.31265C2.04874 9.21515 2 9.09165 2 8.96815Z' stroke='%23919191' stroke-width='0.5'/%3E%3Cpath d='M1 17.5H19V18.5H1V17.5Z' stroke='%23919191' stroke-width='0.5'/%3E%3C/svg%3E%0A");}
.ico-camera{background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.86835 3.68359C6.77005 3.7837 6.57173 4.23117 6.4277 4.67788C6.02972 5.91196 6.00848 5.9266 4.61575 5.9266C3.34581 5.9266 2.9485 6.01711 2.53461 6.40056C2.00252 6.89354 1.99852 6.93078 2.00014 11.283C2.00176 15.2549 2.00347 15.2906 2.21599 15.6726C2.33382 15.8844 2.57519 16.1573 2.75237 16.2788L3.07462 16.5H10.0001H16.9255L17.2478 16.2788C17.4249 16.1573 17.6663 15.8844 17.7841 15.6726C17.9966 15.2907 17.9984 15.2545 18 11.2924C18.0009 8.70731 17.9658 7.20094 17.9004 7.0242C17.75 6.61805 17.2457 6.13157 16.8626 6.02322C16.677 5.97064 16.0074 5.92748 15.3747 5.92719C13.993 5.92651 13.9699 5.9105 13.5724 4.67788C13.1632 3.40868 13.4451 3.50151 10.0001 3.50151C7.2387 3.50151 7.03552 3.51335 6.86835 3.68359ZM10.7164 6.80817C11.9557 7.04147 13.0609 7.90848 13.6362 9.09853C13.9372 9.72109 13.9532 9.80801 13.9532 10.8232C13.9532 11.8254 13.934 11.9335 13.6475 12.5494C12.6759 14.6383 10.2458 15.5161 8.22374 14.5086C7.47751 14.1369 6.72461 13.3494 6.35445 12.5534C6.06582 11.9329 6.04696 11.8267 6.04696 10.8232C6.04696 9.80801 6.06297 9.72109 6.36388 9.09853C6.76576 8.2672 7.47979 7.53463 8.24231 7.17126C9.17 6.72921 9.80307 6.63628 10.7164 6.80817ZM16.2115 7.69692C16.4712 7.9049 16.4978 8.20211 16.2817 8.48197C15.96 8.89841 15.4503 8.77948 15.2851 8.24936C15.1918 7.9501 15.475 7.57567 15.7946 7.57567C15.9406 7.57567 16.1281 7.63028 16.2115 7.69692ZM9.0877 8.58625C8.65143 8.77977 8.11048 9.3 7.87872 9.74903C7.60934 10.2711 7.58829 11.3446 7.83738 11.8543C8.7324 13.6846 11.2677 13.6846 12.1627 11.8543C12.4118 11.3446 12.3908 10.2711 12.1214 9.74903C11.8836 9.28836 11.3407 8.77337 10.8912 8.58208C10.4947 8.41339 9.47225 8.41581 9.0877 8.58625Z' fill='white'/%3E%3C/svg%3E%0A");}
.ico-refresh{background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.7709 4.26119C8.62709 4.64243 7.65804 5.14505 6.99834 5.69951L6.49424 6.12321L7.58646 5.68412C11.0412 4.29497 14.9203 5.65887 16.869 8.94766C17.1224 9.37521 17.3302 9.81814 17.3311 9.93201C17.3324 10.1392 16.6048 10.4993 15.4615 10.8573L14.8509 11.0486L16.6378 12.0958C17.6206 12.6717 18.6515 13.2873 18.9288 13.4639C19.9264 14.0993 20.189 14.1928 20.189 13.913C20.189 13.7727 20.3681 13.187 20.5871 12.6113C21.5751 10.0126 22.0611 8.60606 21.9939 8.53918C21.9537 8.49938 21.6257 8.59034 21.2651 8.7415C19.7303 9.3844 19.7479 9.38808 19.1647 8.29907C18.1788 6.45862 16.7974 5.24186 14.7992 4.45398C13.4935 3.93915 11.0217 3.84452 9.7709 4.26119ZM3.73747 10.3669C3.64959 10.6577 3.26294 11.7609 2.87798 12.8185C2.49318 13.8761 2.13829 14.9133 2.08923 15.1233L2 15.5052L2.86706 15.1651C4.20141 14.6417 4.41935 14.694 4.85691 15.6429C6.41929 19.0319 10.9174 20.8673 14.5419 19.5947C15.538 19.2449 17.5005 18.1395 17.5005 17.9283C17.5005 17.8897 17.0278 18.0531 16.4503 18.2912C14.9374 18.9152 12.9316 19.002 11.4512 18.5077C9.55078 17.8733 8.38244 16.9614 7.27224 15.2462C6.52398 14.0904 6.60413 13.8709 7.97042 13.3333L9.11036 12.8847L7.83918 12.141C7.13999 11.732 6.17313 11.1586 5.69087 10.8669C3.84149 9.74841 3.91861 9.76814 3.73747 10.3669Z' fill='white'/%3E%3C/svg%3E%0A");}
.ico-question{background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.13606 2.02098C7.26027 2.25969 5.63318 3.04724 4.33431 4.34508C3.19845 5.48005 2.46903 6.8302 2.1223 8.43964C1.95923 9.19675 1.95923 10.8159 2.1223 11.573C2.46903 13.1824 3.19845 14.5326 4.33431 15.6675C5.47018 16.8025 6.82139 17.5313 8.4321 17.8778C9.18981 18.0407 10.8102 18.0407 11.5679 17.8778C13.1786 17.5313 14.5298 16.8025 15.6657 15.6675C16.8015 14.5326 17.531 13.1824 17.8777 11.573C18.0408 10.8159 18.0408 9.19675 17.8777 8.43964C17.531 6.8302 16.8015 5.48005 15.6657 4.34508C14.5519 3.23217 13.256 2.52104 11.6959 2.16652C11.162 2.04522 9.6301 1.95812 9.13606 2.02098ZM11.0879 6.17021C11.5658 6.39837 12.065 6.88979 12.2932 7.35659C12.8443 8.48383 12.5648 9.53528 11.4809 10.412C10.5191 11.1899 10.544 11.1589 10.544 11.5804V11.9566H9.87201H9.20005L9.20069 11.493C9.20172 10.7096 9.42576 10.3725 10.5264 9.49838C11.1268 9.02154 11.2731 8.78859 11.2332 8.3732C11.1528 7.53743 10.2463 6.99978 9.54281 7.37066C9.13458 7.5859 8.68808 8.17638 8.68808 8.50103C8.68808 8.62412 8.64981 8.63148 8.0105 8.63148H7.33291L7.37822 8.35971C7.49341 7.66782 7.90676 6.96211 8.4481 6.53278C9.02387 6.07621 9.43498 5.94033 10.16 5.96693C10.6003 5.98305 10.7771 6.0218 11.0879 6.17021ZM10.544 13.4913V14.1308H9.87201H9.20005V13.4913V12.8519H9.87201H10.544V13.4913Z' fill='black'/%3E%3C/svg%3E%0A");}
.ico-people-add {background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.0707 10.7437C10.0707 9.24371 8.54066 6.92871 6.00066 6.92871C3.46066 6.92871 1.93066 9.24371 1.93066 10.7437H10.0707Z' stroke='%238F8F8F' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5.99934 5.86488C7.27235 5.86488 8.30434 4.8329 8.30434 3.55988C8.30434 2.28687 7.27235 1.25488 5.99934 1.25488C4.72632 1.25488 3.69434 2.28687 3.69434 3.55988C3.69434 4.8329 4.72632 5.86488 5.99934 5.86488Z' stroke='%238F8F8F' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cline x1='9.9' y1='5.4' x2='11.9' y2='5.4' stroke='%238F8F8F' stroke-width='0.8' stroke-linecap='round'/%3E%3Cline x1='10.9' y1='4.4' x2='10.9' y2='6.4' stroke='%238F8F8F' stroke-width='0.8' stroke-linecap='round'/%3E%3C/svg%3E");}
.ico-people{background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.0707 10.7437C10.0707 9.24371 8.54066 6.92871 6.00066 6.92871C3.46066 6.92871 1.93066 9.24371 1.93066 10.7437H10.0707Z' stroke='%238F8F8F' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5.99934 5.86488C7.27235 5.86488 8.30434 4.8329 8.30434 3.55988C8.30434 2.28687 7.27235 1.25488 5.99934 1.25488C4.72632 1.25488 3.69434 2.28687 3.69434 3.55988C3.69434 4.8329 4.72632 5.86488 5.99934 5.86488Z' stroke='%238F8F8F' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");}
.ico-group{background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.32227 50.6667C5.32227 44.7733 10.0956 40 15.9889 40H26.6556C32.5489 40 37.3223 44.7733 37.3223 50.6667' stroke='%238f8f8f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M21.3333 32.0007C26.488 32.0007 30.6667 27.822 30.6667 22.6673C30.6667 17.5127 26.488 13.334 21.3333 13.334C16.1787 13.334 12 17.5127 12 22.6673C12 27.822 16.1787 32.0007 21.3333 32.0007Z' stroke='%238f8f8f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M42.6777 37.334H50.6777C55.1044 37.334 58.6777 40.9073 58.6777 45.334' stroke='%238F8F8F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M46.6667 29.3333C50.3486 29.3333 53.3333 26.3486 53.3333 22.6667C53.3333 18.9848 50.3486 16 46.6667 16C42.9848 16 40 18.9848 40 22.6667C40 26.3486 42.9848 29.3333 46.6667 29.3333Z' stroke='%238F8F8F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");}
.ico-man{background-image: url("data:image/svg+xml,%3Csvg width='24' height='25' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.9463 0.248009C9.49275 0.77256 8.65604 1.82138 8.56686 3.23084C8.51014 4.12686 8.65063 4.64627 9.14213 5.35829C10.6223 7.50219 13.9455 7.24977 15.1401 4.90271C15.4212 4.35049 15.4538 4.20209 15.4511 3.48942C15.4486 2.81675 15.4055 2.60283 15.1734 2.11165C14.8488 1.42439 14.0825 0.676304 13.4011 0.38118C12.8237 0.131194 11.473 0.0579264 10.9463 0.248009ZM13.2016 1.76064C13.4738 1.94315 13.7105 2.21594 13.8841 2.54695C14.3091 3.35765 14.205 4.1548 13.5877 4.81701C12.5635 5.91592 10.9066 5.74229 10.1262 4.45413C9.6513 3.67044 9.82792 2.61937 10.5418 1.97997C11.049 1.52579 11.3411 1.42682 12.0905 1.45505C12.6792 1.47729 12.8483 1.52383 13.2016 1.76064ZM8.99981 8.01469C8.15874 8.30486 7.50531 8.93174 7.17961 9.76085C7.01884 10.17 7 10.5159 7 13.0504C7 15.3141 7.02957 15.9789 7.14705 16.3617C7.34792 17.0161 8.07855 17.7817 8.78377 18.077L9.31556 18.2997L9.31884 24.1405H10.6715V17.0381H10.1362C9.48889 17.0381 8.94522 16.7949 8.62647 16.3627C8.40377 16.0606 8.40058 16.0219 8.37275 13.2121C8.35275 11.202 8.37749 10.2902 8.4571 10.1044C8.61237 9.74188 9.14415 9.31125 9.58193 9.19369C10.0706 9.06239 13.8499 9.06594 14.3928 9.19817C14.9199 9.32658 15.4586 9.81449 15.594 10.2864C15.6525 10.4899 15.6939 11.6937 15.6929 13.1598C15.6916 15.4136 15.6724 15.723 15.513 16.0569C15.1857 16.7429 14.6865 17.0381 13.8536 17.0381H13.3768V24.1405L14.6812 24.1406L14.6274 18.3421L15.0859 18.152C15.8226 17.8466 16.3267 17.3837 16.6812 16.6872L17 16.0608V10.0759L16.7295 9.54292C16.3994 8.89286 15.666 8.23159 15.0499 8.02852C14.4396 7.82741 9.57488 7.81629 8.99981 8.01469Z' fill='%23787878'/%3E%3C/svg%3E%0A");}
.ico-woman{background-image: url("data:image/svg+xml,%3Csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.8549 0.350459C10.1753 0.654576 9.78047 0.99979 9.37766 1.6423C8.30245 3.35707 8.94941 5.66803 10.7551 6.56207C11.1747 6.76989 11.3782 6.81024 12.002 6.80959C12.9692 6.80847 13.6345 6.50771 14.2813 5.77927C14.9387 5.03896 15.1075 4.5755 15.1119 3.49867C15.1149 2.72754 15.0847 2.54167 14.8812 2.07933C14.5821 1.39964 13.9712 0.749659 13.3347 0.433774C12.6169 0.0774446 11.5456 0.0414846 10.8549 0.350459ZM12.836 1.61802C13.2648 1.82556 13.7006 2.33637 13.8443 2.80002C13.9031 2.98972 13.9343 3.39284 13.9137 3.69584C13.8643 4.42326 13.5355 4.93258 12.8775 5.30086C12.2423 5.65644 11.6039 5.62908 10.9822 5.2197C9.70416 4.37824 9.81116 2.27445 11.1653 1.61942C11.6242 1.3974 12.3786 1.39675 12.836 1.61802ZM8.42032 11.7414C7.43895 14.462 6.99782 15.8003 7.00001 16.0504C7.00483 16.6234 7.18225 17.1137 7.54244 17.5494C7.95542 18.0491 8.38366 18.2723 9.06404 18.3422L9.59024 18.3963V24.1406L10.7742 24.1405V17.042H9.84896C9.21971 17.042 8.84646 16.9994 8.6821 16.9089C8.41874 16.7638 8.23088 16.4125 8.23088 16.0651C8.23088 15.9437 8.7777 14.3379 9.44597 12.4968L10.661 9.1495H13.3531L14.5622 12.4653C15.3576 14.6463 15.7717 15.9034 15.7722 16.1385C15.773 16.4097 15.7113 16.5618 15.5168 16.769C15.263 17.0393 15.2503 17.042 14.2451 17.042H13.2298V24.1405H14.4576V18.3752L15.0097 18.328C15.3134 18.3021 15.6865 18.2121 15.8388 18.1282C16.2517 17.9008 16.712 17.3537 16.8767 16.8946C17.1463 16.1428 17.0419 15.6833 15.8707 12.4653C15.2817 10.8471 14.6595 9.13436 14.4881 8.65913L14.1764 7.79517H9.84379L8.42032 11.7414Z' fill='%23787878'/%3E%3C/svg%3E%0A");}
.ico-share{background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.76923 12.7688C6.29863 12.7688 7.53846 11.529 7.53846 9.99963C7.53846 8.47027 6.29863 7.23047 4.76923 7.23047C3.23983 7.23047 2 8.47027 2 9.99963C2 11.529 3.23983 12.7688 4.76923 12.7688Z' stroke='%238F8F8F' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15.2308 18.0002C16.7602 18.0002 18 16.7604 18 15.2311C18 13.7017 16.7602 12.4619 15.2308 12.4619C13.7014 12.4619 12.4615 13.7017 12.4615 15.2311C12.4615 16.7604 13.7014 18.0002 15.2308 18.0002Z' stroke='%238F8F8F' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15.2308 7.53833C16.7602 7.53833 18 6.29853 18 4.76917C18 3.2398 16.7602 2 15.2308 2C13.7014 2 12.4615 3.2398 12.4615 4.76917C12.4615 6.29853 13.7014 7.53833 15.2308 7.53833Z' stroke='%238F8F8F' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7.24304 8.76917L12.7569 6' stroke='%238F8F8F' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7.24304 11.2305L12.7569 13.9996' stroke='%238F8F8F' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");}
.ico-sound{background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.5 4C8.67157 4 8 4.67157 8 5.5V18.5C8 19.3284 8.67157 20 9.5 20C10.3284 20 11 19.3284 11 18.5V5.5C11 4.67157 10.3284 4 9.5 4Z' fill='white'/%3E%3Cpath d='M13 8.5C13 7.67157 13.6716 7 14.5 7C15.3284 7 16 7.67157 16 8.5V15.5C16 16.3284 15.3284 17 14.5 17C13.6716 17 13 16.3284 13 15.5V8.5Z' fill='white'/%3E%3Cpath d='M4.5 9C3.67157 9 3 9.67157 3 10.5V13.5C3 14.3284 3.67157 15 4.5 15C5.32843 15 6 14.3284 6 13.5V10.5C6 9.67157 5.32843 9 4.5 9Z' fill='white'/%3E%3Cpath d='M19.5 9C18.6716 9 18 9.67157 18 10.5V13.5C18 14.3284 18.6716 15 19.5 15C20.3284 15 21 14.3284 21 13.5V10.5C21 9.67157 20.3284 9 19.5 9Z' fill='white'/%3E%3C/svg%3E%0A");}
.ico-send-up{background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.10003 2.36049C9.59705 1.87984 10.403 1.87984 10.9 2.36049L16.6272 7.89892C17.1243 8.37955 17.1243 9.15881 16.6272 9.63944C16.1302 10.1202 15.3244 10.1202 14.8274 9.63944L11.2727 6.20213V16.7692C11.2727 17.4489 10.7029 18 9.99997 18C9.29715 18 8.7273 17.4489 8.7273 16.7692V6.20213L5.17267 9.63944C4.67565 10.1202 3.86982 10.1202 3.3728 9.63944C2.87573 9.15881 2.87573 8.37955 3.3728 7.89892L9.10003 2.36049Z' fill='white'/%3E%3C/svg%3E%0A");}
.ico-graduation-cap{background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.62534 5.9933C3.78832 7.63956 1.3903 9.07836 1.29664 9.19062C1.11038 9.41368 1.07105 9.96812 1.22138 10.2511C1.27376 10.3496 1.51473 10.5471 1.75687 10.69L2.19723 10.9498V12.3947V13.8396L1.56419 15.7465C0.999684 17.4468 0.942533 17.6882 1.03678 17.9758C1.19626 18.4624 1.53527 18.5891 2.67771 18.5891C3.60586 18.5891 3.66954 18.5756 3.95412 18.3194C4.15693 18.1369 4.25575 17.9548 4.26033 17.7557C4.26403 17.5939 3.99852 16.6203 3.67032 15.5921C3.08566 13.7611 3.07349 13.7004 3.07349 12.6263C3.07349 12.0233 3.10114 11.5299 3.13492 11.5299C3.16881 11.5299 3.58327 11.7528 4.05606 12.0252L4.91567 12.5206L4.94381 15.6427C4.97672 19.281 4.874 18.9531 6.18906 19.6171C7.2762 20.1659 8.17057 20.4835 9.40989 20.7607C10.7396 21.058 13.1874 21.0823 14.4648 20.8109C16.218 20.4384 18.5039 19.4727 18.933 18.9233C19.1316 18.669 19.1382 18.564 19.1382 15.5995V12.5384L20.915 11.5108C22.4333 10.6329 22.7179 10.4311 22.8702 10.1242C23.0433 9.77605 23.0433 9.75399 22.8702 9.40014C22.7074 9.06689 22.2411 8.77384 17.4882 6.01761C14.3549 4.20065 12.1848 3 12.0341 3C11.8834 3 9.73186 4.19065 6.62534 5.9933ZM17.0163 6.82628C19.7095 8.39146 21.9244 9.70526 21.9382 9.74575C21.9612 9.81291 12.3287 15.4656 12.0864 15.5271C11.9908 15.5515 4.29879 11.1335 4.11127 10.9465C4.00787 10.8436 4.39089 10.8048 8.62311 10.4903C12.1862 10.2255 12.5176 10.1648 12.5176 9.77801C12.5176 9.67977 12.4389 9.5277 12.3428 9.44005C12.1811 9.29279 11.8026 9.30926 7.30999 9.65908C3.61618 9.94674 2.40987 10.0109 2.276 9.92664C2.17912 9.86576 2.09987 9.79222 2.09987 9.7632C2.09987 9.6884 11.8598 3.99535 12.0021 3.98721C12.0667 3.98348 14.3231 5.2611 17.0163 6.82628ZM9.06912 14.9443C10.5728 15.8165 11.9091 16.5298 12.0387 16.5295C12.1681 16.5292 13.5886 15.7633 15.195 14.8278C16.8015 13.8921 18.1487 13.145 18.1889 13.1674C18.2291 13.1899 18.2619 14.3742 18.2619 15.7995V18.3908L17.5074 18.7717C14.0225 20.5308 9.80342 20.5253 6.52983 18.7575L5.94566 18.442L5.91976 15.7579L5.89377 13.074L6.11448 13.2162C6.2358 13.2945 7.56537 14.0721 9.06912 14.9443ZM3.05752 16.4921L3.42555 17.6576L3.05772 17.6876C2.8554 17.7041 2.49896 17.7041 2.26558 17.6876L1.84128 17.6576L2.22839 16.4548C2.44142 15.7932 2.63225 15.2688 2.65259 15.2892C2.67294 15.3097 2.85511 15.851 3.05752 16.4921Z' fill='%238F8F8F'/%3E%3C/svg%3E%0A");}
.on .ico-graduation-cap{background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.62534 5.9933C3.78832 7.63956 1.3903 9.07836 1.29664 9.19062C1.11038 9.41368 1.07105 9.96812 1.22138 10.2511C1.27376 10.3496 1.51473 10.5471 1.75687 10.69L2.19723 10.9498V12.3947V13.8396L1.56419 15.7465C0.999684 17.4468 0.942533 17.6882 1.03678 17.9758C1.19626 18.4624 1.53527 18.5891 2.67771 18.5891C3.60586 18.5891 3.66954 18.5756 3.95412 18.3194C4.15693 18.1369 4.25575 17.9548 4.26033 17.7557C4.26403 17.5939 3.99852 16.6203 3.67032 15.5921C3.08566 13.7611 3.07349 13.7004 3.07349 12.6263C3.07349 12.0233 3.10114 11.5299 3.13492 11.5299C3.16881 11.5299 3.58327 11.7528 4.05606 12.0252L4.91567 12.5206L4.94381 15.6427C4.97672 19.281 4.874 18.9531 6.18906 19.6171C7.2762 20.1659 8.17057 20.4835 9.40989 20.7607C10.7396 21.058 13.1874 21.0823 14.4648 20.8109C16.218 20.4384 18.5039 19.4727 18.933 18.9233C19.1316 18.669 19.1382 18.564 19.1382 15.5995V12.5384L20.915 11.5108C22.4333 10.6329 22.7179 10.4311 22.8702 10.1242C23.0433 9.77605 23.0433 9.75399 22.8702 9.40014C22.7074 9.06689 22.2411 8.77384 17.4882 6.01761C14.3549 4.20065 12.1848 3 12.0341 3C11.8834 3 9.73186 4.19065 6.62534 5.9933ZM17.0163 6.82628C19.7095 8.39146 21.9244 9.70526 21.9382 9.74575C21.9612 9.81291 12.3287 15.4656 12.0864 15.5271C11.9908 15.5515 4.29879 11.1335 4.11127 10.9465C4.00787 10.8436 4.39089 10.8048 8.62311 10.4903C12.1862 10.2255 12.5176 10.1648 12.5176 9.77801C12.5176 9.67977 12.4389 9.5277 12.3428 9.44005C12.1811 9.29279 11.8026 9.30926 7.30999 9.65908C3.61618 9.94674 2.40987 10.0109 2.276 9.92664C2.17912 9.86576 2.09987 9.79222 2.09987 9.7632C2.09987 9.6884 11.8598 3.99535 12.0021 3.98721C12.0667 3.98348 14.3231 5.2611 17.0163 6.82628ZM9.06912 14.9443C10.5728 15.8165 11.9091 16.5298 12.0387 16.5295C12.1681 16.5292 13.5886 15.7633 15.195 14.8278C16.8015 13.8921 18.1487 13.145 18.1889 13.1674C18.2291 13.1899 18.2619 14.3742 18.2619 15.7995V18.3908L17.5074 18.7717C14.0225 20.5308 9.80342 20.5253 6.52983 18.7575L5.94566 18.442L5.91976 15.7579L5.89377 13.074L6.11448 13.2162C6.2358 13.2945 7.56537 14.0721 9.06912 14.9443ZM3.05752 16.4921L3.42555 17.6576L3.05772 17.6876C2.8554 17.7041 2.49896 17.7041 2.26558 17.6876L1.84128 17.6576L2.22839 16.4548C2.44142 15.7932 2.63225 15.2688 2.65259 15.2892C2.67294 15.3097 2.85511 15.851 3.05752 16.4921Z' fill='white'/%3E%3C/svg%3E%0A");}
.ico-openbook {background-image: url("data:image/svg+xml;utf8,<svg width='24' height='24' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M7.00065 11.667C6.63898 10.9437 5.89815 10.4828 5.08732 10.4828H3.22065C2.73065 10.4828 2.33398 10.0862 2.33398 9.59616V3.80366C2.33398 3.31366 2.73065 2.91699 3.22065 2.91699H4.63815C5.97398 2.99866 7.01232 4.11866 7.00065 5.45449V11.667Z' stroke='%238F8F8F' stroke-linecap='round' stroke-linejoin='round'/><path d='M7.0001 11.667C7.36176 10.9437 8.1026 10.4828 8.91343 10.4828H10.7801C11.2701 10.4828 11.6668 10.0862 11.6668 9.59616V3.80366C11.6668 3.31366 11.2701 2.91699 10.7801 2.91699H9.3626C8.02676 2.99866 6.98843 4.11866 7.0001 5.45449V11.667Z' stroke='%238F8F8F' stroke-linecap='round' stroke-linejoin='round'/></svg>");}
.ico-doc {background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.5 4C4.5 3.44771 4.95789 3 5.52273 3H18.4773C19.0421 3 19.5 3.44772 19.5 4V20C19.5 20.5523 19.0421 21 18.4773 21H5.52273C4.95789 21 4.5 20.5523 4.5 20V4ZM5.86364 4.33333V19.6667H18.1364V4.33333H5.86364Z' fill='%238F8F8F'/%3E%3Cpath d='M7.56818 7.66667C7.56818 7.29848 7.87344 7 8.25 7H15.75C16.1266 7 16.4318 7.29848 16.4318 7.66667C16.4318 8.03486 16.1266 8.33333 15.75 8.33333H8.25C7.87344 8.33333 7.56818 8.03486 7.56818 7.66667Z' fill='%238F8F8F'/%3E%3Cpath d='M7.56818 11C7.56818 10.6318 7.87344 10.3333 8.25 10.3333H13.7045C14.0811 10.3333 14.3864 10.6318 14.3864 11C14.3864 11.3682 14.0811 11.6667 13.7045 11.6667H8.25C7.87344 11.6667 7.56818 11.3682 7.56818 11Z' fill='%238F8F8F'/%3E%3Cpath d='M7.56818 14.3333C7.56818 13.9651 7.87344 13.6667 8.25 13.6667H13.7045C14.0811 13.6667 14.3864 13.9651 14.3864 14.3333C14.3864 14.7015 14.0811 15 13.7045 15H8.25C7.87344 15 7.56818 14.7015 7.56818 14.3333Z' fill='%238F8F8F'/%3E%3C/svg%3E%0A");}
.ico-photo {background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.1601 3H5.00008C3.89008 3 2.99008 3.90002 3.00008 5.02002L3.10009 19.02C3.10009 20.12 4.00009 21.01 5.10009 21.01H18.9801C20.0801 21.01 20.9801 20.11 20.9801 19.01V7.83997C20.9801 7.30997 20.7701 6.80005 20.3901 6.43005L17.5601 3.59998C17.1801 3.21998 16.6801 3.01001 16.1501 3.01001L16.1601 3Z' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15.9883 3V6.91003C15.9883 7.46003 15.5383 7.91003 14.9883 7.91003H8.98828C8.43828 7.91003 7.98828 7.46003 7.98828 6.91003V3' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7 21V13.29C7 12.58 7.58001 12 8.29001 12H15.72C16.43 12 17 12.58 17 13.29V21' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");}
.ico-model {background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE3LjU3MDkgMjEuMDAxMkMxOS40MjY2IDIxLjAwMTIgMjAuOTMwOSAxOS40OTY5IDIwLjkzMDkgMTcuNjQxMkMyMC45MzA5IDE1Ljc4NTYgMTkuNDI2NiAxNC4yODEyIDE3LjU3MDkgMTQuMjgxMkMxNS43MTUzIDE0LjI4MTIgMTQuMjEwOSAxNS43ODU2IDE0LjIxMDkgMTcuNjQxMkMxNC4yMTA5IDE5LjQ5NjkgMTUuNzE1MyAyMS4wMDEyIDE3LjU3MDkgMjEuMDAxMiIgIHN0cm9rZT0iIzY0NjQ2NCIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNNi4zNjMyOCA5Ljc4OTA2VjE0LjI2OTEiIHN0cm9rZT0iIzY0NjQ2NCIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNOC41OTk5IDE0LjI2OTVINC4xMkMzLjUwMTQ0IDE0LjI2OTUgMyAxNC43NzE0IDMgMTUuMzg5NVYxOS44Njk1QzMgMjAuNDg4MSAzLjUwMTQ0IDIwLjk4OTUgNC4xMiAyMC45ODk1SDguNTk5OUM5LjIxODU1IDIwLjk4OTUgOS43MiAyMC40ODgxIDkuNzIgMTkuODY5NVYxNS4zODk1QzkuNzIgMTQuNzcxIDkuMjE4NTUgMTQuMjY5NSA4LjU5OTkgMTQuMjY5NVoiIHN0cm9rZT0iIzY0NjQ2NCIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNMTcuNTcwMyAxNC4yNjg5VjEwLjM3ODkiIHN0cm9rZT0iIzY0NjQ2NCIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNNi4zNiA5Ljc5MDMxQzguMjE1NjggOS43OTAzMSA5LjcyIDguMjg1OTkgOS43MiA2LjQzMDMxQzkuNzIgNC41NzQ2NCA4LjIxNTY4IDMuMDcwMzEgNi4zNiAzLjA3MDMxQzQuNTA0MzIgMy4wNzAzMSAzIDQuNTc0NjQgMyA2LjQzMDMxQzMgOC4yODU5OSA0LjUwNDMyIDkuNzkwMzEgNi4zNiA5Ljc5MDMxWiIgc3Ryb2tlPSIjNjQ2NDY0IiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0xNi43NzcgMi42NjgyOEwxMy44Nzc5IDUuNTY3NDJDMTMuNDQwNSA2LjAwNDgxIDEzLjQ0MDUgNi43MTM5NSAxMy44Nzc5IDcuMTUxMzRMMTYuNzcgMTAuMDUwNUMxNy4yMTQ0IDEwLjQ4NzkgMTcuOTIzNiAxMC40ODc5IDE4LjM2MSAxMC4wNTA1TDIxLjI2MDEgNy4xNTEzNEMyMS42OTc1IDYuNzEzOTUgMjEuNjk3NSA2LjAwNDgxIDIxLjI2MDEgNS41Njc0MkwxOC4zNjEgMi42NjgyOUMxNy45MjM2IDIuMjMwOSAxNy4yMTQ0IDIuMjMwOSAxNi43NzcgMi42NjgyOFoiIHN0cm9rZT0iIzY0NjQ2NCIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNMTMuNTUwNSA2LjQyOTY5SDkuNzMwNDciIHN0cm9rZT0iIzY0NjQ2NCIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4=");}
.ico-apps {background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTcuNzUgM0g1QzMuODk1NDMgMyAzIDMuODk1NDMgMyA1VjcuNzVDMyA4Ljg1NDU3IDMuODk1NDMgOS43NSA1IDkuNzVIOC43NUM4Ljg1NDU3IDkuNzUgOS43NSA4Ljg1NDU3IDkuNzUgNy43NVY1QzkuNzUgMy44OTU0MyA4Ljg1NDU3IDMgNy43NSAzWiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0xOSAzSDE2LjI1QzE1LjE0NTQgMyAxNC4yNSAzLjg5NTQzIDE0LjI1IDVWN y43NUMxNC4yNSA4Ljg1NDU3IDE1LjE0NTQgOS43NSAxNi4yNSA5Ljc1SDE5QzIwLjEwNDYgOS43NSAyMSA4Ljg1NDU3IDIxIDcuNzVWNUMyMSAzLjg5NTQzIDIwLjEw NDYgMyAxOSAzWiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+ CjxwYXRoIGQ9Ik03Ljc1IDE0LjI1SDVDMy44OTU0MyAxNC4yNSAzIDE1LjE0NTQgMyAxNi4yNVYxOUMzIDIwLjEwNDYgMy44OTU0MyAyMSA1IDIxSDcuNzVDOC44NT Q1NyAyMSA5Ljc1IDIwLjEwNDYgOS43NSAxOVYxNi4yNUM5Ljc1IDE1LjE0NTQgOC44NTQ1NyAxNC4yNSA3Ljc1IDE0LjI1WiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva 2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0xOSAxNC4yNUgxNi4yNUMxNS4xNDU0I DE0LjI1IDE0LjI1IDE1LjE0NTQgMTQuMjUgMTYuMjVWMjBDMTQuMjUgMjAuMTA0NiAxNS4xNDU0IDIxIDE2LjI1IDIxSDE5QzIwLjEwNDYgMjEgMjEgMjAuMTA0NiAyMS AyMFYxNi4yNUMyMSAxNS4xNDU0IDIwLjEwNDYgMTQuMjUgMTkgMTQuMjVaIiBzdHJva2U9IiMzMzMzMzMiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNh cD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+");}
.ico-eraser {background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.4354 18.1804H21V19.5H15.0863L16.4354 18.1804ZM5.21513 19.5L3.3938 17.6525C3.12397 17.4032 2.99281 17.099 3.0003 16.7397C3.0078 16.3805 3.13147 16.0762 3.37132 15.827L13.6697 4.8739C13.9096 4.62463 14.2136 4.5 14.5819 4.5C14.9501 4.5 15.2607 4.62463 15.5135 4.8739L20.1231 9.60264C20.3779 9.85191 20.5128 10.1598 20.5278 10.5264C20.5428 10.893 20.4229 11.2009 20.168 11.4501L12.5005 19.5H5.21513ZM11.9833 18.1804L19.2686 10.4384L14.6141 5.66569L6.42037 14.5258L4.38317 16.7287L5.82224 18.1804H11.9833Z' fill='%23667085'/%3E%3C/svg%3E%0A");}
.ico-briefcase {background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M15.8333%206.25H4.16667C3.24619%206.25%202.5%206.99619%202.5%207.91667V15.4167C2.5%2016.3371%203.24619%2017.0833%204.16667%2017.0833H15.8333C16.7538%2017.0833%2017.5%2016.3371%2017.5%2015.4167V7.91667C17.5%206.99619%2016.7538%206.25%2015.8333%206.25Z%22%20stroke%3D%22%238F8F8F%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3Cpath%20d%3D%22M13.4749%206.25008V4.58341C13.4749%203.66675%2012.7249%202.91675%2011.8082%202.91675H8.18327C7.2666%202.91675%206.5166%203.66675%206.5166%204.58341V6.25008%22%20stroke%3D%22%238F8F8F%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3Cpath%20d%3D%22M2.5%207.91675L7.79165%2011.4084C8.06665%2011.5918%208.38334%2011.6834%208.70834%2011.6834H11.2833C11.6083%2011.6834%2011.925%2011.5918%2012.2%2011.4084L17.4917%207.91675%22%20stroke%3D%22%238F8F8F%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");}
.ico-folder {background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.18672 4.07236C3.61928 4.24731 3.10996 4.84735 3.02768 5.43795C3.00282 5.61589 2.99288 8.69955 3.00542 12.2905C3.03058 19.4736 2.99854 19.0035 3.49754 19.5168C4.00158 20.0352 3.37151 19.9995 12.014 19.9995C20.6565 19.9995 20.0264 20.0352 20.5305 19.5168C21.0276 19.0054 20.9997 19.376 20.9997 13.2738C20.9997 7.1716 21.0276 7.54218 20.5305 7.03079C20.0399 6.52617 20.3031 6.5519 15.1877 6.50879C12.622 6.48716 10.4705 6.44224 10.4067 6.40904C10.3428 6.37585 9.98407 5.92983 9.60943 5.41789C8.90999 4.46206 8.63438 4.20121 8.18303 4.06811C7.86689 3.97482 4.49139 3.97844 4.18672 4.07236ZM8.05746 5.02001C8.15657 5.0665 8.54276 5.52133 8.91565 6.03083C9.61203 6.98242 9.88779 7.24318 10.3388 7.3762C10.4936 7.42191 12.3966 7.45274 15.0571 7.45274C19.8953 7.45274 19.8359 7.44763 20.0289 7.88319C20.16 8.17912 20.16 18.3685 20.0289 18.6644C19.8303 19.1127 20.1633 19.0949 12.014 19.0949C3.86469 19.0949 4.19773 19.1127 3.99913 18.6644C3.93053 18.5097 3.90843 16.8428 3.91042 11.9918C3.91333 5.05667 3.90132 5.27173 4.29853 5.04534C4.532 4.91217 7.78078 4.8903 8.05746 5.02001Z' fill='%23747474' stroke='%23747474' stroke-width='0.8'/%3E%3C/svg%3E%0A");}
.ico-doc-plus {background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.5001 11.5049C14.8218 11.5049 15.0826 11.7657 15.0826 12.0874V17.9128C15.0826 18.2345 14.8218 18.4953 14.5001 18.4953C14.1784 18.4953 13.9176 18.2345 13.9176 17.9128V12.0874C13.9176 11.7657 14.1784 11.5049 14.5001 11.5049Z' fill='%238F8F8F'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.0049 14.9996C11.0049 14.6778 11.2657 14.417 11.5874 14.417H17.4126C17.7344 14.417 17.9952 14.6778 17.9952 14.9996C17.9952 15.3213 17.7344 15.5821 17.4126 15.5821H11.5874C11.2657 15.5821 11.0049 15.3213 11.0049 14.9996Z' fill='%238F8F8F'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.3095 1.64546C4.04688 1.72937 3.69827 1.87986 3.53472 1.97987C3.05712 2.27192 2.41327 3.03051 2.20056 3.55169L2.00488 4.03109V14.9587L2.20798 15.4592C2.48881 16.1514 3.32952 16.9829 4.02825 17.2596C4.51706 17.4532 4.62 17.4608 7.08362 17.4859L9.63324 17.5119L9.84468 17.3026C10.1231 17.0272 10.125 16.6458 9.84923 16.373L9.64234 16.1682H7.33511C4.70709 16.1682 4.47027 16.1272 3.91174 15.5745C3.3011 14.9704 3.31164 15.0768 3.31164 9.49488C3.31164 3.91297 3.3011 4.01941 3.91174 3.41531C4.5099 2.82347 4.52625 2.82155 9.04452 2.82155C13.5628 2.82155 13.5791 2.82347 14.1773 3.41531C14.7469 3.97879 14.7774 4.16823 14.7774 7.13619V9.75272L14.9844 9.95743C15.2599 10.23 15.6456 10.2284 15.9235 9.95342L16.1346 9.74455L16.1093 6.88786C16.0846 4.09307 16.0796 4.02025 15.8811 3.53059C15.6006 2.83907 14.7598 2.00715 14.0608 1.72954L13.5549 1.52859L9.17098 1.51074C5.12467 1.49431 4.75026 1.50465 4.3095 1.64546ZM5.54199 5.69567C5.41148 5.82472 5.33501 5.99572 5.33501 6.15822C5.33501 6.32071 5.41148 6.49171 5.54199 6.62076L5.74887 6.82555H12.3402L12.5471 6.62076C12.6776 6.49171 12.754 6.32071 12.754 6.15822C12.754 5.99572 12.6776 5.82472 12.5471 5.69567L12.3402 5.49088H5.74887L5.54199 5.69567ZM5.54199 9.03234C5.41148 9.16138 5.33501 9.33239 5.33501 9.49488C5.33501 9.65738 5.41148 9.82838 5.54199 9.95743L5.74887 10.1622H12.3402L12.5471 9.95743C12.6776 9.82838 12.754 9.65738 12.754 9.49488C12.754 9.33239 12.6776 9.16138 12.5471 9.03234L12.3402 8.82755H5.74887L5.54199 9.03234ZM5.54199 12.369C5.41148 12.498 5.33501 12.6691 5.33501 12.8315C5.33501 12.994 5.41148 13.165 5.54199 13.2941L5.74887 13.4989H10.3168L10.5237 13.2941C10.6542 13.165 10.7307 12.994 10.7307 12.8315C10.7307 12.6691 10.6542 12.498 10.5237 12.369L10.3168 12.1642H5.74887L5.54199 12.369Z' fill='%238F8F8F'/%3E%3C/svg%3E%0A");}
.ico-plus {background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.0001 5V15M5 10.0005H15' stroke='%238F8F8F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");}
.ico-folder-plus {background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.7678 11C12.1142 11 12.395 11.2808 12.395 11.6272V15.8086C12.395 16.155 12.1142 16.4358 11.7678 16.4358C11.4214 16.4358 11.1406 16.155 11.1406 15.8086V11.6272C11.1406 11.2808 11.4214 11 11.7678 11Z' fill='%23747474'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 13.7178C9 13.3714 9.28081 13.0906 9.6272 13.0906H13.8086C14.155 13.0906 14.4358 13.3714 14.4358 13.7178C14.4358 14.0642 14.155 14.345 13.8086 14.345H9.6272C9.28081 14.345 9 14.0642 9 13.7178Z' fill='%23747474'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.18672 4.07236C3.61928 4.24731 3.10996 4.84735 3.02768 5.43795C3.00282 5.61589 2.99288 8.69955 3.00542 12.2905C3.03058 19.4736 2.99854 19.0035 3.49754 19.5168C4.00158 20.0352 3.37151 19.9995 12.014 19.9995C20.6565 19.9995 20.0264 20.0352 20.5305 19.5168C21.0276 19.0054 20.9997 19.376 20.9997 13.2738C20.9997 7.1716 21.0276 7.54218 20.5305 7.03079C20.0399 6.52617 20.3031 6.5519 15.1877 6.50879C12.622 6.48716 10.4705 6.44224 10.4067 6.40904C10.3428 6.37585 9.98407 5.92983 9.60943 5.41789C8.90999 4.46206 8.63438 4.20121 8.18303 4.06811C7.86689 3.97482 4.49139 3.97844 4.18672 4.07236ZM8.05746 5.02001C8.15657 5.0665 8.54276 5.52133 8.91565 6.03083C9.61203 6.98242 9.88779 7.24318 10.3388 7.3762C10.4936 7.42191 12.3966 7.45274 15.0571 7.45274C19.8953 7.45274 19.8359 7.44763 20.0289 7.88319C20.16 8.17912 20.16 18.3685 20.0289 18.6644C19.8303 19.1127 20.1633 19.0949 12.014 19.0949C3.86469 19.0949 4.19773 19.1127 3.99913 18.6644C3.93053 18.5097 3.90843 16.8428 3.91042 11.9918C3.91333 5.05667 3.90132 5.27173 4.29853 5.04534C4.532 4.91217 7.78078 4.8903 8.05746 5.02001Z' fill='%23747474' stroke='%23747474' stroke-width='0.8'/%3E%3C/svg%3E%0A");}
.ico-folder-double {background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.68672 2.07236C2.11928 2.24731 1.60996 2.84735 1.52768 3.43795C1.50282 3.61589 1.49288 6.69955 1.50542 10.2905C1.53058 17.4736 1.49854 17.0035 1.99754 17.5168C2.50158 18.0352 1.87151 17.9995 10.514 17.9995C19.1565 17.9995 18.5264 18.0352 19.0305 17.5168C19.5276 17.0054 19.4997 17.376 19.4997 11.2738C19.4997 5.1716 19.5276 5.54218 19.0305 5.03079C18.5399 4.52617 18.8031 4.5519 13.6877 4.50879C11.122 4.48716 8.97053 4.44224 8.90667 4.40904C8.84281 4.37585 8.48407 3.92983 8.10943 3.41789C7.40999 2.46206 7.13438 2.20121 6.68303 2.06811C6.36689 1.97482 2.99139 1.97844 2.68672 2.07236ZM6.55746 3.02001C6.65657 3.0665 7.04276 3.52133 7.41565 4.03083C8.11203 4.98242 8.38779 5.24318 8.83884 5.3762C8.99362 5.42191 10.8966 5.45274 13.5571 5.45274C18.3953 5.45274 18.3359 5.44763 18.5289 5.88319C18.66 6.17912 18.66 16.3685 18.5289 16.6644C18.3303 17.1127 18.6633 17.0949 10.514 17.0949C2.36469 17.0949 2.69773 17.1127 2.49913 16.6644C2.43053 16.5097 2.40843 14.8428 2.41042 9.99183C2.41333 3.05667 2.40132 3.27173 2.79853 3.04534C3.032 2.91217 6.28078 2.8903 6.55746 3.02001Z' fill='%23747474' stroke='%23747474' stroke-width='0.8'/%3E%3Crect x='5.5' y='9' width='16' height='12' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.2678 13C13.6142 13 13.895 13.2808 13.895 13.6272V17.8086C13.895 18.155 13.6142 18.4358 13.2678 18.4358C12.9214 18.4358 12.6406 18.155 12.6406 17.8086V13.6272C12.6406 13.2808 12.9214 13 13.2678 13Z' fill='%23747474'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.5 15.7178C10.5 15.3714 10.7808 15.0906 11.1272 15.0906H15.3086C15.655 15.0906 15.9358 15.3714 15.9358 15.7178C15.9358 16.0642 15.655 16.345 15.3086 16.345H11.1272C10.7808 16.345 10.5 16.0642 10.5 15.7178Z' fill='%23747474'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.68672 6.07236C5.11928 6.24731 4.60996 6.84735 4.52768 7.43795C4.50282 7.61589 4.49288 10.6995 4.50542 14.2905C4.53058 21.4736 4.49854 21.0035 4.99754 21.5168C5.50158 22.0352 4.87151 21.9995 13.514 21.9995C22.1565 21.9995 21.5264 22.0352 22.0305 21.5168C22.5276 21.0054 22.4997 21.376 22.4997 15.2738C22.4997 9.1716 22.5276 9.54218 22.0305 9.03079C21.5399 8.52617 21.8031 8.5519 16.6877 8.50879C14.122 8.48716 11.9705 8.44224 11.9067 8.40904C11.8428 8.37585 11.4841 7.92983 11.1094 7.41789C10.41 6.46206 10.1344 6.20121 9.68303 6.06811C9.36689 5.97482 5.99139 5.97844 5.68672 6.07236ZM9.55746 7.02001C9.65657 7.0665 10.0428 7.52133 10.4157 8.03083C11.112 8.98242 11.3878 9.24318 11.8388 9.3762C11.9936 9.42191 13.8966 9.45274 16.5571 9.45274C21.3953 9.45274 21.3359 9.44763 21.5289 9.88319C21.66 10.1791 21.66 20.3685 21.5289 20.6644C21.3303 21.1127 21.6633 21.0949 13.514 21.0949C5.36469 21.0949 5.69773 21.1127 5.49913 20.6644C5.43053 20.5097 5.40843 18.8428 5.41042 13.9918C5.41333 7.05667 5.40132 7.27173 5.79853 7.04534C6.032 6.91217 9.28078 6.8903 9.55746 7.02001Z' fill='%23747474' stroke='%23747474' stroke-width='0.8'/%3E%3C/svg%3E%0A");}
.ico-save {background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 14.3076V15.5384C2 16.1912 2.25934 16.8173 2.72097 17.279C3.1826 17.7406 3.8087 17.9999 4.46154 17.9999H15.5385C16.1913 17.9999 16.8174 17.7406 17.279 17.279C17.7407 16.8173 18 16.1912 18 15.5384V14.3076' stroke='%238F8F8F' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.30762 8.76929L9.99993 13.077L13.6922 8.76929' stroke='%238F8F8F' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10 13.0769V2' stroke='%238F8F8F' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");}
.ico-alarm {background-image: url("data:image/svg+xml,%3Csvg version='1.0' xmlns='http://www.w3.org/2000/svg' width='24.000000pt' height='24.000000pt' viewBox='0 0 256.000000 256.000000' preserveAspectRatio='xMidYMid meet'%3E%3Cg transform='translate(0.000000,256.000000) scale(0.100000,-0.100000)'%0Afill='%23646464' stroke='none'%3E%3Cpath d='M1203 2306 c-118 -39 -193 -133 -193 -244 l0 -49 -72 -36 c-134 -66%0A-240 -186 -289 -327 -20 -58 -23 -88 -26 -280 -2 -118 -6 -226 -9 -238 -3 -13%0A-36 -56 -73 -96 -95 -101 -106 -123 -106 -226 0 -99 16 -141 78 -203 68 -68%0A110 -80 288 -85 l157 -4 12 -42 c41 -140 162 -230 310 -230 147 0 271 91 310%0A227 l12 45 157 4 c147 3 160 5 214 32 98 47 157 142 157 250 0 86 -25 141%0A-100 220 -37 39 -72 81 -79 93 -7 14 -11 88 -11 210 0 219 -13 293 -66 402%0A-50 102 -144 195 -247 246 l-77 38 0 47 c0 168 -185 299 -347 246z m149 -172%0Ac25 -22 51 -81 43 -94 -4 -6 -55 -10 -115 -10 -60 0 -111 4 -115 10 -10 16 21%0A75 51 99 23 18 38 22 72 18 24 -2 52 -13 64 -23z m100 -265 c137 -29 250 -123%0A300 -249 20 -49 23 -79 28 -290 5 -230 6 -236 32 -285 14 -27 50 -72 78 -100%0A63 -61 80 -92 80 -143 0 -45 -26 -84 -70 -107 -42 -21 -1183 -22 -1234 -1 -47%0A20 -76 61 -76 108 0 51 11 71 80 143 102 108 104 113 110 390 l5 240 34 70%0Ac56 115 164 201 281 224 66 13 291 13 352 0z m-26 -1378 c-62 -119 -230 -119%0A-292 0 l-15 29 161 0 161 0 -15 -29z'/%3E%3C/g%3E%3C/svg%3E");}
.ico-feedback {background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 21.0009C1 19.0009 2.62 17.3809 4.62 17.3809H8.24C10.24 17.3809 11.86 19.0009 11.86 21.0009' stroke='%238F8F8F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.42781 14.6701C8.17856 14.6701 9.59781 13.2508 9.59781 11.5001C9.59781 9.74934 8.17856 8.33008 6.42781 8.33008C4.67707 8.33008 3.25781 9.74934 3.25781 11.5001C3.25781 13.2508 4.67707 14.6701 6.42781 14.6701Z' stroke='%238F8F8F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M18.1031 13.8098C20.8131 13.8098 23.0031 11.6098 23.0031 8.90977C23.0031 6.20977 20.8031 4.00977 18.1031 4.00977C15.4031 4.00977 13.2031 6.20977 13.2031 8.90977' stroke='%238F8F8F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M18.0978 13.8102C17.3578 13.8102 16.6578 13.6502 16.0278 13.3602L13.0078 14.0002L13.6378 10.9802C13.3478 10.3502 13.1778 9.65016 13.1778 8.91016' stroke='%238F8F8F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");}
.ico-sidebar-open{background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 3L6 3C4.34315 3 3 4.34315 3 6L3 18C3 19.6569 4.34315 21 6 21L18 21C19.6569 21 21 19.6569 21 18L21 6C21 4.34315 19.6569 3 18 3Z' fill='transparent'/%3E%3Cpath d='M9.5 21L18 21C19.6569 21 21 19.6569 21 18L21 6C21 4.34315 19.6569 3 18 3L9.5 3L9.5 21Z' fill='transparent'/%3E%3Cpath d='M18 3L6 3C4.34315 3 3 4.34315 3 6L3 18C3 19.6569 4.34315 21 6 21L18 21C19.6569 21 21 19.6569 21 18L21 6C21 4.34315 19.6569 3 18 3Z' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9.5 3L9.5 21' stroke='%23646464' stroke-width='1.5'/%3E%3Cpath d='M13.9062 9.7627L16.1944 12.0585L13.9062 14.339' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");}
.ico-sidebar-close{background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 3L6 3C4.34315 3 3 4.34315 3 6L3 18C3 19.6569 4.34315 21 6 21L18 21C19.6569 21 21 19.6569 21 18L21 6C21 4.34315 19.6569 3 18 3Z' fill='transparent'/%3E%3Cpath d='M9.5 21L18 21C19.6569 21 21 19.6569 21 18L21 6C21 4.34315 19.6569 3 18 3L9.5 3L9.5 21Z' fill='transparent'/%3E%3Cpath d='M18 3L6 3C4.34315 3 3 4.34315 3 6L3 18C3 19.6569 4.34315 21 6 21L18 21C19.6569 21 21 19.6569 21 18L21 6C21 4.34315 19.6569 3 18 3Z' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9.5 3L9.5 21' stroke='%23646464' stroke-width='1.5'/%3E%3Cpath d='M16.1953 14.3389L13.9072 12.0431L16.1953 9.7626' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");}

/*AI Icon*/
.ico-ai-filled{background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.63145 5.10267L8.99933 1L10.3686 5.1C10.7659 6.29733 11.7018 7.232 12.8977 7.63067L17 8.99867L12.899 10.3667C11.7044 10.7653 10.7672 11.7027 10.3686 12.8973L9.00067 17L7.63278 12.8987C7.23415 11.704 6.29689 10.7667 5.10232 10.368L1 9L5.10099 7.63333C6.29556 7.23467 7.23281 6.29733 7.63145 5.10267Z' fill='%237448F5' stroke='%237448F5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");}
.ico-ai-border{background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.63145 5.10267L8.99933 1L10.3686 5.1C10.7659 6.29733 11.7018 7.232 12.8977 7.63067L17 8.99867L12.899 10.3667C11.7044 10.7653 10.7672 11.7027 10.3686 12.8973L9.00067 17L7.63278 12.8987C7.23415 11.704 6.29689 10.7667 5.10232 10.368L1 9L5.10099 7.63333C6.29556 7.23467 7.23281 6.29733 7.63145 5.10267Z' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");}
.ico-ai-tool {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28.0004 28.0005L20.8804 20.8672' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M17.8 4.81333C16.6 4.29333 15.28 4 13.88 4C8.42667 4 4 8.42667 4 13.88C4 19.3333 8.42667 23.76 13.88 23.76C19.3333 23.76 23.76 19.3333 23.76 13.88' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16.32 17.3067C16.32 14.9201 14.3867 12.9868 12 12.9868C14.3867 12.9868 16.32 11.0534 16.32 8.66675C16.32 11.0534 18.2533 12.9868 20.64 12.9868C18.2533 12.9868 16.32 14.9201 16.32 17.3067Z' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M24.3335 9.33325C24.3335 7.67992 22.9868 6.33325 21.3335 6.33325C22.9868 6.33325 24.3335 4.98659 24.3335 3.33325C24.3335 4.98659 25.6802 6.33325 27.3335 6.33325C25.6802 6.33325 24.3335 7.67992 24.3335 9.33325Z' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");}
.ico-ai-pencil_white{background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.66406 10.8327C2.5849 10.8327 3.33073 11.5785 3.33073 12.4993C3.33073 11.5785 4.07656 10.8327 4.9974 10.8327C4.07656 10.8327 3.33073 10.0868 3.33073 9.16602C3.33073 10.0868 2.5849 10.8327 1.66406 10.8327Z' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13.3359 15.584C14.5791 15.584 15.5859 16.5909 15.5859 17.834C15.5859 16.5909 16.5928 15.584 17.8359 15.584C16.5928 15.584 15.5859 14.5771 15.5859 13.334C15.5859 14.5771 14.5791 15.584 13.3359 15.584Z' fill='%23ffffff' stroke='%23ffffff' stroke-width='1.35' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5 4.16602C6.38125 4.16602 7.5 5.28477 7.5 6.66602C7.5 5.28477 8.61875 4.16602 10 4.16602C8.61875 4.16602 7.5 3.04727 7.5 1.66602C7.5 3.04727 6.38125 4.16602 5 4.16602Z' fill='%23ffffff' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16.425 8.43411L7.35832 17.5008H5V15.1424L14.0667 6.07578C14.3917 5.75078 14.9167 5.75078 15.2417 6.07578L16.4167 7.25078C16.7417 7.57578 16.7417 8.10078 16.4167 8.42578L16.425 8.43411Z' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12.5742 7.5752L14.9242 9.9252' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");}
.ico-ai-pencil{background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.66406 10.8327C2.5849 10.8327 3.33073 11.5785 3.33073 12.4993C3.33073 11.5785 4.07656 10.8327 4.9974 10.8327C4.07656 10.8327 3.33073 10.0868 3.33073 9.16602C3.33073 10.0868 2.5849 10.8327 1.66406 10.8327Z' stroke='%23333333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13.3359 15.584C14.5791 15.584 15.5859 16.5909 15.5859 17.834C15.5859 16.5909 16.5928 15.584 17.8359 15.584C16.5928 15.584 15.5859 14.5771 15.5859 13.334C15.5859 14.5771 14.5791 15.584 13.3359 15.584Z' fill='%23333333' stroke='%23333333' stroke-width='1.35' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5 4.16602C6.38125 4.16602 7.5 5.28477 7.5 6.66602C7.5 5.28477 8.61875 4.16602 10 4.16602C8.61875 4.16602 7.5 3.04727 7.5 1.66602C7.5 3.04727 6.38125 4.16602 5 4.16602Z' fill='%23333333' stroke='%23333333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16.425 8.43411L7.35832 17.5008H5V15.1424L14.0667 6.07578C14.3917 5.75078 14.9167 5.75078 15.2417 6.07578L16.4167 7.25078C16.7417 7.57578 16.7417 8.10078 16.4167 8.42578L16.425 8.43411Z' stroke='%23333333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12.5742 7.5752L14.9242 9.9252' stroke='%23333333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");}

/*위키*/
.ico-wiki-line{background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M10%2013.6098V11.5298%22%20stroke%3D%22%23969696%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3Cpath%20d%3D%22M11.1302%209.33001C11.1402%209.20001%2011.1302%209.06001%2011.0902%208.91001C10.9802%208.51001%2010.6502%208.19001%2010.2402%208.10001C9.50016%207.95001%208.86016%208.50001%208.86016%209.21001C8.86016%209.25001%208.86016%209.29001%208.86016%209.33001C8.88016%209.50001%208.78016%209.67001%208.62016%209.72001C8.08016%209.89001%207.72016%2010.45%207.87016%2011.07C7.96016%2011.48%208.30016%2011.81%208.71016%2011.91C9.12016%2012.01%209.49016%2011.88%209.75016%2011.63C9.89016%2011.5%2010.1102%2011.5%2010.2502%2011.63C10.5102%2011.88%2010.8902%2012%2011.2902%2011.91C11.6902%2011.82%2012.0402%2011.48%2012.1302%2011.07C12.2702%2010.46%2011.9202%209.90001%2011.3902%209.72001C11.2202%209.66001%2011.1202%209.50001%2011.1302%209.32001V9.33001Z%22%20stroke%3D%22%23969696%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3Cpath%20d%3D%22M9.40012%206.42003C8.61012%205.83003%207.06012%205.05003%204.76012%205.59003C4.08012%205.75003%203.62012%206.39003%203.62012%207.10003C3.62012%208.77003%203.62012%2011.81%203.62012%2013.41C3.62012%2013.95%204.04012%2014.34%204.57012%2014.27C5.70012%2014.12%207.65012%2014.06%209.33012%2015.05C9.75012%2015.3%2010.2601%2015.3%2010.6801%2015.05C12.3601%2014.06%2014.3101%2014.11%2015.4401%2014.27C15.9601%2014.34%2016.3901%2013.96%2016.3901%2013.41V7.10003C16.3901%206.39003%2015.9201%205.74003%2015.2501%205.58003C12.9501%205.05003%2011.4001%205.83003%2010.6101%206.41003C10.2501%206.68003%209.77012%206.68003%209.40012%206.41003V6.42003Z%22%20stroke%3D%22%23969696%22%20stroke-width%3D%221.3%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");}
.ico-wiki-color{ background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M15.54%205.18977C12.92%204.59977%2011.13%205.51977%2010.3%206.11977C10.2%206.19977%2010.08%206.19977%209.97%206.11977C9.14%205.51977%207.35%204.59977%204.73%205.18977C3.73%205.41977%203%206.33977%203%207.38977V13.4998C3%2013.9698%203.19%2014.4098%203.53%2014.6998C3.87%2014.9998%204.33%2015.1298%204.79%2015.0698C5.74%2014.9498%207.56%2014.8598%209.08%2015.7398C9.4%2015.9198%209.77%2016.0198%2010.13%2016.0198C10.49%2016.0198%2010.86%2015.9298%2011.18%2015.7398C12.7%2014.8698%2014.52%2014.9498%2015.47%2015.0698C15.94%2015.1298%2016.39%2014.9998%2016.73%2014.6998C17.07%2014.3998%2017.26%2013.9598%2017.26%2013.4998V7.38977C17.26%206.33977%2016.53%205.40977%2015.53%205.18977H15.54Z%22%20fill%3D%22%23D5CAFF%22/%3E%3Cpath%20d%3D%22M10.1299%2013.1198V11.0498%22%20stroke%3D%22%234F3F2B%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3Cpath%20d%3D%22M11.26%208.83978C11.27%208.70978%2011.26%208.56978%2011.22%208.41978C11.11%208.01978%2010.78%207.69978%2010.37%207.60978C9.63004%207.45978%208.99004%208.00978%208.99004%208.71978C8.99004%208.75978%208.99004%208.79978%208.99004%208.83978C9.01004%209.00978%208.91004%209.17978%208.75004%209.22978C8.21004%209.39978%207.85004%209.95978%208.00004%2010.5798C8.09004%2010.9898%208.43004%2011.3198%208.84004%2011.4198C9.25004%2011.5198%209.62004%2011.3898%209.88004%2011.1398C10.02%2011.0098%2010.24%2011.0098%2010.38%2011.1398C10.64%2011.3898%2011.02%2011.5098%2011.42%2011.4198C11.82%2011.3298%2012.17%2010.9898%2012.26%2010.5798C12.4%209.96978%2012.05%209.40978%2011.52%209.22978C11.35%209.16978%2011.25%209.00978%2011.26%208.82978V8.83978Z%22%20fill%3D%22%2391E8AE%22%20stroke%3D%22%2370C48E%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3Cpath%20d%3D%22M16.9198%2014.4998C16.6198%2014.0598%2016.1498%2013.7498%2015.5898%2013.6798C14.1898%2013.5098%2012.1498%2013.5198%2010.3498%2014.5898C10.2198%2014.6698%2010.0498%2014.6698%209.90984%2014.5898C8.10984%2013.5198%206.06984%2013.5098%204.66984%2013.6798C4.10984%2013.7498%203.63984%2014.0598%203.33984%2014.4998C3.39984%2014.5698%203.45984%2014.6398%203.52984%2014.7098C3.86984%2015.0098%204.32984%2015.1398%204.78984%2015.0798C5.73984%2014.9598%207.55984%2014.8698%209.07984%2015.7498C9.39984%2015.9298%209.76984%2016.0298%2010.1298%2016.0298C10.4898%2016.0298%2010.8598%2015.9398%2011.1798%2015.7498C12.6998%2014.8798%2014.5198%2014.9598%2015.4698%2015.0798C15.9398%2015.1398%2016.3898%2015.0098%2016.7298%2014.7098C16.7998%2014.6498%2016.8598%2014.5798%2016.9198%2014.4998Z%22%20fill%3D%22%239878F8%22/%3E%3C/svg%3E");}
.ico-subsection-create {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.6699 20.33C18.6699 19.59 19.2699 19 19.9999 19H20.8199C21.5299 19 22.1499 19.45 22.3699 20.12C22.5499 20.67 22.4299 21.27 22.0599 21.7L18.6599 25.66H22.6599' stroke='%238f8f8f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9.67 12.0001V5.33008L8 7.00008' stroke='%238f8f8f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 12H11.33' stroke='%238f8f8f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13.3299 22.6699L10.6699 25.3299' stroke='%238f8f8f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.6699 20L13.3299 22.67' stroke='%238f8f8f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.66992 22.6699H13.3299' stroke='%238f8f8f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.66992 17.3301V22.6701' stroke='%238f8f8f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15.02 12.82C15.4618 12.82 15.82 12.4618 15.82 12.02C15.82 11.5781 15.4618 11.22 15.02 11.22C14.5781 11.22 14.22 11.5781 14.22 12.02C14.22 12.4618 14.5781 12.82 15.02 12.82Z' fill='%238f8f8f'/%3E%3Cpath d='M26.02 26.4201C26.4618 26.4201 26.82 26.0619 26.82 25.6201C26.82 25.1782 26.4618 24.8201 26.02 24.8201C25.5781 24.8201 25.22 25.1782 25.22 25.6201C25.22 26.0619 25.5781 26.4201 26.02 26.4201Z' fill='%238f8f8f'/%3E%3C/svg%3E");}
.ico-wiki_link {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.5 27.5C19.9575 26.415 18.8463 25.7237 17.63 25.7237H14.83C14.095 25.7237 13.5 25.1288 13.5 24.3938V15.705C13.5 14.97 14.095 14.375 14.83 14.375H16.9562C18.96 14.4975 20.5175 16.1775 20.5 18.1813V27.5Z' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M20.5001 27.5C21.0426 26.415 22.1539 25.7237 23.3701 25.7237H26.1701C26.9051 25.7237 27.5001 25.1288 27.5001 24.3938V15.705C27.5001 14.97 26.9051 14.375 26.1701 14.375H24.0439C22.0401 14.4975 20.4826 16.1775 20.5001 18.1813V27.5Z' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12.8643 10.129L14.3206 8.67275C15.3956 7.59775 15.3956 5.86025 14.3206 4.78525C13.2456 3.71025 11.5081 3.71025 10.4331 4.78525L8.97681 6.2415' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7.52173 11.5848L11.4092 7.69727' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.06622 9.15381L4.60996 10.6101C3.53496 11.6851 3.53496 13.4226 4.60996 14.4976C5.68496 15.5726 7.42248 15.5726 8.49748 14.4976L9.95374 13.0413' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");}
.ico-pic {background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2232%22%20height%3D%2232%22%20viewBox%3D%220%200%2032%2032%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M24%204H8C5.79086%204%204%205.79086%204%208V24C4%2026.2091%205.79086%2028%208%2028H24C26.2091%2028%2028%2026.2091%2028%2024V8C28%205.79086%2026.2091%204%2024%204Z%22%20stroke%3D%22%23646464%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3Cpath%20d%3D%22M11.6712%2014.0011C12.9599%2014.0011%2014.0046%2012.9565%2014.0046%2011.6678C14.0046%2010.3791%2012.9599%209.33447%2011.6712%209.33447C10.3826%209.33447%209.33789%2010.3791%209.33789%2011.6678C9.33789%2012.9565%2010.3826%2014.0011%2011.6712%2014.0011Z%22%20stroke%3D%22%23646464%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3Cpath%20d%3D%22M28.0046%2013.4811C27.4046%2013.4011%2026.7912%2013.3345%2026.1645%2013.3345C19.0712%2013.3345%2013.3379%2019.0811%2013.3379%2026.1611C13.3379%2026.7878%2013.3912%2027.3878%2013.4846%2028.0011%22%20stroke%3D%22%23646464%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");}
.ico-sub-index {background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2232%22%20height%3D%2232%22%20viewBox%3D%220%200%2032%2032%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M18.6702%2020.33C18.6702%2019.59%2019.2702%2019%2020.0002%2019H20.8202C21.5302%2019%2022.1502%2019.45%2022.3702%2020.12C22.5502%2020.67%2022.4302%2021.27%2022.0602%2021.7L18.6602%2025.66H22.6602%22%20stroke%3D%22%23646464%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3Cpath%20d%3D%22M9.67%2012.0001V5.33008L8%207.00008%22%20stroke%3D%22%23646464%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3Cpath%20d%3D%22M8%2012H11.33%22%20stroke%3D%22%23646464%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3Cpath%20d%3D%22M13.3299%2022.6699L10.6699%2025.3299%22%20stroke%3D%22%23646464%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3Cpath%20d%3D%22M10.6699%2020L13.3299%2022.67%22%20stroke%3D%22%23646464%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3Cpath%20d%3D%22M6.66992%2022.6699H13.3299%22%20stroke%3D%22%23646464%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3Cpath%20d%3D%22M6.66992%2017.3301V22.6701%22%20stroke%3D%22%23646464%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3Cpath%20d%3D%22M15.0197%2012.82C15.4616%2012.82%2015.8197%2012.4618%2015.8197%2012.02C15.8197%2011.5781%2015.4616%2011.22%2015.0197%2011.22C14.5779%2011.22%2014.2197%2011.5781%2014.2197%2012.02C14.2197%2012.4618%2014.5779%2012.82%2015.0197%2012.82Z%22%20fill%3D%22%23646464%22/%3E%3Cpath%20d%3D%22M26.0197%2026.4201C26.4616%2026.4201%2026.8197%2026.0619%2026.8197%2025.6201C26.8197%2025.1782%2026.4616%2024.8201%2026.0197%2024.8201C25.5779%2024.8201%2025.2197%2025.1782%2025.2197%2025.6201C25.2197%2026.0619%2025.5779%2026.4201%2026.0197%2026.4201Z%22%20fill%3D%22%23646464%22/%3E%3C/svg%3E");}
.ico-chart {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25.3333 4H6.66667C5.19391 4 4 5.19391 4 6.66667V25.3333C4 26.8061 5.19391 28 6.66667 28H25.3333C26.8061 28 28 26.8061 28 25.3333V6.66667C28 5.19391 26.8061 4 25.3333 4Z' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 28V4' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M20 28V4' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4 12H28' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4 20H28' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");}
.ico-edit_file {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24.2989 10.096H16.0026L14.3433 7.69268C13.8929 7.06268 13.1582 6.66602 12.3759 6.66602H7.70631C6.4026 6.66602 5.33594 7.71602 5.33594 8.99935V22.9993C5.33594 24.2827 6.4026 25.3327 7.70631 25.3327H24.2989C25.6026 25.3327 26.6693 24.2827 26.6693 22.9993V12.4293C26.6693 11.146 25.6026 10.096 24.2989 10.096Z' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16 13.7344V21.7344' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M20 17.7344H12' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");}
.ico-edit_video {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.0002 5.33325H12.0002C8.31826 5.33325 5.3335 8.31802 5.3335 11.9999V19.9999C5.3335 23.6818 8.31826 26.6666 12.0002 26.6666H20.0002C23.6821 26.6666 26.6668 23.6818 26.6668 19.9999V11.9999C26.6668 8.31802 23.6821 5.33325 20.0002 5.33325Z' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12.771 13.3336C12.771 12.2936 13.9043 11.6536 14.7843 12.187L19.2243 14.8536C20.091 15.3736 20.091 16.627 19.2243 17.1336L14.7843 19.8003C13.891 20.3336 12.771 19.6936 12.771 18.6536V13.3203V13.3336Z' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");}
.ico-edit_link {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23.2519 17.0406L26.3586 13.934C28.6519 11.6406 28.6519 7.93399 26.3586 5.64065C24.0652 3.34732 20.3585 3.34732 18.0652 5.64065L14.9585 8.74731' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.854 20.1461L20.1473 11.8528' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.74856 14.9597L5.64187 18.0664C3.34854 20.3597 3.34854 24.0664 5.64187 26.3597C7.93521 28.6531 11.6419 28.6531 13.9353 26.3597L17.0419 23.2531' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");}
.ico-contact {background-image: url("data:image/svg+xml;utf8,<svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M19 2.25977H5C3.89543 2.25977 3 3.1552 3 4.25977V19.7398C3 20.8443 3.89543 21.7398 5 21.7398H19C20.1046 21.7398 21 20.8443 21 19.7398V4.25977C21 3.1552 20.1046 2.25977 19 2.25977Z' stroke='%23969696' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M12 11.9996C10.53 11.9996 9.33 10.7996 9.33 9.32965C9.33 7.85965 10.53 6.63965 12 6.63965C13.47 6.63965 14.67 7.83965 14.67 9.30965C14.67 10.7796 13.47 11.9996 12 11.9996ZM16.16 17.3496H7.84C7.51 17.3496 7.25 17.0796 7.25 16.7596V16.1696C7.25 14.8596 8.32 13.7896 9.63 13.7896H14.39C15.7 13.7896 16.77 14.8596 16.77 16.1696V16.7596C16.77 17.0896 16.5 17.3496 16.18 17.3496H16.16Z' stroke='%23969696' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");}
.ico-delete-white {background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.6683 1.33398L1.33496 14.6673' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14.6683 14.6673L1.33496 1.33398' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");}
.ico-delete-red {background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9V19C6 20.1 6.9 21 8 21H16C17.1 21 18 20.1 18 19V9M14 10V17M10 10V17M4.5 6H19.5M8 6L8.53999 4.37C8.80999 3.55 9.58 3 10.44 3H13.56C14.42 3 15.19 3.55 15.46 4.37L16 6' stroke='%23EF7165' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");}
.ico-arrow-right {background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.4487 5.46085C13.7226 5.18596 14.1566 5.16784 14.4517 5.40714L14.5093 5.4589L20.5493 11.4687C20.6905 11.6093 20.77 11.8006 20.77 11.9999C20.77 12.1994 20.6907 12.3914 20.5493 12.5321L14.5093 18.5419C14.2157 18.834 13.7409 18.8324 13.4487 18.539C13.1566 18.2454 13.1572 17.7706 13.4507 17.4784L18.2017 12.7499H3.97998C3.56579 12.7499 3.23001 12.4141 3.22998 11.9999C3.22998 11.5857 3.56577 11.2499 3.97998 11.2499H18.2017L13.4507 6.5214L13.3989 6.46476C13.1582 6.17079 13.175 5.73602 13.4487 5.46085Z' fill='%23969696'/%3E%3C/svg%3E");}
.ico-dropdown_down {background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.1464 3.64645C10.3417 3.45118 10.6582 3.45118 10.8535 3.64645C11.0487 3.84171 11.0487 4.15822 10.8535 4.35348L6.35348 8.85348C6.15822 9.04874 5.84171 9.04874 5.64645 8.85348L1.14645 4.35348C0.951184 4.15822 0.951184 3.84171 1.14645 3.64645C1.34171 3.45118 1.65822 3.45118 1.85348 3.64645L5.99996 7.79293L10.1464 3.64645Z' fill='%234B4B4B'/%3E%3C/svg%3E");}
.ico-folder-gray {background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.2222 7.5725H12L10.7555 5.77C10.4178 5.2975 9.86667 5 9.28 5H5.77778C4.8 5 4 5.7875 4 6.75V17.25C4 18.2125 4.8 19 5.77778 19H18.2222C19.2 19 20 18.2125 20 17.25V9.3225C20 8.36 19.2 7.5725 18.2222 7.5725Z' fill='%23969696'/%3E%3C/svg%3E");}
.ico-plus-gray {background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.83496 1.3335C8.11087 1.33365 8.33415 1.55693 8.33431 1.83285V7.3348H13.8363C14.1124 7.3348 14.3363 7.55866 14.3363 7.8348C14.3363 8.11094 14.1124 8.3348 13.8363 8.3348H8.33431V13.8368C8.33415 14.1127 8.11087 14.3359 7.83496 14.3361C7.55893 14.3361 7.33512 14.1127 7.33496 13.8368V8.3348H1.83301C1.55687 8.3348 1.33301 8.11094 1.33301 7.8348C1.33301 7.55866 1.55687 7.3348 1.83301 7.3348H7.33496V1.83285C7.33512 1.55685 7.55893 1.33352 7.83496 1.3335Z' fill='%23969696'/%3E%3C/svg%3E");}
.ico-edit-underline {background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.292 16.6187C17.6372 16.6187 17.917 16.8985 17.917 17.2437C17.917 17.5889 17.6372 17.8687 17.292 17.8687H2.29199C1.94681 17.8687 1.66699 17.5889 1.66699 17.2437C1.66699 16.8985 1.94681 16.6187 2.29199 16.6187H17.292ZM11.7183 2.09313C12.2873 1.52434 13.2082 1.52425 13.7772 2.09313L14.9523 3.26826C15.5213 3.83726 15.5211 4.75809 14.9523 5.32718L5.92725 14.3522C5.8101 14.4694 5.65101 14.5353 5.48535 14.5354H3.13509C2.78991 14.5354 2.51009 14.2555 2.51009 13.9104V11.5601C2.51019 11.3945 2.57607 11.2353 2.6932 11.1182L10.1696 3.64098C10.1866 3.61861 10.2053 3.59712 10.2257 3.57669C10.2462 3.55626 10.2677 3.53755 10.29 3.52054L11.7183 2.09313ZM3.76009 11.8189V13.2854H5.22656L12.1382 6.37292L10.6717 4.90645L3.76009 11.8189ZM12.8934 2.97774C12.8125 2.89681 12.683 2.89681 12.6021 2.97774L11.5555 4.02266L13.022 5.48913L14.0685 4.44339C14.1492 4.36246 14.1493 4.23289 14.0685 4.15205L12.8934 2.97774Z" fill="%23969696"/></svg>');}
.ico-edit-underline_sidebar {background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.6517 4.75109L16.2517 3.35109C15.8617 2.96109 15.2317 2.96109 14.8417 3.35109L4.01172 14.1811V17.0011H6.8317L17.6617 6.17109C18.0517 5.78109 18.0517 5.15109 17.6617 4.76109L17.6517 4.75109Z' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3 21H21' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15.8708 7.94891L13.0508 5.12891' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");}
.ico-eye {background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.39307 8.72617C5.03973 4.02617 10.9597 4.02617 14.6064 8.72617' stroke='%23969696' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.1665 11.334C9.82336 11.334 11.1665 9.99084 11.1665 8.33398C11.1665 6.67713 9.82336 5.33398 8.1665 5.33398C6.50965 5.33398 5.1665 6.67713 5.1665 8.33398C5.1665 9.99084 6.50965 11.334 8.1665 11.334Z' stroke='%23969696' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");}
.ico-set-gray {background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.00069 9.79921C8.9948 9.79921 9.8007 8.99333 9.8007 7.99922C9.8007 7.0051 8.9948 6.19922 8.00069 6.19922C7.00658 6.19922 6.20068 7.0051 6.20068 7.99922C6.20068 8.99333 7.00658 9.79921 8.00069 9.79921Z' stroke='%23969696' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3.49924 7.9992C3.49924 8.1992 3.51924 8.39253 3.53924 8.58587L2.47922 9.41253C2.24588 9.59919 2.17924 9.92586 2.33257 10.1859L3.27255 11.8125C3.41922 12.0725 3.73925 12.1792 4.01258 12.0659L4.95924 11.6859C5.14591 11.6125 5.35256 11.6392 5.52589 11.7525C5.67256 11.8525 5.82588 11.9392 5.97922 12.0192C6.15922 12.1125 6.29256 12.2725 6.31922 12.4725L6.46591 13.4792C6.50591 13.7725 6.75926 13.9925 7.05926 13.9925H8.93922C9.23922 13.9925 9.49256 13.7725 9.53256 13.4792L9.67925 12.4725C9.70592 12.2725 9.83926 12.1059 10.0193 12.0192C10.1793 11.9392 10.3259 11.8525 10.4726 11.7525C10.6393 11.6392 10.8526 11.6059 11.0393 11.6859L11.9859 12.0659C12.2592 12.1792 12.5792 12.0659 12.7259 11.8125L13.6659 10.1859C13.8126 9.92586 13.7526 9.59919 13.5193 9.41253L12.4592 8.58587C12.4859 8.39253 12.4992 8.19253 12.4992 7.9992C12.4992 7.80586 12.4792 7.60586 12.4592 7.41253L13.5193 6.58587C13.7526 6.3992 13.8192 6.07253 13.6659 5.81253L12.7259 4.18586C12.5792 3.92586 12.2592 3.81919 11.9859 3.93253L11.0393 4.31253C10.8526 4.38586 10.6393 4.35919 10.4726 4.24586C10.3259 4.14586 10.1726 4.0592 10.0193 3.9792C9.83926 3.88586 9.70592 3.72586 9.67925 3.52586L9.53256 2.5192C9.49256 2.22586 9.23922 2.00586 8.93922 2.00586H7.05926C6.75926 2.00586 6.50591 2.22586 6.46591 2.5192L6.31922 3.52586C6.29256 3.72586 6.15922 3.88586 5.97922 3.9792C5.81922 4.0592 5.67256 4.14586 5.52589 4.24586C5.35922 4.35919 5.14591 4.38586 4.95924 4.31253L4.01258 3.93253C3.73925 3.81919 3.41922 3.93253 3.27255 4.18586L2.33257 5.81253C2.1859 6.07253 2.24588 6.3992 2.47922 6.58587L3.53924 7.41253C3.51257 7.60586 3.49924 7.7992 3.49924 7.9992Z' stroke='%23969696' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");}
.ico-arrow-left {background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.01123 11.9805H19.0012' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.0095 5.99023L3.99951 12.0002L10.0095 18.0102' stroke='%23646464' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");}
@media all and (max-width:768px) {
        [class*=ico-] {
            width: 1.25rem;
            height: 1.25rem;
        }

        .ico-lock {
            width: 1rem;
            height: 1.5rem;
        }

        .ico-back {
            width: 0.625rem;
            height: 1.125rem;
        }

        .ico-new-plus {
            width: 1.625rem;
            height: 1.625rem;
        }
    }

    .clc-dialog-title, .clc-dialog-side-title{
    display:flex;
    align-items:center;
    -webkit-align-items:center;
    justify-content:center;
    -webkit-justify-content:center;
    font-size:17px;
}

.clc-datepicker {
    position:relative;
}

.clc-datepicker .clc-button {
    position: absolute;
    top: 19px;
    right: 8px;

}
.clc-dropdown-items li.clc-state-highlight {
    background-color: #bda8fa;
}