/* ============================================
 * 이 CSS파일은 내용수정 및 삭제 불가합니다.(파일 경로제외)
 * 제작자: 씨앤에이아이 UI/UX팀 김성주
 * version 1.1.0 (버전.추가.오류수정)
 * UPDATE 2025 - 05 - 29
 * ============================================ */
/* font-family >> 경로를 확인해주세요*/
@font-face { 
  font-family: 'solid';/*v1.1.0*/
  src:  url('../fonts');
  src:  url('../fonts#iefix') format('embedded-opentype'),
    url('../fonts/icon/solid.ttf?6zwsol') format('truetype'),
    url('../fonts/icon/solid.woff?6zwsol') format('woff'),
    url('../fonts/icon/solid.svg?6zwsol#solid') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'line';/*v1.1.0*/
  src:  url('../fonts/icon/line.eot?uj8hag');
  src:  url('../fonts/icon/line.eot?uj8hag#iefix') format('embedded-opentype'),
    url('../fonts/icon/line.ttf?uj8hag') format('truetype'),
    url('../fonts/icon/line.woff?uj8hag') format('woff'),
    url('../fonts/icon/line.svg?uj8hag#line') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'duotone';/*v1.1.0*/
  src:  url('../fonts/icon/duotone.eot?ofpvsp');
  src:  url('../fonts/icon/duotone.eot?ofpvsp#iefix') format('embedded-opentype'),
    url('../fonts/icon/duotone.ttf?ofpvsp') format('truetype'),
    url('../fonts/icon/duotone.woff?ofpvsp') format('woff'),
    url('../fonts/icon/duotone.svg?ofpvsp#duotone') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'brand';/*v1.0.0*/
  src:  url('../fonts/icon/brand.eot?uu9az8');
  src:  url('../fonts/icon/brand.eot?uu9az8#iefix') format('embedded-opentype'),
    url('../fonts/icon/brand.ttf?uu9az8') format('truetype'),
    url('../fonts/icon/brand.woff?uu9az8') format('woff'),
    url('../fonts/icon/brand.svg?uu9az8#brand') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
/* icon style */
[class*="ch-"] { font-size: 1em; display: inline-block; speak: never; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; 
  /* Enable Ligatures ================ */
letter-spacing: 0; -webkit-font-feature-settings: "liga"; -moz-font-feature-settings: "liga=1"; -moz-font-feature-settings: "liga"; -ms-font-feature-settings: "liga" 1; font-feature-settings: "liga"; -webkit-font-variant-ligatures: discretionary-ligatures; font-variant-ligatures: discretionary-ligatures;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } 

/* use !important to prevent issues with browser extensions that change fonts */
.ch-solid {font-family: 'solid' !important;}
.ch-line {font-family: 'line' !important;}
.ch-duo {font-family: 'duotone' !important;} 
.ch-brand {font-family: 'brand' !important;} 

/* ===================================
 * 속성(size, transform, animation
 * =================================== */
/* size */
/* 표준 폰트 16px기준 : 0.5em = 8px / 0.75em = 12px / 1em = 16px / 1.25em = 20px / 1.5em = 24px / 2em = 32px */
[class*="ch-"].xs{font-size: 0.5em;}
[class*="ch-"].s{font-size: 0.75em;}
[class*="ch-"].r{font-size: 1em;}
[class*="ch-"].m{font-size: 1.25em;}
[class*="ch-"].l{font-size: 1.5em;}
[class*="ch-"].xl{font-size: 2em;}
/* transform - flip */
[class*="ch-"].fx{transform: scaleX(-1);}
[class*="ch-"].fy{transform: scaleY(-1);}
/* transform - rotate */
[class*="ch-"].ro45{transform: rotate(45deg);}
[class*="ch-"].ro90{transform: rotate(90deg);}
[class*="ch-"].ro135{transform: rotate(135deg);}
[class*="ch-"].ro180{transform: rotate(180deg);}
[class*="ch-"].ro225{transform: rotate(225deg);}
[class*="ch-"].ro270{transform: rotate(270deg);}
[class*="ch-"].ro315{transform: rotate(315deg);}
/* animation */
[class*="ch-"].spin-right{
  animation: spin-right 1s infinite linear;
}
@keyframes spin-right {
  0% {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}
}
[class*="ch-"].spin-left{
  animation: spin-left 1s infinite linear;
}
@keyframes spin-left {
  0% {transform: rotate(0deg);}
  100% {transform: rotate(-360deg);}
}
[class*="ch-"].pulse{
  animation: pulse 0.8s infinite ease-in-out alternate;
}
@keyframes pulse {
  0% {transform: scale(0.9);}
  100% {transform: scale(1.1);}
}
[class*="ch-"].flash{
  animation: flash 0.8s infinite ease-in-out alternate;
}
@keyframes flash {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
[class*="ch-"].shake{
  animation: shake 1s infinite ease alternate;
}
@keyframes shake {
  30% {transform: scale(1.1);}
  40%, 60% {transform: rotate(-20deg) scale(1.1);}
  50% {transform: rotate(20deg) scale(1.1);}
  70% {transform: rotate(0deg) scale(1.1);}
  100% {transform: scale(1);}
}
[class*="ch-"].bounce1{
  animation: bounce1 2s ease infinite;
}
@keyframes bounce1 {
  70% {transform: translateY(0%);}
  80% {transform: translateY(-15%);}
  90% {transform: translateY(0%);}
  95% {transform: translateY(-7%);}
  97% {transform: translateY(0%);}
  99% {transform: translateY(-3%);}
  100% {transform: translateY(0%);}
}
[class*="ch-"].bounce2{
  animation: bounce2 2s ease infinite;
}
@keyframes bounce2 {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0%);}
  40% {transform: translateY(-15%);}
  60% {transform: translateY(-7%);}
}
[class*="ch-"].roll-in-right{
  animation: roll-in-right 2s ease infinite;
}
@keyframes roll-in-right {
  0%{opacity: 0;transform: translateX(0px);}
  100% {opacity: 1;transform: translateX(50%);}
}
[class*="ch-"].roll-out-right{
  animation: roll-out-right 2s ease infinite;
}
@keyframes roll-out-right {
  0%{opacity: 1;transform: translateX(0px);}
  100% {opacity: 0;transform: translateX(50%);}
}
[class*="ch-"].roll-in-left{
  animation: roll-in-left 2s ease infinite;
}
@keyframes roll-in-left {
  0%{opacity: 0;transform: translateX(0px);}
  100% {opacity: 1;transform: translateX(-50%);}
}
[class*="ch-"].roll-out-left{
  animation: roll-out-left 2s ease infinite;
}
@keyframes roll-out-left {
  0%{opacity: 1;transform: translateX(0px);}
  100% {opacity: 0;transform: translateX(-50%);}
}
[class*="ch-"].roll-in-up{
  animation: roll-in-up 2s ease infinite;
}
@keyframes roll-in-up {
  0%{opacity: 0;transform: translateY(0px);}
  100% {opacity: 1;transform: translateY(-50%);}
}
[class*="ch-"].roll-out-up{
  animation: roll-out-up 2s ease infinite;
}
@keyframes roll-out-up {
  0%{opacity: 1;transform: translateY(0px);}
  100% {opacity: 0;transform: translateY(-50%);}
}
[class*="ch-"].roll-in-down{
  animation: roll-in-down 2s ease infinite;
}
@keyframes roll-in-down {
  0%{opacity: 0;transform: translateY(0px);}
  100% {opacity: 1;transform: translateY(50%);}
}
[class*="ch-"].roll-out-down{
  animation: roll-out-down 2s ease infinite;
}
@keyframes roll-out-down {
  0%{opacity: 1;transform: translateY(0px);}
  100% {opacity: 0;transform: translateY(50%);}
}

/* ===================================
 * icon - start > > >
 * =================================== */
/* solid / line */
.ch-home:before {content: "\e900";}
.ch-shop:before {content: "\e901";}
.ch-building:before {content: "\e902";}
.ch-buildings:before {content: "\e903";}
.ch-car:before {content: "\e904";}
.ch-bus:before {content: "\e905";}
.ch-subway:before {content: "\e906";}
.ch-truck:before {content: "\e907";}
.ch-trolley:before {content: "\e908";}
.ch-shopping-cart:before {content: "\e909";}
.ch-airplane:before {content: "\e90a";}
.ch-roket:before {content: "\e90b";}
.ch-space:before {content: "\e90c";}
.ch-solar-system:before {content: "\e90d";}
.ch-saturn:before {content: "\e90e";}
.ch-globe:before {content: "\e90f";}
.ch-light:before {content: "\e910";}
.ch-dark:before {content: "\e911";}
.ch-cloud:before {content: "\e912";}
.ch-bolt:before {content: "\e913";}
.ch-stars:before {content: "\e914";}
.ch-star:before {content: "\e915";}
.ch-star-half:before {content: "\e916";}
.ch-heart:before {content: "\e917";}
.ch-heart-half:before {content: "\e918";}
.ch-pin:before {content: "\e919";}
.ch-pin-circle:before {content: "\e91a";}
.ch-vacation:before {content: "\e91b";}
.ch-rest:before {content: "\e91c";}
.ch-meal:before {content: "\e91d";}
.ch-paperbag:before {content: "\e91e";}
.ch-ticket:before {content: "\e91f";}
.ch-first-aid-kit:before {content: "\e920";}
.ch-pill:before {content: "\e921";}
.ch-business-bag:before {content: "\e922";}
.ch-credit-card:before {content: "\e923";}
.ch-money-bill:before {content: "\e924";}
.ch-money-won:before {content: "\e925";}
.ch-stamp:before {content: "\e926";}
.ch-education:before {content: "\e927";}
.ch-book:before {content: "\e928";}
.ch-book-open:before {content: "\e929";}
.ch-trash-can:before {content: "\e92a";}
.ch-clock-four:before {content: "\e92b";}
.ch-clock:before {content: "\e92c";}
.ch-hourglass:before {content: "\e92d";}
.ch-record:before {content: "\e92e";}
.ch-calendar-clock:before {content: "\e92f";}
.ch-calendar-today:before {content: "\e930";}
.ch-calendar-week:before {content: "\e931";}
.ch-calendar-month:before {content: "\e932";}
.ch-calendar-available:before {content: "\e933";}
.ch-calendar-cancle:before {content: "\e934";}
.ch-calendar-star:before {content: "\e935";}
.ch-calendar-event:before {content: "\e936";}
.ch-calendar-edit:before {content: "\e937";}
.ch-calendar-dayoff:before {content: "\e938";}
.ch-arrow-up-left:before {content: "\e939";}
.ch-arrow-up-right:before {content: "\e93a";}
.ch-arrow-down-left:before {content: "\e93b";}
.ch-arrow-down-right:before {content: "\e93c";}
.ch-arrow-up:before {content: "\e93d";}
.ch-arrow-down:before {content: "\e93e";}
.ch-arrow-left:before {content: "\e93f";}
.ch-arrow-right:before {content: "\e940";}
.ch-arrow-over-flip:before {content: "\e941";}
.ch-arrow-over:before {content: "\e942";}
.ch-arrow-rotate:before {content: "\e943";}
.ch-arrow-change:before {content: "\e944";}
.ch-full:before {content: "\e945";}
.ch-reduce:before {content: "\e946";}
.ch-move:before {content: "\e947";}
.ch-square-move:before {content: "\e948";}
.ch-zoom-in:before {content: "\e949";}
.ch-zoom-out:before {content: "\e94a";}
.ch-wide-vertical:before {content: "\e94b";}
.ch-slim-vertical:before {content: "\e94c";}
.ch-wide:before {content: "\e94d";}
.ch-slim:before {content: "\e94e";}
.ch-chevron-up:before {content: "\e94f";}
.ch-chevron-down:before {content: "\e950";}
.ch-chevron-left:before {content: "\e951";}
.ch-chevron-right:before {content: "\e952";}
.ch-chevron-double-left:before {content: "\e953";}
.ch-chevron-double-right:before {content: "\e954";}
.ch-chevron-up-s:before {content: "\e955";}
.ch-chevron-down-s:before {content: "\e956";}
.ch-chevron-left-s:before {content: "\e957";}
.ch-chevron-right-s:before {content: "\e958";}
.ch-chevron-double-left-s:before {content: "\e959";}
.ch-chevron-double-right-s:before {content: "\e95a";}
.ch-triangle-up:before {content: "\e95b";}
.ch-triangle-down:before {content: "\e95c";}
.ch-triangle-left:before {content: "\e95d";}
.ch-triangle-right:before {content: "\e95e";}
.ch-triangle-up-down:before {content: "\e95f";}
.ch-triangle-bar-up:before {content: "\e960";}
.ch-triangle-bar-down:before {content: "\e961";}
.ch-triangle-bar-left:before {content: "\e962";}
.ch-triangle-bar-right:before {content: "\e963";}
.ch-arrow-up-l:before {content: "\e964";}
.ch-arrow-down-l:before {content: "\e965";}
.ch-arrow-left-l:before {content: "\e966";}
.ch-arrow-right-l:before {content: "\e967";}
.ch-share-left:before {content: "\e968";}
.ch-share-right:before {content: "\e969";}
.ch-share-double-left:before {content: "\e96a";}
.ch-share-double-right:before {content: "\e96b";}
.ch-arrow-turn-down-circle:before {content: "\e96c";}
.ch-arrow-turn-up-circle:before {content: "\e96d";}
.ch-arrow-turn-down-right:before {content: "\e96e";}
.ch-arrow-turn-up-right:before {content: "\e96f";}
.ch-login:before {content: "\e970";}
.ch-logout:before {content: "\e971";}
.ch-link-in:before {content: "\e972";}
.ch-share-square:before {content: "\e973";}
.ch-share:before {content: "\e974";}
.ch-link:before {content: "\e975";}
.ch-link-s:before {content: "\e976";}
.ch-check-square:before {content: "\e977";}
.ch-check:before {content: "\e978";}
.ch-square-check:before {content: "\e979";}
.ch-circle-check:before {content: "\e97a";}
.ch-plus:before {content: "\e97b";}
.ch-square-plus:before {content: "\e97c";}
.ch-circle-plus:before {content: "\e97d";}
.ch-minus:before {content: "\e97e";}
.ch-square-minus:before {content: "\e97f";}
.ch-circle-minus:before {content: "\e980";}
.ch-xmark:before {content: "\e981";}
.ch-circle-xmark:before {content: "\e982";}
.ch-question:before {content: "\e983";}
.ch-circle-question:before {content: "\e984";}
.ch-error:before {content: "\e985";}
.ch-circle-error:before {content: "\e986";}
.ch-info:before {content: "\e987";}
.ch-circle-info:before {content: "\e988";}
.ch-circle-one:before {content: "\e989";}
.ch-circle-two:before {content: "\e98a";}
.ch-circle-three:before {content: "\e98b";}
.ch-circle-four:before {content: "\e98c";}
.ch-circle-five:before {content: "\e98d";}
.ch-circle-six:before {content: "\e98e";}
.ch-circle-seven:before {content: "\e98f";}
.ch-circle-eight:before {content: "\e990";}
.ch-circle-nine:before {content: "\e991";}
.ch-circle-ten:before {content: "\e992";}
.ch-more-horizontal:before {content: "\e993";}
.ch-more-vertical:before {content: "\e994";}
.ch-bars:before {content: "\e995";}
.ch-full-screen:before {content: "\e996";}
.ch-image-rotate:before {content: "\e997";}
.ch-filp-vertical:before {content: "\e998";}
.ch-filp-horizontal:before {content: "\e999";}
.ch-category:before {content: "\e99a";}
.ch-dashboard:before {content: "\e99b";}
.ch-dashboard-plus:before {content: "\e99c";}
.ch-new-tab:before {content: "\e99d";}
.ch-sidebar:before {content: "\e99e";}
.ch-spinner-dot:before {content: "\e99f";}
.ch-spinner-line:before {content: "\e9a0";}
.ch-pie-chart:before {content: "\e9a1";}
.ch-donut-chart:before {content: "\e9a2";}
.ch-bar-graph:before {content: "\e9a3";}
.ch-bar-graph-up:before {content: "\e9a4";}
.ch-bar-graph-down:before {content: "\e9a5";}
.ch-bar-graph-irregularity:before {content: "\e9a6";}
.ch-bar-line-graph:before {content: "\e9a7";}
.ch-wave-graph:before {content: "\e9a8";}
.ch-line-graph-up:before {content: "\e9a9";}
.ch-line-graph-down:before {content: "\e9aa";}
.ch-line-graph-up-down:before {content: "\e9ab";}
.ch-line-wave-graph:before {content: "\e9ac";}
.ch-upload:before {content: "\e9ad";}
.ch-download:before {content: "\e9ae";}
.ch-data-upload:before {content: "\e9af";}
.ch-data-download:before {content: "\e9b0";}
.ch-filter:before {content: "\e9b1";}
.ch-filter-slash:before {content: "\e9b2";}
.ch-filter-bar:before {content: "\e9b3";}
.ch-list-bullet:before {content: "\e9b4";}
.ch-list-check:before {content: "\e9b5";}
.ch-list-ol:before {content: "\e9b6";}
.ch-list-up:before {content: "\e9b7";}
.ch-list-down:before {content: "\e9b8";}
.ch-list-table:before {content: "\e9b9";}
.ch-list-table-cells:before {content: "\e9ba";}
.ch-template:before {content: "\e9bb";}
.ch-template-mgmt:before {content: "\e9bc";}
.ch-image:before {content: "\e9bd";}
.ch-text:before {content: "\e9be";}
.ch-font-size:before {content: "\e9bf";}
.ch-pen:before {content: "\e9c0";}
.ch-write:before {content: "\e9c1";}
.ch-edit:before {content: "\e9c2";}
.ch-mark:before {content: "\e9c3";}
.ch-mark-list:before {content: "\e9c4";}
.ch-tag:before {content: "\e9c5";}
.ch-tag-name:before {content: "\e9c6";}
.ch-tag-mgmt:before {content: "\e9c7";}
.ch-bookmark:before {content: "\e9c8";}
.ch-bookmark-plus:before {content: "\e9c9";}
.ch-bookmark-minus:before {content: "\e9ca";}
.ch-box:before {content: "\e9cb";}
.ch-file-box:before {content: "\e9cc";}
.ch-dask-box:before {content: "\e9cd";}
.ch-archive:before {content: "\e9ce";}
.ch-archive-up:before {content: "\e9cf";}
.ch-archive-down:before {content: "\e9d0";}
.ch-archive-file:before {content: "\e9d1";}
.ch-page:before {content: "\e9d2";}
.ch-page-check:before {content: "\e9d3";}
.ch-page-pen:before {content: "\e9d4";}
.ch-page-sign-pen:before {content: "\e9d5";}
.ch-page-check-pen:before {content: "\e9d6";}
.ch-page-rewrite-pen:before {content: "\e9d7";}
.ch-doc-dayoff:before {content: "\e9d8";}
.ch-doc-dayoff-change:before {content: "\e9d9";}
.ch-doc-pen:before {content: "\e9da";}
.ch-doc-won-pen:before {content: "\e9db";}
.ch-doc-official-pen:before {content: "\e9dc";}
.ch-memo:before {content: "\e9dd";}
.ch-memo-check:before {content: "\e9de";}
.ch-memo-pen:before {content: "\e9df";}
.ch-memo-headset:before {content: "\e9e0";}
.ch-memo-search:before {content: "\e9e1";}
.ch-page-list:before {content: "\e9e2";}
.ch-survey:before {content: "\e9e3";}
.ch-page-list-pen:before {content: "\e9e4";}
.ch-page-mgmt:before {content: "\e9e5";}
.ch-scroll:before {content: "\e9e6";}
.ch-scroll-check:before {content: "\e9e7";}
.ch-scroll-won:before {content: "\e9e8";}
.ch-receipt:before {content: "\e9e9";}
.ch-receipt-won:before {content: "\e9ea";}
.ch-file:before {content: "\e9eb";}
.ch-file-check:before {content: "\e9ec";}
.ch-files:before {content: "\e9ed";}
.ch-file-lines:before {content: "\e9ee";}
.ch-file-lines-check:before {content: "\e9ef";}
.ch-file-plus:before {content: "\e9f0";}
.ch-file-minus:before {content: "\e9f1";}
.ch-file-upload:before {content: "\e9f2";}
.ch-file-download:before {content: "\e9f3";}
.ch-file-bar-graph:before {content: "\e9f4";}
.ch-file-search:before {content: "\e9f5";}
.ch-file-image:before {content: "\e9f6";}
.ch-file-won:before {content: "\e9f7";}
.ch-file-won-pen:before {content: "\e9f8";}
.ch-file-official:before {content: "\e9f9";}
.ch-file-mgmt:before {content: "\e9fa";}
.ch-file-ppt:before {content: "\e9fb";}
.ch-file-pdf:before {content: "\e9fc";}
.ch-file-zip:before {content: "\e9fd";}
.ch-file-word:before {content: "\e9fe";}
.ch-file-excel:before {content: "\e9ff";}
.ch-file-code:before {content: "\ea00";}
.ch-file-clip:before {content: "\ea01";}
.ch-clip:before {content: "\ea02";}
.ch-excel:before {content: "\ea03";}
.ch-word:before {content: "\ea04";}
.ch-ppt:before {content: "\ea05";}
.ch-folder:before {content: "\ea06";}
.ch-folder-file:before {content: "\ea07";}
.ch-folder-open:before {content: "\ea08";}
.ch-folder-plus:before {content: "\ea09";}
.ch-folder-minus:before {content: "\ea0a";}
.ch-folder-upload:before {content: "\ea0b";}
.ch-folder-download:before {content: "\ea0c";}
.ch-folder-mgmt:before {content: "\ea0d";}
.ch-omni:before {content: "\ea0e";}
.ch-omni-mgmt:before {content: "\ea0f";}
.ch-call:before {content: "\ea10";}
.ch-call-slash:before {content: "\ea11";}
.ch-call-ring:before {content: "\ea12";}
.ch-call-missed:before {content: "\ea13";}
.ch-call-back:before {content: "\ea14";}
.ch-call-return:before {content: "\ea15";}
.ch-call-change:before {content: "\ea16";}
.ch-call-ivr:before {content: "\ea17";}
.ch-call-clock-five:before {content: "\ea18";}
.ch-call-clock:before {content: "\ea19";}
.ch-call-graph:before {content: "\ea1a";}
.ch-call-ing:before {content: "\ea1b";}
.ch-call-in:before {content: "\ea1c";}
.ch-call-out:before {content: "\ea1d";}
.ch-call-inbound:before {content: "\ea1e";}
.ch-call-outbound:before {content: "\ea1f";}
.ch-inbound:before {content: "\ea20";}
.ch-outbound:before {content: "\ea21";}
.ch-chat:before {content: "\ea22";}
.ch-chat-slash:before {content: "\ea23";}
.ch-chat-all:before {content: "\ea24";}
.ch-chat-cmt:before {content: "\ea25";}
.ch-chat-cmt-slash:before {content: "\ea26";}
.ch-chat-word-slash:before {content: "\ea27";}
.ch-chat-question:before {content: "\ea28";}
.ch-chat-warning:before {content: "\ea29";}
.ch-qna:before {content: "\ea2a";}
.ch-message:before {content: "\ea2b";}
.ch-message-all:before {content: "\ea2c";}
.ch-message-sms:before {content: "\ea2d";}
.ch-counsel:before {content: "\ea2e";}
.ch-comment:before {content: "\ea2f";}
.ch-board:before {content: "\ea30";}
.ch-board-pen:before {content: "\ea31";}
.ch-hash-tag:before {content: "\ea32";}
.ch-mail:before {content: "\ea33";}
.ch-mail-all:before {content: "\ea34";}
.ch-mail-ban:before {content: "\ea35";}
.ch-mail-check:before {content: "\ea36";}
.ch-mail-clip:before {content: "\ea37";}
.ch-mail-receive:before {content: "\ea38";}
.ch-mail-send:before {content: "\ea39";}
.ch-mail-deliver:before {content: "\ea3a";}
.ch-mail-spam:before {content: "\ea3b";}
.ch-mail-in:before {content: "\ea3c";}
.ch-mail-empty:before {content: "\ea3d";}
.ch-mail-at-mark:before {content: "\ea3e";}
.ch-at-mark:before {content: "\ea3f";}
.ch-mailbox:before {content: "\ea40";}
.ch-paper-plane:before {content: "\ea41";}
.ch-paper-airplane:before {content: "\ea42";}
.ch-crm:before {content: "\ea43";}
.ch-phone:before {content: "\ea44";}
.ch-tablet:before {content: "\ea45";}
.ch-laptop:before {content: "\ea46";}
.ch-monitor:before {content: "\ea47";}
.ch-monitor-etc:before {content: "\ea48";}
.ch-monitor-edu:before {content: "\ea49";}
.ch-monitoring:before {content: "\ea4a";}
.ch-keyboard:before {content: "\ea4b";}
.ch-print:before {content: "\ea4c";}
.ch-floopy-disk:before {content: "\ea4d";}
.ch-code:before {content: "\ea4e";}
.ch-code-box:before {content: "\ea4f";}
.ch-server:before {content: "\ea50";}
.ch-database:before {content: "\ea51";}
.ch-wifi:before {content: "\ea52";}
.ch-wifi-slash:before {content: "\ea53";}
.ch-sitemap:before {content: "\ea54";}
.ch-laboratory:before {content: "\ea55";}
.ch-laboratory-check:before {content: "\ea56";}
.ch-gear:before {content: "\ea57";}
.ch-headset:before {content: "\ea58";}
.ch-headset-mic:before {content: "\ea59";}
.ch-telephone:before {content: "\ea5a";}
.ch-telephone-old:before {content: "\ea5b";}
.ch-camera:before {content: "\ea5c";}
.ch-search:before {content: "\ea5d";}
.ch-search-plus:before {content: "\ea5e";}
.ch-search-minus:before {content: "\ea5f";}
.ch-search-user:before {content: "\ea60";}
.ch-search-box:before {content: "\ea61";}
.ch-search-book:before {content: "\ea62";}
.ch-search-keyword:before {content: "\ea63";}
.ch-key:before {content: "\ea64";}
.ch-lock:before {content: "\ea65";}
.ch-lock-open:before {content: "\ea66";}
.ch-lock-key:before {content: "\ea67";}
.ch-lock-key-open:before {content: "\ea68";}
.ch-shield:before {content: "\ea69";}
.ch-shield-check:before {content: "\ea6a";}
.ch-shield-user:before {content: "\ea6b";}
.ch-shield-lock:before {content: "\ea6c";}
.ch-shield-gear:before {content: "\ea6d";}
.ch-shield-mgmt:before {content: "\ea6e";}
.ch-shield-slash:before {content: "\ea6f";}
.ch-virus:before {content: "\ea70";}
.ch-fire:before {content: "\ea71";}
.ch-cctv:before {content: "\ea72";}
.ch-siren:before {content: "\ea73";}
.ch-caution:before {content: "\ea74";}
.ch-ban:before {content: "\ea75";}
.ch-bell:before {content: "\ea76";}
.ch-bell-slash:before {content: "\ea77";}
.ch-speaker:before {content: "\ea78";}
.ch-speaker-slash:before {content: "\ea79";}
.ch-speaker-plus:before {content: "\ea7a";}
.ch-speaker-minus:before {content: "\ea7b";}
.ch-speaker-off:before {content: "\ea7c";}
.ch-speaker-on-small:before {content: "\ea7d";}
.ch-speaker-on-loud:before {content: "\ea7e";}
.ch-loudspeaker:before {content: "\ea7f";}
.ch-loudspeaker-on:before {content: "\ea80";}
.ch-mic:before {content: "\ea81";}
.ch-mic-on:before {content: "\ea82";}
.ch-mic-text:before {content: "\ea83";}
.ch-mic-file:before {content: "\ea84";}
.ch-play-bar-left:before {content: "\ea85";}
.ch-play-double-left:before {content: "\ea86";}
.ch-play:before {content: "\ea87";}
.ch-stop:before {content: "\ea88";}
.ch-pause:before {content: "\ea89";}
.ch-play-pause:before {content: "\ea8a";}
.ch-play-double-right:before {content: "\ea8b";}
.ch-play-bar-right:before {content: "\ea8c";}
.ch-user:before {content: "\ea8d";}
.ch-user-slash:before {content: "\ea8e";}
.ch-user-headset:before {content: "\ea8f";}
.ch-user-tie:before {content: "\ea90";}
.ch-user-plus:before {content: "\ea91";}
.ch-user-minus:before {content: "\ea92";}
.ch-user-in:before {content: "\ea93";}
.ch-user-out:before {content: "\ea94";}
.ch-user-transition:before {content: "\ea95";}
.ch-user-check:before {content: "\ea96";}
.ch-user-change:before {content: "\ea97";}
.ch-user-mgmt:before {content: "\ea98";}
.ch-users:before {content: "\ea99";}
.ch-users-mgmt:before {content: "\ea9a";}
.ch-user-flow:before {content: "\ea9b";}
.ch-group:before {content: "\ea9c";}
.ch-man:before {content: "\ea9d";}
.ch-woman:before {content: "\ea9e";}
.ch-user-circle:before {content: "\ea9f";}
.ch-page-user:before {content: "\eaa0";}
.ch-page-user-pen:before {content: "\eaa1";}
.ch-page-user-send:before {content: "\eaa2";}
.ch-page-user-over:before {content: "\eaa3";}
.ch-diary-contact:before {content: "\eaa4";}
.ch-user-id:before {content: "\eaa5";}
.ch-hivee:before {content: "\eaa6";}
.ch-face:before {content: "\eaa7";}
.ch-face-expressionless:before {content: "\eaa8";}
.ch-face-sad:before {content: "\eaa9";}
.ch-face-surprise:before {content: "\eaaa";}
.ch-eye:before {content: "\eaab";}
.ch-eye-slash:before {content: "\eaac";}
.ch-handshake:before {content: "\eaad";}
/* duotone */
.ch-duo.ch-home:before {content: "\e900"; opacity: 0.5;}
.ch-duo.ch-home:after {content: "\e901"; margin-left: -1em;}
.ch-duo.ch-shop:before {content: "\e902"; opacity: 0.5;}
.ch-duo.ch-shop:after {content: "\e903"; margin-left: -1em;}
.ch-duo.ch-building:before {content: "\e904"; opacity: 0.5;}
.ch-duo.ch-building:after {content: "\e905"; margin-left: -1em;}
.ch-duo.ch-buildings:before {content: "\e906"; opacity: 0.5;}
.ch-duo.ch-buildings:after {content: "\e907"; margin-left: -1em;}
.ch-duo.ch-car:before {content: "\e908"; opacity: 0.5;}
.ch-duo.ch-car:after {content: "\e909"; margin-left: -1em;}
.ch-duo.ch-bus:before {content: "\e90a"; opacity: 0.5;}
.ch-duo.ch-bus:after {content: "\e90b"; margin-left: -1em;}
.ch-duo.ch-subway:before {content: "\e90c";}
.ch-duo.ch-subway:after {content: "\e90d"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-truck:before {content: "\e90e"; opacity: 0.5;}
.ch-duo.ch-truck:after {content: "\e90f"; margin-left: -1em;}
.ch-duo.ch-trolley:before {content: "\e910"; opacity: 0.5;}
.ch-duo.ch-trolley:after {content: "\e911"; margin-left: -1em;}
.ch-duo.ch-shopping-cart:before {content: "\e912";}
.ch-duo.ch-shopping-cart:after {content: "\e913"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-airplane:before {content: "\e914";}
.ch-duo.ch-airplane:after {content: "\e915"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-roket:before {content: "\e916";}
.ch-duo.ch-roket:after {content: "\e917"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-space:before {content: "\e918"; opacity: 0.5;}
.ch-duo.ch-space:after {content: "\e919"; margin-left: -1em;}
.ch-duo.ch-solar-system:before {content: "\e91a";}
.ch-duo.ch-solar-system:after {content: "\e91b"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-saturn:before {content: "\e91c";}
.ch-duo.ch-saturn:after {content: "\e91d"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-globe:before {content: "\e91e"; opacity: 0.5;}
.ch-duo.ch-globe:after {content: "\e91f"; margin-left: -1em;}
.ch-duo.ch-light:before {content: "\e920";}
.ch-duo.ch-light:after {content: "\e921"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-dark:before {content: "\e922";}
.ch-duo.ch-cloud:before {content: "\e923";}
.ch-duo.ch-bolt:before {content: "\e924"; opacity: 0.5;}
.ch-duo.ch-bolt:after {content: "\e925"; margin-left: -1em;}
.ch-duo.ch-stars:before {content: "\e926";}
.ch-duo.ch-stars:after {content: "\e927"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-star:before {content: "\e928"; opacity: 0.5;}
.ch-duo.ch-star:after {content: "\e929"; margin-left: -1em;}
.ch-duo.ch-star-half:before {content: "\e92a"; opacity: 0.15;}
.ch-duo.ch-star-half:after {content: "\e92b"; margin-left: -1em;}
.ch-duo.ch-heart:before {content: "\e92c"; opacity: 0.5;}
.ch-duo.ch-heart:after {content: "\e92d"; margin-left: -1em;}
.ch-duo.ch-heart-half:before {content: "\e92e"; opacity: 0.15;}
.ch-duo.ch-heart-half:after {content: "\e92f"; margin-left: -1em;}
.ch-duo.ch-pin:before {content: "\e930"; opacity: 0.5;}
.ch-duo.ch-pin:after {content: "\e931"; margin-left: -1em;}
.ch-duo.ch-pin-circle:before {content: "\e932"; opacity: 0.5;}
.ch-duo.ch-pin-circle:after {content: "\e933"; margin-left: -1em;}
.ch-duo.ch-vacation:before {content: "\e934"; opacity: 0.5;}
.ch-duo.ch-vacation:after {content: "\e935"; margin-left: -1em;}
.ch-duo.ch-rest:before {content: "\e936"; opacity: 0.5;}
.ch-duo.ch-rest:after {content: "\e937"; margin-left: -1em;}
.ch-duo.ch-meal:before {content: "\e938"; opacity: 0.5;}
.ch-duo.ch-meal:after {content: "\e939"; margin-left: -1em;}
.ch-duo.ch-paperbag:before {content: "\e93a";}
.ch-duo.ch-paperbag:after {content: "\e93b"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-ticket:before {content: "\e93c"; opacity: 0.5;}
.ch-duo.ch-ticket:after {content: "\e93d"; margin-left: -1em;}
.ch-duo.ch-first-aid-kit:before {content: "\e93e"; opacity: 0.5;}
.ch-duo.ch-first-aid-kit:after {content: "\e93f"; margin-left: -1em;}
.ch-duo.ch-pill:before {content: "\e940";}
.ch-duo.ch-pill:after {content: "\e941"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-business-bag:before {content: "\e942"; opacity: 0.5;}
.ch-duo.ch-business-bag:after {content: "\e943"; margin-left: -1em;}
.ch-duo.ch-credit-card:before {content: "\e944";}
.ch-duo.ch-credit-card:after {content: "\e945"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-money-bill:before {content: "\e946";}
.ch-duo.ch-money-bill:after {content: "\e947"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-money-won:before {content: "\e948";}
.ch-duo.ch-money-won:after {content: "\e949"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-stamp:before {content: "\e94a"; opacity: 0.5;}
.ch-duo.ch-stamp:after {content: "\e94b"; margin-left: -1em;}
.ch-duo.ch-education:before {content: "\e94c"; opacity: 0.5;}
.ch-duo.ch-education:after {content: "\e94d"; margin-left: -1em;}
.ch-duo.ch-book:before {content: "\e94e";}
.ch-duo.ch-book:after {content: "\e94f"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-book-open:before {content: "\e950"; opacity: 0.5;}
.ch-duo.ch-book-open:after {content: "\e951"; margin-left: -1em;}
.ch-duo.ch-trash-can:before {content: "\e952";}
.ch-duo.ch-trash-can:after {content: "\e953"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-clock-four:before {content: "\e954"; opacity: 0.5;}
.ch-duo.ch-clock-four:after {content: "\e955"; margin-left: -1em;}
.ch-duo.ch-clock:before {content: "\e956"; opacity: 0.5;}
.ch-duo.ch-clock:after {content: "\e957"; margin-left: -1em;}
.ch-duo.ch-hourglass:before {content: "\e958"; opacity: 0.5;}
.ch-duo.ch-hourglass:after {content: "\e959"; margin-left: -1em;}
.ch-duo.ch-record:before {content: "\e95a"; opacity: 0.5;}
.ch-duo.ch-record:after {content: "\e95b"; margin-left: -1em;}
.ch-duo.ch-calendar-clock:before {content: "\e95c"; opacity: 0.5;}
.ch-duo.ch-calendar-clock:after {content: "\e95d"; margin-left: -1em;}
.ch-duo.ch-calendar-today:before {content: "\e95e";}
.ch-duo.ch-calendar-today:after {content: "\e95f"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-calendar-week:before {content: "\e960";}
.ch-duo.ch-calendar-week:after {content: "\e961"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-calendar-month:before {content: "\e962";}
.ch-duo.ch-calendar-month:after {content: "\e963"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-calendar-available:before {content: "\e964";}
.ch-duo.ch-calendar-available:after {content: "\e965"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-calendar-cancle:before {content: "\e966";}
.ch-duo.ch-calendar-cancle:after {content: "\e967"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-calendar-star:before {content: "\e968";}
.ch-duo.ch-calendar-star:after {content: "\e969"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-calendar-event:before {content: "\e96a";}
.ch-duo.ch-calendar-event:after {content: "\e96b"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-calendar-edit:before {content: "\e96c";}
.ch-duo.ch-calendar-edit:after {content: "\e96d"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-calendar-dayoff:before {content: "\e96e";}
.ch-duo.ch-calendar-dayoff:after {content: "\e96f"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-arrow-up-left:before {content: "\e970"; opacity: 0.5;}
.ch-duo.ch-arrow-up-left:after {content: "\e971"; margin-left: -1em;}
.ch-duo.ch-arrow-up-right:before {content: "\e972"; opacity: 0.5;}
.ch-duo.ch-arrow-up-right:after {content: "\e973"; margin-left: -1em;}
.ch-duo.ch-arrow-down-left:before {content: "\e974"; opacity: 0.5;}
.ch-duo.ch-arrow-down-left:after {content: "\e975"; margin-left: -1em;}
.ch-duo.ch-arrow-down-right:before {content: "\e976"; opacity: 0.5;}
.ch-duo.ch-arrow-down-right:after {content: "\e977"; margin-left: -1em;}
.ch-duo.ch-arrow-up:before {content: "\e978"; opacity: 0.5;}
.ch-duo.ch-arrow-up:after {content: "\e979"; margin-left: -1em;}
.ch-duo.ch-arrow-down:before {content: "\e97a"; opacity: 0.5;}
.ch-duo.ch-arrow-down:after {content: "\e97b"; margin-left: -1em;}
.ch-duo.ch-arrow-left:before {content: "\e97c"; opacity: 0.5;}
.ch-duo.ch-arrow-left:after {content: "\e97d"; margin-left: -1em;}
.ch-duo.ch-arrow-right:before {content: "\e97e"; opacity: 0.5;}
.ch-duo.ch-arrow-right:after {content: "\e97f"; margin-left: -1em;}
.ch-duo.ch-arrow-over-flip:before {content: "\e980";}
.ch-duo.ch-arrow-over-flip:after {content: "\e981"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-arrow-over:before {content: "\e982";}
.ch-duo.ch-arrow-over:after {content: "\e983"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-arrow-rotate:before {content: "\e984"; opacity: 0.5;}
.ch-duo.ch-arrow-rotate:after {content: "\e985"; margin-left: -1em;}
.ch-duo.ch-arrow-change:before {content: "\e986"; opacity: 0.5;}
.ch-duo.ch-arrow-change:after {content: "\e987"; margin-left: -1em;}
.ch-duo.ch-full:before {content: "\e988";}
.ch-duo.ch-full:after {content: "\e989"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-reduce:before {content: "\e98a"; opacity: 0.5;}
.ch-duo.ch-reduce:after {content: "\e98b"; margin-left: -1em;}
.ch-duo.ch-move:before {content: "\e98c"; opacity: 0.5;}
.ch-duo.ch-move:after {content: "\e98d"; margin-left: -1em;}
.ch-duo.ch-square-move:before {content: "\e98e";}
.ch-duo.ch-square-move:after {content: "\e98f"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-zoom-in:before {content: "\e990";}
.ch-duo.ch-zoom-in:after {content: "\e991"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-zoom-out:before {content: "\e992";}
.ch-duo.ch-zoom-out:after {content: "\e993"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-wide-vertical:before {content: "\e994"; opacity: 0.5;}
.ch-duo.ch-wide-vertical:after {content: "\e995"; margin-left: -1em;}
.ch-duo.ch-slim-vertical:before {content: "\e996"; opacity: 0.5;}
.ch-duo.ch-slim-vertical:after {content: "\e997"; margin-left: -1em;}
.ch-duo.ch-wide:before {content: "\e998"; opacity: 0.5;}
.ch-duo.ch-wide:after {content: "\e999"; margin-left: -1em;}
.ch-duo.ch-slim:before {content: "\e99a"; opacity: 0.5;}
.ch-duo.ch-slim:after {content: "\e99b"; margin-left: -1em;}
.ch-duo.ch-chevron-up:before {content: "\e99c";}
.ch-duo.ch-chevron-down:before {content: "\e99d";}
.ch-duo.ch-chevron-left:before {content: "\e99e";}
.ch-duo.ch-chevron-right:before {content: "\e99f";}
.ch-duo.ch-chevron-double-left:before {content: "\e9a0"; opacity: 0.5;}
.ch-duo.ch-chevron-double-left:after {content: "\e9a1"; margin-left: -1em;}
.ch-duo.ch-chevron-double-right:before {content: "\e9a2"; opacity: 0.5;}
.ch-duo.ch-chevron-double-right:after {content: "\e9a3"; margin-left: -1em;}
.ch-duo.ch-chevron-up-s:before {content: "\e9a4";}
.ch-duo.ch-chevron-down-s:before {content: "\e9a5";}
.ch-duo.ch-chevron-left-s:before {content: "\e9a6";}
.ch-duo.ch-chevron-right-s:before {content: "\e9a7";}
.ch-duo.ch-chevron-double-left-s:before {content: "\e9a8";}
.ch-duo.ch-chevron-double-left-s:after {content: "\e9a9"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-chevron-double-right-s:before {content: "\e9aa";}
.ch-duo.ch-chevron-double-right-s:after {content: "\e9ab"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-triangle-up:before {content: "\e9ac";}
.ch-duo.ch-triangle-up:after {content: "\e9ad"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-triangle-down:before {content: "\e9ae";}
.ch-duo.ch-triangle-down:after {content: "\e9af"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-triangle-left:before {content: "\e9b0";}
.ch-duo.ch-triangle-left:after {content: "\e9b1"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-triangle-right:before {content: "\e9b2";}
.ch-duo.ch-triangle-right:after {content: "\e9b3"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-triangle-up-down:before {content: "\e9b4";}
.ch-duo.ch-triangle-up-down:after {content: "\e9b5"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-triangle-bar-up:before {content: "\e9b6"; opacity: 0.5;}
.ch-duo.ch-triangle-bar-up:after {content: "\e9b7"; margin-left: -1em;}
.ch-duo.ch-triangle-bar-down:before {content: "\e9b8"; opacity: 0.5;}
.ch-duo.ch-triangle-bar-down:after {content: "\e9b9"; margin-left: -1em;}
.ch-duo.ch-triangle-bar-left:before {content: "\e9ba"; opacity: 0.5;}
.ch-duo.ch-triangle-bar-left:after {content: "\e9bb"; margin-left: -1em;}
.ch-duo.ch-triangle-bar-right:before {content: "\e9bc"; opacity: 0.5;}
.ch-duo.ch-triangle-bar-right:after {content: "\e9bd"; margin-left: -1em;}
.ch-duo.ch-arrow-up-l:before {content: "\e9be";}
.ch-duo.ch-arrow-up-l:after {content: "\e9bf"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-arrow-down-l:before {content: "\e9c0";}
.ch-duo.ch-arrow-down-l:after {content: "\e9c1"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-arrow-left-l:before {content: "\e9c2";}
.ch-duo.ch-arrow-left-l:after {content: "\e9c3"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-arrow-right-l:before {content: "\e9c4";}
.ch-duo.ch-arrow-right-l:after {content: "\e9c5"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-share-left:before {content: "\e9c6";}
.ch-duo.ch-share-left:after {content: "\e9c7"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-share-right:before {content: "\e9c8";}
.ch-duo.ch-share-right:after {content: "\e9c9"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-share-double-left:before {content: "\e9ca"; opacity: 0.5;}
.ch-duo.ch-share-double-left:after {content: "\e9cb"; margin-left: -1em;}
.ch-duo.ch-share-double-right:before {content: "\e9cc"; opacity: 0.5;}
.ch-duo.ch-share-double-right:after {content: "\e9cd"; margin-left: -1em;}
.ch-duo.ch-arrow-turn-down-circle:before {content: "\e9ce";}
.ch-duo.ch-arrow-turn-down-circle:after {content: "\e9cf"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-arrow-turn-up-circle:before {content: "\e9d0";}
.ch-duo.ch-arrow-turn-up-circle:after {content: "\e9d1"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-arrow-turn-down-right:before {content: "\e9d2";}
.ch-duo.ch-arrow-turn-down-right:after {content: "\e9d3"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-arrow-turn-up-right:before {content: "\e9d4";}
.ch-duo.ch-arrow-turn-up-right:after {content: "\e9d5"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-login:before {content: "\e9d6"; opacity: 0.5;}
.ch-duo.ch-login:after {content: "\e9d7"; margin-left: -1em;}
.ch-duo.ch-logout:before {content: "\e9d8";}
.ch-duo.ch-logout:after {content: "\e9d9"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-link-in:before {content: "\e9da"; opacity: 0.5;}
.ch-duo.ch-link-in:after {content: "\e9db"; margin-left: -1em;}
.ch-duo.ch-share-square:before {content: "\e9dc"; opacity: 0.5;}
.ch-duo.ch-share-square:after {content: "\e9dd"; margin-left: -1em;}
.ch-duo.ch-share:before {content: "\e9de";}
.ch-duo.ch-share:after {content: "\e9df"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-link:before {content: "\e9e0";}
.ch-duo.ch-link:after {content: "\e9e1"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-link-s:before {content: "\e9e2";}
.ch-duo.ch-link-s:after {content: "\e9e3"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-check-square:before {content: "\e9e4"; opacity: 0.5;}
.ch-duo.ch-check-square:after {content: "\e9e5"; margin-left: -1em;}
.ch-duo.ch-check:before {content: "\e9e6";}
.ch-duo.ch-square-check:before {content: "\e9e7"; opacity: 0.5;}
.ch-duo.ch-square-check:after {content: "\e9e8"; margin-left: -1em;}
.ch-duo.ch-circle-check:before {content: "\e9e9"; opacity: 0.5;}
.ch-duo.ch-circle-check:after {content: "\e9ea"; margin-left: -1em;}
.ch-duo.ch-plus:before {content: "\e9eb";}
.ch-duo.ch-square-plus:before {content: "\e9ec"; opacity: 0.5;}
.ch-duo.ch-square-plus:after {content: "\e9ed"; margin-left: -1em;}
.ch-duo.ch-circle-plus:before {content: "\e9ee"; opacity: 0.5;}
.ch-duo.ch-circle-plus:after {content: "\e9ef"; margin-left: -1em;}
.ch-duo.ch-minus:before {content: "\e9f0";}
.ch-duo.ch-square-minus:before {content: "\e9f1"; opacity: 0.5;}
.ch-duo.ch-square-minus:after {content: "\e9f2"; margin-left: -1em;}
.ch-duo.ch-circle-minus:before {content: "\e9f3"; opacity: 0.5;}
.ch-duo.ch-circle-minus:after {content: "\e9f4"; margin-left: -1em;}
.ch-duo.ch-xmark:before {content: "\e9f5";}
.ch-duo.ch-circle-xmark:before {content: "\e9f6"; opacity: 0.5;}
.ch-duo.ch-circle-xmark:after {content: "\e9f7"; margin-left: -1em;}
.ch-duo.ch-question:before {content: "\e9f8"; opacity: 0.5;}
.ch-duo.ch-question:after {content: "\e9f9"; margin-left: -1em;}
.ch-duo.ch-circle-question:before {content: "\e9fa"; opacity: 0.5;}
.ch-duo.ch-circle-question:after {content: "\e9fb"; margin-left: -1em;}
.ch-duo.ch-error:before {content: "\e9fc"; opacity: 0.5;}
.ch-duo.ch-error:after {content: "\e9fd"; margin-left: -1em;}
.ch-duo.ch-circle-error:before {content: "\e9fe"; opacity: 0.5;}
.ch-duo.ch-circle-error:after {content: "\e9ff"; margin-left: -1em;}
.ch-duo.ch-info:before {content: "\ea00"; opacity: 0.5;}
.ch-duo.ch-info:after {content: "\ea01"; margin-left: -1em;}
.ch-duo.ch-circle-info:before {content: "\ea02"; opacity: 0.5;}
.ch-duo.ch-circle-info:after {content: "\ea03"; margin-left: -1em;}
.ch-duo.ch-circle-one:before {content: "\ea04"; opacity: 0.4;}
.ch-duo.ch-circle-one:after {content: "\ea05"; margin-left: -1em;}
.ch-duo.ch-circle-two:before {content: "\ea06"; opacity: 0.5;}
.ch-duo.ch-circle-two:after {content: "\ea07"; margin-left: -1em;}
.ch-duo.ch-circle-three:before {content: "\ea08"; opacity: 0.5;}
.ch-duo.ch-circle-three:after {content: "\ea09"; margin-left: -1em;}
.ch-duo.ch-circle-four:before {content: "\ea0a"; opacity: 0.5;}
.ch-duo.ch-circle-four:after {content: "\ea0b"; margin-left: -1em;}
.ch-duo.ch-circle-five:before {content: "\ea0c"; opacity: 0.5;}
.ch-duo.ch-circle-five:after {content: "\ea0d"; margin-left: -1em;}
.ch-duo.ch-circle-six:before {content: "\ea0e"; opacity: 0.5;}
.ch-duo.ch-circle-six:after {content: "\ea0f"; margin-left: -1em;}
.ch-duo.ch-circle-seven:before {content: "\ea10"; opacity: 0.5;}
.ch-duo.ch-circle-seven:after {content: "\ea11"; margin-left: -1em;}
.ch-duo.ch-circle-eight:before {content: "\ea12"; opacity: 0.5;}
.ch-duo.ch-circle-eight:after {content: "\ea13"; margin-left: -1em;}
.ch-duo.ch-circle-nine:before {content: "\ea14"; opacity: 0.5;}
.ch-duo.ch-circle-nine:after {content: "\ea15"; margin-left: -1em;}
.ch-duo.ch-circle-ten:before {content: "\ea16"; opacity: 0.5;}
.ch-duo.ch-circle-ten:after {content: "\ea17"; margin-left: -1em;}
.ch-duo.ch-more-horizontal:before {content: "\ea18"; opacity: 0.5;}
.ch-duo.ch-more-horizontal:after {content: "\ea19"; margin-left: -1em;}
.ch-duo.ch-more-vertical:before {content: "\ea1a"; opacity: 0.5;}
.ch-duo.ch-more-vertical:after {content: "\ea1b"; margin-left: -1em;}
.ch-duo.ch-bars:before {content: "\ea1c"; opacity: 0.5;}
.ch-duo.ch-bars:after {content: "\ea1d"; margin-left: -1em;}
.ch-duo.ch-full-screen:before {content: "\ea1e"; opacity: 0.5;}
.ch-duo.ch-full-screen:after {content: "\ea1f"; margin-left: -1em;}
.ch-duo.ch-image-rotate:before {content: "\ea20";}
.ch-duo.ch-image-rotate:after {content: "\ea21"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-filp-vertical:before {content: "\ea22";}
.ch-duo.ch-filp-vertical:after {content: "\ea23"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-filp-horizontal:before {content: "\ea24";}
.ch-duo.ch-filp-horizontal:after {content: "\ea25"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-category:before {content: "\ea26"; opacity: 0.5;}
.ch-duo.ch-category:after {content: "\ea27"; margin-left: -1em;}
.ch-duo.ch-dashboard:before {content: "\ea28";}
.ch-duo.ch-dashboard:after {content: "\ea29"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-dashboard-plus:before {content: "\ea2a";}
.ch-duo.ch-dashboard-plus:after {content: "\ea2b"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-new-tab:before {content: "\ea2c"; opacity: 0.5;}
.ch-duo.ch-new-tab:after {content: "\ea2d"; margin-left: -1em;}
.ch-duo.ch-sidebar:before {content: "\ea2e"; opacity: 0.5;}
.ch-duo.ch-sidebar:after {content: "\ea2f"; margin-left: -1em;}
.ch-duo.ch-spinner-dot:before {content: "\ea30";}
.ch-duo.ch-spinner-dot:after {content: "\ea31"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-spinner-line:before {content: "\ea32";}
.ch-duo.ch-spinner-line:after {content: "\ea33"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-pie-chart:before {content: "\ea34";}
.ch-duo.ch-pie-chart:after {content: "\ea35"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-donut-chart:before {content: "\ea36"; opacity: 0.5;}
.ch-duo.ch-donut-chart:after {content: "\ea37"; margin-left: -1em;}
.ch-duo.ch-bar-graph:before {content: "\ea38";}
.ch-duo.ch-bar-graph:after {content: "\ea39"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-bar-graph-up:before {content: "\ea3a"; opacity: 0.5;}
.ch-duo.ch-bar-graph-up:after {content: "\ea3b"; margin-left: -1em;}
.ch-duo.ch-bar-graph-down:before {content: "\ea3c"; opacity: 0.5;}
.ch-duo.ch-bar-graph-down:after {content: "\ea3d"; margin-left: -1em;}
.ch-duo.ch-bar-graph-irregularity:before {content: "\ea3e"; opacity: 0.5;}
.ch-duo.ch-bar-graph-irregularity:after {content: "\ea3f"; margin-left: -1em;}
.ch-duo.ch-bar-line-graph:before {content: "\ea40"; opacity: 0.5;}
.ch-duo.ch-bar-line-graph:after {content: "\ea41"; margin-left: -1em;}
.ch-duo.ch-wave-graph:before {content: "\ea42"; opacity: 0.5;}
.ch-duo.ch-wave-graph:after {content: "\ea43"; margin-left: -1em;}
.ch-duo.ch-line-graph-up:before {content: "\ea44"; opacity: 0.5;}
.ch-duo.ch-line-graph-up:after {content: "\ea45"; margin-left: -1em;}
.ch-duo.ch-line-graph-down:before {content: "\ea46"; opacity: 0.5;}
.ch-duo.ch-line-graph-down:after {content: "\ea47"; margin-left: -1em;}
.ch-duo.ch-line-graph-up-down:before {content: "\ea48"; opacity: 0.5;}
.ch-duo.ch-line-graph-up-down:after {content: "\ea49"; margin-left: -1em;}
.ch-duo.ch-line-wave-graph:before {content: "\ea4a"; opacity: 0.5;}
.ch-duo.ch-line-wave-graph:after {content: "\ea4b"; margin-left: -1em;}
.ch-duo.ch-upload:before {content: "\ea4c"; opacity: 0.5;}
.ch-duo.ch-upload:after {content: "\ea4d"; margin-left: -1em;}
.ch-duo.ch-download:before {content: "\ea4e"; opacity: 0.5;}
.ch-duo.ch-download:after {content: "\ea4f"; margin-left: -1em;}
.ch-duo.ch-data-upload:before {content: "\ea50"; opacity: 0.5;}
.ch-duo.ch-data-upload:after {content: "\ea51"; margin-left: -1em;}
.ch-duo.ch-data-download:before {content: "\ea52"; opacity: 0.5;}
.ch-duo.ch-data-download:after {content: "\ea53"; margin-left: -1em;}
.ch-duo.ch-filter:before {content: "\ea54";}
.ch-duo.ch-filter-slash:before {content: "\ea55";}
.ch-duo.ch-filter-slash:after {content: "\ea56"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-filter-bar:before {content: "\ea57"; opacity: 0.5;}
.ch-duo.ch-filter-bar:after {content: "\ea58"; margin-left: -1em;}
.ch-duo.ch-list-bullet:before {content: "\ea59"; opacity: 0.5;}
.ch-duo.ch-list-bullet:after {content: "\ea5a"; margin-left: -1em;}
.ch-duo.ch-list-check:before {content: "\ea5b"; opacity: 0.5;}
.ch-duo.ch-list-check:after {content: "\ea5c"; margin-left: -1em;}
.ch-duo.ch-list-ol:before {content: "\ea5d"; opacity: 0.5;}
.ch-duo.ch-list-ol:after {content: "\ea5e"; margin-left: -1em;}
.ch-duo.ch-list-up:before {content: "\ea5f"; opacity: 0.5;}
.ch-duo.ch-list-up:after {content: "\ea60"; margin-left: -1em;}
.ch-duo.ch-list-down:before {content: "\ea61"; opacity: 0.5;}
.ch-duo.ch-list-down:after {content: "\ea62"; margin-left: -1em;}
.ch-duo.ch-list-table:before {content: "\ea63"; opacity: 0.5;}
.ch-duo.ch-list-table:after {content: "\ea64"; margin-left: -1em;}
.ch-duo.ch-list-table-cells:before {content: "\ea65"; opacity: 0.5;}
.ch-duo.ch-list-table-cells:after {content: "\ea66"; margin-left: -1em;}
.ch-duo.ch-template:before {content: "\ea67"; opacity: 0.5;}
.ch-duo.ch-template:after {content: "\ea68"; margin-left: -1em;}
.ch-duo.ch-template-mgmt:before {content: "\ea69";}
.ch-duo.ch-template-mgmt:after {content: "\ea6a"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-image:before {content: "\ea6b"; opacity: 0.5;}
.ch-duo.ch-image:after {content: "\ea6c"; margin-left: -1em;}
.ch-duo.ch-text:before {content: "\ea6d"; opacity: 0.5;}
.ch-duo.ch-text:after {content: "\ea6e"; margin-left: -1em;}
.ch-duo.ch-font-size:before {content: "\ea6f";}
.ch-duo.ch-font-size:after {content: "\ea70"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-pen:before {content: "\ea71"; opacity: 0.5;}
.ch-duo.ch-pen:after {content: "\ea72"; margin-left: -1em;}
.ch-duo.ch-write:before {content: "\ea73"; opacity: 0.5;}
.ch-duo.ch-write:after {content: "\ea74"; margin-left: -1em;}
.ch-duo.ch-edit:before {content: "\ea75";}
.ch-duo.ch-edit:after {content: "\ea76"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-mark:before {content: "\ea77";}
.ch-duo.ch-mark-list:before {content: "\ea78"; opacity: 0.5;}
.ch-duo.ch-mark-list:after {content: "\ea79"; margin-left: -1em;}
.ch-duo.ch-tag:before {content: "\ea7a";}
.ch-duo.ch-tag-name:before {content: "\ea7b"; opacity: 0.5;}
.ch-duo.ch-tag-name:after {content: "\ea7c"; margin-left: -1em;}
.ch-duo.ch-tag-mgmt:before {content: "\ea7d"; opacity: 0.5;}
.ch-duo.ch-tag-mgmt:after {content: "\ea7e"; margin-left: -1em;}
.ch-duo.ch-bookmark:before {content: "\ea7f";}
.ch-duo.ch-bookmark-plus:before {content: "\ea80"; opacity: 0.5;}
.ch-duo.ch-bookmark-plus:after {content: "\ea81"; margin-left: -1em;}
.ch-duo.ch-bookmark-minus:before {content: "\ea82"; opacity: 0.5;}
.ch-duo.ch-bookmark-minus:after {content: "\ea83"; margin-left: -1em;}
.ch-duo.ch-box:before {content: "\ea84";}
.ch-duo.ch-box:after {content: "\ea85"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-file-box:before {content: "\ea86";}
.ch-duo.ch-file-box:after {content: "\ea87"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-dask-box:before {content: "\ea88"; opacity: 0.5;}
.ch-duo.ch-dask-box:after {content: "\ea89"; margin-left: -1em;}
.ch-duo.ch-archive:before {content: "\ea8a";}
.ch-duo.ch-archive:after {content: "\ea8b"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-archive-up:before {content: "\ea8c"; opacity: 0.5;}
.ch-duo.ch-archive-up:after {content: "\ea8d"; margin-left: -1em;}
.ch-duo.ch-archive-down:before {content: "\ea8e"; opacity: 0.5;}
.ch-duo.ch-archive-down:after {content: "\ea8f"; margin-left: -1em;}
.ch-duo.ch-archive-file:before {content: "\ea90"; opacity: 0.5;}
.ch-duo.ch-archive-file:after {content: "\ea91"; margin-left: -1em;}
.ch-duo.ch-page:before {content: "\ea92"; opacity: 0.5;}
.ch-duo.ch-page:after {content: "\ea93"; margin-left: -1em;}
.ch-duo.ch-page-check:before {content: "\ea94"; opacity: 0.5;}
.ch-duo.ch-page-check:after {content: "\ea95"; margin-left: -1em;}
.ch-duo.ch-page-pen:before {content: "\ea96"; opacity: 0.5;}
.ch-duo.ch-page-pen:after {content: "\ea97"; margin-left: -1em;}
.ch-duo.ch-page-sign-pen:before {content: "\ea98"; opacity: 0.5;}
.ch-duo.ch-page-sign-pen:after {content: "\ea99"; margin-left: -1em;}
.ch-duo.ch-page-check-pen:before {content: "\ea9a"; opacity: 0.5;}
.ch-duo.ch-page-check-pen:after {content: "\ea9b"; margin-left: -1em;}
.ch-duo.ch-page-rewrite-pen:before {content: "\ea9c"; opacity: 0.5;}
.ch-duo.ch-page-rewrite-pen:after {content: "\ea9d"; margin-left: -1em;}
.ch-duo.ch-doc-dayoff:before {content: "\ea9e"; opacity: 0.5;}
.ch-duo.ch-doc-dayoff:after {content: "\ea9f"; margin-left: -1em;}
.ch-duo.ch-doc-dayoff-change:before {content: "\eaa0"; opacity: 0.5;}
.ch-duo.ch-doc-dayoff-change:after {content: "\eaa1"; margin-left: -1em;}
.ch-duo.ch-doc-pen:before {content: "\eaa2"; opacity: 0.5;}
.ch-duo.ch-doc-pen:after {content: "\eaa3"; margin-left: -1em;}
.ch-duo.ch-doc-won-pen:before {content: "\eaa4"; opacity: 0.5;}
.ch-duo.ch-doc-won-pen:after {content: "\eaa5"; margin-left: -1em;}
.ch-duo.ch-doc-official-pen:before {content: "\eaa6"; opacity: 0.5;}
.ch-duo.ch-doc-official-pen:after {content: "\eaa7"; margin-left: -1em;}
.ch-duo.ch-memo:before {content: "\eaa8"; opacity: 0.5;}
.ch-duo.ch-memo:after {content: "\eaa9"; margin-left: -1em;}
.ch-duo.ch-memo-check:before {content: "\eaaa"; opacity: 0.5;}
.ch-duo.ch-memo-check:after {content: "\eaab"; margin-left: -1em;}
.ch-duo.ch-memo-pen:before {content: "\eaac"; opacity: 0.5;}
.ch-duo.ch-memo-pen:after {content: "\eaad"; margin-left: -1em;}
.ch-duo.ch-memo-headset:before {content: "\eaae"; opacity: 0.5;}
.ch-duo.ch-memo-headset:after {content: "\eaaf"; margin-left: -1em;}
.ch-duo.ch-memo-search:before {content: "\eab0"; opacity: 0.5;}
.ch-duo.ch-memo-search:after {content: "\eab1"; margin-left: -1em;}
.ch-duo.ch-page-list:before {content: "\eab2"; opacity: 0.5;}
.ch-duo.ch-page-list:after {content: "\eab3"; margin-left: -1em;}
.ch-duo.ch-survey:before {content: "\eab4"; opacity: 0.5;}
.ch-duo.ch-survey:after {content: "\eab5"; margin-left: -1em;}
.ch-duo.ch-page-list-pen:before {content: "\eab6";}
.ch-duo.ch-page-list-pen:after {content: "\eab7"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-page-mgmt:before {content: "\eab8"; opacity: 0.5;}
.ch-duo.ch-page-mgmt:after {content: "\eab9"; margin-left: -1em;}
.ch-duo.ch-scroll:before {content: "\eaba";}
.ch-duo.ch-scroll:after {content: "\eabb"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-scroll-check:before {content: "\eabc"; opacity: 0.5;}
.ch-duo.ch-scroll-check:after {content: "\eabd"; margin-left: -1em;}
.ch-duo.ch-scroll-won:before {content: "\eabe"; opacity: 0.5;}
.ch-duo.ch-scroll-won:after {content: "\eabf"; margin-left: -1em;}
.ch-duo.ch-receipt:before {content: "\eac0"; opacity: 0.5;}
.ch-duo.ch-receipt:after {content: "\eac1"; margin-left: -1em;}
.ch-duo.ch-receipt-won:before {content: "\eac2"; opacity: 0.5;}
.ch-duo.ch-receipt-won:after {content: "\eac3"; margin-left: -1em;}
.ch-duo.ch-file:before {content: "\eac4";}
.ch-duo.ch-file:after {content: "\eac5"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-file-check:before {content: "\eac6"; opacity: 0.5;}
.ch-duo.ch-file-check:after {content: "\eac7"; margin-left: -1em;}
.ch-duo.ch-files:before {content: "\eac8";}
.ch-duo.ch-files:after {content: "\eac9"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-file-lines:before {content: "\eaca"; opacity: 0.5;}
.ch-duo.ch-file-lines:after {content: "\eacb"; margin-left: -1em;}
.ch-duo.ch-file-lines-check:before {content: "\eacc"; opacity: 0.5;}
.ch-duo.ch-file-lines-check:after {content: "\eacd"; margin-left: -1em;}
.ch-duo.ch-file-plus:before {content: "\eace"; opacity: 0.5;}
.ch-duo.ch-file-plus:after {content: "\eacf"; margin-left: -1em;}
.ch-duo.ch-file-minus:before {content: "\ead0"; opacity: 0.5;}
.ch-duo.ch-file-minus:after {content: "\ead1"; margin-left: -1em;}
.ch-duo.ch-file-upload:before {content: "\ead2"; opacity: 0.5;}
.ch-duo.ch-file-upload:after {content: "\ead3"; margin-left: -1em;}
.ch-duo.ch-file-download:before {content: "\ead4"; opacity: 0.5;}
.ch-duo.ch-file-download:after {content: "\ead5"; margin-left: -1em;}
.ch-duo.ch-file-bar-graph:before {content: "\ead6"; opacity: 0.5;}
.ch-duo.ch-file-bar-graph:after {content: "\ead7"; margin-left: -1em;}
.ch-duo.ch-file-search:before {content: "\ead8"; opacity: 0.5;}
.ch-duo.ch-file-search:after {content: "\ead9"; margin-left: -1em;}
.ch-duo.ch-file-image:before {content: "\eada"; opacity: 0.5;}
.ch-duo.ch-file-image:after {content: "\eadb"; margin-left: -1em;}
.ch-duo.ch-file-won:before {content: "\eadc"; opacity: 0.5;}
.ch-duo.ch-file-won:after {content: "\eadd"; margin-left: -1em;}
.ch-duo.ch-file-won-pen:before {content: "\eade"; opacity: 0.5;}
.ch-duo.ch-file-won-pen:after {content: "\eadf"; margin-left: -1em;}
.ch-duo.ch-file-official:before {content: "\eae0"; opacity: 0.5;}
.ch-duo.ch-file-official:after {content: "\eae1"; margin-left: -1em;}
.ch-duo.ch-file-mgmt:before {content: "\eae2"; opacity: 0.5;}
.ch-duo.ch-file-mgmt:after {content: "\eae3"; margin-left: -1em;}
.ch-duo.ch-file-ppt:before {content: "\eae4"; opacity: 0.5;}
.ch-duo.ch-file-ppt:after {content: "\eae5"; margin-left: -1em;}
.ch-duo.ch-file-pdf:before {content: "\eae6"; opacity: 0.5;}
.ch-duo.ch-file-pdf:after {content: "\eae7"; margin-left: -1em;}
.ch-duo.ch-file-zip:before {content: "\eae8"; opacity: 0.5;}
.ch-duo.ch-file-zip:after {content: "\eae9"; margin-left: -1em;}
.ch-duo.ch-file-word:before {content: "\eaea"; opacity: 0.5;}
.ch-duo.ch-file-word:after {content: "\eaeb"; margin-left: -1em;}
.ch-duo.ch-file-excel:before {content: "\eaec"; opacity: 0.5;}
.ch-duo.ch-file-excel:after {content: "\eaed"; margin-left: -1em;}
.ch-duo.ch-file-code:before {content: "\eaee"; opacity: 0.5;}
.ch-duo.ch-file-code:after {content: "\eaef"; margin-left: -1em;}
.ch-duo.ch-file-clip:before {content: "\eaf0"; opacity: 0.5;}
.ch-duo.ch-file-clip:after {content: "\eaf1"; margin-left: -1em;}
.ch-duo.ch-clip:before {content: "\eaf2";}
.ch-duo.ch-excel:before {content: "\eaf3";}
.ch-duo.ch-excel:after {content: "\eaf4"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-word:before {content: "\eaf5";}
.ch-duo.ch-word:after {content: "\eaf6"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-ppt:before {content: "\eaf7";}
.ch-duo.ch-ppt:after {content: "\eaf8"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-folder:before {content: "\eaf9";}
.ch-duo.ch-folder:after {content: "\eafa"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-folder-file:before {content: "\eafb"; opacity: 0.5;}
.ch-duo.ch-folder-file:after {content: "\eafc"; margin-left: -1em;}
.ch-duo.ch-folder-open:before {content: "\eafd";}
.ch-duo.ch-folder-open:after {content: "\eafe"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-folder-plus:before {content: "\eaff"; opacity: 0.5;}
.ch-duo.ch-folder-plus:after {content: "\eb00"; margin-left: -1em;}
.ch-duo.ch-folder-minus:before {content: "\eb01"; opacity: 0.5;}
.ch-duo.ch-folder-minus:after {content: "\eb02"; margin-left: -1em;}
.ch-duo.ch-folder-upload:before {content: "\eb03"; opacity: 0.5;}
.ch-duo.ch-folder-upload:after {content: "\eb04"; margin-left: -1em;}
.ch-duo.ch-folder-download:before {content: "\eb05"; opacity: 0.5;}
.ch-duo.ch-folder-download:after {content: "\eb06"; margin-left: -1em;}
.ch-duo.ch-folder-mgmt:before {content: "\eb07"; opacity: 0.5;}
.ch-duo.ch-folder-mgmt:after {content: "\eb08"; margin-left: -1em;}
.ch-duo.ch-omni:before {content: "\eb09"; opacity: 0.5;}
.ch-duo.ch-omni:after {content: "\eb0a"; margin-left: -1em;}
.ch-duo.ch-omni-mgmt:before {content: "\eb0b";}
.ch-duo.ch-omni-mgmt:after {content: "\eb0c"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-call:before {content: "\eb0d";}
.ch-duo.ch-call:after {content: "\eb0e"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-call-slash:before {content: "\eb0f"; opacity: 0.5;}
.ch-duo.ch-call-slash:after {content: "\eb10"; margin-left: -1em;}
.ch-duo.ch-call-ring:before {content: "\eb11";}
.ch-duo.ch-call-ring:after {content: "\eb12"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-call-missed:before {content: "\eb13";}
.ch-duo.ch-call-missed:after {content: "\eb14"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-call-back:before {content: "\eb15"; opacity: 0.5;}
.ch-duo.ch-call-back:after {content: "\eb16"; margin-left: -1em;}
.ch-duo.ch-call-return:before {content: "\eb17"; opacity: 0.5;}
.ch-duo.ch-call-return:after {content: "\eb18"; margin-left: -1em;}
.ch-duo.ch-call-change:before {content: "\eb19"; opacity: 0.5;}
.ch-duo.ch-call-change:after {content: "\eb1a"; margin-left: -1em;}
.ch-duo.ch-call-ivr:before {content: "\eb1b";}
.ch-duo.ch-call-ivr:after {content: "\eb1c"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-call-clock-five:before {content: "\eb1d";}
.ch-duo.ch-call-clock-five:after {content: "\eb1e"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-call-clock:before {content: "\eb1f";}
.ch-duo.ch-call-clock:after {content: "\eb20"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-call-graph:before {content: "\eb21";}
.ch-duo.ch-call-graph:after {content: "\eb22"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-call-ing:before {content: "\eb23";}
.ch-duo.ch-call-ing:after {content: "\eb24"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-call-in:before {content: "\eb25";}
.ch-duo.ch-call-in:after {content: "\eb26"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-call-out:before {content: "\eb27"; opacity: 0.5;}
.ch-duo.ch-call-out:after {content: "\eb28"; margin-left: -1em;}
.ch-duo.ch-call-inbound:before {content: "\eb29";}
.ch-duo.ch-call-inbound:after {content: "\eb2a"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-call-outbound:before {content: "\eb2b";}
.ch-duo.ch-call-outbound:after {content: "\eb2c"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-inbound:before {content: "\eb2d"; opacity: 0.5;}
.ch-duo.ch-inbound:after {content: "\eb2e"; margin-left: -1em;}
.ch-duo.ch-outbound:before {content: "\eb2f";}
.ch-duo.ch-outbound:after {content: "\eb30"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-chat:before {content: "\eb31";}
.ch-duo.ch-chat-slash:before {content: "\eb32"; opacity: 0.5;}
.ch-duo.ch-chat-slash:after {content: "\eb33"; margin-left: -1em;}
.ch-duo.ch-chat-all:before {content: "\eb34";}
.ch-duo.ch-chat-all:after {content: "\eb35"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-chat-cmt:before {content: "\eb36"; opacity: 0.5;}
.ch-duo.ch-chat-cmt:after {content: "\eb37"; margin-left: -1em;}
.ch-duo.ch-chat-cmt-slash:before {content: "\eb38"; opacity: 0.5;}
.ch-duo.ch-chat-cmt-slash:after {content: "\eb39"; margin-left: -1em;}
.ch-duo.ch-chat-word-slash:before {content: "\eb3a"; opacity: 0.5;}
.ch-duo.ch-chat-word-slash:after {content: "\eb3b"; margin-left: -1em;}
.ch-duo.ch-chat-question:before {content: "\eb3c"; opacity: 0.5;}
.ch-duo.ch-chat-question:after {content: "\eb3d"; margin-left: -1em;}
.ch-duo.ch-chat-warning:before {content: "\eb3e"; opacity: 0.5;}
.ch-duo.ch-chat-warning:after {content: "\eb3f"; margin-left: -1em;}
.ch-duo.ch-qna:before {content: "\eb40";}
.ch-duo.ch-qna:after {content: "\eb41"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-message:before {content: "\eb42";}
.ch-duo.ch-message-all:before {content: "\eb43";}
.ch-duo.ch-message-all:after {content: "\eb44"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-message-sms:before {content: "\eb45"; opacity: 0.5;}
.ch-duo.ch-message-sms:after {content: "\eb46"; margin-left: -1em;}
.ch-duo.ch-counsel:before {content: "\eb47"; opacity: 0.5;}
.ch-duo.ch-counsel:after {content: "\eb48"; margin-left: -1em;}
.ch-duo.ch-comment:before {content: "\eb49"; opacity: 0.5;}
.ch-duo.ch-comment:after {content: "\eb4a"; margin-left: -1em;}
.ch-duo.ch-board:before {content: "\eb4b"; opacity: 0.5;}
.ch-duo.ch-board:after {content: "\eb4c"; margin-left: -1em;}
.ch-duo.ch-board-pen:before {content: "\eb4d"; opacity: 0.5;}
.ch-duo.ch-board-pen:after {content: "\eb4e"; margin-left: -1em;}
.ch-duo.ch-hash-tag:before {content: "\eb4f";}
.ch-duo.ch-mail:before {content: "\eb50";}
.ch-duo.ch-mail:after {content: "\eb51"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-mail-all:before {content: "\eb52"; opacity: 0.5;}
.ch-duo.ch-mail-all:after {content: "\eb53"; margin-left: -1em;}
.ch-duo.ch-mail-ban:before {content: "\eb54"; opacity: 0.5;}
.ch-duo.ch-mail-ban:after {content: "\eb55"; margin-left: -1em;}
.ch-duo.ch-mail-check:before {content: "\eb56"; opacity: 0.5;}
.ch-duo.ch-mail-check:after {content: "\eb57"; margin-left: -1em;}
.ch-duo.ch-mail-clip:before {content: "\eb58"; opacity: 0.5;}
.ch-duo.ch-mail-clip:after {content: "\eb59"; margin-left: -1em;}
.ch-duo.ch-mail-receive:before {content: "\eb5a";}
.ch-duo.ch-mail-receive:after {content: "\eb5b"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-mail-send:before {content: "\eb5c"; opacity: 0.5;}
.ch-duo.ch-mail-send:after {content: "\eb5d"; margin-left: -1em;}
.ch-duo.ch-mail-deliver:before {content: "\eb5e"; opacity: 0.5;}
.ch-duo.ch-mail-deliver:after {content: "\eb5f"; margin-left: -1em;}
.ch-duo.ch-mail-spam:before {content: "\eb60"; opacity: 0.5;}
.ch-duo.ch-mail-spam:after {content: "\eb61"; margin-left: -1em;}
.ch-duo.ch-mail-in:before {content: "\eb62"; opacity: 0.5;}
.ch-duo.ch-mail-in:after {content: "\eb63"; margin-left: -1em;}
.ch-duo.ch-mail-empty:before {content: "\eb64";}
.ch-duo.ch-mail-empty:after {content: "\eb65"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-mail-at-mark:before {content: "\eb66"; opacity: 0.5;}
.ch-duo.ch-mail-at-mark:after {content: "\eb67"; margin-left: -1em;}
.ch-duo.ch-at-mark:before {content: "\eb68";}
.ch-duo.ch-mailbox:before {content: "\eb69"; opacity: 0.5;}
.ch-duo.ch-mailbox:after {content: "\eb6a"; margin-left: -1em;}
.ch-duo.ch-paper-plane:before {content: "\eb6b"; opacity: 0.5;}
.ch-duo.ch-paper-plane:after {content: "\eb6c"; margin-left: -1em;}
.ch-duo.ch-paper-airplane:before {content: "\eb6d"; opacity: 0.5;}
.ch-duo.ch-paper-airplane:after {content: "\eb6e"; margin-left: -1em;}
.ch-duo.ch-crm:before {content: "\eb6f";}
.ch-duo.ch-crm:after {content: "\eb70"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-phone:before {content: "\eb71";}
.ch-duo.ch-phone:after {content: "\eb72"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-tablet:before {content: "\eb73"; opacity: 0.5;}
.ch-duo.ch-tablet:after {content: "\eb74"; margin-left: -1em;}
.ch-duo.ch-laptop:before {content: "\eb75";}
.ch-duo.ch-laptop:after {content: "\eb76"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-monitor:before {content: "\eb77"; opacity: 0.5;}
.ch-duo.ch-monitor:after {content: "\eb78"; margin-left: -1em;}
.ch-duo.ch-monitor-etc:before {content: "\eb79"; opacity: 0.5;}
.ch-duo.ch-monitor-etc:after {content: "\eb7a"; margin-left: -1em;}
.ch-duo.ch-monitor-edu:before {content: "\eb7b"; opacity: 0.5;}
.ch-duo.ch-monitor-edu:after {content: "\eb7c"; margin-left: -1em;}
.ch-duo.ch-monitoring:before {content: "\eb7d"; opacity: 0.5;}
.ch-duo.ch-monitoring:after {content: "\eb7e"; margin-left: -1em;}
.ch-duo.ch-keyboard:before {content: "\eb7f"; opacity: 0.5;}
.ch-duo.ch-keyboard:after {content: "\eb80"; margin-left: -1em;}
.ch-duo.ch-print:before {content: "\eb81"; opacity: 0.5;}
.ch-duo.ch-print:after {content: "\eb82"; margin-left: -1em;}
.ch-duo.ch-floopy-disk:before {content: "\eb83"; opacity: 0.5;}
.ch-duo.ch-floopy-disk:after {content: "\eb84"; margin-left: -1em;}
.ch-duo.ch-code:before {content: "\eb85";}
.ch-duo.ch-code-box:before {content: "\eb86"; opacity: 0.5;}
.ch-duo.ch-code-box:after {content: "\eb87"; margin-left: -1em;}
.ch-duo.ch-server:before {content: "\eb88"; opacity: 0.5;}
.ch-duo.ch-server:after {content: "\eb89"; margin-left: -1em;}
.ch-duo.ch-database:before {content: "\eb8a";}
.ch-duo.ch-database:after {content: "\eb8b"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-wifi:before {content: "\eb8c";}
.ch-duo.ch-wifi:after {content: "\eb8d"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-wifi-slash:before {content: "\eb8e"; opacity: 0.5;}
.ch-duo.ch-wifi-slash:after {content: "\eb8f"; margin-left: -1em;}
.ch-duo.ch-sitemap:before {content: "\eb90";}
.ch-duo.ch-sitemap:after {content: "\eb91"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-laboratory:before {content: "\eb92"; opacity: 0.5;}
.ch-duo.ch-laboratory:after {content: "\eb93"; margin-left: -1em;}
.ch-duo.ch-laboratory-check:before {content: "\eb94"; opacity: 0.5;}
.ch-duo.ch-laboratory-check:after {content: "\eb95"; margin-left: -1em;}
.ch-duo.ch-gear:before {content: "\eb96";}
.ch-duo.ch-gear:after {content: "\eb97"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-headset:before {content: "\eb98"; opacity: 0.5;}
.ch-duo.ch-headset:after {content: "\eb99"; margin-left: -1em;}
.ch-duo.ch-headset-mic:before {content: "\eb9a"; opacity: 0.5;}
.ch-duo.ch-headset-mic:after {content: "\eb9b"; margin-left: -1em;}
.ch-duo.ch-telephone:before {content: "\eb9c"; opacity: 0.5;}
.ch-duo.ch-telephone:after {content: "\eb9d"; margin-left: -1em;}
.ch-duo.ch-telephone-old:before {content: "\eb9e"; opacity: 0.5;}
.ch-duo.ch-telephone-old:after {content: "\eb9f"; margin-left: -1em;}
.ch-duo.ch-camera:before {content: "\eba0"; opacity: 0.5;}
.ch-duo.ch-camera:after {content: "\eba1"; margin-left: -1em;}
.ch-duo.ch-search:before {content: "\eba2"; opacity: 0.5;}
.ch-duo.ch-search:after {content: "\eba3"; margin-left: -1em;}
.ch-duo.ch-search-plus:before {content: "\eba4"; opacity: 0.5;}
.ch-duo.ch-search-plus:after {content: "\eba5"; margin-left: -1em;}
.ch-duo.ch-search-minus:before {content: "\eba6"; opacity: 0.5;}
.ch-duo.ch-search-minus:after {content: "\eba7"; margin-left: -1em;}
.ch-duo.ch-search-user:before {content: "\eba8"; opacity: 0.5;}
.ch-duo.ch-search-user:after {content: "\eba9"; margin-left: -1em;}
.ch-duo.ch-search-box:before {content: "\ebaa"; opacity: 0.5;}
.ch-duo.ch-search-box:after {content: "\ebab"; margin-left: -1em;}
.ch-duo.ch-search-book:before {content: "\ebac"; opacity: 0.5;}
.ch-duo.ch-search-book:after {content: "\ebad"; margin-left: -1em;}
.ch-duo.ch-search-keyword:before {content: "\ebae"; opacity: 0.5;}
.ch-duo.ch-search-keyword:after {content: "\ebaf"; margin-left: -1em;}
.ch-duo.ch-key:before {content: "\ebb0";}
.ch-duo.ch-key:after {content: "\ebb1"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-lock:before {content: "\ebb2";}
.ch-duo.ch-lock:after {content: "\ebb3"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-lock-open:before {content: "\ebb4";}
.ch-duo.ch-lock-open:after {content: "\ebb5"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-lock-key:before {content: "\ebb6";}
.ch-duo.ch-lock-key:after {content: "\ebb7"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-lock-key-open:before {content: "\ebb8";}
.ch-duo.ch-lock-key-open:after {content: "\ebb9"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-shield:before {content: "\ebba";}
.ch-duo.ch-shield:after {content: "\ebbb"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-shield-check:before {content: "\ebbc"; opacity: 0.5;}
.ch-duo.ch-shield-check:after {content: "\ebbd"; margin-left: -1em;}
.ch-duo.ch-shield-user:before {content: "\ebbe"; opacity: 0.5;}
.ch-duo.ch-shield-user:after {content: "\ebbf"; margin-left: -1em;}
.ch-duo.ch-shield-lock:before {content: "\ebc0"; opacity: 0.5;}
.ch-duo.ch-shield-lock:after {content: "\ebc1"; margin-left: -1em;}
.ch-duo.ch-shield-gear:before {content: "\ebc2"; opacity: 0.5;}
.ch-duo.ch-shield-gear:after {content: "\ebc3"; margin-left: -1em;}
.ch-duo.ch-shield-mgmt:before {content: "\ebc4"; opacity: 0.5;}
.ch-duo.ch-shield-mgmt:after {content: "\ebc5"; margin-left: -1em;}
.ch-duo.ch-shield-slash:before {content: "\ebc6";}
.ch-duo.ch-shield-slash:after {content: "\ebc7"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-virus:before {content: "\ebc8"; opacity: 0.5;}
.ch-duo.ch-virus:after {content: "\ebc9"; margin-left: -1em;}
.ch-duo.ch-fire:before {content: "\ebca";}
.ch-duo.ch-fire:after {content: "\ebcb"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-cctv:before {content: "\ebcc"; opacity: 0.5;}
.ch-duo.ch-cctv:after {content: "\ebcd"; margin-left: -1em;}
.ch-duo.ch-siren:before {content: "\ebce"; opacity: 0.5;}
.ch-duo.ch-siren:after {content: "\ebcf"; margin-left: -1em;}
.ch-duo.ch-caution:before {content: "\ebd0"; opacity: 0.5;}
.ch-duo.ch-caution:after {content: "\ebd1"; margin-left: -1em;}
.ch-duo.ch-ban:before {content: "\ebd2";}
.ch-duo.ch-ban:after {content: "\ebd3"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-bell:before {content: "\ebd4";}
.ch-duo.ch-bell:after {content: "\ebd5"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-bell-slash:before {content: "\ebd6";}
.ch-duo.ch-bell-slash:after {content: "\ebd7"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-speaker:before {content: "\ebd8";}
.ch-duo.ch-speaker-slash:before {content: "\ebd9";}
.ch-duo.ch-speaker-slash:after {content: "\ebda"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-speaker-plus:before {content: "\ebdb"; opacity: 0.5;}
.ch-duo.ch-speaker-plus:after {content: "\ebdc"; margin-left: -1em;}
.ch-duo.ch-speaker-minus:before {content: "\ebdd"; opacity: 0.5;}
.ch-duo.ch-speaker-minus:after {content: "\ebde"; margin-left: -1em;}
.ch-duo.ch-speaker-off:before {content: "\ebdf"; opacity: 0.5;}
.ch-duo.ch-speaker-off:after {content: "\ebe0"; margin-left: -1em;}
.ch-duo.ch-speaker-on-small:before {content: "\ebe1"; opacity: 0.5;}
.ch-duo.ch-speaker-on-small:after {content: "\ebe2"; margin-left: -1em;}
.ch-duo.ch-speaker-on-loud:before {content: "\ebe3"; opacity: 0.5;}
.ch-duo.ch-speaker-on-loud:after {content: "\ebe4"; margin-left: -1em;}
.ch-duo.ch-loudspeaker:before {content: "\ebe5"; opacity: 0.5;}
.ch-duo.ch-loudspeaker:after {content: "\ebe6"; margin-left: -1em;}
.ch-duo.ch-loudspeaker-on:before {content: "\ebe7"; opacity: 0.5;}
.ch-duo.ch-loudspeaker-on:after {content: "\ebe8"; margin-left: -1em;}
.ch-duo.ch-mic:before {content: "\ebe9";}
.ch-duo.ch-mic:after {content: "\ebea"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-mic-on:before {content: "\ebeb"; opacity: 0.5;}
.ch-duo.ch-mic-on:after {content: "\ebec"; margin-left: -1em;}
.ch-duo.ch-mic-text:before {content: "\ebed"; opacity: 0.5;}
.ch-duo.ch-mic-text:after {content: "\ebee"; margin-left: -1em;}
.ch-duo.ch-mic-file:before {content: "\ebef"; opacity: 0.5;}
.ch-duo.ch-mic-file:after {content: "\ebf0"; margin-left: -1em;}
.ch-duo.ch-play-bar-left:before {content: "\ebf1";}
.ch-duo.ch-play-bar-left:after {content: "\ebf2"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-play-double-left:before {content: "\ebf3"; opacity: 0.5;}
.ch-duo.ch-play-double-left:after {content: "\ebf4"; margin-left: -1em;}
.ch-duo.ch-play:before {content: "\ebf5";}
.ch-duo.ch-stop:before {content: "\ebf6";}
.ch-duo.ch-pause:before {content: "\ebf7";}
.ch-duo.ch-play-pause:before {content: "\ebf8"; opacity: 0.5;}
.ch-duo.ch-play-pause:after {content: "\ebf9"; margin-left: -1em;}
.ch-duo.ch-play-double-right:before {content: "\ebfa"; opacity: 0.5;}
.ch-duo.ch-play-double-right:after {content: "\ebfb"; margin-left: -1em;}
.ch-duo.ch-play-bar-right:before {content: "\ebfc";}
.ch-duo.ch-play-bar-right:after {content: "\ebfd"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-user:before {content: "\ebfe";}
.ch-duo.ch-user-slash:before {content: "\ebff"; opacity: 0.5;}
.ch-duo.ch-user-slash:after {content: "\ec00"; margin-left: -1em;}
.ch-duo.ch-user-headset:before {content: "\ec01"; opacity: 0.5;}
.ch-duo.ch-user-headset:after {content: "\ec02"; margin-left: -1em;}
.ch-duo.ch-user-tie:before {content: "\ec03";}
.ch-duo.ch-user-tie:after {content: "\ec04"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-user-plus:before {content: "\ec05";}
.ch-duo.ch-user-plus:after {content: "\ec06"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-user-minus:before {content: "\ec07";}
.ch-duo.ch-user-minus:after {content: "\ec08"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-user-in:before {content: "\ec09"; opacity: 0.5;}
.ch-duo.ch-user-in:after {content: "\ec0a"; margin-left: -1em;}
.ch-duo.ch-user-out:before {content: "\ec0b";}
.ch-duo.ch-user-out:after {content: "\ec0c"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-user-transition:before {content: "\ec0d";}
.ch-duo.ch-user-transition:after {content: "\ec0e"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-user-check:before {content: "\ec0f"; opacity: 0.5;}
.ch-duo.ch-user-check:after {content: "\ec10"; margin-left: -1em;}
.ch-duo.ch-user-change:before {content: "\ec11"; opacity: 0.5;}
.ch-duo.ch-user-change:after {content: "\ec12"; margin-left: -1em;}
.ch-duo.ch-user-mgmt:before {content: "\ec13"; opacity: 0.5;}
.ch-duo.ch-user-mgmt:after {content: "\ec14"; margin-left: -1em;}
.ch-duo.ch-users:before {content: "\ec15";}
.ch-duo.ch-users:after {content: "\ec16"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-users-mgmt:before {content: "\ec17";}
.ch-duo.ch-users-mgmt:after {content: "\ec18"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-user-flow:before {content: "\ec19"; opacity: 0.5;}
.ch-duo.ch-user-flow:after {content: "\ec1a"; margin-left: -1em;}
.ch-duo.ch-group:before {content: "\ec1b";}
.ch-duo.ch-group:after {content: "\ec1c"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-man:before {content: "\ec1d";}
.ch-duo.ch-man:after {content: "\ec1e"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-woman:before {content: "\ec1f";}
.ch-duo.ch-woman:after {content: "\ec20"; margin-left: -1em; opacity: 0.5;}
.ch-duo.ch-user-circle:before {content: "\ec21"; opacity: 0.5;}
.ch-duo.ch-user-circle:after {content: "\ec22"; margin-left: -1em;}
.ch-duo.ch-page-user:before {content: "\ec23"; opacity: 0.5;}
.ch-duo.ch-page-user:after {content: "\ec24"; margin-left: -1em;}
.ch-duo.ch-page-user-pen:before {content: "\ec25"; opacity: 0.5;}
.ch-duo.ch-page-user-pen:after {content: "\ec26"; margin-left: -1em;}
.ch-duo.ch-page-user-send:before {content: "\ec27"; opacity: 0.5;}
.ch-duo.ch-page-user-send:after {content: "\ec28"; margin-left: -1em;}
.ch-duo.ch-page-user-over:before {content: "\ec29"; opacity: 0.5;}
.ch-duo.ch-page-user-over:after {content: "\ec2a"; margin-left: -1em;}
.ch-duo.ch-diary-contact:before {content: "\ec2b"; opacity: 0.5;}
.ch-duo.ch-diary-contact:after {content: "\ec2c"; margin-left: -1em;}
.ch-duo.ch-user-id:before {content: "\ec2d"; opacity: 0.5;}
.ch-duo.ch-user-id:after {content: "\ec2e"; margin-left: -1em;}
.ch-duo.ch-hivee:before {content: "\ec2f"; opacity: 0.5;}
.ch-duo.ch-hivee:after {content: "\ec30"; margin-left: -1em;}
.ch-duo.ch-face:before {content: "\ec31"; opacity: 0.5;}
.ch-duo.ch-face:after {content: "\ec32"; margin-left: -1em;}
.ch-duo.ch-face-expressionless:before {content: "\ec33"; opacity: 0.5;}
.ch-duo.ch-face-expressionless:after {content: "\ec34"; margin-left: -1em;}
.ch-duo.ch-face-sad:before {content: "\ec35"; opacity: 0.5;}
.ch-duo.ch-face-sad:after {content: "\ec36"; margin-left: -1em;}
.ch-duo.ch-face-surprise:before {content: "\ec37"; opacity: 0.5;}
.ch-duo.ch-face-surprise:after {content: "\ec38"; margin-left: -1em;}
.ch-duo.ch-eye:before {content: "\ec39"; opacity: 0.5;}
.ch-duo.ch-eye:after {content: "\ec3a"; margin-left: -1em;}
.ch-duo.ch-eye-slash:before {content: "\ec3b"; opacity: 0.5;}
.ch-duo.ch-eye-slash:after {content: "\ec3c"; margin-left: -1em;}
.ch-duo.ch-handshake:before {content: "\ec3d";}
.ch-duo.ch-handshake:after {content: "\ec3e"; margin-left: -1em; opacity: 0.5;}
/* brand */
.ch-ka-talk:before {content: "\e900";}
.ch-n-talk:before {content: "\e901";}
.ch-chrome:before {content: "\e902";}
.ch-facebook:before {content: "\e903";}
.ch-instagram:before {content: "\e904";}
.ch-n-blog:before {content: "\e905";}
.ch-youtube:before {content: "\e906";}
