.bvos-header {
  position: fixed;
  z-index: 101;
  top: 0;
  left: var(--bvos-leftmenu-width);
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--bvos-header-height);
  white-space: nowrap;
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
  box-shadow: 0 8px 24px -2px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  transition: left 0.3s cubic-bezier(0.2, 0, 0, 1) 0s;
}
.bvos-header .header-expand-icon {
  color: var(--menu-font-color-revert);
}
.bvos-header .header-left {
  display: flex;
  align-items: center;
}
.bvos-header .header-right {
  height: 100%;
  display: flex;
  align-items: center;
  padding-right: 24px;
}
.bvos-header .header-right .header-item {
  list-style: none;
  display: flex;
  align-items: center;
}
.bvos-header .header-right .header-item-icons .header-icon-button {
  margin-right: 14px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-right: 8px;
  border-radius: 50%;
}
.bvos-header .header-right .header-item-icons .header-icon-button:hover {
  background-color: #E0E3EC;
}
.bvos-header .header-right .header-item-icons .header-icon-button i {
  font-size: 20px;
}
.bvos-header .header-right .header-item-icons .bvos-theme-icon {
  margin-left: 4px;
}
.bvos-header .header-right .header-divider {
  margin: 0 16px;
  width: 1px;
  height: 14px;
  background-color: #cccccc;
}

.rc-notification {
  position: fixed;
  z-index: 1000;
}
.rc-notification-notice {
  padding: 7px 20px 7px 10px;
  border-radius: 3px 3px;
  border: 1px solid #999;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border: 0px solid rgba(0, 0, 0, 0);
  background: #fff;
  display: block;
  width: auto;
  line-height: 1.5;
  position: relative;
  margin: 10px 0;
}
.rc-notification-notice-closable {
  padding-right: 20px;
}
.rc-notification-notice-close {
  position: absolute;
  right: 5px;
  top: 3px;
  color: #000;
  cursor: pointer;
  outline: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: 0.2;
  text-decoration: none;
}
.rc-notification-notice-close-x:after {
  content: '×';
}
.rc-notification-notice-close:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  text-decoration: none;
}
.rc-notification-fade-appear,
.rc-notification-fade-enter {
  opacity: 0;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
          animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.rc-notification-fade-leave {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
          animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.rc-notification-fade-appear.rc-notification-fade-appear-active,
.rc-notification-fade-enter.rc-notification-fade-enter-active {
  -webkit-animation-name: rcNotificationFadeIn;
          animation-name: rcNotificationFadeIn;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.rc-notification-fade-leave.rc-notification-fade-leave-active {
  -webkit-animation-name: rcDialogFadeOut;
          animation-name: rcDialogFadeOut;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
@-webkit-keyframes rcNotificationFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes rcNotificationFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes rcDialogFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes rcDialogFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.rc-notification {
  position: fixed;
  z-index: 1000;
  display: flex;
  max-height: 100vh;
  padding: 10px;
  align-items: flex-end;
}
.rc-notification-top,
.rc-notification-topLeft,
.rc-notification-topRight {
  top: 0;
  flex-direction: column;
}
.rc-notification-topRight {
  right: 0;
}
.rc-notification-notice {
  position: relative;
  width: 384px;
  max-width: calc(100vw - 48px);
  margin-bottom: 16px;
  margin-left: auto;
  padding: 16px 24px;
  overflow: hidden;
  line-height: 1.5715;
  word-wrap: break-word;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 3px 6px -4px #0000001f, 0 6px 16px #00000014, 0 9px 28px 8px #0000000d;
}
.rc-notification-notice-content {
  padding: 0 !important;
}
.rc-notification-notice-close {
  position: absolute;
  top: 18px;
  right: 22px;
  color: #000000d9;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  text-shadow: 0 1px 0 #fff;
  outline: none;
  cursor: pointer;
  opacity: 0.3;
}
.rc-notification-notice-close:hover {
  color: #000000d9;
  text-decoration: none;
  opacity: 1;
}
.rc-notification-notice-close svg {
  width: 1em;
  height: 1em;
  font-size: 1em;
}
.rc-notification-fade {
  overflow: hidden;
  transition: all 0.3s;
}
.rc-notification-fade-appear-start {
  transform: translateX(100%);
  opacity: 0;
}
.rc-notification-fade-appear-active {
  transform: translateX(0);
  opacity: 1;
}
.bvos-notification-notice-message {
  padding-right: 24px;
  margin-bottom: 8px;
  color: #000000d9;
  font-size: 16px;
  line-height: 24px;
}
.bvos-notification-notice-description {
  font-size: 14px;
  line-height: 1.4;
}
.bvos-notification-notice-icon {
  position: absolute;
  font-size: 24px;
  line-height: 24px;
}
.bvos-notification-notice-with-icon {
  width: 420px;
}
.bvos-notification-notice-with-icon .bvos-notification-notice-message {
  margin-left: 34px;
}
.bvos-notification-notice-with-icon .bvos-notification-notice-description {
  margin-left: 34px;
}

.bvos-notice-item {
  padding: 14px 26px;
  background: #fff;
  border: 1px solid #fff;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 1;
}
.bvos-notice-item.new {
  cursor: pointer;
}
.bvos-notice-item.new:hover {
  border: 1px solid #3680fc;
}
.bvos-notice-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.bvos-notice-item-top > span:first-child {
  border-radius: 4px;
  background: #f6f7fa;
  color: #505f76;
  font-size: 12px;
  display: inline-block;
  line-height: 1;
  padding: 5px 8px;
  margin-left: -8px;
}
.bvos-notice-item-top > span:last-child {
  color: #7a869a;
  font-size: 12px;
}
.bvos-notice-item-title {
  color: #172b4d;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  margin: 8px 0;
  position: relative;
}
.bvos-notice-item.new .bvos-notice-item-title::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #fc354f;
}
.bvos-notice-item-content {
  color: #7a869a;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}
.bvos-notice-item-content a {
  color: #fc3650;
  text-decoration: none;
}
.bvos-notice-item-content a:hover {
  color: #fc3650;
  text-decoration: underline;
}
@media (max-width: 1280px) {
  .bvos-notice-item {
    padding: 11px 22px;
  }
  .bvos-notice-item-top > span:first-child {
    zoom: 0.9;
  }
  .bvos-notice-item-top > span:last-child {
    zoom: 0.9;
  }
  .bvos-notice-item-title {
    font-size: 13px;
    margin: 6px 0;
  }
  .bvos-notice-item-title.new::before {
    left: -13px;
    width: 5px;
    height: 5px;
    border-radius: 5px;
  }
  .bvos-notice-item-content {
    zoom: 0.9;
  }
}

.bv-carousel {
  position: relative;
}
.bv-carousel-close {
  position: absolute;
  top: -30px;
  right: 0;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.5s;
  transform: rotate(0);
}
.bv-carousel-close:hover {
  transform: rotate(190deg);
}
.bv-carousel-slide {
  flex: 0 0 auto;
  width: 100%;
}
.bv-carousel-slide img {
  border-radius: 8px;
}
.bv-carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bv-carousel-wrapper {
  width: 100%;
  flex: 0 0 auto;
}
.bv-carousel-image {
  width: 100%;
  min-height: 400px;
}
.bv-carousel-title {
  text-align: center;
  color: #43485F;
  font-size: 14px;
  font-weight: 600;
  margin: 6px 0;
}
.bv-carousel-subtitle {
  text-align: center;
  color: #43485F;
  font-size: 14px;
  margin: 6px 0;
}
.bv-carousel-footer {
  display: flex;
  justify-content: space-around;
}
.bv-carousel-footer-skipall {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.bv-carousel-footer-btns {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
}
.bv-carousel-footer-btns button + button {
  margin-left: 4px;
}
.bv-carousel-footer-btn {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-radius: 4px;
  padding: 6px 15px;
  text-shadow: none;
  font-size: 14px;
  display: inline-block;
  box-sizing: border-box;
  text-decoration: none;
  background-color: #fff;
  cursor: pointer;
  outline: 0;
  border: 1px solid #ccc;
}
.bv-carousel-footer-btn.bv-carousel-footer-btn-disabed {
  pointer-events: none;
  opacity: 0.5;
}
.bv-carousel-footer-prev-btn {
  color: #43485F;
}
.bv-carousel-footer-next-btn {
  color: #FFFFFF;
  background-color: #00A4A4;
  border-color: #00A4A4;
}
.bv-carousel-dots {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.bv-carousel-dots-active {
  opacity: 1;
}
.bv-carousel-dots li {
  display: inline-block;
  margin: 0 2px;
  padding: 0;
  cursor: pointer;
  background: #00A4A4;
  opacity: 0.25;
  width: 25px;
  height: 3px;
  border-radius: 4px;
}
.bv-carousel-dots li.bv-carousel-dots-active {
  opacity: 1;
}
.bv-carousel-dots li:hover {
  opacity: 0.5;
}

.driver-active .driver-overlay,.driver-active *{pointer-events:none}.driver-active .driver-active-element,.driver-active .driver-active-element *,.driver-popover,.driver-popover *{pointer-events:auto}@-webkit-keyframes animate-fade-in{0%{opacity:0}to{opacity:1}}@keyframes animate-fade-in{0%{opacity:0}to{opacity:1}}.driver-fade .driver-overlay{-webkit-animation:animate-fade-in .2s ease-in-out;animation:animate-fade-in .2s ease-in-out}.driver-fade .driver-popover{-webkit-animation:animate-fade-in .2s;animation:animate-fade-in .2s}.driver-popover{all:unset;box-sizing:border-box;color:#2d2d2d;margin:0;padding:15px;border-radius:5px;min-width:250px;max-width:300px;box-shadow:0 1px 10px #0006;z-index:1000000000;position:fixed;top:0;right:0;background-color:#fff}.driver-popover *{font-family:Helvetica Neue,Inter,ui-sans-serif,"Apple Color Emoji",Helvetica,Arial,sans-serif}.driver-popover-title{font:19px/normal sans-serif;font-weight:700;display:block;position:relative;line-height:1.5;zoom:1;margin:0}.driver-popover-close-btn{all:unset;position:absolute;top:0;right:0;width:32px;height:28px;cursor:pointer;font-size:18px;font-weight:500;color:#d2d2d2;z-index:1;text-align:center;transition:color;transition-duration:.2s}.driver-popover-close-btn:hover,.driver-popover-close-btn:focus{color:#2d2d2d}.driver-popover-title[style*=block]+.driver-popover-description{margin-top:5px}.driver-popover-description{margin-bottom:0;font:14px/normal sans-serif;line-height:1.5;font-weight:400;zoom:1}.driver-popover-footer{margin-top:15px;text-align:right;zoom:1;display:flex;align-items:center;justify-content:space-between}.driver-popover-progress-text{font-size:13px;font-weight:400;color:#727272;zoom:1}.driver-popover-footer button{all:unset;display:inline-block;box-sizing:border-box;padding:3px 7px;text-decoration:none;text-shadow:1px 1px 0 #fff;background-color:#fff;color:#2d2d2d;font:12px/normal sans-serif;cursor:pointer;outline:0;zoom:1;line-height:1.3;border:1px solid #ccc;border-radius:3px}.driver-popover-footer .driver-popover-btn-disabled{opacity:.5;pointer-events:none}:not(body):has(>.driver-active-element){overflow:hidden!important}.driver-no-interaction,.driver-no-interaction *{pointer-events:none!important}.driver-popover-footer button:hover,.driver-popover-footer button:focus{background-color:#f7f7f7}.driver-popover-navigation-btns{display:flex;flex-grow:1;justify-content:flex-end}.driver-popover-navigation-btns button+button{margin-left:4px}.driver-popover-arrow{content:"";position:absolute;border:5px solid #fff}.driver-popover-arrow-side-over{display:none}.driver-popover-arrow-side-left{left:100%;border-right-color:transparent;border-bottom-color:transparent;border-top-color:transparent}.driver-popover-arrow-side-right{right:100%;border-left-color:transparent;border-bottom-color:transparent;border-top-color:transparent}.driver-popover-arrow-side-top{top:100%;border-right-color:transparent;border-bottom-color:transparent;border-left-color:transparent}.driver-popover-arrow-side-bottom{bottom:100%;border-left-color:transparent;border-top-color:transparent;border-right-color:transparent}.driver-popover-arrow-side-center{display:none}.driver-popover-arrow-side-left.driver-popover-arrow-align-start,.driver-popover-arrow-side-right.driver-popover-arrow-align-start{top:15px}.driver-popover-arrow-side-top.driver-popover-arrow-align-start,.driver-popover-arrow-side-bottom.driver-popover-arrow-align-start{left:15px}.driver-popover-arrow-align-end.driver-popover-arrow-side-left,.driver-popover-arrow-align-end.driver-popover-arrow-side-right{bottom:15px}.driver-popover-arrow-side-top.driver-popover-arrow-align-end,.driver-popover-arrow-side-bottom.driver-popover-arrow-align-end{right:15px}.driver-popover-arrow-side-left.driver-popover-arrow-align-center,.driver-popover-arrow-side-right.driver-popover-arrow-align-center{top:50%;margin-top:-5px}.driver-popover-arrow-side-top.driver-popover-arrow-align-center,.driver-popover-arrow-side-bottom.driver-popover-arrow-align-center{left:50%;margin-left:-5px}.driver-popover-arrow-none{display:none}

@media print {
  .bv-page-guide {
    display: none !important;
  }
  .driver-overlay {
    display: none !important;
  }
}
.bv-page-guide.driver-popover {
  max-width: unset;
}
.bv-page-guide.driver-popover * {
  font-family: 'NotoSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}
.bv-page-guide .driver-popover-prev-btn,
.bv-page-guide .driver-popover-next-btn {
  border-radius: 4px;
  padding: 6px 15px;
  text-shadow: none;
  font-size: 14px;
}
.bv-page-guide .driver-popover-title {
  padding: 0 0 4px 0;
}
.bv-page-guide .driver-popover-prev-btn {
  color: #43485F;
}
.bv-page-guide .driver-popover-next-btn {
  color: #FFFFFF;
  background-color: #00A4A4;
  border-color: #00A4A4;
}
.bv-page-guide .driver-popover-footer .driver-popover-next-btn:hover,
.bv-page-guide .driver-popover-footer .driver-popover-next-btn:focus {
  background-color: #1cb0ab;
  border-color: #1cb0ab;
}
.bv-page-guide .driver-popover-footer button:hover,
.bv-page-guide .driver-popover-footer button:focus {
  background-color: transparent;
}
.bv-page-guide .driver-popover-footer .driver-popover-prev-btn:hover,
.bv-page-guide .driver-popover-footer .driver-popover-prev-btn:focus {
  border-color: #00A4A4;
  color: #00A4A4;
}
.bv-page-guide .driver-popover-close-btn {
  color: #43485F;
  font-size: 25px;
  top: 10px;
}
.bv-page-guide .driver-popover-footer {
  margin-top: 10px;
}
.bv-page-guide .driver-popover-title {
  font-family: 'NotoSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}

.bvos-notification {
  position: relative;
}
.bvos-notification-popup {
  position: fixed;
  opacity: 1;
}
.bvos-notification-popup * {
  box-sizing: border-box;
}
.bvos-notification-popup .rc-tooltip-inner {
  padding: 0;
  background-color: #fff;
}
.bvos-notification-container {
  max-width: 560px;
  min-width: 500px;
  max-height: calc(100vh - var(--bvos-header-height, 72px) - 20px);
  overflow-y: auto;
  position: relative;
}
.bvos-notification-container::-webkit-scrollbar {
  width: 5px;
}
.bvos-notification-container::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 4px;
}
.bvos-notification-container::-webkit-scrollbar-thumb {
  border-radius: 2px;
}
.bvos-notification-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px 26px;
  border-bottom: 1px solid #eee;
}
.bvos-notification-header > div:nth-child(1) {
  font-size: 18px;
  line-height: 21px;
  color: #172b4d;
}
.bvos-notification-header > div:nth-child(2) {
  color: #366cf9;
  font-size: 14px;
  line-height: 20px;
  /* 142.857% */
  cursor: pointer;
}
.bvos-notification-header > div:nth-child(2).disabled {
  cursor: not-allowed;
  color: #7a869a;
}
.bvos-notification-badge {
  position: absolute;
  top: 3px;
  left: 20px;
  background-color: #00a4a4;
  padding: 0 6px;
  border-radius: 10px;
  color: #fff;
  font-size: 12px;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, apple color emoji, segoe ui emoji, Segoe UI Symbol, noto color emoji;
  line-height: 18px;
  min-width: 18px;
  text-align: center;
  display: block;
  box-sizing: border-box;
}
.bvos-notification-badge.badge-multiple-words {
  padding: 0 6px;
}
.bvos-notification-view-all {
  text-align: center;
  padding: 18px 0;
}
.bvos-notification-view-all span {
  color: #366cf9;
  font-size: 14px;
  line-height: 20px;
  /* 142.857% */
  cursor: pointer;
}
.bvos-notification-view-all span:hover {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
.bvos-notification-empty {
  max-width: 380px;
  min-width: 380px;
}
.bvos-notification-empty > div:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0px;
  color: #909fb6;
  font-size: 14px;
}
.bvos-notification-empty img {
  width: 50px;
  height: 50px;
  margin-right: 12px;
}
.bvos-notification-notice-bell {
  fill: #4c9aff;
  transform: scale(0.88);
  transform-origin: center;
  margin-top: 2px;
}
.new-message-notice .bvos-notification-notice-message {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 21px;
}
.new-message-notice .bvos-notification-notice-description a {
  color: #fc3650;
  text-decoration: none;
}
.new-message-notice .bvos-notification-notice-description a:hover {
  color: #fc3650;
  text-decoration: underline;
}
.new-message-notice * {
  font-family: BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}
@media (max-width: 1280px) {
  .bvos-notification-header {
    padding: 14px 22px;
  }
  .bvos-notification-header > div:nth-child(1) {
    font-size: 16px;
  }
  .bvos-notification-header > div:nth-child(2) {
    font-size: 12px;
  }
  .bvos-notification-view-all {
    padding: 12px 0;
  }
  .bvos-notification-view-all span {
    font-size: 12px;
  }
}

.rc-tooltip.rc-tooltip-zoom-appear,
.rc-tooltip.rc-tooltip-zoom-enter {
  opacity: 0;
}
.rc-tooltip.rc-tooltip-zoom-enter,
.rc-tooltip.rc-tooltip-zoom-leave {
  display: block;
}
.rc-tooltip-zoom-enter,
.rc-tooltip-zoom-appear {
  opacity: 0;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.18, 0.89, 0.32, 1.28);
          animation-timing-function: cubic-bezier(0.18, 0.89, 0.32, 1.28);
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.rc-tooltip-zoom-leave {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.6, -0.3, 0.74, 0.05);
          animation-timing-function: cubic-bezier(0.6, -0.3, 0.74, 0.05);
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.rc-tooltip-zoom-enter.rc-tooltip-zoom-enter-active,
.rc-tooltip-zoom-appear.rc-tooltip-zoom-appear-active {
  -webkit-animation-name: rcToolTipZoomIn;
          animation-name: rcToolTipZoomIn;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.rc-tooltip-zoom-leave.rc-tooltip-zoom-leave-active {
  -webkit-animation-name: rcToolTipZoomOut;
          animation-name: rcToolTipZoomOut;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
@-webkit-keyframes rcToolTipZoomIn {
  0% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(0, 0);
  }
  100% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
  }
}
@keyframes rcToolTipZoomIn {
  0% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(0, 0);
  }
  100% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
  }
}
@-webkit-keyframes rcToolTipZoomOut {
  0% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(0, 0);
  }
}
@keyframes rcToolTipZoomOut {
  0% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(0, 0);
  }
}
.rc-tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  visibility: visible;
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.9;
}
.rc-tooltip-hidden {
  display: none;
}
.rc-tooltip-placement-top,
.rc-tooltip-placement-topLeft,
.rc-tooltip-placement-topRight {
  padding: 5px 0 9px 0;
}
.rc-tooltip-placement-right,
.rc-tooltip-placement-rightTop,
.rc-tooltip-placement-rightBottom {
  padding: 0 5px 0 9px;
}
.rc-tooltip-placement-bottom,
.rc-tooltip-placement-bottomLeft,
.rc-tooltip-placement-bottomRight {
  padding: 9px 0 5px 0;
}
.rc-tooltip-placement-left,
.rc-tooltip-placement-leftTop,
.rc-tooltip-placement-leftBottom {
  padding: 0 9px 0 5px;
}
.rc-tooltip-inner {
  padding: 8px 10px;
  color: #fff;
  text-align: left;
  text-decoration: none;
  background-color: #373737;
  border-radius: 6px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.17);
  min-height: 34px;
}
.rc-tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.rc-tooltip-placement-top .rc-tooltip-arrow,
.rc-tooltip-placement-topLeft .rc-tooltip-arrow,
.rc-tooltip-placement-topRight .rc-tooltip-arrow {
  bottom: 4px;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #373737;
}
.rc-tooltip-placement-top .rc-tooltip-arrow {
  left: 50%;
}
.rc-tooltip-placement-topLeft .rc-tooltip-arrow {
  left: 15%;
}
.rc-tooltip-placement-topRight .rc-tooltip-arrow {
  right: 15%;
}
.rc-tooltip-placement-right .rc-tooltip-arrow,
.rc-tooltip-placement-rightTop .rc-tooltip-arrow,
.rc-tooltip-placement-rightBottom .rc-tooltip-arrow {
  left: 4px;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #373737;
}
.rc-tooltip-placement-right .rc-tooltip-arrow {
  top: 50%;
}
.rc-tooltip-placement-rightTop .rc-tooltip-arrow {
  top: 15%;
  margin-top: 0;
}
.rc-tooltip-placement-rightBottom .rc-tooltip-arrow {
  bottom: 15%;
}
.rc-tooltip-placement-left .rc-tooltip-arrow,
.rc-tooltip-placement-leftTop .rc-tooltip-arrow,
.rc-tooltip-placement-leftBottom .rc-tooltip-arrow {
  right: 4px;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #373737;
}
.rc-tooltip-placement-left .rc-tooltip-arrow {
  top: 50%;
}
.rc-tooltip-placement-leftTop .rc-tooltip-arrow {
  top: 15%;
  margin-top: 0;
}
.rc-tooltip-placement-leftBottom .rc-tooltip-arrow {
  bottom: 15%;
}
.rc-tooltip-placement-bottom .rc-tooltip-arrow,
.rc-tooltip-placement-bottomLeft .rc-tooltip-arrow,
.rc-tooltip-placement-bottomRight .rc-tooltip-arrow {
  top: 4px;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #373737;
}
.rc-tooltip-placement-bottom .rc-tooltip-arrow {
  left: 50%;
}
.rc-tooltip-placement-bottomLeft .rc-tooltip-arrow {
  left: 15%;
}
.rc-tooltip-placement-bottomRight .rc-tooltip-arrow {
  right: 15%;
}

.bvos-popover-overlay {
  padding-bottom: 0;
  background-color: transparent;
  box-shadow: var(--box-shadow-light);
  opacity: 1;
}
.bvos-popover-overlay.rc-tooltip-placement-bottom {
  padding-top: 4px;
}
.bvos-popover-overlay .rc-tooltip-arrow {
  display: none;
}
.bvos-popover-overlay .rc-tooltip-inner {
  background-color: #fff;
}

.bvos-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  margin-left: 12px;
  padding: 0;
  list-style: none;
  color: var(--menu-font-color-revert);
}
.bvos-breadcrumb .bvos-bdc-separator {
  margin-left: 6px;
  margin-right: 6px;
}
.bvos-breadcrumb .bvos-bdc-title {
  color: #86909C;
}
.bvos-breadcrumb .bvos-bdc-title:hover {
  color: #1676C3;
  cursor: pointer;
}
.bvos-breadcrumb .bvos-bdc-active .bvos-bdc-title {
  color: #2F2E3B;
  cursor: default;
}
.bvos-breadcrumb .bvos-breadcrumb-home-icon {
  font-size: 16px;
  position: relative;
  top: 1px;
  margin-right: 4px;
  color: #86909C;
}
.bvos-breadcrumb .bvos-breadcrumb-home-icon.bvos-bdc-active {
  color: #2F2E3B;
}

.osc-tooltip-overlay {
  padding: 0;
  box-shadow: var(--box-shadow-light);
  background-color: transparent;
}
.osc-tooltip-overlay .rc-tooltip-arrow {
  display: none;
}
.osc-tooltip-overlay .rc-tooltip-inner {
  color: #fff;
  background-color: #555a71;
  min-height: 20px;
  padding: 10px 16px;
  font-size: 14px;
}
.osc-tooltip-overlay .rc-tooltip-inner .bvos-company-tooltip {
  padding: 0;
  line-height: 20px;
}

.bvos-header .bvos-user-avatar {
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  margin-right: 12px;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #c5c8f3;
}
.bvos-header .header-username {
  font-weight: 600;
  color: #555a71;
}
.bvos-header .header-username + i {
  margin-left: 8px;
}
.bvos-profile-dropDown .bvos-header-profile {
  font-size: 14px;
}
.bvos-profile-dropDown .bvos-header-profile-divider {
  height: 1px;
  background-color: #e0e3ec;
  width: 100%;
  margin: 4px 0;
}
.bvos-profile-dropDown .bvos-header-profile-item {
  cursor: pointer;
  min-width: 140px;
  white-space: nowrap;
  color: #43485f;
  height: 36px;
  border-radius: 4px;
  padding: 0 8px;
  display: flex;
  align-items: center;
}
.bvos-profile-dropDown .bvos-header-profile-item:nth-child(2) {
  min-width: 160px;
}
.bvos-profile-dropDown .bvos-header-profile-item i {
  font-size: 18px;
  margin-right: 4px;
}
.bvos-profile-dropDown .bvos-header-profile-item:hover {
  background-color: #f4f4fb;
}
.bvos-profile-dropDown .bvos-header-profile-item:first-child i {
  font-size: 19px;
}

.bvos-language {
  font-size: 14px;
}
.bvos-language-item {
  display: flex;
  align-items: center;
  color: #43485f;
  padding: 8px 4px 8px 20px;
  cursor: pointer;
  border-radius: 4px;
  min-width: 120px;
}
.bvos-language-item:hover {
  background-color: #f4f4fb;
}
.bvos-language-item > i {
  margin-right: 4px;
}
.bvos-language-active {
  padding-left: 2px;
}

.bvos-header-item-wrap {
  display: flex;
  align-items: center;
}
.bvos-header-item-wrap * {
  cursor: default;
}
.bvos-header-item-wrap .bvos-company-avatar {
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  margin-right: 12px;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #edf4ff;
}
.bvos-header-item-wrap .header-companyname {
  max-width: 100px;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: default;
}
.bvos-company-tooltip-wrap .bvos-company-tooltip {
  background-color: #555A71;
  padding: 6px 12px;
  color: #fff;
}

@font-face {
  font-family: 'FontAwesome';
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.2.0/fonts/fontawesome-webfont.eot');
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.2.0/fonts/fontawesome-webfont.eot?#iefix') format('embedded-opentype'), url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.2.0/fonts/fontawesome-webfont.woff') format('woff'), url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.2.0/fonts/fontawesome-webfont.ttf') format('truetype'), url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.2.0/fonts/fontawesome-webfont.svg?#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.bvos-menu {
  outline: none;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  list-style: none;
  border: 1px solid #d9d9d9;
  box-shadow: 0 0 4px #d9d9d9;
  border-radius: 3px;
  color: #666;
}
.bvos-menu-rtl {
  direction: rtl;
}
.bvos-menu-hidden,
.bvos-menu-submenu-hidden {
  display: none;
}
.bvos-menu-collapse {
  overflow: hidden;
  transition: height 0.3s ease-out;
}
.bvos-menu-item-group-list {
  margin: 0;
  padding: 0;
}
.bvos-menu-item-group-title {
  color: #999;
  line-height: 1.5;
  padding: 8px 10px;
  border-bottom: 1px solid #dedede;
}
.bvos-menu-item-active,
.bvos-menu-submenu-active > .bvos-menu-submenu-title {
  background-color: #eaf8fe;
}
.bvos-menu-item-selected {
  background-color: #eaf8fe;
  transform: translateZ(0);
}
.bvos-menu-submenu-selected {
  background-color: #eaf8fe;
}
.bvos-menu > li.bvos-menu-submenu {
  padding: 0;
}
.bvos-menu-horizontal.bvos-menu-sub,
.bvos-menu-vertical.bvos-menu-sub,
.bvos-menu-vertical-left.bvos-menu-sub,
.bvos-menu-vertical-right.bvos-menu-sub {
  min-width: 160px;
  margin-top: 0;
}
.bvos-menu-item,
.bvos-menu-submenu-title {
  margin: 0;
  position: relative;
  display: block;
  padding: 7px 7px 7px 16px;
  white-space: nowrap;
}
.bvos-menu-rtl .bvos-menu-item,
.bvos-menu-rtl .bvos-menu-submenu-title {
  padding: 7px 16px 7px 7px;
}
.bvos-menu-item.bvos-menu-item-disabled,
.bvos-menu-submenu-title.bvos-menu-item-disabled,
.bvos-menu-item.bvos-menu-submenu-disabled,
.bvos-menu-submenu-title.bvos-menu-submenu-disabled {
  color: #777 !important;
}
.bvos-menu-item-divider {
  height: 1px;
  margin: 1px 0;
  overflow: hidden;
  padding: 0;
  line-height: 0;
  background-color: #e5e5e5;
}
.bvos-menu-submenu-popup {
  position: absolute;
}
.bvos-menu-submenu-popup .submenu-title-wrapper {
  padding-right: 20px;
}
.bvos-menu-submenu-rtl.bvos-menu-submenu-popup .submenu-title-wrapper,
.bvos-menu-submenu-rtl .bvos-menu-submenu-popup .submenu-title-wrapper {
  padding-right: 0;
  padding-left: 20px;
}
.bvos-menu-submenu > .bvos-menu {
  background-color: #fff;
}
.bvos-menu .bvos-menu-submenu-title .anticon,
.bvos-menu .bvos-menu-item .anticon {
  width: 14px;
  height: 14px;
  margin-right: 8px;
  top: -1px;
}
.bvos-menu-rtl .bvos-menu .bvos-menu-submenu-title .anticon,
.bvos-menu-rtl .bvos-menu .bvos-menu-item .anticon {
  margin-right: 0;
  margin-left: 8px;
}
.bvos-menu-horizontal {
  background-color: #f3f5f7;
  border: none;
  border-bottom: 1px solid #d9d9d9;
  box-shadow: none;
  white-space: nowrap;
  overflow: hidden;
}
.bvos-menu-horizontal > .bvos-menu-item,
.bvos-menu-horizontal > .bvos-menu-submenu > .bvos-menu-submenu-title {
  padding: 15px 20px;
}
.bvos-menu-horizontal > .bvos-menu-submenu,
.bvos-menu-horizontal > .bvos-menu-item {
  border-bottom: 2px solid transparent;
  display: inline-block;
  vertical-align: bottom;
}
.bvos-menu-horizontal > .bvos-menu-submenu-active,
.bvos-menu-horizontal > .bvos-menu-item-active {
  border-bottom: 2px solid #2db7f5;
  background-color: #f3f5f7;
  color: #2baee9;
}
.bvos-menu-horizontal:after {
  content: '\20';
  display: block;
  height: 0;
  clear: both;
}
.bvos-menu-vertical,
.bvos-menu-vertical-left,
.bvos-menu-vertical-right,
.bvos-menu-inline {
  padding: 12px 0;
}
.bvos-menu-vertical > .bvos-menu-item,
.bvos-menu-vertical-left > .bvos-menu-item,
.bvos-menu-vertical-right > .bvos-menu-item,
.bvos-menu-inline > .bvos-menu-item,
.bvos-menu-vertical > .bvos-menu-submenu > .bvos-menu-submenu-title,
.bvos-menu-vertical-left > .bvos-menu-submenu > .bvos-menu-submenu-title,
.bvos-menu-vertical-right > .bvos-menu-submenu > .bvos-menu-submenu-title,
.bvos-menu-inline > .bvos-menu-submenu > .bvos-menu-submenu-title {
  padding: 12px 8px 12px 24px;
}
.bvos-menu-rtl.bvos-menu-vertical > .bvos-menu-item,
.bvos-menu-rtl.bvos-menu-vertical-left > .bvos-menu-item,
.bvos-menu-rtl.bvos-menu-vertical-right > .bvos-menu-item,
.bvos-menu-rtl.bvos-menu-inline > .bvos-menu-item,
.bvos-menu-rtl.bvos-menu-vertical > .bvos-menu-submenu > .bvos-menu-submenu-title,
.bvos-menu-rtl.bvos-menu-vertical-left > .bvos-menu-submenu > .bvos-menu-submenu-title,
.bvos-menu-rtl.bvos-menu-vertical-right > .bvos-menu-submenu > .bvos-menu-submenu-title,
.bvos-menu-rtl.bvos-menu-inline > .bvos-menu-submenu > .bvos-menu-submenu-title {
  padding: 12px 24px 12px 8px;
}
.bvos-menu-vertical .bvos-menu-submenu-arrow,
.bvos-menu-vertical-left .bvos-menu-submenu-arrow,
.bvos-menu-vertical-right .bvos-menu-submenu-arrow,
.bvos-menu-inline .bvos-menu-submenu-arrow {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  vertical-align: baseline;
  text-align: center;
  text-transform: none;
  text-rendering: auto;
  position: absolute;
  right: 16px;
  line-height: 1.5em;
}
.bvos-menu-vertical .bvos-menu-submenu-arrow:before,
.bvos-menu-vertical-left .bvos-menu-submenu-arrow:before,
.bvos-menu-vertical-right .bvos-menu-submenu-arrow:before,
.bvos-menu-inline .bvos-menu-submenu-arrow:before {
  content: '\f0da';
}
.bvos-menu-rtl.bvos-menu-vertical .bvos-menu-submenu-arrow:before,
.bvos-menu-rtl.bvos-menu-vertical-left .bvos-menu-submenu-arrow:before,
.bvos-menu-rtl.bvos-menu-vertical-right .bvos-menu-submenu-arrow:before,
.bvos-menu-rtl.bvos-menu-inline .bvos-menu-submenu-arrow:before,
.bvos-menu-submenu-rtl .bvos-menu-vertical .bvos-menu-submenu-arrow:before,
.bvos-menu-submenu-rtl .bvos-menu-vertical-left .bvos-menu-submenu-arrow:before,
.bvos-menu-submenu-rtl .bvos-menu-vertical-right .bvos-menu-submenu-arrow:before,
.bvos-menu-submenu-rtl .bvos-menu-inline .bvos-menu-submenu-arrow:before {
  content: '\f0d9';
}
.bvos-menu-rtl.bvos-menu-vertical .bvos-menu-submenu-arrow,
.bvos-menu-rtl.bvos-menu-vertical-left .bvos-menu-submenu-arrow,
.bvos-menu-rtl.bvos-menu-vertical-right .bvos-menu-submenu-arrow,
.bvos-menu-rtl.bvos-menu-inline .bvos-menu-submenu-arrow,
.bvos-menu-submenu-rtl .bvos-menu-vertical .bvos-menu-submenu-arrow,
.bvos-menu-submenu-rtl .bvos-menu-vertical-left .bvos-menu-submenu-arrow,
.bvos-menu-submenu-rtl .bvos-menu-vertical-right .bvos-menu-submenu-arrow,
.bvos-menu-submenu-rtl .bvos-menu-inline .bvos-menu-submenu-arrow {
  right: auto;
  left: 16px;
}
.bvos-menu-inline .bvos-menu-submenu-arrow {
  transform: rotate(90deg);
  transition: transform 0.3s;
}
.bvos-menu-inline .bvos-menu-submenu-open > .bvos-menu-submenu-title .bvos-menu-submenu-arrow {
  transform: rotate(-90deg);
}
.bvos-menu-vertical.bvos-menu-sub,
.bvos-menu-vertical-left.bvos-menu-sub,
.bvos-menu-vertical-right.bvos-menu-sub {
  padding: 0;
}
.bvos-menu-submenu-rtl .bvos-menu-vertical.bvos-menu-sub,
.bvos-menu-submenu-rtl .bvos-menu-vertical-left.bvos-menu-sub,
.bvos-menu-submenu-rtl .bvos-menu-vertical-right.bvos-menu-sub {
  direction: rtl;
}
.bvos-menu-sub.bvos-menu-inline {
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.bvos-menu-sub.bvos-menu-inline > .bvos-menu-item,
.bvos-menu-sub.bvos-menu-inline > .bvos-menu-submenu > .bvos-menu-submenu-title {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 0;
}
.bvos-menu-rtl .bvos-menu-sub.bvos-menu-inline > .bvos-menu-item,
.bvos-menu-rtl .bvos-menu-sub.bvos-menu-inline > .bvos-menu-submenu > .bvos-menu-submenu-title {
  padding-left: 0;
}
.bvos-menu-open-slide-up-enter,
.bvos-menu-open-slide-up-appear {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  transform-origin: 0 0;
  opacity: 0;
  -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
          animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.bvos-menu-open-slide-up-leave {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  transform-origin: 0 0;
  opacity: 1;
  -webkit-animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
          animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.bvos-menu-open-slide-up-enter.bvos-menu-open-slide-up-enter-active,
.bvos-menu-open-slide-up-appear.bvos-menu-open-slide-up-appear-active {
  -webkit-animation-name: rcMenuOpenSlideUpIn;
          animation-name: rcMenuOpenSlideUpIn;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.bvos-menu-open-slide-up-leave.bvos-menu-open-slide-up-leave-active {
  -webkit-animation-name: rcMenuOpenSlideUpOut;
          animation-name: rcMenuOpenSlideUpOut;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
@-webkit-keyframes rcMenuOpenSlideUpIn {
  0% {
    opacity: 0;
    transform-origin: 0% 0%;
    transform: scaleY(0);
  }
  100% {
    opacity: 1;
    transform-origin: 0% 0%;
    transform: scaleY(1);
  }
}
@keyframes rcMenuOpenSlideUpIn {
  0% {
    opacity: 0;
    transform-origin: 0% 0%;
    transform: scaleY(0);
  }
  100% {
    opacity: 1;
    transform-origin: 0% 0%;
    transform: scaleY(1);
  }
}
@-webkit-keyframes rcMenuOpenSlideUpOut {
  0% {
    opacity: 1;
    transform-origin: 0% 0%;
    transform: scaleY(1);
  }
  100% {
    opacity: 0;
    transform-origin: 0% 0%;
    transform: scaleY(0);
  }
}
@keyframes rcMenuOpenSlideUpOut {
  0% {
    opacity: 1;
    transform-origin: 0% 0%;
    transform: scaleY(1);
  }
  100% {
    opacity: 0;
    transform-origin: 0% 0%;
    transform: scaleY(0);
  }
}
.bvos-menu-open-zoom-enter,
.bvos-menu-open-zoom-appear {
  opacity: 0;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  transform-origin: 0 0;
  -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
          animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.bvos-menu-open-zoom-leave {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  transform-origin: 0 0;
  -webkit-animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
          animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.bvos-menu-open-zoom-enter.bvos-menu-open-zoom-enter-active,
.bvos-menu-open-zoom-appear.bvos-menu-open-zoom-appear-active {
  -webkit-animation-name: rcMenuOpenZoomIn;
          animation-name: rcMenuOpenZoomIn;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.bvos-menu-open-zoom-leave.bvos-menu-open-zoom-leave-active {
  -webkit-animation-name: rcMenuOpenZoomOut;
          animation-name: rcMenuOpenZoomOut;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.bvos-menu-submenu-rtl.bvos-menu-open-zoom-enter,
.bvos-menu-submenu-rtl.bvos-menu-open-zoom-appear,
.bvos-menu-submenu-rtl.bvos-menu-open-zoom-leave,
.bvos-menu-submenu-rtl .bvos-menu-open-zoom-enter,
.bvos-menu-submenu-rtl .bvos-menu-open-zoom-appear,
.bvos-menu-submenu-rtl .bvos-menu-open-zoom-leave {
  transform-origin: top right !important;
}
@-webkit-keyframes rcMenuOpenZoomIn {
  0% {
    opacity: 0;
    transform: scale(0, 0);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
@keyframes rcMenuOpenZoomIn {
  0% {
    opacity: 0;
    transform: scale(0, 0);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
@-webkit-keyframes rcMenuOpenZoomOut {
  0% {
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    transform: scale(0, 0);
  }
}
@keyframes rcMenuOpenZoomOut {
  0% {
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    transform: scale(0, 0);
  }
}
.bvos-menu-container {
  width: var(--bvos-leftmenu-width);
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  transition: background 0.3s, width 0.3s cubic-bezier(0.2, 0, 0, 1) 0s;
}
.bvos-menu-container .bvos-menu-active {
  height: 60px;
  width: 100%;
  background-color: var(--bvos-menu-bg-color);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 28px;
  box-sizing: border-box;
}
.bvos-menu-container .bvos-menu-active i {
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}
.bvos-menu-container .bvos-menu-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: var(--bvos-menu-bg-color);
}
.bvos-menu-container .bvos-menu-content::-webkit-scrollbar {
  width: 6px !important;
  height: 6px !important;
}
.bvos-menu-container .bvos-menu-content::-webkit-scrollbar-track {
  background-color: var(--bvos-menu-bg-color) !important;
  border-radius: 0;
  width: 4px !important;
}
.bvos-menu-container .bvos-menu-content::-webkit-scrollbar-thumb {
  background-color: #a2a7b8 !important;
  width: 4px !important;
}
.bvos-menu-container .bvos-menu {
  border: none;
  box-shadow: none;
  color: #fff;
  background-color: var(--bvos-menu-bg-color);
}
.bvos-menu-container .bvos-menu .menu-item-icon {
  margin-right: 8px;
  font-size: 20px;
  color: var(--bvos-menu-font-color);
}
.bvos-menu-container .bvos-menu .menu-item-title {
  opacity: 1;
  transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), margin 0.2s, color 0.2s;
}
.bvos-menu-container .bvos-menu .menu-item-title span {
  font-size: 16px;
}
.bvos-menu-container .bvos-menu .menu-item-cwrap {
  height: 50px;
  display: flex;
  flex-grow: 1;
  align-items: center;
  padding-left: 14px;
  width: 100%;
  overflow: hidden;
  transition: padding-left 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.bvos-menu-container .bvos-menu .menu-item-cwrap:hover {
  cursor: pointer;
  background-color: var(--bvos-menu-hover-color);
}
.bvos-menu-container .bvos-menu-submenu-title {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  color: var(--bvos-menu-font-color);
  padding: 0 !important;
  background-color: var(--bvos-menu-color);
}
.bvos-menu-container .bvos-menu-submenu-title .menu-item-title {
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 30px;
}
.bvos-menu-container .bvos-menu-submenu .bvos-menu-item::before,
.bvos-menu-container .bvos-menu-submenu-title::before {
  content: '';
  display: inline-block;
  position: absolute;
  opacity: 0;
  background-color: var(--bvos-menu-font-color);
}
.bvos-menu-container .bvos-menu-submenu-0 .bvos-menu-item::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-left: 24px;
}
.bvos-menu-container .bvos-menu-submenu-0 .bvos-menu-sub .menu-item-cwrap {
  padding-left: 36px;
}
.bvos-menu-container .bvos-menu-submenu-1 .bvos-menu-submenu-title::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-left: 24px;
}
.bvos-menu-container .bvos-menu-submenu-1 .bvos-menu-item::before {
  width: 6px;
  height: 2px;
  border-radius: 0;
  margin-left: 60px;
}
.bvos-menu-container .bvos-menu-submenu-1 .bvos-menu-sub .menu-item-cwrap {
  padding-left: 72px;
}
.bvos-menu-container .bvos-menu-submenu-2 .bvos-menu-submenu-title::before {
  width: 6px;
  height: 2px;
  border-radius: 0;
  margin-left: 60px;
}
.bvos-menu-container .bvos-menu-submenu-2 .bvos-menu-item::before {
  width: 6px;
  height: 2px;
  border-radius: 0;
  margin-left: 96px;
}
.bvos-menu-container .bvos-menu-submenu-2 .bvos-menu-sub .menu-item-cwrap {
  padding-left: 108px;
}
.bvos-menu-container .bvos-menu-submenu-3 .bvos-menu-submenu-title::before {
  width: 6px;
  height: 2px;
  border-radius: 0;
  margin-left: 96px;
}
.bvos-menu-container .bvos-menu-submenu-3 .bvos-menu-item::before {
  width: 6px;
  height: 2px;
  border-radius: 0;
  margin-left: 132px;
}
.bvos-menu-container .bvos-menu-submenu-3 .bvos-menu-sub .menu-item-cwrap {
  padding-left: 144px;
}
.bvos-menu-container .bvos-menu-submenu-4 .bvos-menu-submenu-title::before {
  width: 6px;
  height: 2px;
  border-radius: 0;
  margin-left: 132px;
}
.bvos-menu-container .bvos-menu-submenu-4 .bvos-menu-item::before {
  width: 6px;
  height: 2px;
  border-radius: 0;
  margin-left: 168px;
}
.bvos-menu-container .bvos-menu-submenu-4 .bvos-menu-sub .menu-item-cwrap {
  padding-left: 180px;
}
.bvos-menu-container .bvos-menu-submenu-5 .bvos-menu-submenu-title::before {
  width: 6px;
  height: 2px;
  border-radius: 0;
  margin-left: 168px;
}
.bvos-menu-container .bvos-menu-submenu-5 .bvos-menu-item::before {
  width: 6px;
  height: 2px;
  border-radius: 0;
  margin-left: 204px;
}
.bvos-menu-container .bvos-menu-submenu-5 .bvos-menu-sub .menu-item-cwrap {
  padding-left: 216px;
}
.bvos-menu-container .bvos-menu-submenu-6 .bvos-menu-submenu-title::before {
  width: 6px;
  height: 2px;
  border-radius: 0;
  margin-left: 204px;
}
.bvos-menu-container .bvos-menu-submenu-6 .bvos-menu-item::before {
  width: 6px;
  height: 2px;
  border-radius: 0;
  margin-left: 240px;
}
.bvos-menu-container .bvos-menu-submenu-6 .bvos-menu-sub .menu-item-cwrap {
  padding-left: 252px;
}
.bvos-menu-container .bvos-menu-submenu-7 .bvos-menu-submenu-title::before {
  width: 6px;
  height: 2px;
  border-radius: 0;
  margin-left: 240px;
}
.bvos-menu-container .bvos-menu-submenu-7 .bvos-menu-item::before {
  width: 6px;
  height: 2px;
  border-radius: 0;
  margin-left: 276px;
}
.bvos-menu-container .bvos-menu-submenu-7 .bvos-menu-sub .menu-item-cwrap {
  padding-left: 288px;
}
.bvos-menu-container .bvos-menu-submenu-8 .bvos-menu-submenu-title::before {
  width: 6px;
  height: 2px;
  border-radius: 0;
  margin-left: 276px;
}
.bvos-menu-container .bvos-menu-submenu-8 .bvos-menu-item::before {
  width: 6px;
  height: 2px;
  border-radius: 0;
  margin-left: 312px;
}
.bvos-menu-container .bvos-menu-submenu-8 .bvos-menu-sub .menu-item-cwrap {
  padding-left: 324px;
}
.bvos-menu-container .bvos-menu-submenu-9 .bvos-menu-submenu-title::before {
  width: 6px;
  height: 2px;
  border-radius: 0;
  margin-left: 312px;
}
.bvos-menu-container .bvos-menu-submenu-9 .bvos-menu-item::before {
  width: 6px;
  height: 2px;
  border-radius: 0;
  margin-left: 348px;
}
.bvos-menu-container .bvos-menu-submenu-9 .bvos-menu-sub .menu-item-cwrap {
  padding-left: 360px;
}
.bvos-menu-container .bvos-menu-item {
  padding: 0 !important;
  display: flex;
  width: 100%;
  margin-bottom: 8px;
  background: transparent;
  align-items: center;
}
.bvos-menu-container .bvos-menu-item .menu-item-title {
  font-size: 14px;
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 12px;
  color: var(--bvos-menu-font-color);
}
.bvos-menu-container .bvos-menu-item .menu-item-cwrap {
  background-color: var(--menu-active-color);
}
.bvos-menu-container .bvos-menu-item-active .menu-item-title {
  color: var(--bvos-menu-font-active-color);
  font-weight: 600;
}
.bvos-menu-container .bvos-menu-item-active .menu-item-icon {
  color: var(--bvos-menu-font-active-color);
}
.bvos-menu-container .bvos-menu-item-active .menu-item-cwrap {
  background-color: var(--bvos-menu-active-color);
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
}
.bvos-menu-container .bvos-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 128px;
}
.bvos-menu-container .bvos-menu-submenu-selected {
  background: transparent;
}
.bvos-menu-container .bvos-menu-item-selected::before {
  background-color: var(--bvos-menu-font-active-color) !important;
  opacity: 1 !important;
}
.bvos-menu-container .bvos-menu-item-selected .menu-item-cwrap {
  background-color: var(--bvos-menu-hover-color) !important;
}
.bvos-menu-container .menu-icon-expand {
  position: absolute;
  top: 16px;
  right: 10px;
  color: inherit;
  font-size: 20px;
}
.bvos-menu-container .bvos-menu-submenu-open > div > .menu-icon-expand {
  transform: rotate(180deg);
}
.bvos-menu-container .bvos-logo-wrap svg path {
  opacity: 1;
  transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.bvos-menu-container .bv-os-menu-fixed-area {
  width: calc(var(--bvos-leftmenu-width) - 6px);
  height: 24px;
  background-color: var(--bvos-menu-bg-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
}
.bvos-menu-container.bvos-menu-collapsed {
  width: var(--bvos-leftmenu-collapsed-width);
}
.bvos-menu-container.bvos-menu-collapsed .bvos-logo-wrap svg circle + path + path {
  opacity: 0;
}
.bvos-menu-container.bvos-menu-collapsed .bv-os-menu-fixed-area {
  width: calc(var(--bvos-leftmenu-collapsed-width) - 6px);
}
.bvos-menu-container .bvos-menu-inline-collapsed {
  width: var(--bvos-leftmenu-collapsed-width);
}
.bvos-menu-container .bvos-menu-inline-collapsed .menu-item-title {
  opacity: 0;
  min-width: 0;
}
.bvos-menu-container .bvos-menu-inline-collapsed .menu-item-cwrap {
  padding-left: 24px;
}
.bvos-menu-container .bvos-menu-inline-collapsed .menu-item-cwrap + .menu-icon-expand {
  display: none;
}
.bvos-menu-container .bvos-menu-inline-collapsed .bvos-menu-submenu-selected .menu-item-icon {
  color: var(--bvos-menu-font-active-color);
}
.bvos-menu-container .bvos-menu-inline-collapsed .bvos-menu-submenu-selected .bvos-menu-submenu-title {
  background-color: var(--bvos-menu-hover-color);
}
.bvos-menu-tooltip-level0 {
  opacity: 1;
}
.bvos-menu-tooltip-level0 .rc-tooltip-inner {
  background-color: var(--bvos-menu-bg-color);
  color: var(--bvos-menu-font-color);
  margin-left: -3px;
}
.bvos-menu-submenu-popup {
  z-index: 102;
  border-radius: 8px;
  overflow: hidden;
}
.bvos-menu-submenu-popup .bvos-menu-item {
  cursor: pointer;
}
.bvos-menu-submenu-popup .bvos-menu-submenu-title {
  padding-left: 16px !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bvos-menu-bg-color);
  color: var(--bvos-menu-font-color);
}
.bvos-menu-submenu-popup .bvos-menu-submenu-title:hover {
  background-color: var(--bvos-menu-hover-color);
}
.bvos-menu-submenu-popup .menu-icon-expand {
  margin-left: 8px;
  transform: rotate(270deg);
  font-size: 16px;
}
.bvos-menu-submenu-popup .bvos-menu-item {
  padding-left: 16px !important;
  padding-right: 16px !important;
  background-color: var(--bvos-menu-bg-color);
  color: var(--bvos-menu-font-color);
}
.bvos-menu-submenu-popup .bvos-menu-item:hover {
  background-color: var(--bvos-menu-hover-color);
}
.bvos-menu-submenu-popup .bvos-menu-item.bvos-menu-item-selected {
  background-color: var(--bvos-menu-hover-color) !important;
}
.bvos-menu-submenu-popup .bvos-menu-item.bvos-menu-item-selected .menu-item-title {
  font-weight: 600;
  color: var(--bvos-menu-font-active-color);
}

@font-face {
  font-family: 'GAIA-ICON-SET';
  src:  url(/static/font/GAIA-ICON-SET.eot);
  src:  url(/static/font/GAIA-ICON-SET.eot#iefix) format('embedded-opentype'),
    url(/static/font/GAIA-ICON-SET.ttf) format('truetype'),
    url(/static/font/GAIA-ICON-SET.woff) format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

.bv-icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'GAIA-ICON-SET' !important;
  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;
}

.icon-Atom-bold:before {
  content: "\e900";
}
.icon-Bird-bold:before {
  content: "\e901";
}
.icon-Bone-bold:before {
  content: "\e902";
}
.icon-Butterfly-bold:before {
  content: "\e903";
}
.icon-Cactus-bold:before {
  content: "\e904";
}
.icon-Campfire-bold:before {
  content: "\e905";
}
.icon-Cat-bold:before {
  content: "\e906";
}
.icon-Cloud-bold:before {
  content: "\e907";
}
.icon-CloudFog-bold:before {
  content: "\e908";
}
.icon-CloudLightning-bold:before {
  content: "\e909";
}
.icon-CloudMoon-bold:before {
  content: "\e90a";
}
.icon-CloudRain-bold:before {
  content: "\e90b";
}
.icon-CloudSnow-bold:before {
  content: "\e90c";
}
.icon-CloudSun-bold:before {
  content: "\e90d";
}
.icon-Dog-bold:before {
  content: "\e90e";
}
.icon-Drop-bold:before {
  content: "\e90f";
}
.icon-Feather-bold:before {
  content: "\e910";
}
.icon-Fire-bold:before {
  content: "\e911";
}
.icon-FireSimple-bold:before {
  content: "\e912";
}
.icon-Fish-bold:before {
  content: "\e913";
}
.icon-FishSimple-bold:before {
  content: "\e914";
}
.icon-Flame-bold:before {
  content: "\e915";
}
.icon-Flower-bold:before {
  content: "\e916";
}
.icon-FlowerLotus-bold:before {
  content: "\e917";
}
.icon-FlowerTulip-bold:before {
  content: "\e918";
}
.icon-Leaf-bold:before {
  content: "\e919";
}
.icon-Moon-bold:before {
  content: "\e91a";
}
.icon-MoonStars-bold:before {
  content: "\e91b";
}
.icon-Mountains-bold:before {
  content: "\e91c";
}
.icon-PawPrint-bold:before {
  content: "\e91d";
}
.icon-Planet-bold:before {
  content: "\e91e";
}
.icon-Plant-bold:before {
  content: "\e91f";
}
.icon-Rainbow-bold:before {
  content: "\e920";
}
.icon-RainbowCloud-bold:before {
  content: "\e921";
}
.icon-ShootingStar-bold:before {
  content: "\e922";
}
.icon-Shrimp-bold:before {
  content: "\e923";
}
.icon-Snowflake-bold:before {
  content: "\e924";
}
.icon-Sparkle-bold:before {
  content: "\e925";
}
.icon-StarFour-bold:before {
  content: "\e926";
}
.icon-Sun-bold:before {
  content: "\e927";
}
.icon-SunDim-bold:before {
  content: "\e928";
}
.icon-SunHorizon-bold:before {
  content: "\e929";
}
.icon-Thermometer-bold:before {
  content: "\e92a";
}
.icon-ThermometerCold-bold:before {
  content: "\e92b";
}
.icon-ThermometerHot-bold:before {
  content: "\e92c";
}
.icon-ThermometerSimple-bold:before {
  content: "\e92d";
}
.icon-Tree-bold:before {
  content: "\e92e";
}
.icon-TreeEvergreen-bold:before {
  content: "\e92f";
}
.icon-Umbrella-bold:before {
  content: "\e930";
}
.icon-UmbrellaSimple-bold:before {
  content: "\e931";
}
.icon-Waves-bold:before {
  content: "\e932";
}
.icon-Wind-bold:before {
  content: "\e933";
}
.icon-Alarm-bold:before {
  content: "\e934";
}
.icon-Calendar-bold:before {
  content: "\e935";
}
.icon-CalendarBlank-bold:before {
  content: "\e936";
}
.icon-CalendarCheck-bold:before {
  content: "\e937";
}
.icon-CalendarPlus-bold:before {
  content: "\e938";
}
.icon-CalendarX-bold:before {
  content: "\e939";
}
.icon-Clock-bold:before {
  content: "\e93a";
}
.icon-ClockAfternoon-bold:before {
  content: "\e93b";
}
.icon-ClockClockwise-bold:before {
  content: "\e93c";
}
.icon-ClockCountdown-bold:before {
  content: "\e93d";
}
.icon-ClockCounterClockwise-bold:before {
  content: "\e93e";
}
.icon-Hourglass-bold:before {
  content: "\e93f";
}
.icon-HourglassHigh-bold:before {
  content: "\e940";
}
.icon-HourglassLow-bold:before {
  content: "\e941";
}
.icon-HourglassMedium-bold:before {
  content: "\e942";
}
.icon-HourglassSimple-bold:before {
  content: "\e943";
}
.icon-HourglassSimpleHigh-bold:before {
  content: "\e944";
}
.icon-HourglassSimpleLow-bold:before {
  content: "\e945";
}
.icon-HourglassSimpleMedium-bold:before {
  content: "\e946";
}
.icon-Timer-bold:before {
  content: "\e947";
}
.icon-Watch-bold:before {
  content: "\e948";
}
.icon-AppWindow-bold:before {
  content: "\e949";
}
.icon-Backspace-bold:before {
  content: "\e94a";
}
.icon-BatteryCharging-bold:before {
  content: "\e94b";
}
.icon-BatteryChargingVertical-bold:before {
  content: "\e94c";
}
.icon-BatteryEmpty-bold:before {
  content: "\e94d";
}
.icon-BatteryFull-bold:before {
  content: "\e94e";
}
.icon-BatteryHigh-bold:before {
  content: "\e94f";
}
.icon-BatteryLow-bold:before {
  content: "\e950";
}
.icon-BatteryMedium-bold:before {
  content: "\e951";
}
.icon-BatteryPlus-bold:before {
  content: "\e952";
}
.icon-BatteryPlusVertical-bold:before {
  content: "\e953";
}
.icon-BatteryVerticalEmpty-bold:before {
  content: "\e954";
}
.icon-BatteryVerticalFull-bold:before {
  content: "\e955";
}
.icon-BatteryVerticalHigh-bold:before {
  content: "\e956";
}
.icon-BatteryVerticalLow-bold:before {
  content: "\e957";
}
.icon-BatteryVerticalMedium-bold:before {
  content: "\e958";
}
.icon-BatteryWarning-bold:before {
  content: "\e959";
}
.icon-BatteryWarningVertical-bold:before {
  content: "\e95a";
}
.icon-Bell-bold:before {
  content: "\e95b";
}
.icon-BellRinging-bold:before {
  content: "\e95c";
}
.icon-BellSimple-bold:before {
  content: "\e95d";
}
.icon-BellSimpleRinging-bold:before {
  content: "\e95e";
}
.icon-BellSimpleSlash-bold:before {
  content: "\e95f";
}
.icon-BellSimpleZ-bold:before {
  content: "\e960";
}
.icon-BellSlash-bold:before {
  content: "\e961";
}
.icon-BellZ-bold:before {
  content: "\e962";
}
.icon-Bluetooth-bold:before {
  content: "\e963";
}
.icon-BluetoothConnected-bold:before {
  content: "\e964";
}
.icon-BluetoothSlash-bold:before {
  content: "\e965";
}
.icon-BluetoothX-bold:before {
  content: "\e966";
}
.icon-Browser-bold:before {
  content: "\e967";
}
.icon-Browsers-bold:before {
  content: "\e968";
}
.icon-CellSignalFull-bold:before {
  content: "\e969";
}
.icon-CellSignalHigh-bold:before {
  content: "\e96a";
}
.icon-CellSignalLow-bold:before {
  content: "\e96b";
}
.icon-CellSignalMedium-bold:before {
  content: "\e96c";
}
.icon-CellSignalNone-bold:before {
  content: "\e96d";
}
.icon-CellSignalSlash-bold:before {
  content: "\e96e";
}
.icon-CellSignalX-bold:before {
  content: "\e96f";
}
.icon-Check-bold:before {
  content: "\e970";
}
.icon-CheckCircle-bold:before {
  content: "\e971";
}
.icon-CheckFat-bold:before {
  content: "\e972";
}
.icon-Checks-bold:before {
  content: "\e973";
}
.icon-CheckSquare-bold:before {
  content: "\e974";
}
.icon-CheckSquareOffset-bold:before {
  content: "\e975";
}
.icon-Circuitry-bold:before {
  content: "\e976";
}
.icon-CloudArrowDown-bold:before {
  content: "\e977";
}
.icon-CloudArrowUp-bold:before {
  content: "\e978";
}
.icon-CloudCheck-bold:before {
  content: "\e979";
}
.icon-CloudSlash-bold:before {
  content: "\e97a";
}
.icon-CloudWarning-bold:before {
  content: "\e97b";
}
.icon-CloudX-bold:before {
  content: "\e97c";
}
.icon-Command-bold:before {
  content: "\e97d";
}
.icon-ComputerTower-bold:before {
  content: "\e97e";
}
.icon-Control-bold:before {
  content: "\e97f";
}
.icon-Cursor-bold:before {
  content: "\e980";
}
.icon-CursorClick-bold:before {
  content: "\e981";
}
.icon-Desktop-bold:before {
  content: "\e982";
}
.icon-DesktopTower-bold:before {
  content: "\e983";
}
.icon-DeviceMobile-bold:before {
  content: "\e984";
}
.icon-DeviceMobileCamera-bold:before {
  content: "\e985";
}
.icon-DeviceMobileSpeaker-bold:before {
  content: "\e986";
}
.icon-Devices-bold:before {
  content: "\e987";
}
.icon-DeviceTablet-bold:before {
  content: "\e988";
}
.icon-DeviceTabletCamera-bold:before {
  content: "\e989";
}
.icon-DeviceTabletSpeaker-bold:before {
  content: "\e98a";
}
.icon-Dot-bold:before {
  content: "\e98b";
}
.icon-DotOutline-bold:before {
  content: "\e98c";
}
.icon-DotsNine-bold:before {
  content: "\e98d";
}
.icon-DotsSix-bold:before {
  content: "\e98e";
}
.icon-DotsSixVertical-bold:before {
  content: "\e98f";
}
.icon-DotsThree-bold:before {
  content: "\e990";
}
.icon-DotsThreeCircle-bold:before {
  content: "\e991";
}
.icon-DotsThreeCircleVertical-bold:before {
  content: "\e992";
}
.icon-DotsThreeOutline-bold:before {
  content: "\e993";
}
.icon-DotsThreeOutlineVertical-bold:before {
  content: "\e994";
}
.icon-DotsThreeVertical-bold:before {
  content: "\e995";
}
.icon-Download-bold:before {
  content: "\e996";
}
.icon-DownloadSimple-bold:before {
  content: "\e997";
}
.icon-Flashlight-bold:before {
  content: "\e998";
}
.icon-Gauge-bold:before {
  content: "\e999";
}
.icon-Gear-bold:before {
  content: "\e99a";
}
.icon-GearSix-bold:before {
  content: "\e99b";
}
.icon-HandSwipeLeft-bold:before {
  content: "\e99c";
}
.icon-HandSwipeRight-bold:before {
  content: "\e99d";
}
.icon-HandTap-bold:before {
  content: "\e99e";
}
.icon-HardDrive-bold:before {
  content: "\e99f";
}
.icon-HardDrives-bold:before {
  content: "\e9a0";
}
.icon-Keyboard-bold:before {
  content: "\e9a1";
}
.icon-KeyReturn-bold:before {
  content: "\e9a2";
}
.icon-Laptop-bold:before {
  content: "\e9a3";
}
.icon-Lightbulb-bold:before {
  content: "\e9a4";
}
.icon-LightbulbFilament-bold:before {
  content: "\e9a5";
}
.icon-Lightning-bold:before {
  content: "\e9a6";
}
.icon-LightningA-bold:before {
  content: "\e9a7";
}
.icon-LightningSlash-bold:before {
  content: "\e9a8";
}
.icon-Link-bold:before {
  content: "\e9a9";
}
.icon-LinkBreak-bold:before {
  content: "\e9aa";
}
.icon-LinkSimple-bold:before {
  content: "\e9ab";
}
.icon-LinkSimpleBreak-bold:before {
  content: "\e9ac";
}
.icon-LinkSimpleHorizontal-bold:before {
  content: "\e9ad";
}
.icon-LinkSimpleHorizontalBreak-bold:before {
  content: "\e9ae";
}
.icon-ListMagnifyingGlass-bold:before {
  content: "\e9af";
}
.icon-MagnifyingGlass-bold:before {
  content: "\e9b0";
}
.icon-MagnifyingGlassMinus-bold:before {
  content: "\e9b1";
}
.icon-MagnifyingGlassPlus-bold:before {
  content: "\e9b2";
}
.icon-Monitor-bold:before {
  content: "\e9b3";
}
.icon-MonitorPlay-bold:before {
  content: "\e9b4";
}
.icon-Mouse-bold:before {
  content: "\e9b5";
}
.icon-MouseSimple-bold:before {
  content: "\e9b6";
}
.icon-Notification-bold:before {
  content: "\e9b7";
}
.icon-Nut-bold:before {
  content: "\e9b8";
}
.icon-Option-bold:before {
  content: "\e9b9";
}
.icon-Plug-bold:before {
  content: "\e9ba";
}
.icon-PlugCharging-bold:before {
  content: "\e9bb";
}
.icon-Plugs-bold:before {
  content: "\e9bc";
}
.icon-PlugsConnected-bold:before {
  content: "\e9bd";
}
.icon-Power-bold:before {
  content: "\e9be";
}
.icon-QrCode-bold:before {
  content: "\e9bf";
}
.icon-RadioButton-bold:before {
  content: "\e9c0";
}
.icon-Scan-bold:before {
  content: "\e9c1";
}
.icon-SignIn-bold:before {
  content: "\e9c2";
}
.icon-SignOut-bold:before {
  content: "\e9c3";
}
.icon-SimCard-bold:before {
  content: "\e9c4";
}
.icon-Spinner-bold:before {
  content: "\e9c5";
}
.icon-SpinnerGap-bold:before {
  content: "\e9c6";
}
.icon-Swap-bold:before {
  content: "\e9c7";
}
.icon-Tabs-bold:before {
  content: "\e9c8";
}
.icon-ToggleLeft-bold:before {
  content: "\e9c9";
}
.icon-ToggleRight-bold:before {
  content: "\e9ca";
}
.icon-Upload-bold:before {
  content: "\e9cb";
}
.icon-UploadSimple-bold:before {
  content: "\e9cc";
}
.icon-Usb-bold:before {
  content: "\e9cd";
}
.icon-Vibrate-bold:before {
  content: "\e9ce";
}
.icon-WifiHigh-bold:before {
  content: "\e9cf";
}
.icon-WifiLow-bold:before {
  content: "\e9d0";
}
.icon-WifiMedium-bold:before {
  content: "\e9d1";
}
.icon-WifiNone-bold:before {
  content: "\e9d2";
}
.icon-WifiSlash-bold:before {
  content: "\e9d3";
}
.icon-WifiX-bold:before {
  content: "\e9d4";
}
.icon-Detective-bold:before {
  content: "\e9d5";
}
.icon-Fingerprint-bold:before {
  content: "\e9d6";
}
.icon-FingerprintSimple-bold:before {
  content: "\e9d7";
}
.icon-FireExtinguisher-bold:before {
  content: "\e9d8";
}
.icon-Info-bold:before {
  content: "\e9d9";
}
.icon-Key-bold:before {
  content: "\e9da";
}
.icon-Keyhole-bold:before {
  content: "\e9db";
}
.icon-Lock-bold:before {
  content: "\e9dc";
}
.icon-LockKey-bold:before {
  content: "\e9dd";
}
.icon-LockKeyOpen-bold:before {
  content: "\e9de";
}
.icon-LockLaminated-bold:before {
  content: "\e9df";
}
.icon-LockLaminatedOpen-bold:before {
  content: "\e9e0";
}
.icon-LockOpen-bold:before {
  content: "\e9e1";
}
.icon-LockSimple-bold:before {
  content: "\e9e2";
}
.icon-LockSimpleOpen-bold:before {
  content: "\e9e3";
}
.icon-Password-bold:before {
  content: "\e9e4";
}
.icon-Prohibit-bold:before {
  content: "\e9e5";
}
.icon-ProhibitInset-bold:before {
  content: "\e9e6";
}
.icon-Question-bold:before {
  content: "\e9e7";
}
.icon-Radioactive-bold:before {
  content: "\e9e8";
}
.icon-Seal-bold:before {
  content: "\e9e9";
}
.icon-SealCheck-bold:before {
  content: "\e9ea";
}
.icon-SealQuestion-bold:before {
  content: "\e9eb";
}
.icon-SealWarning-bold:before {
  content: "\e9ec";
}
.icon-Shield-bold:before {
  content: "\e9ed";
}
.icon-ShieldCheck-bold:before {
  content: "\e9ee";
}
.icon-ShieldCheckered-bold:before {
  content: "\e9ef";
}
.icon-ShieldChevron-bold:before {
  content: "\e9f0";
}
.icon-ShieldPlus-bold:before {
  content: "\e9f1";
}
.icon-ShieldSlash-bold:before {
  content: "\e9f2";
}
.icon-ShieldStar-bold:before {
  content: "\e9f3";
}
.icon-ShieldWarning-bold:before {
  content: "\e9f4";
}
.icon-Siren-bold:before {
  content: "\e9f5";
}
.icon-Vault-bold:before {
  content: "\e9f6";
}
.icon-Wall-bold:before {
  content: "\e9f7";
}
.icon-Warning-bold:before {
  content: "\e9f8";
}
.icon-WarningCircle-bold:before {
  content: "\e9f9";
}
.icon-WarningDiamond-bold:before {
  content: "\e9fa";
}
.icon-WarningOctagon-bold:before {
  content: "\e9fb";
}
.icon-Baby-bold:before {
  content: "\e9fc";
}
.icon-Footprints-bold:before {
  content: "\e9fd";
}
.icon-GenderFemale-bold:before {
  content: "\e9fe";
}
.icon-GenderIntersex-bold:before {
  content: "\e9ff";
}
.icon-GenderMale-bold:before {
  content: "\ea00";
}
.icon-GenderNeuter-bold:before {
  content: "\ea01";
}
.icon-GenderNonbinary-bold:before {
  content: "\ea02";
}
.icon-GenderTransgender-bold:before {
  content: "\ea03";
}
.icon-Hand-bold:before {
  content: "\ea04";
}
.icon-HandEye-bold:before {
  content: "\ea05";
}
.icon-HandFist-bold:before {
  content: "\ea06";
}
.icon-HandGrabbing-bold:before {
  content: "\ea07";
}
.icon-HandPalm-bold:before {
  content: "\ea08";
}
.icon-HandPointing-bold:before {
  content: "\ea09";
}
.icon-HandsClapping-bold:before {
  content: "\ea0a";
}
.icon-Handshake-bold:before {
  content: "\ea0b";
}
.icon-HandsPraying-bold:before {
  content: "\ea0c";
}
.icon-HandWaving-bold:before {
  content: "\ea0d";
}
.icon-IdentificationBadge-bold:before {
  content: "\ea0e";
}
.icon-IdentificationCard-bold:before {
  content: "\ea0f";
}
.icon-Person-bold:before {
  content: "\ea10";
}
.icon-PersonArmsSpread-bold:before {
  content: "\ea11";
}
.icon-PersonSimple-bold:before {
  content: "\ea12";
}
.icon-PersonSimpleBike-bold:before {
  content: "\ea13";
}
.icon-PersonSimpleRun-bold:before {
  content: "\ea14";
}
.icon-PersonSimpleThrow-bold:before {
  content: "\ea15";
}
.icon-PersonSimpleWalk-bold:before {
  content: "\ea16";
}
.icon-Smiley-bold:before {
  content: "\ea17";
}
.icon-SmileyAngry-bold:before {
  content: "\ea18";
}
.icon-SmileyBlank-bold:before {
  content: "\ea19";
}
.icon-SmileyMeh-bold:before {
  content: "\ea1a";
}
.icon-SmileyNervous-bold:before {
  content: "\ea1b";
}
.icon-SmileySad-bold:before {
  content: "\ea1c";
}
.icon-SmileySticker-bold:before {
  content: "\ea1d";
}
.icon-SmileyWink-bold:before {
  content: "\ea1e";
}
.icon-SmileyXEyes-bold:before {
  content: "\ea1f";
}
.icon-User-bold:before {
  content: "\ea20";
}
.icon-UserCircle-bold:before {
  content: "\ea21";
}
.icon-UserCircleGear-bold:before {
  content: "\ea22";
}
.icon-UserCircleMinus-bold:before {
  content: "\ea23";
}
.icon-UserCirclePlus-bold:before {
  content: "\ea24";
}
.icon-UserFocus-bold:before {
  content: "\ea25";
}
.icon-UserGear-bold:before {
  content: "\ea26";
}
.icon-UserList-bold:before {
  content: "\ea27";
}
.icon-UserMinus-bold:before {
  content: "\ea28";
}
.icon-UserPlus-bold:before {
  content: "\ea29";
}
.icon-UserRectangle-bold:before {
  content: "\ea2a";
}
.icon-Users-bold:before {
  content: "\ea2b";
}
.icon-UsersFour-bold:before {
  content: "\ea2c";
}
.icon-UserSquare-bold:before {
  content: "\ea2d";
}
.icon-UsersThree-bold:before {
  content: "\ea2e";
}
.icon-UserSwitch-bold:before {
  content: "\ea2f";
}
.icon-Wheelchair-bold:before {
  content: "\ea30";
}
.icon-WheelchairMotion-bold:before {
  content: "\ea31";
}
.icon-Archive-bold:before {
  content: "\ea32";
}
.icon-ArchiveBox-bold:before {
  content: "\ea33";
}
.icon-ArchiveTray-bold:before {
  content: "\ea34";
}
.icon-Briefcase-bold:before {
  content: "\ea35";
}
.icon-BriefcaseMetal-bold:before {
  content: "\ea36";
}
.icon-Cards-bold:before {
  content: "\ea37";
}
.icon-Clipboard-bold:before {
  content: "\ea38";
}
.icon-ClipboardText-bold:before {
  content: "\ea39";
}
.icon-Copy-bold:before {
  content: "\ea3a";
}
.icon-CopySimple-bold:before {
  content: "\ea3b";
}
.icon-CursorText-bold:before {
  content: "\ea3c";
}
.icon-File-bold:before {
  content: "\ea3d";
}
.icon-FileArchive-bold:before {
  content: "\ea3e";
}
.icon-FileArrowDown-bold:before {
  content: "\ea3f";
}
.icon-FileArrowUp-bold:before {
  content: "\ea40";
}
.icon-FileAudio-bold:before {
  content: "\ea41";
}
.icon-FileCloud-bold:before {
  content: "\ea42";
}
.icon-FileCode-bold:before {
  content: "\ea43";
}
.icon-FileCss-bold:before {
  content: "\ea44";
}
.icon-FileCsv-bold:before {
  content: "\ea45";
}
.icon-FileDashed-bold:before {
  content: "\ea46";
}
.icon-FileDoc-bold:before {
  content: "\ea47";
}
.icon-FileHtml-bold:before {
  content: "\ea48";
}
.icon-FileImage-bold:before {
  content: "\ea49";
}
.icon-FileJpg-bold:before {
  content: "\ea4a";
}
.icon-FileJs-bold:before {
  content: "\ea4b";
}
.icon-FileJsx-bold:before {
  content: "\ea4c";
}
.icon-FileLock-bold:before {
  content: "\ea4d";
}
.icon-FileMinus-bold:before {
  content: "\ea4e";
}
.icon-FilePdf-bold:before {
  content: "\ea4f";
}
.icon-FilePlus-bold:before {
  content: "\ea50";
}
.icon-FilePng-bold:before {
  content: "\ea51";
}
.icon-FilePpt-bold:before {
  content: "\ea52";
}
.icon-FileRs-bold:before {
  content: "\ea53";
}
.icon-Files-bold:before {
  content: "\ea54";
}
.icon-FileSearch-bold:before {
  content: "\ea55";
}
.icon-FileSql-bold:before {
  content: "\ea56";
}
.icon-FileSvg-bold:before {
  content: "\ea57";
}
.icon-FileText-bold:before {
  content: "\ea58";
}
.icon-FileTs-bold:before {
  content: "\ea59";
}
.icon-FileTsx-bold:before {
  content: "\ea5a";
}
.icon-FileVideo-bold:before {
  content: "\ea5b";
}
.icon-FileVue-bold:before {
  content: "\ea5c";
}
.icon-FileX-bold:before {
  content: "\ea5d";
}
.icon-FileXls-bold:before {
  content: "\ea5e";
}
.icon-FileZip-bold:before {
  content: "\ea5f";
}
.icon-FloppyDisk-bold:before {
  content: "\ea60";
}
.icon-FloppyDiskBack-bold:before {
  content: "\ea61";
}
.icon-Folder-bold:before {
  content: "\ea62";
}
.icon-FolderDashed-bold:before {
  content: "\ea63";
}
.icon-FolderLock-bold:before {
  content: "\ea64";
}
.icon-FolderMinus-bold:before {
  content: "\ea65";
}
.icon-FolderNotch-bold:before {
  content: "\ea66";
}
.icon-FolderNotchMinus-bold:before {
  content: "\ea67";
}
.icon-FolderNotchOpen-bold:before {
  content: "\ea68";
}
.icon-FolderNotchPlus-bold:before {
  content: "\ea69";
}
.icon-FolderOpen-bold:before {
  content: "\ea6a";
}
.icon-FolderPlus-bold:before {
  content: "\ea6b";
}
.icon-Folders-bold:before {
  content: "\ea6c";
}
.icon-FolderSimple-bold:before {
  content: "\ea6d";
}
.icon-FolderSimpleDashed-bold:before {
  content: "\ea6e";
}
.icon-FolderSimpleLock-bold:before {
  content: "\ea6f";
}
.icon-FolderSimpleMinus-bold:before {
  content: "\ea70";
}
.icon-FolderSimplePlus-bold:before {
  content: "\ea71";
}
.icon-FolderSimpleStar-bold:before {
  content: "\ea72";
}
.icon-FolderSimpleUser-bold:before {
  content: "\ea73";
}
.icon-FolderStar-bold:before {
  content: "\ea74";
}
.icon-FolderUser-bold:before {
  content: "\ea75";
}
.icon-Funnel-bold:before {
  content: "\ea76";
}
.icon-FunnelSimple-bold:before {
  content: "\ea77";
}
.icon-Kanban-bold:before {
  content: "\ea78";
}
.icon-List-bold:before {
  content: "\ea79";
}
.icon-ListBullets-bold:before {
  content: "\ea7a";
}
.icon-ListChecks-bold:before {
  content: "\ea7b";
}
.icon-ListDashes-bold:before {
  content: "\ea7c";
}
.icon-ListNumbers-bold:before {
  content: "\ea7d";
}
.icon-ListPlus-bold:before {
  content: "\ea7e";
}
.icon-Note-bold:before {
  content: "\ea7f";
}
.icon-NoteBlank-bold:before {
  content: "\ea80";
}
.icon-Notebook-bold:before {
  content: "\ea81";
}
.icon-Notepad-bold:before {
  content: "\ea82";
}
.icon-NotePencil-bold:before {
  content: "\ea83";
}
.icon-Paperclip-bold:before {
  content: "\ea84";
}
.icon-PaperclipHorizontal-bold:before {
  content: "\ea85";
}
.icon-Paragraph-bold:before {
  content: "\ea86";
}
.icon-Presentation-bold:before {
  content: "\ea87";
}
.icon-PresentationChart-bold:before {
  content: "\ea88";
}
.icon-Printer-bold:before {
  content: "\ea89";
}
.icon-ProjectorScreen-bold:before {
  content: "\ea8a";
}
.icon-ProjectorScreenChart-bold:before {
  content: "\ea8b";
}
.icon-PushPin-bold:before {
  content: "\ea8c";
}
.icon-PushPinSimple-bold:before {
  content: "\ea8d";
}
.icon-PushPinSimpleSlash-bold:before {
  content: "\ea8e";
}
.icon-PushPinSlash-bold:before {
  content: "\ea8f";
}
.icon-SortAscending-bold:before {
  content: "\ea90";
}
.icon-SortDescending-bold:before {
  content: "\ea91";
}
.icon-TextAa-bold:before {
  content: "\ea92";
}
.icon-TextAlignCenter-bold:before {
  content: "\ea93";
}
.icon-TextAlignJustify-bold:before {
  content: "\ea94";
}
.icon-TextAlignLeft-bold:before {
  content: "\ea95";
}
.icon-TextAlignRight-bold:before {
  content: "\ea96";
}
.icon-TextB-bold:before {
  content: "\ea97";
}
.icon-Textbox-bold:before {
  content: "\ea98";
}
.icon-TextColumns-bold:before {
  content: "\ea99";
}
.icon-TextH-bold:before {
  content: "\ea9a";
}
.icon-TextHFive-bold:before {
  content: "\ea9b";
}
.icon-TextHFour-bold:before {
  content: "\ea9c";
}
.icon-TextHOne-bold:before {
  content: "\ea9d";
}
.icon-TextHSix-bold:before {
  content: "\ea9e";
}
.icon-TextHThree-bold:before {
  content: "\ea9f";
}
.icon-TextHTwo-bold:before {
  content: "\eaa0";
}
.icon-TextIndent-bold:before {
  content: "\eaa1";
}
.icon-TextItalic-bold:before {
  content: "\eaa2";
}
.icon-TextOutdent-bold:before {
  content: "\eaa3";
}
.icon-TextStrikethrough-bold:before {
  content: "\eaa4";
}
.icon-TextT-bold:before {
  content: "\eaa5";
}
.icon-TextUnderline-bold:before {
  content: "\eaa6";
}
.icon-Trash-bold:before {
  content: "\eaa7";
}
.icon-TrashSimple-bold:before {
  content: "\eaa8";
}
.icon-Tray-bold:before {
  content: "\eaa9";
}
.icon-Airplay-bold:before {
  content: "\eaaa";
}
.icon-Aperture-bold:before {
  content: "\eaab";
}
.icon-Article-bold-bold:before {
  content: "\eaac";
}
.icon-ArticleMedium-bold:before {
  content: "\eaad";
}
.icon-ArticleNyTimes-bold:before {
  content: "\eaae";
}
.icon-Camera-bold:before {
  content: "\eaaf";
}
.icon-CameraPlus-bold:before {
  content: "\eab0";
}
.icon-CameraRotate-bold:before {
  content: "\eab1";
}
.icon-CameraSlash-bold:before {
  content: "\eab2";
}
.icon-CassetteTape-bold:before {
  content: "\eab3";
}
.icon-ClosedCaptioning-bold:before {
  content: "\eab4";
}
.icon-Copyleft-bold:before {
  content: "\eab5";
}
.icon-Copyright-bold:before {
  content: "\eab6";
}
.icon-CornersIn-bold:before {
  content: "\eab7";
}
.icon-CornersOut-bold:before {
  content: "\eab8";
}
.icon-Disc-bold:before {
  content: "\eab9";
}
.icon-Ear-bold:before {
  content: "\eaba";
}
.icon-EarSlash-bold:before {
  content: "\eabb";
}
.icon-Eject-bold:before {
  content: "\eabc";
}
.icon-EjectSimple-bold:before {
  content: "\eabd";
}
.icon-Equalizer-bold:before {
  content: "\eabe";
}
.icon-Faders-bold:before {
  content: "\eabf";
}
.icon-FadersHorizontal-bold:before {
  content: "\eac0";
}
.icon-FastForward-bold:before {
  content: "\eac1";
}
.icon-FastForwardCircle-bold:before {
  content: "\eac2";
}
.icon-FilmReel-bold:before {
  content: "\eac3";
}
.icon-FilmScript-bold:before {
  content: "\eac4";
}
.icon-FilmSlate-bold:before {
  content: "\eac5";
}
.icon-FilmStrip-bold:before {
  content: "\eac6";
}
.icon-FrameCorners-bold:before {
  content: "\eac7";
}
.icon-Gif-bold:before {
  content: "\eac8";
}
.icon-Guitar-bold:before {
  content: "\eac9";
}
.icon-Headphones-bold:before {
  content: "\eaca";
}
.icon-Headset-bold:before {
  content: "\eacb";
}
.icon-Image-bold:before {
  content: "\eacc";
}
.icon-Images-bold:before {
  content: "\eacd";
}
.icon-ImageSquare-bold:before {
  content: "\eace";
}
.icon-ImagesSquare-bold:before {
  content: "\eacf";
}
.icon-Metronome-bold:before {
  content: "\ead0";
}
.icon-Microphone-bold:before {
  content: "\ead1";
}
.icon-MicrophoneSlash-bold:before {
  content: "\ead2";
}
.icon-MicrophoneStage-bold:before {
  content: "\ead3";
}
.icon-MusicNote-bold:before {
  content: "\ead4";
}
.icon-MusicNotes-bold:before {
  content: "\ead5";
}
.icon-MusicNoteSimple-bold:before {
  content: "\ead6";
}
.icon-MusicNotesPlus-bold:before {
  content: "\ead7";
}
.icon-MusicNotesSimple-bold:before {
  content: "\ead8";
}
.icon-Newspaper-bold:before {
  content: "\ead9";
}
.icon-NewspaperClipping-bold:before {
  content: "\eada";
}
.icon-Pause-bold:before {
  content: "\eadb";
}
.icon-PauseCircle-bold:before {
  content: "\eadc";
}
.icon-PianoKeys-bold:before {
  content: "\eadd";
}
.icon-PictureInPicture-bold:before {
  content: "\eade";
}
.icon-Play-bold:before {
  content: "\eadf";
}
.icon-PlayCircle-bold:before {
  content: "\eae0";
}
.icon-Playlist-bold:before {
  content: "\eae1";
}
.icon-PlayPause-bold:before {
  content: "\eae2";
}
.icon-Queue-bold:before {
  content: "\eae3";
}
.icon-Record-bold:before {
  content: "\eae4";
}
.icon-Repeat-bold:before {
  content: "\eae5";
}
.icon-RepeatOnce-bold:before {
  content: "\eae6";
}
.icon-Rewind-bold:before {
  content: "\eae7";
}
.icon-RewindCircle-bold:before {
  content: "\eae8";
}
.icon-Screencast-bold:before {
  content: "\eae9";
}
.icon-Shuffle-bold:before {
  content: "\eaea";
}
.icon-ShuffleAngular-bold:before {
  content: "\eaeb";
}
.icon-ShuffleSimple-bold:before {
  content: "\eaec";
}
.icon-SkipBack-bold:before {
  content: "\eaed";
}
.icon-SkipBackCircle-bold:before {
  content: "\eaee";
}
.icon-SkipForward-bold:before {
  content: "\eaef";
}
.icon-SkipForwardCircle-bold:before {
  content: "\eaf0";
}
.icon-Sliders-bold:before {
  content: "\eaf1";
}
.icon-SlidersHorizontal-bold:before {
  content: "\eaf2";
}
.icon-Slideshow-bold:before {
  content: "\eaf3";
}
.icon-SpeakerHifi-bold:before {
  content: "\eaf4";
}
.icon-SpeakerHigh-bold:before {
  content: "\eaf5";
}
.icon-SpeakerLow-bold:before {
  content: "\eaf6";
}
.icon-SpeakerNone-bold:before {
  content: "\eaf7";
}
.icon-SpeakerSimpleHigh-bold:before {
  content: "\eaf8";
}
.icon-SpeakerSimpleLow-bold:before {
  content: "\eaf9";
}
.icon-SpeakerSimpleNone-bold:before {
  content: "\eafa";
}
.icon-SpeakerSimpleSlash-bold:before {
  content: "\eafb";
}
.icon-SpeakerSimpleX-bold:before {
  content: "\eafc";
}
.icon-SpeakerSlash-bold:before {
  content: "\eafd";
}
.icon-SpeakerX-bold:before {
  content: "\eafe";
}
.icon-Stop-bold:before {
  content: "\eaff";
}
.icon-StopCircle-bold:before {
  content: "\eb00";
}
.icon-Subtitles-bold:before {
  content: "\eb01";
}
.icon-Television-bold:before {
  content: "\eb02";
}
.icon-TelevisionSimple-bold:before {
  content: "\eb03";
}
.icon-VideoCamera-bold:before {
  content: "\eb04";
}
.icon-VideoCameraSlash-bold:before {
  content: "\eb05";
}
.icon-VinylRecord-bold:before {
  content: "\eb06";
}
.icon-Waveform-bold:before {
  content: "\eb07";
}
.icon-WaveSawtooth-bold:before {
  content: "\eb08";
}
.icon-WaveSine-bold:before {
  content: "\eb09";
}
.icon-WaveSquare-bold:before {
  content: "\eb0a";
}
.icon-WaveTriangle-bold:before {
  content: "\eb0b";
}
.icon-Webcam-bold:before {
  content: "\eb0c";
}
.icon-WebcamSlash-bold:before {
  content: "\eb0d";
}
.icon-Bank-bold:before {
  content: "\eb0e";
}
.icon-Calculator-bold:before {
  content: "\eb0f";
}
.icon-ChartBar-bold:before {
  content: "\eb10";
}
.icon-ChartBarHorizontal-bold:before {
  content: "\eb11";
}
.icon-ChartDonut-bold:before {
  content: "\eb12";
}
.icon-ChartLine-bold:before {
  content: "\eb13";
}
.icon-ChartLineDown-bold:before {
  content: "\eb14";
}
.icon-ChartLineUp-bold:before {
  content: "\eb15";
}
.icon-ChartPie-bold:before {
  content: "\eb16";
}
.icon-ChartPieSlice-bold:before {
  content: "\eb17";
}
.icon-ChartPolar-bold:before {
  content: "\eb18";
}
.icon-ChartScatter-bold:before {
  content: "\eb19";
}
.icon-Divide-bold:before {
  content: "\eb1a";
}
.icon-Equals-bold:before {
  content: "\eb1b";
}
.icon-Function-bold:before {
  content: "\eb1c";
}
.icon-Graph-bold:before {
  content: "\eb1d";
}
.icon-Infinity-bold:before {
  content: "\eb1e";
}
.icon-MathOperations-bold:before {
  content: "\eb1f";
}
.icon-Minus-bold:before {
  content: "\eb20";
}
.icon-MinusCircle-bold:before {
  content: "\eb21";
}
.icon-MinusSquare-bold:before {
  content: "\eb22";
}
.icon-NumberCircleEight-bold:before {
  content: "\eb23";
}
.icon-NumberCircleFive-bold:before {
  content: "\eb24";
}
.icon-NumberCircleFour-bold:before {
  content: "\eb25";
}
.icon-NumberCircleNine-bold:before {
  content: "\eb26";
}
.icon-NumberCircleOne-bold:before {
  content: "\eb27";
}
.icon-NumberCircleSeven-bold:before {
  content: "\eb28";
}
.icon-NumberCircleSix-bold:before {
  content: "\eb29";
}
.icon-NumberCircleThree-bold:before {
  content: "\eb2a";
}
.icon-NumberCircleTwo-bold:before {
  content: "\eb2b";
}
.icon-NumberCircleZero-bold:before {
  content: "\eb2c";
}
.icon-NumberEight-bold:before {
  content: "\eb2d";
}
.icon-NumberFive-bold:before {
  content: "\eb2e";
}
.icon-NumberFour-bold:before {
  content: "\eb2f";
}
.icon-NumberNine-bold:before {
  content: "\eb30";
}
.icon-NumberOne-bold:before {
  content: "\eb31";
}
.icon-NumberSeven-bold:before {
  content: "\eb32";
}
.icon-NumberSix-bold:before {
  content: "\eb33";
}
.icon-NumberSquareEight-bold:before {
  content: "\eb34";
}
.icon-NumberSquareFive-bold:before {
  content: "\eb35";
}
.icon-NumberSquareFour-bold:before {
  content: "\eb36";
}
.icon-NumberSquareNine-bold:before {
  content: "\eb37";
}
.icon-NumberSquareOne-bold:before {
  content: "\eb38";
}
.icon-NumberSquareSeven-bold:before {
  content: "\eb39";
}
.icon-NumberSquareSix-bold:before {
  content: "\eb3a";
}
.icon-NumberSquareThree-bold:before {
  content: "\eb3b";
}
.icon-NumberSquareTwo-bold:before {
  content: "\eb3c";
}
.icon-NumberSquareZero-bold:before {
  content: "\eb3d";
}
.icon-NumberThree-bold:before {
  content: "\eb3e";
}
.icon-NumberTwo-bold:before {
  content: "\eb3f";
}
.icon-NumberZero-bold:before {
  content: "\eb40";
}
.icon-Percent-bold:before {
  content: "\eb41";
}
.icon-Pi-bold:before {
  content: "\eb42";
}
.icon-Plus-bold:before {
  content: "\eb43";
}
.icon-PlusCircle-bold:before {
  content: "\eb44";
}
.icon-PlusMinus-bold:before {
  content: "\eb45";
}
.icon-PlusSquare-bold:before {
  content: "\eb46";
}
.icon-Radical-bold:before {
  content: "\eb47";
}
.icon-Sigma-bold:before {
  content: "\eb48";
}
.icon-Table-bold:before {
  content: "\eb49";
}
.icon-TrendDown-bold:before {
  content: "\eb4a";
}
.icon-TrendUp-bold:before {
  content: "\eb4b";
}
.icon-Xicon-bold:before {
  content: "\eb4c";
}
.icon-XCircle-bold:before {
  content: "\eb4d";
}
.icon-XSquare-bold:before {
  content: "\eb4e";
}
.icon-Airplane-bold:before {
  content: "\eb4f";
}
.icon-AirplaneInFlight-bold:before {
  content: "\eb50";
}
.icon-AirplaneLanding-bold:before {
  content: "\eb51";
}
.icon-AirplaneTakeoff-bold:before {
  content: "\eb52";
}
.icon-AirplaneTilt-bold:before {
  content: "\eb53";
}
.icon-AirTrafficControl-bold:before {
  content: "\eb54";
}
.icon-Anchor-bold:before {
  content: "\eb55";
}
.icon-AnchorSimple-bold:before {
  content: "\eb56";
}
.icon-Barricade-bold:before {
  content: "\eb57";
}
.icon-Bicycle-bold:before {
  content: "\eb58";
}
.icon-Boat-bold:before {
  content: "\eb59";
}
.icon-Bus-bold:before {
  content: "\eb5a";
}
.icon-Car-bold:before {
  content: "\eb5b";
}
.icon-CarProfile-bold:before {
  content: "\eb5c";
}
.icon-CarSimple-bold:before {
  content: "\eb5d";
}
.icon-ChargingStation-bold:before {
  content: "\eb5e";
}
.icon-Church-bold:before {
  content: "\eb5f";
}
.icon-Compass-bold:before {
  content: "\eb60";
}
.icon-Crosshair-bold:before {
  content: "\eb61";
}
.icon-CrosshairSimple-bold:before {
  content: "\eb62";
}
.icon-Elevator-bold:before {
  content: "\eb63";
}
.icon-Engine-bold:before {
  content: "\eb64";
}
.icon-EscalatorDown-bold:before {
  content: "\eb65";
}
.icon-EscalatorUp-bold:before {
  content: "\eb66";
}
.icon-Flag-bold:before {
  content: "\eb67";
}
.icon-FlagBanner-bold:before {
  content: "\eb68";
}
.icon-FlagCheckered-bold:before {
  content: "\eb69";
}
.icon-FlagPennant-bold:before {
  content: "\eb6a";
}
.icon-GasCan-bold:before {
  content: "\eb6b";
}
.icon-GasPump-bold:before {
  content: "\eb6c";
}
.icon-Globe-bold:before {
  content: "\eb6d";
}
.icon-GlobeHemisphereEast-bold:before {
  content: "\eb6e";
}
.icon-GlobeHemisphereWest-bold:before {
  content: "\eb6f";
}
.icon-GlobeSimple-bold:before {
  content: "\eb70";
}
.icon-GlobeStand-bold:before {
  content: "\eb71";
}
.icon-Goggles-bold:before {
  content: "\eb72";
}
.icon-Headlights-bold:before {
  content: "\eb73";
}
.icon-House-bold:before {
  content: "\eb74";
}
.icon-HouseLine-bold:before {
  content: "\eb75";
}
.icon-HouseSimple-bold:before {
  content: "\eb76";
}
.icon-Jeep-bold:before {
  content: "\eb77";
}
.icon-Lighthouse-bold:before {
  content: "\eb78";
}
.icon-Lockers-bold:before {
  content: "\eb79";
}
.icon-MapPin-bold:before {
  content: "\eb7a";
}
.icon-MapPinLine-bold:before {
  content: "\eb7b";
}
.icon-MapTrifold-bold:before {
  content: "\eb7c";
}
.icon-Moped-bold:before {
  content: "\eb7d";
}
.icon-MopedFront-bold:before {
  content: "\eb7e";
}
.icon-Mosque-bold:before {
  content: "\eb7f";
}
.icon-Motorcycle-bold:before {
  content: "\eb80";
}
.icon-NavigationArrow-bold:before {
  content: "\eb81";
}
.icon-Park-bold:before {
  content: "\eb82";
}
.icon-Path-bold:before {
  content: "\eb83";
}
.icon-PoliceCar-bold:before {
  content: "\eb84";
}
.icon-RoadHorizon-bold:before {
  content: "\eb85";
}
.icon-Rocket-bold:before {
  content: "\eb86";
}
.icon-RocketLaunch-bold:before {
  content: "\eb87";
}
.icon-Scooter-bold:before {
  content: "\eb88";
}
.icon-Signpost-bold:before {
  content: "\eb89";
}
.icon-SteeringWheel-bold:before {
  content: "\eb8a";
}
.icon-Steps-bold:before {
  content: "\eb8b";
}
.icon-Suitcase-bold:before {
  content: "\eb8c";
}
.icon-SuitcaseRolling-bold:before {
  content: "\eb8d";
}
.icon-SuitcaseSimple-bold:before {
  content: "\eb8e";
}
.icon-SwimmingPool-bold:before {
  content: "\eb8f";
}
.icon-Synagogue-bold:before {
  content: "\eb90";
}
.icon-Taxi-bold:before {
  content: "\eb91";
}
.icon-Tent-bold:before {
  content: "\eb92";
}
.icon-Tipi-bold:before {
  content: "\eb93";
}
.icon-TrafficCone-bold:before {
  content: "\eb94";
}
.icon-TrafficSign-bold:before {
  content: "\eb95";
}
.icon-TrafficSignal-bold:before {
  content: "\eb96";
}
.icon-Train-bold:before {
  content: "\eb97";
}
.icon-TrainRegional-bold:before {
  content: "\eb98";
}
.icon-TrainSimple-bold:before {
  content: "\eb99";
}
.icon-Tram-bold:before {
  content: "\eb9a";
}
.icon-Truck-bold:before {
  content: "\eb9b";
}
.icon-Van-bold:before {
  content: "\eb9c";
}
.icon-Bandaids-bold:before {
  content: "\eb9d";
}
.icon-Barbell-bold:before {
  content: "\eb9e";
}
.icon-Bed-bold:before {
  content: "\eb9f";
}
.icon-Brain-bold:before {
  content: "\eba0";
}
.icon-Dna-bold:before {
  content: "\eba1";
}
.icon-FaceMask-bold:before {
  content: "\eba2";
}
.icon-FirstAid-bold:before {
  content: "\eba3";
}
.icon-FirstAidKit-bold:before {
  content: "\eba4";
}
.icon-Flask-bold:before {
  content: "\eba5";
}
.icon-HandHeart-bold:before {
  content: "\eba6";
}
.icon-HandSoap-bold:before {
  content: "\eba7";
}
.icon-Heartbeat-bold:before {
  content: "\eba8";
}
.icon-Lifebuoy-bold:before {
  content: "\eba9";
}
.icon-Pill-bold:before {
  content: "\ebaa";
}
.icon-Prescription-bold:before {
  content: "\ebab";
}
.icon-Pulse-bold:before {
  content: "\ebac";
}
.icon-Stethoscope-bold:before {
  content: "\ebad";
}
.icon-Syringe-bold:before {
  content: "\ebae";
}
.icon-TestTube-bold:before {
  content: "\ebaf";
}
.icon-Toilet-bold:before {
  content: "\ebb0";
}
.icon-ToiletPaper-bold:before {
  content: "\ebb1";
}
.icon-Tooth-bold:before {
  content: "\ebb2";
}
.icon-Virus-bold:before {
  content: "\ebb3";
}
.icon-Alien-bold:before {
  content: "\ebb4";
}
.icon-Baseball-bold:before {
  content: "\ebb5";
}
.icon-Basketball-bold:before {
  content: "\ebb6";
}
.icon-CastleTurret-bold:before {
  content: "\ebb7";
}
.icon-Club-bold:before {
  content: "\ebb8";
}
.icon-Confetti-bold:before {
  content: "\ebb9";
}
.icon-Crown-bold:before {
  content: "\ebba";
}
.icon-CrownSimple-bold:before {
  content: "\ebbb";
}
.icon-CubeFocus-bold:before {
  content: "\ebbc";
}
.icon-Diamond-bold:before {
  content: "\ebbd";
}
.icon-DiceFive-bold:before {
  content: "\ebbe";
}
.icon-DiceFour-bold:before {
  content: "\ebbf";
}
.icon-DiceOne-bold:before {
  content: "\ebc0";
}
.icon-DiceSix-bold:before {
  content: "\ebc1";
}
.icon-DiceThree-bold:before {
  content: "\ebc2";
}
.icon-DiceTwo-bold:before {
  content: "\ebc3";
}
.icon-FinnTheHuman-bold:before {
  content: "\ebc4";
}
.icon-FlyingSaucer-bold:before {
  content: "\ebc5";
}
.icon-Football-bold:before {
  content: "\ebc6";
}
.icon-GameController-bold:before {
  content: "\ebc7";
}
.icon-Ghost-bold:before {
  content: "\ebc8";
}
.icon-GoogleCardboardLogo-bold:before {
  content: "\ebc9";
}
.icon-Heart-bold:before {
  content: "\ebca";
}
.icon-HeartBreak-bold:before {
  content: "\ebcb";
}
.icon-HeartHalf-bold:before {
  content: "\ebcc";
}
.icon-HeartStraight-bold:before {
  content: "\ebcd";
}
.icon-HeartStraightBreak-bold:before {
  content: "\ebce";
}
.icon-Horse-bold:before {
  content: "\ebcf";
}
.icon-MaskHappy-bold:before {
  content: "\ebd0";
}
.icon-MaskSad-bold:before {
  content: "\ebd1";
}
.icon-Medal-bold:before {
  content: "\ebd2";
}
.icon-MedalMilitary-bold:before {
  content: "\ebd3";
}
.icon-Parachute-bold:before {
  content: "\ebd4";
}
.icon-Pinwheel-bold:before {
  content: "\ebd5";
}
.icon-PokerChip-bold:before {
  content: "\ebd6";
}
.icon-PuzzlePiece-bold:before {
  content: "\ebd7";
}
.icon-Scroll-bold:before {
  content: "\ebd8";
}
.icon-Skull-bold:before {
  content: "\ebd9";
}
.icon-SoccerBall-bold:before {
  content: "\ebda";
}
.icon-Spade-bold:before {
  content: "\ebdb";
}
.icon-Spiral-bold:before {
  content: "\ebdc";
}
.icon-Strategy-bold:before {
  content: "\ebdd";
}
.icon-Sword-bold:before {
  content: "\ebde";
}
.icon-Target-bold:before {
  content: "\ebdf";
}
.icon-TennisBall-bold:before {
  content: "\ebe0";
}
.icon-TreePalm-bold:before {
  content: "\ebe1";
}
.icon-Trophy-bold:before {
  content: "\ebe2";
}
.icon-VirtualReality-bold:before {
  content: "\ebe3";
}
.icon-Volleyball-bold:before {
  content: "\ebe4";
}
.icon-Book-bold:before {
  content: "\ebe5";
}
.icon-BookBookmark-bold:before {
  content: "\ebe6";
}
.icon-Bookmark-bold:before {
  content: "\ebe7";
}
.icon-Bookmarks-bold:before {
  content: "\ebe8";
}
.icon-BookmarkSimple-bold:before {
  content: "\ebe9";
}
.icon-BookmarksSimple-bold:before {
  content: "\ebea";
}
.icon-BookOpen-bold:before {
  content: "\ebeb";
}
.icon-BookOpenText-bold:before {
  content: "\ebec";
}
.icon-Books-bold:before {
  content: "\ebed";
}
.icon-Certificate-bold:before {
  content: "\ebee";
}
.icon-Chalkboard-bold:before {
  content: "\ebef";
}
.icon-ChalkboardSimple-bold:before {
  content: "\ebf0";
}
.icon-ChalkboardTeacher-bold:before {
  content: "\ebf1";
}
.icon-Exam-bold:before {
  content: "\ebf2";
}
.icon-GraduationCap-bold:before {
  content: "\ebf3";
}
.icon-Student-bold:before {
  content: "\ebf4";
}
.icon-Video-bold:before {
  content: "\ebf5";
}
.icon-BracketsAngle-bold:before {
  content: "\ebf6";
}
.icon-BracketsCurly-bold:before {
  content: "\ebf7";
}
.icon-BracketsRound-bold:before {
  content: "\ebf8";
}
.icon-BracketsSquare-bold:before {
  content: "\ebf9";
}
.icon-Bug-bold:before {
  content: "\ebfa";
}
.icon-BugBeetle-bold:before {
  content: "\ebfb";
}
.icon-BugDroid-bold:before {
  content: "\ebfc";
}
.icon-Code-bold:before {
  content: "\ebfd";
}
.icon-CodeBlock-bold:before {
  content: "\ebfe";
}
.icon-CodeSimple-bold:before {
  content: "\ebff";
}
.icon-Cpu-bold:before {
  content: "\ec00";
}
.icon-Database-bold:before {
  content: "\ec01";
}
.icon-GitBranch-bold:before {
  content: "\ec02";
}
.icon-GitCommit-bold:before {
  content: "\ec03";
}
.icon-GitDiff-bold:before {
  content: "\ec04";
}
.icon-GitFork-bold:before {
  content: "\ec05";
}
.icon-GitMerge-bold:before {
  content: "\ec06";
}
.icon-GitPullRequest-bold:before {
  content: "\ec07";
}
.icon-Magnet-bold:before {
  content: "\ec08";
}
.icon-MagnetStraight-bold:before {
  content: "\ec09";
}
.icon-Robot-bold:before {
  content: "\ec0a";
}
.icon-Terminal-bold:before {
  content: "\ec0b";
}
.icon-TerminalWindow-bold:before {
  content: "\ec0c";
}
.icon-TreeStructure-bold:before {
  content: "\ec0d";
}
.icon-WebhooksLogo-bold:before {
  content: "\ec0e";
}
.icon-AlignBottom-bold:before {
  content: "\ec0f";
}
.icon-AlignBottomSimple-bold:before {
  content: "\ec10";
}
.icon-AlignCenterHorizontal-bold:before {
  content: "\ec11";
}
.icon-AlignCenterHorizontalSimple-bold:before {
  content: "\ec12";
}
.icon-AlignCenterVertical-bold:before {
  content: "\ec13";
}
.icon-AlignCenterVerticalSimple-bold:before {
  content: "\ec14";
}
.icon-AlignLeft-bold:before {
  content: "\ec15";
}
.icon-AlignLeftSimple-bold:before {
  content: "\ec16";
}
.icon-AlignRight-bold:before {
  content: "\ec17";
}
.icon-AlignRightSimple-bold:before {
  content: "\ec18";
}
.icon-AlignTop-bold:before {
  content: "\ec19";
}
.icon-AlignTopSimple-bold:before {
  content: "\ec1a";
}
.icon-BezierCurve-bold:before {
  content: "\ec1b";
}
.icon-BoundingBox-bold:before {
  content: "\ec1c";
}
.icon-Circle-bold:before {
  content: "\ec1d";
}
.icon-CircleDashed-bold:before {
  content: "\ec1e";
}
.icon-CircleHalf-bold:before {
  content: "\ec1f";
}
.icon-CircleHalfTilt-bold:before {
  content: "\ec20";
}
.icon-CircleNotch-bold:before {
  content: "\ec21";
}
.icon-CirclesFour-bold:before {
  content: "\ec22";
}
.icon-CirclesThree-bold:before {
  content: "\ec23";
}
.icon-CirclesThreePlus-bold:before {
  content: "\ec24";
}
.icon-Columns-bold:before {
  content: "\ec25";
}
.icon-CompassTool-bold:before {
  content: "\ec26";
}
.icon-Crop-bold:before {
  content: "\ec27";
}
.icon-Cube-bold:before {
  content: "\ec28";
}
.icon-CubeTransparent-bold:before {
  content: "\ec29";
}
.icon-Cylinder-bold:before {
  content: "\ec2a";
}
.icon-DiamondsFour-bold:before {
  content: "\ec2b";
}
.icon-DropHalf-bold:before {
  content: "\ec2c";
}
.icon-DropHalfBottom-bold:before {
  content: "\ec2d";
}
.icon-Eraser-bold:before {
  content: "\ec2e";
}
.icon-Exclude-bold:before {
  content: "\ec2f";
}
.icon-ExcludeSquare-bold:before {
  content: "\ec30";
}
.icon-Eye-bold:before {
  content: "\ec31";
}
.icon-EyeClosed-bold:before {
  content: "\ec32";
}
.icon-Eyedropper-bold:before {
  content: "\ec33";
}
.icon-EyedropperSample-bold:before {
  content: "\ec34";
}
.icon-EyeSlash-bold:before {
  content: "\ec35";
}
.icon-FlowArrow-bold:before {
  content: "\ec36";
}
.icon-GearFine-bold:before {
  content: "\ec37";
}
.icon-Gradient-bold:before {
  content: "\ec38";
}
.icon-GridFour-bold:before {
  content: "\ec39";
}
.icon-GridNine-bold:before {
  content: "\ec3a";
}
.icon-Hexagon-bold:before {
  content: "\ec3b";
}
.icon-HighlighterCircle-bold:before {
  content: "\ec3c";
}
.icon-Intersect-bold:before {
  content: "\ec3d";
}
.icon-IntersectSquare-bold:before {
  content: "\ec3e";
}
.icon-IntersectThree-bold:before {
  content: "\ec3f";
}
.icon-Layout-bold:before {
  content: "\ec40";
}
.icon-LineSegment-bold:before {
  content: "\ec41";
}
.icon-LineSegments-bold:before {
  content: "\ec42";
}
.icon-MagicWand-bold:before {
  content: "\ec43";
}
.icon-MarkerCircle-bold:before {
  content: "\ec44";
}
.icon-Notches-bold:before {
  content: "\ec45";
}
.icon-Octagon-bold:before {
  content: "\ec46";
}
.icon-PaintBrush-bold:before {
  content: "\ec47";
}
.icon-PaintBrushBroad-bold:before {
  content: "\ec48";
}
.icon-PaintBrushHousehold-bold:before {
  content: "\ec49";
}
.icon-PaintBucket-bold:before {
  content: "\ec4a";
}
.icon-PaintRoller-bold:before {
  content: "\ec4b";
}
.icon-Palette-bold:before {
  content: "\ec4c";
}
.icon-Parallelogram-bold:before {
  content: "\ec4d";
}
.icon-Pen-bold:before {
  content: "\ec4e";
}
.icon-Pencil-bold:before {
  content: "\ec4f";
}
.icon-PencilCircle-bold:before {
  content: "\ec50";
}
.icon-PencilLine-bold:before {
  content: "\ec51";
}
.icon-PencilSimple-bold:before {
  content: "\ec52";
}
.icon-PencilSimpleLine-bold:before {
  content: "\ec53";
}
.icon-PencilSimpleSlash-bold:before {
  content: "\ec54";
}
.icon-PencilSlash-bold:before {
  content: "\ec55";
}
.icon-PenNib-bold:before {
  content: "\ec56";
}
.icon-PenNibStraight-bold:before {
  content: "\ec57";
}
.icon-Pentagram-bold:before {
  content: "\ec58";
}
.icon-Perspective-bold:before {
  content: "\ec59";
}
.icon-Placeholder-bold:before {
  content: "\ec5a";
}
.icon-Polygon-bold:before {
  content: "\ec5b";
}
.icon-Rectangle-bold:before {
  content: "\ec5c";
}
.icon-Rows-bold:before {
  content: "\ec5d";
}
.icon-Ruler-bold:before {
  content: "\ec5e";
}
.icon-Scissors-bold:before {
  content: "\ec5f";
}
.icon-ScribbleLoop-bold:before {
  content: "\ec60";
}
.icon-Selection-bold:before {
  content: "\ec61";
}
.icon-SelectionAll-bold:before {
  content: "\ec62";
}
.icon-SelectionBackground-bold:before {
  content: "\ec63";
}
.icon-SelectionForeground-bold:before {
  content: "\ec64";
}
.icon-SelectionInverse-bold:before {
  content: "\ec65";
}
.icon-SelectionPlus-bold:before {
  content: "\ec66";
}
.icon-SelectionSlash-bold:before {
  content: "\ec67";
}
.icon-Shapes-bold:before {
  content: "\ec68";
}
.icon-Sidebar-bold:before {
  content: "\ec69";
}
.icon-SidebarSimple-bold:before {
  content: "\ec6a";
}
.icon-SplitHorizontal-bold:before {
  content: "\ec6b";
}
.icon-SplitVertical-bold:before {
  content: "\ec6c";
}
.icon-Square-bold:before {
  content: "\ec6d";
}
.icon-SquareHalf-bold:before {
  content: "\ec6e";
}
.icon-SquareHalfBottom-bold:before {
  content: "\ec6f";
}
.icon-SquaresFour-bold:before {
  content: "\ec70";
}
.icon-SquareSplitHorizontal-bold:before {
  content: "\ec71";
}
.icon-SquareSplitVertical-bold:before {
  content: "\ec72";
}
.icon-Stack-bold:before {
  content: "\ec73";
}
.icon-StackSimple-bold:before {
  content: "\ec74";
}
.icon-Stamp-bold:before {
  content: "\ec75";
}
.icon-Subtract-bold:before {
  content: "\ec76";
}
.icon-SubtractSquare-bold:before {
  content: "\ec77";
}
.icon-Swatches-bold:before {
  content: "\ec78";
}
.icon-TextAUnderline-bold:before {
  content: "\ec79";
}
.icon-Triangle-bold:before {
  content: "\ec7a";
}
.icon-Unite-bold:before {
  content: "\ec7b";
}
.icon-UniteSquare-bold:before {
  content: "\ec7c";
}
.icon-Vignette-bold:before {
  content: "\ec7d";
}
.icon-AddressBook-bold:before {
  content: "\ec7e";
}
.icon-Asterisk-bold:before {
  content: "\ec7f";
}
.icon-AsteriskSimple-bold:before {
  content: "\ec80";
}
.icon-At-bold:before {
  content: "\ec81";
}
.icon-Broadcast-bold:before {
  content: "\ec82";
}
.icon-Chat-bold:before {
  content: "\ec83";
}
.icon-ChatCentered-bold:before {
  content: "\ec84";
}
.icon-ChatCenteredDots-bold:before {
  content: "\ec85";
}
.icon-ChatCenteredText-bold:before {
  content: "\ec86";
}
.icon-ChatCircle-bold:before {
  content: "\ec87";
}
.icon-ChatCircleDots-bold:before {
  content: "\ec88";
}
.icon-ChatCircleText-bold:before {
  content: "\ec89";
}
.icon-ChatDots-bold:before {
  content: "\ec8a";
}
.icon-Chats-bold:before {
  content: "\ec8b";
}
.icon-ChatsCircle-bold:before {
  content: "\ec8c";
}
.icon-ChatsTeardrop-bold:before {
  content: "\ec8d";
}
.icon-ChatTeardrop-bold:before {
  content: "\ec8e";
}
.icon-ChatTeardropDots-bold:before {
  content: "\ec8f";
}
.icon-ChatTeardropText-bold:before {
  content: "\ec90";
}
.icon-ChatText-bold:before {
  content: "\ec91";
}
.icon-Cross-bold:before {
  content: "\ec92";
}
.icon-Envelope-bold:before {
  content: "\ec93";
}
.icon-EnvelopeOpen-bold:before {
  content: "\ec94";
}
.icon-EnvelopeSimple-bold:before {
  content: "\ec95";
}
.icon-EnvelopeSimpleOpen-bold:before {
  content: "\ec96";
}
.icon-Export-bold:before {
  content: "\ec97";
}
.icon-Hash-bold:before {
  content: "\ec98";
}
.icon-HashStraight-bold:before {
  content: "\ec99";
}
.icon-Megaphone-bold:before {
  content: "\ec9a";
}
.icon-MegaphoneSimple-bold:before {
  content: "\ec9b";
}
.icon-PaperPlane-bold:before {
  content: "\ec9c";
}
.icon-PaperPlaneRight-bold:before {
  content: "\ec9d";
}
.icon-PaperPlaneTilt-bold:before {
  content: "\ec9e";
}
.icon-Peace-bold:before {
  content: "\ec9f";
}
.icon-Phone-bold:before {
  content: "\eca0";
}
.icon-PhoneCall-bold:before {
  content: "\eca1";
}
.icon-PhoneDisconnect-bold:before {
  content: "\eca2";
}
.icon-PhoneIncoming-bold:before {
  content: "\eca3";
}
.icon-PhoneOutgoing-bold:before {
  content: "\eca4";
}
.icon-PhonePlus-bold:before {
  content: "\eca5";
}
.icon-PhoneSlash-bold:before {
  content: "\eca6";
}
.icon-PhoneX-bold:before {
  content: "\eca7";
}
.icon-Quotes-bold:before {
  content: "\eca8";
}
.icon-Radio-bold:before {
  content: "\eca9";
}
.icon-Rss-bold:before {
  content: "\ecaa";
}
.icon-RssSimple-bold:before {
  content: "\ecab";
}
.icon-Share-bold:before {
  content: "\ecac";
}
.icon-ShareFat-bold:before {
  content: "\ecad";
}
.icon-ShareNetwork-bold:before {
  content: "\ecae";
}
.icon-Signature-bold:before {
  content: "\ecaf";
}
.icon-Star-bold:before {
  content: "\ecb0";
}
.icon-StarAndCrescent-bold:before {
  content: "\ecb1";
}
.icon-StarHalf-bold:before {
  content: "\ecb2";
}
.icon-StarOfDavid-bold:before {
  content: "\ecb3";
}
.icon-Sticker-bold:before {
  content: "\ecb4";
}
.icon-ThumbsDown-bold:before {
  content: "\ecb5";
}
.icon-ThumbsUp-bold:before {
  content: "\ecb6";
}
.icon-Translate-bold:before {
  content: "\ecb7";
}
.icon-Voicemail-bold:before {
  content: "\ecb8";
}
.icon-YinYang-bold:before {
  content: "\ecb9";
}
.icon-Armchair-bold:before {
  content: "\ecba";
}
.icon-Backpack-bold:before {
  content: "\ecbb";
}
.icon-Bag-bold:before {
  content: "\ecbc";
}
.icon-BagSimple-bold:before {
  content: "\ecbd";
}
.icon-Balloon-bold:before {
  content: "\ecbe";
}
.icon-Barcode-bold:before {
  content: "\ecbf";
}
.icon-BaseballCap-bold:before {
  content: "\ecc0";
}
.icon-Basket-bold:before {
  content: "\ecc1";
}
.icon-Bathtub-bold:before {
  content: "\ecc2";
}
.icon-BeerBottle-bold:before {
  content: "\ecc3";
}
.icon-BeerStein-bold:before {
  content: "\ecc4";
}
.icon-Binoculars-bold:before {
  content: "\ecc5";
}
.icon-Boot-bold:before {
  content: "\ecc6";
}
.icon-BowlFood-bold:before {
  content: "\ecc7";
}
.icon-Brandy-bold:before {
  content: "\ecc8";
}
.icon-Bridge-bold:before {
  content: "\ecc9";
}
.icon-Broom-bold:before {
  content: "\ecca";
}
.icon-Buildings-bold:before {
  content: "\eccb";
}
.icon-Cake-bold:before {
  content: "\eccc";
}
.icon-CallBell-bold:before {
  content: "\eccd";
}
.icon-Cardholder-bold:before {
  content: "\ecce";
}
.icon-Carrot-bold:before {
  content: "\eccf";
}
.icon-Chair-bold:before {
  content: "\ecd0";
}
.icon-Champagne-bold:before {
  content: "\ecd1";
}
.icon-CoatHanger-bold:before {
  content: "\ecd2";
}
.icon-Coffee-bold:before {
  content: "\ecd3";
}
.icon-Coin-bold:before {
  content: "\ecd4";
}
.icon-Coins-bold:before {
  content: "\ecd5";
}
.icon-CoinVertical-bold:before {
  content: "\ecd6";
}
.icon-ContactlessPayment-bold:before {
  content: "\ecd7";
}
.icon-Cookie-bold:before {
  content: "\ecd8";
}
.icon-CookingPot-bold:before {
  content: "\ecd9";
}
.icon-Couch-bold:before {
  content: "\ecda";
}
.icon-CreditCard-bold:before {
  content: "\ecdb";
}
.icon-CurrencyBtc-bold:before {
  content: "\ecdc";
}
.icon-CurrencyCircleDollar-bold:before {
  content: "\ecdd";
}
.icon-CurrencyCny-bold:before {
  content: "\ecde";
}
.icon-CurrencyDollar-bold:before {
  content: "\ecdf";
}
.icon-CurrencyDollarSimple-bold:before {
  content: "\ece0";
}
.icon-CurrencyEth-bold:before {
  content: "\ece1";
}
.icon-CurrencyEur-bold:before {
  content: "\ece2";
}
.icon-CurrencyGbp-bold:before {
  content: "\ece3";
}
.icon-CurrencyInr-bold:before {
  content: "\ece4";
}
.icon-CurrencyJpy-bold:before {
  content: "\ece5";
}
.icon-CurrencyKrw-bold:before {
  content: "\ece6";
}
.icon-CurrencyKzt-bold:before {
  content: "\ece7";
}
.icon-CurrencyNgn-bold:before {
  content: "\ece8";
}
.icon-CurrencyRub-bold:before {
  content: "\ece9";
}
.icon-Door-bold:before {
  content: "\ecea";
}
.icon-DoorOpen-bold:before {
  content: "\eceb";
}
.icon-Dress-bold:before {
  content: "\ecec";
}
.icon-Egg-bold:before {
  content: "\eced";
}
.icon-EggCrack-bold:before {
  content: "\ecee";
}
.icon-Eyeglasses-bold:before {
  content: "\ecef";
}
.icon-Factory-bold:before {
  content: "\ecf0";
}
.icon-Fan-bold:before {
  content: "\ecf1";
}
.icon-ForkKnife-bold:before {
  content: "\ecf2";
}
.icon-Garage-bold:before {
  content: "\ecf3";
}
.icon-Gavel-bold:before {
  content: "\ecf4";
}
.icon-Gift-bold:before {
  content: "\ecf5";
}
.icon-Grains-bold:before {
  content: "\ecf6";
}
.icon-GrainsSlash-bold:before {
  content: "\ecf7";
}
.icon-Hamburger-bold:before {
  content: "\ecf8";
}
.icon-Hammer-bold:before {
  content: "\ecf9";
}
.icon-Handbag-bold:before {
  content: "\ecfa";
}
.icon-HandbagSimple-bold:before {
  content: "\ecfb";
}
.icon-HandCoins-bold:before {
  content: "\ecfc";
}
.icon-HighHeel-bold:before {
  content: "\ecfd";
}
.icon-Hoodie-bold:before {
  content: "\ecfe";
}
.icon-IceCream-bold:before {
  content: "\ecff";
}
.icon-Knife-bold:before {
  content: "\ed00";
}
.icon-Ladder-bold:before {
  content: "\ed01";
}
.icon-LadderSimple-bold:before {
  content: "\ed02";
}
.icon-Lamp-bold:before {
  content: "\ed03";
}
.icon-Martini-bold:before {
  content: "\ed04";
}
.icon-Money-bold:before {
  content: "\ed05";
}
.icon-Needle-bold:before {
  content: "\ed06";
}
.icon-OfficeChair-bold:before {
  content: "\ed07";
}
.icon-OrangeSlice-bold:before {
  content: "\ed08";
}
.icon-Package-bold:before {
  content: "\ed09";
}
.icon-Pants-bold:before {
  content: "\ed0a";
}
.icon-Pepper-bold:before {
  content: "\ed0b";
}
.icon-PiggyBank-bold:before {
  content: "\ed0c";
}
.icon-Pizza-bold:before {
  content: "\ed0d";
}
.icon-Popcorn-bold:before {
  content: "\ed0e";
}
.icon-PottedPlant-bold:before {
  content: "\ed0f";
}
.icon-Receipt-bold:before {
  content: "\ed10";
}
.icon-ReceiptX-bold:before {
  content: "\ed11";
}
.icon-Rug-bold:before {
  content: "\ed12";
}
.icon-Scales-bold:before {
  content: "\ed13";
}
.icon-ShirtFolded-bold:before {
  content: "\ed14";
}
.icon-ShoppingBag-bold:before {
  content: "\ed15";
}
.icon-ShoppingBagOpen-bold:before {
  content: "\ed16";
}
.icon-ShoppingCart-bold:before {
  content: "\ed17";
}
.icon-ShoppingCartSimple-bold:before {
  content: "\ed18";
}
.icon-Shower-bold:before {
  content: "\ed19";
}
.icon-Sneaker-bold:before {
  content: "\ed1a";
}
.icon-SneakerMove-bold:before {
  content: "\ed1b";
}
.icon-Stairs-bold:before {
  content: "\ed1c";
}
.icon-Stool-bold:before {
  content: "\ed1d";
}
.icon-Storefront-bold:before {
  content: "\ed1e";
}
.icon-Sunglasses-bold:before {
  content: "\ed1f";
}
.icon-Tag-bold:before {
  content: "\ed20";
}
.icon-TagChevron-bold:before {
  content: "\ed21";
}
.icon-TagSimple-bold:before {
  content: "\ed22";
}
.icon-Ticket-bold:before {
  content: "\ed23";
}
.icon-Toolbox-bold:before {
  content: "\ed24";
}
.icon-Tote-bold:before {
  content: "\ed25";
}
.icon-ToteSimple-bold:before {
  content: "\ed26";
}
.icon-Trademark-bold:before {
  content: "\ed27";
}
.icon-TrademarkRegistered-bold:before {
  content: "\ed28";
}
.icon-TShirt-bold:before {
  content: "\ed29";
}
.icon-Wallet-bold:before {
  content: "\ed2a";
}
.icon-Warehouse-bold:before {
  content: "\ed2b";
}
.icon-Wine-bold:before {
  content: "\ed2c";
}
.icon-Wrench-bold:before {
  content: "\ed2d";
}
.icon-AmazonLogo-bold:before {
  content: "\ed2e";
}
.icon-AndroidLogo-bold:before {
  content: "\ed2f";
}
.icon-AngularLogo-bold:before {
  content: "\ed30";
}
.icon-AppleLogo-bold:before {
  content: "\ed31";
}
.icon-ApplePodcastsLogo-bold:before {
  content: "\ed32";
}
.icon-AppStoreLogo-bold:before {
  content: "\ed33";
}
.icon-BehanceLogo-bold:before {
  content: "\ed34";
}
.icon-CodaLogo-bold:before {
  content: "\ed35";
}
.icon-CodepenLogo-bold:before {
  content: "\ed36";
}
.icon-CodesandboxLogo-bold:before {
  content: "\ed37";
}
.icon-DevToLogo-bold:before {
  content: "\ed38";
}
.icon-DiscordLogo-bold:before {
  content: "\ed39";
}
.icon-DribbbleLogo-bold:before {
  content: "\ed3a";
}
.icon-DropboxLogo-bold:before {
  content: "\ed3b";
}
.icon-FacebookLogo-bold:before {
  content: "\ed3c";
}
.icon-FigmaLogo-bold:before {
  content: "\ed3d";
}
.icon-FramerLogo-bold:before {
  content: "\ed3e";
}
.icon-GithubLogo-bold:before {
  content: "\ed3f";
}
.icon-GitlabLogo-bold:before {
  content: "\ed40";
}
.icon-GitlabLogoSimple-bold:before {
  content: "\ed41";
}
.icon-GoodreadsLogo-bold:before {
  content: "\ed42";
}
.icon-GoogleChromeLogo-bold:before {
  content: "\ed43";
}
.icon-GoogleDriveLogo-bold:before {
  content: "\ed44";
}
.icon-GoogleLogo-bold:before {
  content: "\ed45";
}
.icon-GooglePhotosLogo-bold:before {
  content: "\ed46";
}
.icon-GooglePlayLogo-bold:before {
  content: "\ed47";
}
.icon-GooglePodcastsLogo-bold:before {
  content: "\ed48";
}
.icon-InstagramLogo-bold:before {
  content: "\ed49";
}
.icon-LinkedinLogo-bold:before {
  content: "\ed4a";
}
.icon-LinuxLogo-bold:before {
  content: "\ed4b";
}
.icon-MediumLogo-bold:before {
  content: "\ed4c";
}
.icon-MessengerLogo-bold:before {
  content: "\ed4d";
}
.icon-MetaLogo-bold:before {
  content: "\ed4e";
}
.icon-MicrosoftExcelLogo-bold:before {
  content: "\ed4f";
}
.icon-MicrosoftOutlookLogo-bold:before {
  content: "\ed50";
}
.icon-MicrosoftPowerpointLogo-bold:before {
  content: "\ed51";
}
.icon-MicrosoftTeamsLogo-bold:before {
  content: "\ed52";
}
.icon-MicrosoftWordLogo-bold:before {
  content: "\ed53";
}
.icon-NotionLogo-bold:before {
  content: "\ed54";
}
.icon-NyTimesLogo-bold:before {
  content: "\ed55";
}
.icon-PatreonLogo-bold:before {
  content: "\ed56";
}
.icon-PaypalLogo-bold:before {
  content: "\ed57";
}
.icon-PhosphorLogo-bold:before {
  content: "\ed58";
}
.icon-PinterestLogo-bold:before {
  content: "\ed59";
}
.icon-ReadCvLogo-bold:before {
  content: "\ed5a";
}
.icon-RedditLogo-bold:before {
  content: "\ed5b";
}
.icon-SketchLogo-bold:before {
  content: "\ed5c";
}
.icon-SlackLogo-bold:before {
  content: "\ed5d";
}
.icon-SnapchatLogo-bold:before {
  content: "\ed5e";
}
.icon-SoundcloudLogo-bold:before {
  content: "\ed5f";
}
.icon-SpotifyLogo-bold:before {
  content: "\ed60";
}
.icon-SquareLogo-bold:before {
  content: "\ed61";
}
.icon-StackOverflowLogo-bold:before {
  content: "\ed62";
}
.icon-StripeLogo-bold:before {
  content: "\ed63";
}
.icon-TelegramLogo-bold:before {
  content: "\ed64";
}
.icon-TidalLogo-bold:before {
  content: "\ed65";
}
.icon-TiktokLogo-bold:before {
  content: "\ed66";
}
.icon-TwitchLogo-bold:before {
  content: "\ed67";
}
.icon-TwitterLogo-bold:before {
  content: "\ed68";
}
.icon-WechatLogo-bold:before {
  content: "\ed69";
}
.icon-WhatsappLogo-bold:before {
  content: "\ed6a";
}
.icon-WindowsLogo-bold:before {
  content: "\ed6b";
}
.icon-YoutubeLogo-bold:before {
  content: "\ed6c";
}
.icon-ArrowArcLeft-bold:before {
  content: "\ed6d";
}
.icon-ArrowArcRight-bold:before {
  content: "\ed6e";
}
.icon-ArrowBendDoubleUpLeft-bold:before {
  content: "\ed6f";
}
.icon-ArrowBendDoubleUpRight-bold:before {
  content: "\ed70";
}
.icon-ArrowBendDownLeft-bold:before {
  content: "\ed71";
}
.icon-ArrowBendDownRight-bold:before {
  content: "\ed72";
}
.icon-ArrowBendLeftDown-bold:before {
  content: "\ed73";
}
.icon-ArrowBendLeftUp-bold:before {
  content: "\ed74";
}
.icon-ArrowBendRightDown-bold:before {
  content: "\ed75";
}
.icon-ArrowBendRightUp-bold:before {
  content: "\ed76";
}
.icon-ArrowBendUpLeft-bold:before {
  content: "\ed77";
}
.icon-ArrowBendUpRight-bold:before {
  content: "\ed78";
}
.icon-ArrowCircleDown-bold:before {
  content: "\ed79";
}
.icon-ArrowCircleDownLeft-bold:before {
  content: "\ed7a";
}
.icon-ArrowCircleDownRight-bold:before {
  content: "\ed7b";
}
.icon-ArrowCircleLeft-bold:before {
  content: "\ed7c";
}
.icon-ArrowCircleRight-bold:before {
  content: "\ed7d";
}
.icon-ArrowCircleUp-bold:before {
  content: "\ed7e";
}
.icon-ArrowCircleUpLeft-bold:before {
  content: "\ed7f";
}
.icon-ArrowCircleUpRight-bold:before {
  content: "\ed80";
}
.icon-ArrowClockwise-bold:before {
  content: "\ed81";
}
.icon-ArrowCounterClockwise-bold:before {
  content: "\ed82";
}
.icon-ArrowDown-bold:before {
  content: "\ed83";
}
.icon-ArrowDownLeft-bold:before {
  content: "\ed84";
}
.icon-ArrowDownRight-bold:before {
  content: "\ed85";
}
.icon-ArrowElbowDownLeft-bold:before {
  content: "\ed86";
}
.icon-ArrowElbowDownRight-bold:before {
  content: "\ed87";
}
.icon-ArrowElbowLeft-bold:before {
  content: "\ed88";
}
.icon-ArrowElbowLeftDown-bold:before {
  content: "\ed89";
}
.icon-ArrowElbowLeftUp-bold:before {
  content: "\ed8a";
}
.icon-ArrowElbowRight-bold:before {
  content: "\ed8b";
}
.icon-ArrowElbowRightDown-bold:before {
  content: "\ed8c";
}
.icon-ArrowElbowRightUp-bold:before {
  content: "\ed8d";
}
.icon-ArrowElbowUpLeft-bold:before {
  content: "\ed8e";
}
.icon-ArrowElbowUpRight-bold:before {
  content: "\ed8f";
}
.icon-ArrowFatDown-bold:before {
  content: "\ed90";
}
.icon-ArrowFatLeft-bold:before {
  content: "\ed91";
}
.icon-ArrowFatLineDown-bold:before {
  content: "\ed92";
}
.icon-ArrowFatLineLeft-bold:before {
  content: "\ed93";
}
.icon-ArrowFatLineRight-bold:before {
  content: "\ed94";
}
.icon-ArrowFatLinesDown-bold:before {
  content: "\ed95";
}
.icon-ArrowFatLinesLeft-bold:before {
  content: "\ed96";
}
.icon-ArrowFatLinesRight-bold:before {
  content: "\ed97";
}
.icon-ArrowFatLinesUp-bold:before {
  content: "\ed98";
}
.icon-ArrowFatLineUp-bold:before {
  content: "\ed99";
}
.icon-ArrowFatRight-bold:before {
  content: "\ed9a";
}
.icon-ArrowFatUp-bold:before {
  content: "\ed9b";
}
.icon-ArrowLeft-bold:before {
  content: "\ed9c";
}
.icon-ArrowLineDown-bold:before {
  content: "\ed9d";
}
.icon-ArrowLineDownLeft-bold:before {
  content: "\ed9e";
}
.icon-ArrowLineDownRight-bold:before {
  content: "\ed9f";
}
.icon-ArrowLineLeft-bold:before {
  content: "\eda0";
}
.icon-ArrowLineRight-bold:before {
  content: "\eda1";
}
.icon-ArrowLineUp-bold:before {
  content: "\eda2";
}
.icon-ArrowLineUpLeft-bold:before {
  content: "\eda3";
}
.icon-ArrowLineUpRight-bold:before {
  content: "\eda4";
}
.icon-ArrowRight-bold:before {
  content: "\eda5";
}
.icon-ArrowsClockwise-bold:before {
  content: "\eda6";
}
.icon-ArrowsCounterClockwise-bold:before {
  content: "\eda7";
}
.icon-ArrowsDownUp-bold:before {
  content: "\eda8";
}
.icon-ArrowsHorizontal-bold:before {
  content: "\eda9";
}
.icon-ArrowsIn-bold:before {
  content: "\edaa";
}
.icon-ArrowsInCardinal-bold:before {
  content: "\edab";
}
.icon-ArrowsInLineHorizontal-bold:before {
  content: "\edac";
}
.icon-ArrowsInLineVertical-bold:before {
  content: "\edad";
}
.icon-ArrowsInSimple-bold:before {
  content: "\edae";
}
.icon-ArrowsLeftRight-bold:before {
  content: "\edaf";
}
.icon-ArrowsMerge-bold:before {
  content: "\edb0";
}
.icon-ArrowsOut-bold:before {
  content: "\edb1";
}
.icon-ArrowsOutCardinal-bold:before {
  content: "\edb2";
}
.icon-ArrowsOutLineHorizontal-bold:before {
  content: "\edb3";
}
.icon-ArrowsOutLineVertical-bold:before {
  content: "\edb4";
}
.icon-ArrowsOutSimple-bold:before {
  content: "\edb5";
}
.icon-ArrowSquareDown-bold:before {
  content: "\edb6";
}
.icon-ArrowSquareDownLeft-bold:before {
  content: "\edb7";
}
.icon-ArrowSquareDownRight-bold:before {
  content: "\edb8";
}
.icon-ArrowSquareIn-bold:before {
  content: "\edb9";
}
.icon-ArrowSquareLeft-bold:before {
  content: "\edba";
}
.icon-ArrowSquareOut-bold:before {
  content: "\edbb";
}
.icon-ArrowSquareRight-bold:before {
  content: "\edbc";
}
.icon-ArrowSquareUp-bold:before {
  content: "\edbd";
}
.icon-ArrowSquareUpLeft-bold:before {
  content: "\edbe";
}
.icon-ArrowSquareUpRight-bold:before {
  content: "\edbf";
}
.icon-ArrowsSplit-bold:before {
  content: "\edc0";
}
.icon-ArrowsVertical-bold:before {
  content: "\edc1";
}
.icon-ArrowUDownLeft-bold:before {
  content: "\edc2";
}
.icon-ArrowUDownRight-bold:before {
  content: "\edc3";
}
.icon-ArrowULeftDown-bold:before {
  content: "\edc4";
}
.icon-ArrowULeftUp-bold:before {
  content: "\edc5";
}
.icon-ArrowUp-bold:before {
  content: "\edc6";
}
.icon-ArrowUpLeft-bold:before {
  content: "\edc7";
}
.icon-ArrowUpRight-bold:before {
  content: "\edc8";
}
.icon-ArrowURightDown-bold:before {
  content: "\edc9";
}
.icon-ArrowURightUp-bold:before {
  content: "\edca";
}
.icon-ArrowUUpLeft-bold:before {
  content: "\edcb";
}
.icon-ArrowUUpRight-bold:before {
  content: "\edcc";
}
.icon-CaretCircleDoubleDown-bold:before {
  content: "\edcd";
}
.icon-CaretCircleDoubleLeft-bold:before {
  content: "\edce";
}
.icon-CaretCircleDoubleRight-bold:before {
  content: "\edcf";
}
.icon-CaretCircleDoubleUp-bold:before {
  content: "\edd0";
}
.icon-CaretCircleDown-bold:before {
  content: "\edd1";
}
.icon-CaretCircleLeft-bold:before {
  content: "\edd2";
}
.icon-CaretCircleRight-bold:before {
  content: "\edd3";
}
.icon-CaretCircleUp-bold:before {
  content: "\edd4";
}
.icon-CaretCircleUpDown-bold:before {
  content: "\edd5";
}
.icon-CaretDoubleDown-bold:before {
  content: "\edd6";
}
.icon-CaretDoubleLeft-bold:before {
  content: "\edd7";
}
.icon-CaretDoubleRight-bold:before {
  content: "\edd8";
}
.icon-CaretDoubleUp-bold:before {
  content: "\edd9";
}
.icon-CaretDown-bold:before {
  content: "\edda";
}
.icon-CaretLeft-bold:before {
  content: "\eddb";
}
.icon-CaretRight-bold:before {
  content: "\eddc";
}
.icon-CaretUp-bold:before {
  content: "\eddd";
}
.icon-CaretUpDown-bold:before {
  content: "\edde";
}
.icon-Recycle-bold:before {
  content: "\eddf";
}
.icon-Atom:before {
  content: "\ede0";
}
.icon-Bird:before {
  content: "\ede1";
}
.icon-Bone:before {
  content: "\ede2";
}
.icon-Butterfly:before {
  content: "\ede3";
}
.icon-Cactus:before {
  content: "\ede4";
}
.icon-Campfire:before {
  content: "\ede5";
}
.icon-Cat:before {
  content: "\ede6";
}
.icon-Cloud:before {
  content: "\ede7";
}
.icon-CloudFog:before {
  content: "\ede8";
}
.icon-CloudLightning:before {
  content: "\ede9";
}
.icon-CloudMoon:before {
  content: "\edea";
}
.icon-CloudRain:before {
  content: "\edeb";
}
.icon-CloudSnow:before {
  content: "\edec";
}
.icon-CloudSun:before {
  content: "\eded";
}
.icon-Dog:before {
  content: "\edee";
}
.icon-Drop:before {
  content: "\edef";
}
.icon-Feather:before {
  content: "\edf0";
}
.icon-Fire:before {
  content: "\edf1";
}
.icon-FireSimple:before {
  content: "\edf2";
}
.icon-Fish:before {
  content: "\edf3";
}
.icon-FishSimple:before {
  content: "\edf4";
}
.icon-Flame:before {
  content: "\edf5";
}
.icon-Flower:before {
  content: "\edf6";
}
.icon-FlowerLotus:before {
  content: "\edf7";
}
.icon-FlowerTulip:before {
  content: "\edf8";
}
.icon-Leaf:before {
  content: "\edf9";
}
.icon-Moon:before {
  content: "\edfa";
}
.icon-MoonStars:before {
  content: "\edfb";
}
.icon-Mountains:before {
  content: "\edfc";
}
.icon-PawPrint:before {
  content: "\edfd";
}
.icon-Planet:before {
  content: "\edfe";
}
.icon-Plant:before {
  content: "\edff";
}
.icon-Rainbow:before {
  content: "\ee00";
}
.icon-RainbowCloud:before {
  content: "\ee01";
}
.icon-ShootingStar:before {
  content: "\ee02";
}
.icon-Shrimp:before {
  content: "\ee03";
}
.icon-Snowflake:before {
  content: "\ee04";
}
.icon-Sparkle:before {
  content: "\ee05";
}
.icon-StarFour:before {
  content: "\ee06";
}
.icon-Sun:before {
  content: "\ee07";
}
.icon-SunDim:before {
  content: "\ee08";
}
.icon-SunHorizon:before {
  content: "\ee09";
}
.icon-Thermometer:before {
  content: "\ee0a";
}
.icon-ThermometerCold:before {
  content: "\ee0b";
}
.icon-ThermometerHot:before {
  content: "\ee0c";
}
.icon-ThermometerSimple:before {
  content: "\ee0d";
}
.icon-Tree:before {
  content: "\ee0e";
}
.icon-TreeEvergreen:before {
  content: "\ee0f";
}
.icon-Umbrella:before {
  content: "\ee10";
}
.icon-UmbrellaSimple:before {
  content: "\ee11";
}
.icon-Waves:before {
  content: "\ee12";
}
.icon-Wind:before {
  content: "\ee13";
}
.icon-Alarm:before {
  content: "\ee14";
}
.icon-Calendar:before {
  content: "\ee15";
}
.icon-CalendarBlank:before {
  content: "\ee16";
}
.icon-CalendarCheck:before {
  content: "\ee17";
}
.icon-CalendarPlus:before {
  content: "\ee18";
}
.icon-CalendarX:before {
  content: "\ee19";
}
.icon-Clock:before {
  content: "\ee1a";
}
.icon-ClockAfternoon:before {
  content: "\ee1b";
}
.icon-ClockClockwise:before {
  content: "\ee1c";
}
.icon-ClockCountdown:before {
  content: "\ee1d";
}
.icon-ClockCounterClockwise:before {
  content: "\ee1e";
}
.icon-Hourglass:before {
  content: "\ee1f";
}
.icon-HourglassHigh:before {
  content: "\ee20";
}
.icon-HourglassLow:before {
  content: "\ee21";
}
.icon-HourglassMedium:before {
  content: "\ee22";
}
.icon-HourglassSimple:before {
  content: "\ee23";
}
.icon-HourglassSimpleHigh:before {
  content: "\ee24";
}
.icon-HourglassSimpleLow:before {
  content: "\ee25";
}
.icon-HourglassSimpleMedium:before {
  content: "\ee26";
}
.icon-Timer:before {
  content: "\ee27";
}
.icon-Watch:before {
  content: "\ee28";
}
.icon-AppWindow:before {
  content: "\ee29";
}
.icon-Backspace:before {
  content: "\ee2a";
}
.icon-BatteryCharging:before {
  content: "\ee2b";
}
.icon-BatteryChargingVertical:before {
  content: "\ee2c";
}
.icon-BatteryEmpty:before {
  content: "\ee2d";
}
.icon-BatteryFull:before {
  content: "\ee2e";
}
.icon-BatteryHigh:before {
  content: "\ee2f";
}
.icon-BatteryLow:before {
  content: "\ee30";
}
.icon-BatteryMedium:before {
  content: "\ee31";
}
.icon-BatteryPlus:before {
  content: "\ee32";
}
.icon-BatteryPlusVertical:before {
  content: "\ee33";
}
.icon-BatteryVerticalEmpty:before {
  content: "\ee34";
}
.icon-BatteryVerticalFull:before {
  content: "\ee35";
}
.icon-BatteryVerticalHigh:before {
  content: "\ee36";
}
.icon-BatteryVerticalLow:before {
  content: "\ee37";
}
.icon-BatteryVerticalMedium:before {
  content: "\ee38";
}
.icon-BatteryWarning:before {
  content: "\ee39";
}
.icon-BatteryWarningVertical:before {
  content: "\ee3a";
}
.icon-Bell:before {
  content: "\ee3b";
}
.icon-BellRinging:before {
  content: "\ee3c";
}
.icon-BellSimple:before {
  content: "\ee3d";
}
.icon-BellSimpleRinging:before {
  content: "\ee3e";
}
.icon-BellSimpleSlash:before {
  content: "\ee3f";
}
.icon-BellSimpleZ:before {
  content: "\ee40";
}
.icon-BellSlash:before {
  content: "\ee41";
}
.icon-BellZ:before {
  content: "\ee42";
}
.icon-Bluetooth:before {
  content: "\ee43";
}
.icon-BluetoothConnected:before {
  content: "\ee44";
}
.icon-BluetoothSlash:before {
  content: "\ee45";
}
.icon-BluetoothX:before {
  content: "\ee46";
}
.icon-Browser:before {
  content: "\ee47";
}
.icon-Browsers:before {
  content: "\ee48";
}
.icon-CellSignalFull:before {
  content: "\ee49";
}
.icon-CellSignalHigh:before {
  content: "\ee4a";
}
.icon-CellSignalLow:before {
  content: "\ee4b";
}
.icon-CellSignalMedium:before {
  content: "\ee4c";
}
.icon-CellSignalNone:before {
  content: "\ee4d";
}
.icon-CellSignalSlash:before {
  content: "\ee4e";
}
.icon-CellSignalX:before {
  content: "\ee4f";
}
.icon-Check:before {
  content: "\ee50";
}
.icon-CheckCircle:before {
  content: "\ee51";
}
.icon-CheckFat:before {
  content: "\ee52";
}
.icon-Checks:before {
  content: "\ee53";
}
.icon-CheckSquare:before {
  content: "\ee54";
}
.icon-CheckSquareOffset:before {
  content: "\ee55";
}
.icon-Circuitry:before {
  content: "\ee56";
}
.icon-CloudArrowDown:before {
  content: "\ee57";
}
.icon-CloudArrowUp:before {
  content: "\ee58";
}
.icon-CloudCheck:before {
  content: "\ee59";
}
.icon-CloudSlash:before {
  content: "\ee5a";
}
.icon-CloudWarning:before {
  content: "\ee5b";
}
.icon-CloudX:before {
  content: "\ee5c";
}
.icon-Command:before {
  content: "\ee5d";
}
.icon-ComputerTower:before {
  content: "\ee5e";
}
.icon-Control:before {
  content: "\ee5f";
}
.icon-Cursor:before {
  content: "\ee60";
}
.icon-CursorClick:before {
  content: "\ee61";
}
.icon-Desktop:before {
  content: "\ee62";
}
.icon-DesktopTower:before {
  content: "\ee63";
}
.icon-DeviceMobile:before {
  content: "\ee64";
}
.icon-DeviceMobileCamera:before {
  content: "\ee65";
}
.icon-DeviceMobileSpeaker:before {
  content: "\ee66";
}
.icon-Devices:before {
  content: "\ee67";
}
.icon-DeviceTablet:before {
  content: "\ee68";
}
.icon-DeviceTabletCamera:before {
  content: "\ee69";
}
.icon-DeviceTabletSpeaker:before {
  content: "\ee6a";
}
.icon-Dot:before {
  content: "\ee6b";
}
.icon-DotOutline:before {
  content: "\ee6c";
}
.icon-DotsNine:before {
  content: "\ee6d";
}
.icon-DotsSix:before {
  content: "\ee6e";
}
.icon-DotsSixVertical:before {
  content: "\ee6f";
}
.icon-DotsThree:before {
  content: "\ee70";
}
.icon-DotsThreeCircle:before {
  content: "\ee71";
}
.icon-DotsThreeCircleVertical:before {
  content: "\ee72";
}
.icon-DotsThreeOutline:before {
  content: "\ee73";
}
.icon-DotsThreeOutlineVertical:before {
  content: "\ee74";
}
.icon-DotsThreeVertical:before {
  content: "\ee75";
}
.icon-Download:before {
  content: "\ee76";
}
.icon-DownloadSimple:before {
  content: "\ee77";
}
.icon-Flashlight:before {
  content: "\ee78";
}
.icon-Gauge:before {
  content: "\ee79";
}
.icon-Gear:before {
  content: "\ee7a";
}
.icon-GearSix:before {
  content: "\ee7b";
}
.icon-HandSwipeLeft:before {
  content: "\ee7c";
}
.icon-HandSwipeRight:before {
  content: "\ee7d";
}
.icon-HandTap:before {
  content: "\ee7e";
}
.icon-HardDrive:before {
  content: "\ee7f";
}
.icon-HardDrives:before {
  content: "\ee80";
}
.icon-Keyboard:before {
  content: "\ee81";
}
.icon-KeyReturn:before {
  content: "\ee82";
}
.icon-Laptop:before {
  content: "\ee83";
}
.icon-Lightbulb:before {
  content: "\ee84";
}
.icon-LightbulbFilament:before {
  content: "\ee85";
}
.icon-Lightning:before {
  content: "\ee86";
}
.icon-LightningA:before {
  content: "\ee87";
}
.icon-LightningSlash:before {
  content: "\ee88";
}
.icon-Link:before {
  content: "\ee89";
}
.icon-LinkBreak:before {
  content: "\ee8a";
}
.icon-LinkSimple:before {
  content: "\ee8b";
}
.icon-LinkSimpleBreak:before {
  content: "\ee8c";
}
.icon-LinkSimpleHorizontal:before {
  content: "\ee8d";
}
.icon-LinkSimpleHorizontalBreak:before {
  content: "\ee8e";
}
.icon-ListMagnifyingGlass:before {
  content: "\ee8f";
}
.icon-MagnifyingGlass:before {
  content: "\ee90";
}
.icon-MagnifyingGlassMinus:before {
  content: "\ee91";
}
.icon-MagnifyingGlassPlus:before {
  content: "\ee92";
}
.icon-Monitor:before {
  content: "\ee93";
}
.icon-MonitorPlay:before {
  content: "\ee94";
}
.icon-Mouse:before {
  content: "\ee95";
}
.icon-MouseSimple:before {
  content: "\ee96";
}
.icon-Notification:before {
  content: "\ee97";
}
.icon-Nut:before {
  content: "\ee98";
}
.icon-Option:before {
  content: "\ee99";
}
.icon-Plug:before {
  content: "\ee9a";
}
.icon-PlugCharging:before {
  content: "\ee9b";
}
.icon-Plugs:before {
  content: "\ee9c";
}
.icon-PlugsConnected:before {
  content: "\ee9d";
}
.icon-Power:before {
  content: "\ee9e";
}
.icon-QrCode:before {
  content: "\ee9f";
}
.icon-RadioButton:before {
  content: "\eea0";
}
.icon-Scan:before {
  content: "\eea1";
}
.icon-SignIn:before {
  content: "\eea2";
}
.icon-SignOut:before {
  content: "\eea3";
}
.icon-SimCard:before {
  content: "\eea4";
}
.icon-Spinner:before {
  content: "\eea5";
}
.icon-SpinnerGap:before {
  content: "\eea6";
}
.icon-Swap:before {
  content: "\eea7";
}
.icon-Tabs:before {
  content: "\eea8";
}
.icon-ToggleLeft:before {
  content: "\eea9";
}
.icon-ToggleRight:before {
  content: "\eeaa";
}
.icon-Upload:before {
  content: "\eeab";
}
.icon-UploadSimple:before {
  content: "\eeac";
}
.icon-Usb:before {
  content: "\eead";
}
.icon-Vibrate:before {
  content: "\eeae";
}
.icon-WifiHigh:before {
  content: "\eeaf";
}
.icon-WifiLow:before {
  content: "\eeb0";
}
.icon-WifiMedium:before {
  content: "\eeb1";
}
.icon-WifiNone:before {
  content: "\eeb2";
}
.icon-WifiSlash:before {
  content: "\eeb3";
}
.icon-WifiX:before {
  content: "\eeb4";
}
.icon-Community:before {
  content: "\eeb5";
}
.icon-FS:before {
  content: "\eeb6";
}
.icon-GMA:before {
  content: "\eeb7";
}
.icon-Company-Group:before {
  content: "\eeb8";
}
.icon-Manage-Company:before {
  content: "\eeb9";
}
.icon-Manage-Forms:before {
  content: "\eeba";
}
.icon-Manage-Service:before {
  content: "\eebb";
}
.icon-Perform-Service:before {
  content: "\eebc";
}
.icon-Request-Service:before {
  content: "\eebd";
}
.icon-Track-Service:before {
  content: "\eebe";
}
.icon-Detective:before {
  content: "\eebf";
}
.icon-Fingerprint:before {
  content: "\eec0";
}
.icon-FingerprintSimple:before {
  content: "\eec1";
}
.icon-FireExtinguisher:before {
  content: "\eec2";
}
.icon-Info:before {
  content: "\eec3";
}
.icon-Key:before {
  content: "\eec4";
}
.icon-Keyhole:before {
  content: "\eec5";
}
.icon-Lock:before {
  content: "\eec6";
}
.icon-LockKey:before {
  content: "\eec7";
}
.icon-LockKeyOpen:before {
  content: "\eec8";
}
.icon-LockLaminated:before {
  content: "\eec9";
}
.icon-LockLaminatedOpen:before {
  content: "\eeca";
}
.icon-LockOpen:before {
  content: "\eecb";
}
.icon-LockSimple:before {
  content: "\eecc";
}
.icon-LockSimpleOpen:before {
  content: "\eecd";
}
.icon-Password:before {
  content: "\eece";
}
.icon-Prohibit:before {
  content: "\eecf";
}
.icon-ProhibitInset:before {
  content: "\eed0";
}
.icon-Question:before {
  content: "\eed1";
}
.icon-Radioactive:before {
  content: "\eed2";
}
.icon-Seal:before {
  content: "\eed3";
}
.icon-SealCheck:before {
  content: "\eed4";
}
.icon-SealQuestion:before {
  content: "\eed5";
}
.icon-SealWarning:before {
  content: "\eed6";
}
.icon-Shield:before {
  content: "\eed7";
}
.icon-ShieldCheck:before {
  content: "\eed8";
}
.icon-ShieldCheckered:before {
  content: "\eed9";
}
.icon-ShieldChevron:before {
  content: "\eeda";
}
.icon-ShieldPlus:before {
  content: "\eedb";
}
.icon-ShieldSlash:before {
  content: "\eedc";
}
.icon-ShieldStar:before {
  content: "\eedd";
}
.icon-ShieldWarning:before {
  content: "\eede";
}
.icon-Siren:before {
  content: "\eedf";
}
.icon-Vault:before {
  content: "\eee0";
}
.icon-Wall:before {
  content: "\eee1";
}
.icon-Warning:before {
  content: "\eee2";
}
.icon-WarningCircle:before {
  content: "\eee3";
}
.icon-WarningDiamond:before {
  content: "\eee4";
}
.icon-WarningOctagon:before {
  content: "\eee5";
}
.icon-Baby:before {
  content: "\eee6";
}
.icon-Footprints:before {
  content: "\eee7";
}
.icon-GenderFemale:before {
  content: "\eee8";
}
.icon-GenderIntersex:before {
  content: "\eee9";
}
.icon-GenderMale:before {
  content: "\eeea";
}
.icon-GenderNeuter:before {
  content: "\eeeb";
}
.icon-GenderNonbinary:before {
  content: "\eeec";
}
.icon-GenderTransgender:before {
  content: "\eeed";
}
.icon-Hand:before {
  content: "\eeee";
}
.icon-HandEye:before {
  content: "\eeef";
}
.icon-HandFist:before {
  content: "\eef0";
}
.icon-HandGrabbing:before {
  content: "\eef1";
}
.icon-HandPalm:before {
  content: "\eef2";
}
.icon-HandPointing:before {
  content: "\eef3";
}
.icon-HandsClapping:before {
  content: "\eef4";
}
.icon-Handshake:before {
  content: "\eef5";
}
.icon-HandsPraying:before {
  content: "\eef6";
}
.icon-HandWaving:before {
  content: "\eef7";
}
.icon-IdentificationBadge:before {
  content: "\eef8";
}
.icon-IdentificationCard:before {
  content: "\eef9";
}
.icon-Person:before {
  content: "\eefa";
}
.icon-PersonArmsSpread:before {
  content: "\eefb";
}
.icon-PersonSimple:before {
  content: "\eefc";
}
.icon-PersonSimpleBike:before {
  content: "\eefd";
}
.icon-PersonSimpleRun:before {
  content: "\eefe";
}
.icon-PersonSimpleThrow:before {
  content: "\eeff";
}
.icon-PersonSimpleWalk:before {
  content: "\ef00";
}
.icon-Smiley:before {
  content: "\ef01";
}
.icon-SmileyAngry:before {
  content: "\ef02";
}
.icon-SmileyBlank:before {
  content: "\ef03";
}
.icon-SmileyMeh:before {
  content: "\ef04";
}
.icon-SmileyNervous:before {
  content: "\ef05";
}
.icon-SmileySad:before {
  content: "\ef06";
}
.icon-SmileySticker:before {
  content: "\ef07";
}
.icon-SmileyWink:before {
  content: "\ef08";
}
.icon-SmileyXEyes:before {
  content: "\ef09";
}
.icon-User:before {
  content: "\ef0a";
}
.icon-UserCircle:before {
  content: "\ef0b";
}
.icon-UserCircleGear:before {
  content: "\ef0c";
}
.icon-UserCircleMinus:before {
  content: "\ef0d";
}
.icon-UserCirclePlus:before {
  content: "\ef0e";
}
.icon-UserFocus:before {
  content: "\ef0f";
}
.icon-UserGear:before {
  content: "\ef10";
}
.icon-UserList:before {
  content: "\ef11";
}
.icon-UserMinus:before {
  content: "\ef12";
}
.icon-UserPlus:before {
  content: "\ef13";
}
.icon-UserRectangle:before {
  content: "\ef14";
}
.icon-Users:before {
  content: "\ef15";
}
.icon-UsersFour:before {
  content: "\ef16";
}
.icon-UserSquare:before {
  content: "\ef17";
}
.icon-UsersThree:before {
  content: "\ef18";
}
.icon-UserSwitch:before {
  content: "\ef19";
}
.icon-Wheelchair:before {
  content: "\ef1a";
}
.icon-WheelchairMotion:before {
  content: "\ef1b";
}
.icon-Archive:before {
  content: "\ef1c";
}
.icon-ArchiveBox:before {
  content: "\ef1d";
}
.icon-ArchiveTray:before {
  content: "\ef1e";
}
.icon-Briefcase:before {
  content: "\ef1f";
}
.icon-BriefcaseMetal:before {
  content: "\ef20";
}
.icon-Cards:before {
  content: "\ef21";
}
.icon-Clipboard:before {
  content: "\ef22";
}
.icon-ClipboardText:before {
  content: "\ef23";
}
.icon-Copy:before {
  content: "\ef24";
}
.icon-CopySimple:before {
  content: "\ef25";
}
.icon-CursorText:before {
  content: "\ef26";
}
.icon-File:before {
  content: "\ef27";
}
.icon-FileArchive:before {
  content: "\ef28";
}
.icon-FileArrowDown:before {
  content: "\ef29";
}
.icon-FileArrowUp:before {
  content: "\ef2a";
}
.icon-FileAudio:before {
  content: "\ef2b";
}
.icon-FileCloud:before {
  content: "\ef2c";
}
.icon-FileCode:before {
  content: "\ef2d";
}
.icon-FileCss:before {
  content: "\ef2e";
}
.icon-FileCsv:before {
  content: "\ef2f";
}
.icon-FileDashed:before {
  content: "\ef30";
}
.icon-FileDoc:before {
  content: "\ef31";
}
.icon-FileHtml:before {
  content: "\ef32";
}
.icon-FileImage:before {
  content: "\ef33";
}
.icon-FileJpg:before {
  content: "\ef34";
}
.icon-FileJs:before {
  content: "\ef35";
}
.icon-FileJsx:before {
  content: "\ef36";
}
.icon-FileLock:before {
  content: "\ef37";
}
.icon-FileMinus:before {
  content: "\ef38";
}
.icon-FilePdf:before {
  content: "\ef39";
}
.icon-FilePlus:before {
  content: "\ef3a";
}
.icon-FilePng:before {
  content: "\ef3b";
}
.icon-FilePpt:before {
  content: "\ef3c";
}
.icon-FileRs:before {
  content: "\ef3d";
}
.icon-Files:before {
  content: "\ef3e";
}
.icon-FileSearch:before {
  content: "\ef3f";
}
.icon-FileSql:before {
  content: "\ef40";
}
.icon-FileSvg:before {
  content: "\ef41";
}
.icon-FileText:before {
  content: "\ef42";
}
.icon-FileTs:before {
  content: "\ef43";
}
.icon-FileTsx:before {
  content: "\ef44";
}
.icon-FileVideo:before {
  content: "\ef45";
}
.icon-FileVue:before {
  content: "\ef46";
}
.icon-FileX:before {
  content: "\ef47";
}
.icon-FileXls:before {
  content: "\ef48";
}
.icon-FileZip:before {
  content: "\ef49";
}
.icon-FloppyDisk:before {
  content: "\ef4a";
}
.icon-FloppyDiskBack:before {
  content: "\ef4b";
}
.icon-Folder:before {
  content: "\ef4c";
}
.icon-FolderDashed:before {
  content: "\ef4d";
}
.icon-FolderLock:before {
  content: "\ef4e";
}
.icon-FolderMinus:before {
  content: "\ef4f";
}
.icon-FolderNotch:before {
  content: "\ef50";
}
.icon-FolderNotchMinus:before {
  content: "\ef51";
}
.icon-FolderNotchOpen:before {
  content: "\ef52";
}
.icon-FolderNotchPlus:before {
  content: "\ef53";
}
.icon-FolderOpen:before {
  content: "\ef54";
}
.icon-FolderPlus:before {
  content: "\ef55";
}
.icon-Folders:before {
  content: "\ef56";
}
.icon-FolderSimple:before {
  content: "\ef57";
}
.icon-FolderSimpleDashed:before {
  content: "\ef58";
}
.icon-FolderSimpleLock:before {
  content: "\ef59";
}
.icon-FolderSimpleMinus:before {
  content: "\ef5a";
}
.icon-FolderSimplePlus:before {
  content: "\ef5b";
}
.icon-FolderSimpleStar:before {
  content: "\ef5c";
}
.icon-FolderSimpleUser:before {
  content: "\ef5d";
}
.icon-FolderStar:before {
  content: "\ef5e";
}
.icon-FolderUser:before {
  content: "\ef5f";
}
.icon-Funnel:before {
  content: "\ef60";
}
.icon-FunnelSimple:before {
  content: "\ef61";
}
.icon-Kanban:before {
  content: "\ef62";
}
.icon-List:before {
  content: "\ef63";
}
.icon-ListBullets:before {
  content: "\ef64";
}
.icon-ListChecks:before {
  content: "\ef65";
}
.icon-ListDashes:before {
  content: "\ef66";
}
.icon-ListNumbers:before {
  content: "\ef67";
}
.icon-ListPlus:before {
  content: "\ef68";
}
.icon-Note:before {
  content: "\ef69";
}
.icon-NoteBlank:before {
  content: "\ef6a";
}
.icon-Notebook:before {
  content: "\ef6b";
}
.icon-Notepad:before {
  content: "\ef6c";
}
.icon-NotePencil:before {
  content: "\ef6d";
}
.icon-Paperclip:before {
  content: "\ef6e";
}
.icon-PaperclipHorizontal:before {
  content: "\ef6f";
}
.icon-Paragraph:before {
  content: "\ef70";
}
.icon-Presentation:before {
  content: "\ef71";
}
.icon-PresentationChart:before {
  content: "\ef72";
}
.icon-Printer:before {
  content: "\ef73";
}
.icon-ProjectorScreen:before {
  content: "\ef74";
}
.icon-ProjectorScreenChart:before {
  content: "\ef75";
}
.icon-PushPin:before {
  content: "\ef76";
}
.icon-PushPinSimple:before {
  content: "\ef77";
}
.icon-PushPinSimpleSlash:before {
  content: "\ef78";
}
.icon-PushPinSlash:before {
  content: "\ef79";
}
.icon-SortAscending:before {
  content: "\ef7a";
}
.icon-SortDescending:before {
  content: "\ef7b";
}
.icon-TextAa:before {
  content: "\ef7c";
}
.icon-TextAlignCenter:before {
  content: "\ef7d";
}
.icon-TextAlignJustify:before {
  content: "\ef7e";
}
.icon-TextAlignLeft:before {
  content: "\ef7f";
}
.icon-TextAlignRight:before {
  content: "\ef80";
}
.icon-TextB:before {
  content: "\ef81";
}
.icon-Textbox:before {
  content: "\ef82";
}
.icon-TextColumns:before {
  content: "\ef83";
}
.icon-TextH:before {
  content: "\ef84";
}
.icon-TextHFive:before {
  content: "\ef85";
}
.icon-TextHFour:before {
  content: "\ef86";
}
.icon-TextHOne:before {
  content: "\ef87";
}
.icon-TextHSix:before {
  content: "\ef88";
}
.icon-TextHThree:before {
  content: "\ef89";
}
.icon-TextHTwo:before {
  content: "\ef8a";
}
.icon-TextIndent:before {
  content: "\ef8b";
}
.icon-TextItalic:before {
  content: "\ef8c";
}
.icon-TextOutdent:before {
  content: "\ef8d";
}
.icon-TextStrikethrough:before {
  content: "\ef8e";
}
.icon-TextT:before {
  content: "\ef8f";
}
.icon-TextUnderline:before {
  content: "\ef90";
}
.icon-Trash:before {
  content: "\ef91";
}
.icon-TrashSimple:before {
  content: "\ef92";
}
.icon-Tray:before {
  content: "\ef93";
}
.icon-Airplay:before {
  content: "\ef94";
}
.icon-Aperture:before {
  content: "\ef95";
}
.icon-Article:before {
  content: "\ef96";
}
.icon-ArticleMedium:before {
  content: "\ef97";
}
.icon-ArticleNyTimes:before {
  content: "\ef98";
}
.icon-Camera:before {
  content: "\ef99";
}
.icon-CameraPlus:before {
  content: "\ef9a";
}
.icon-CameraRotate:before {
  content: "\ef9b";
}
.icon-CameraSlash:before {
  content: "\ef9c";
}
.icon-CassetteTape:before {
  content: "\ef9d";
}
.icon-ClosedCaptioning:before {
  content: "\ef9e";
}
.icon-Copyleft:before {
  content: "\ef9f";
}
.icon-Copyright:before {
  content: "\efa0";
}
.icon-CornersIn:before {
  content: "\efa1";
}
.icon-CornersOut:before {
  content: "\efa2";
}
.icon-Disc:before {
  content: "\efa3";
}
.icon-Ear:before {
  content: "\efa4";
}
.icon-EarSlash:before {
  content: "\efa5";
}
.icon-Eject:before {
  content: "\efa6";
}
.icon-EjectSimple:before {
  content: "\efa7";
}
.icon-Equalizer:before {
  content: "\efa8";
}
.icon-Faders:before {
  content: "\efa9";
}
.icon-FadersHorizontal:before {
  content: "\efaa";
}
.icon-FastForward:before {
  content: "\efab";
}
.icon-FastForwardCircle:before {
  content: "\efac";
}
.icon-FilmReel:before {
  content: "\efad";
}
.icon-FilmScript:before {
  content: "\efae";
}
.icon-FilmSlate:before {
  content: "\efaf";
}
.icon-FilmStrip:before {
  content: "\efb0";
}
.icon-FrameCorners:before {
  content: "\efb1";
}
.icon-Gif:before {
  content: "\efb2";
}
.icon-Guitar:before {
  content: "\efb3";
}
.icon-Headphones:before {
  content: "\efb4";
}
.icon-Headset:before {
  content: "\efb5";
}
.icon-Image:before {
  content: "\efb6";
}
.icon-Images:before {
  content: "\efb7";
}
.icon-ImageSquare:before {
  content: "\efb8";
}
.icon-ImagesSquare:before {
  content: "\efb9";
}
.icon-Metronome:before {
  content: "\efba";
}
.icon-Microphone:before {
  content: "\efbb";
}
.icon-MicrophoneSlash:before {
  content: "\efbc";
}
.icon-MicrophoneStage:before {
  content: "\efbd";
}
.icon-MusicNote:before {
  content: "\efbe";
}
.icon-MusicNotes:before {
  content: "\efbf";
}
.icon-MusicNoteSimple:before {
  content: "\efc0";
}
.icon-MusicNotesPlus:before {
  content: "\efc1";
}
.icon-MusicNotesSimple:before {
  content: "\efc2";
}
.icon-Newspaper:before {
  content: "\efc3";
}
.icon-NewspaperClipping:before {
  content: "\efc4";
}
.icon-Pause:before {
  content: "\efc5";
}
.icon-PauseCircle:before {
  content: "\efc6";
}
.icon-PianoKeys:before {
  content: "\efc7";
}
.icon-PictureInPicture:before {
  content: "\efc8";
}
.icon-Play:before {
  content: "\efc9";
}
.icon-PlayCircle:before {
  content: "\efca";
}
.icon-Playlist:before {
  content: "\efcb";
}
.icon-PlayPause:before {
  content: "\efcc";
}
.icon-Queue:before {
  content: "\efcd";
}
.icon-Record:before {
  content: "\efce";
}
.icon-Repeat:before {
  content: "\efcf";
}
.icon-RepeatOnce:before {
  content: "\efd0";
}
.icon-Rewind:before {
  content: "\efd1";
}
.icon-RewindCircle:before {
  content: "\efd2";
}
.icon-Screencast:before {
  content: "\efd3";
}
.icon-Shuffle:before {
  content: "\efd4";
}
.icon-ShuffleAngular:before {
  content: "\efd5";
}
.icon-ShuffleSimple:before {
  content: "\efd6";
}
.icon-SkipBack:before {
  content: "\efd7";
}
.icon-SkipBackCircle:before {
  content: "\efd8";
}
.icon-SkipForward:before {
  content: "\efd9";
}
.icon-SkipForwardCircle:before {
  content: "\efda";
}
.icon-Sliders:before {
  content: "\efdb";
}
.icon-SlidersHorizontal:before {
  content: "\efdc";
}
.icon-Slideshow:before {
  content: "\efdd";
}
.icon-SpeakerHifi:before {
  content: "\efde";
}
.icon-SpeakerHigh:before {
  content: "\efdf";
}
.icon-SpeakerLow:before {
  content: "\efe0";
}
.icon-SpeakerNone:before {
  content: "\efe1";
}
.icon-SpeakerSimpleHigh:before {
  content: "\efe2";
}
.icon-SpeakerSimpleLow:before {
  content: "\efe3";
}
.icon-SpeakerSimpleNone:before {
  content: "\efe4";
}
.icon-SpeakerSimpleSlash:before {
  content: "\efe5";
}
.icon-SpeakerSimpleX:before {
  content: "\efe6";
}
.icon-SpeakerSlash:before {
  content: "\efe7";
}
.icon-SpeakerX:before {
  content: "\efe8";
}
.icon-Stop:before {
  content: "\efe9";
}
.icon-StopCircle:before {
  content: "\efea";
}
.icon-Subtitles:before {
  content: "\efeb";
}
.icon-Television:before {
  content: "\efec";
}
.icon-TelevisionSimple:before {
  content: "\efed";
}
.icon-VideoCamera:before {
  content: "\efee";
}
.icon-VideoCameraSlash:before {
  content: "\efef";
}
.icon-VinylRecord:before {
  content: "\eff0";
}
.icon-Waveform:before {
  content: "\eff1";
}
.icon-WaveSawtooth:before {
  content: "\eff2";
}
.icon-WaveSine:before {
  content: "\eff3";
}
.icon-WaveSquare:before {
  content: "\eff4";
}
.icon-WaveTriangle:before {
  content: "\eff5";
}
.icon-Webcam:before {
  content: "\eff6";
}
.icon-WebcamSlash:before {
  content: "\eff7";
}
.icon-Bank:before {
  content: "\eff8";
}
.icon-Calculator:before {
  content: "\eff9";
}
.icon-ChartBar:before {
  content: "\effa";
}
.icon-ChartBarHorizontal:before {
  content: "\effb";
}
.icon-ChartDonut:before {
  content: "\effc";
}
.icon-ChartLine:before {
  content: "\effd";
}
.icon-ChartLineDown:before {
  content: "\effe";
}
.icon-ChartLineUp:before {
  content: "\efff";
}
.icon-ChartPie:before {
  content: "\f000";
}
.icon-ChartPieSlice:before {
  content: "\f001";
}
.icon-ChartPolar:before {
  content: "\f002";
}
.icon-ChartScatter:before {
  content: "\f003";
}
.icon-Divide:before {
  content: "\f004";
}
.icon-Equals:before {
  content: "\f005";
}
.icon-Function:before {
  content: "\f006";
}
.icon-Graph:before {
  content: "\f007";
}
.icon-Infinity:before {
  content: "\f008";
}
.icon-MathOperations:before {
  content: "\f009";
}
.icon-Minus:before {
  content: "\f00a";
}
.icon-MinusCircle:before {
  content: "\f00b";
}
.icon-MinusSquare:before {
  content: "\f00c";
}
.icon-NumberCircleEight:before {
  content: "\f00d";
}
.icon-NumberCircleFive:before {
  content: "\f00e";
}
.icon-NumberCircleFour:before {
  content: "\f00f";
}
.icon-NumberCircleNine:before {
  content: "\f010";
}
.icon-NumberCircleOne:before {
  content: "\f011";
}
.icon-NumberCircleSeven:before {
  content: "\f012";
}
.icon-NumberCircleSix:before {
  content: "\f013";
}
.icon-NumberCircleThree:before {
  content: "\f014";
}
.icon-NumberCircleTwo:before {
  content: "\f015";
}
.icon-NumberCircleZero:before {
  content: "\f016";
}
.icon-NumberEight:before {
  content: "\f017";
}
.icon-NumberFive:before {
  content: "\f018";
}
.icon-NumberFour:before {
  content: "\f019";
}
.icon-NumberNine:before {
  content: "\f01a";
}
.icon-NumberOne:before {
  content: "\f01b";
}
.icon-NumberSeven:before {
  content: "\f01c";
}
.icon-NumberSix:before {
  content: "\f01d";
}
.icon-NumberSquareEight:before {
  content: "\f01e";
}
.icon-NumberSquareFive:before {
  content: "\f01f";
}
.icon-NumberSquareFour:before {
  content: "\f020";
}
.icon-NumberSquareNine:before {
  content: "\f021";
}
.icon-NumberSquareOne:before {
  content: "\f022";
}
.icon-NumberSquareSeven:before {
  content: "\f023";
}
.icon-NumberSquareSix:before {
  content: "\f024";
}
.icon-NumberSquareThree:before {
  content: "\f025";
}
.icon-NumberSquareTwo:before {
  content: "\f026";
}
.icon-NumberSquareZero:before {
  content: "\f027";
}
.icon-NumberThree:before {
  content: "\f028";
}
.icon-NumberTwo:before {
  content: "\f029";
}
.icon-NumberZero:before {
  content: "\f02a";
}
.icon-Percent:before {
  content: "\f02b";
}
.icon-Pi:before {
  content: "\f02c";
}
.icon-Plus:before {
  content: "\f02d";
}
.icon-PlusCircle:before {
  content: "\f02e";
}
.icon-PlusMinus:before {
  content: "\f02f";
}
.icon-PlusSquare:before {
  content: "\f030";
}
.icon-Radical:before {
  content: "\f031";
}
.icon-Sigma:before {
  content: "\f032";
}
.icon-Table:before {
  content: "\f033";
}
.icon-TrendDown:before {
  content: "\f034";
}
.icon-TrendUp:before {
  content: "\f035";
}
.icon-Xicon:before {
  content: "\f036";
}
.icon-XCircle:before {
  content: "\f037";
}
.icon-XSquare:before {
  content: "\f038";
}
.icon-Airplane:before {
  content: "\f039";
}
.icon-AirplaneInFlight:before {
  content: "\f03a";
}
.icon-AirplaneLanding:before {
  content: "\f03b";
}
.icon-AirplaneTakeoff:before {
  content: "\f03c";
}
.icon-AirplaneTilt:before {
  content: "\f03d";
}
.icon-AirTrafficControl:before {
  content: "\f03e";
}
.icon-Anchor:before {
  content: "\f03f";
}
.icon-AnchorSimple:before {
  content: "\f040";
}
.icon-Barricade:before {
  content: "\f041";
}
.icon-Bicycle:before {
  content: "\f042";
}
.icon-Boat:before {
  content: "\f043";
}
.icon-Bus:before {
  content: "\f044";
}
.icon-Car:before {
  content: "\f045";
}
.icon-CarProfile:before {
  content: "\f046";
}
.icon-CarSimple:before {
  content: "\f047";
}
.icon-ChargingStation:before {
  content: "\f048";
}
.icon-Church:before {
  content: "\f049";
}
.icon-Compass:before {
  content: "\f04a";
}
.icon-Crosshair:before {
  content: "\f04b";
}
.icon-CrosshairSimple:before {
  content: "\f04c";
}
.icon-Elevator:before {
  content: "\f04d";
}
.icon-Engine:before {
  content: "\f04e";
}
.icon-EscalatorDown:before {
  content: "\f04f";
}
.icon-EscalatorUp:before {
  content: "\f050";
}
.icon-Flag:before {
  content: "\f051";
}
.icon-FlagBanner:before {
  content: "\f052";
}
.icon-FlagCheckered:before {
  content: "\f053";
}
.icon-FlagPennant:before {
  content: "\f054";
}
.icon-GasCan:before {
  content: "\f055";
}
.icon-GasPump:before {
  content: "\f056";
}
.icon-Globe:before {
  content: "\f057";
}
.icon-GlobeHemisphereEast:before {
  content: "\f058";
}
.icon-GlobeHemisphereWest:before {
  content: "\f059";
}
.icon-GlobeSimple:before {
  content: "\f05a";
}
.icon-GlobeStand:before {
  content: "\f05b";
}
.icon-Goggles:before {
  content: "\f05c";
}
.icon-Headlights:before {
  content: "\f05d";
}
.icon-House:before {
  content: "\f05e";
}
.icon-HouseLine:before {
  content: "\f05f";
}
.icon-HouseSimple:before {
  content: "\f060";
}
.icon-Jeep:before {
  content: "\f061";
}
.icon-Lighthouse:before {
  content: "\f062";
}
.icon-Lockers:before {
  content: "\f063";
}
.icon-MapPin:before {
  content: "\f064";
}
.icon-MapPinLine:before {
  content: "\f065";
}
.icon-MapTrifold:before {
  content: "\f066";
}
.icon-Moped:before {
  content: "\f067";
}
.icon-MopedFront:before {
  content: "\f068";
}
.icon-Mosque:before {
  content: "\f069";
}
.icon-Motorcycle:before {
  content: "\f06a";
}
.icon-NavigationArrow:before {
  content: "\f06b";
}
.icon-Park:before {
  content: "\f06c";
}
.icon-Path:before {
  content: "\f06d";
}
.icon-PoliceCar:before {
  content: "\f06e";
}
.icon-RoadHorizon:before {
  content: "\f06f";
}
.icon-Rocket:before {
  content: "\f070";
}
.icon-RocketLaunch:before {
  content: "\f071";
}
.icon-Scooter:before {
  content: "\f072";
}
.icon-Signpost:before {
  content: "\f073";
}
.icon-SteeringWheel:before {
  content: "\f074";
}
.icon-Steps:before {
  content: "\f075";
}
.icon-Suitcase:before {
  content: "\f076";
}
.icon-SuitcaseRolling:before {
  content: "\f077";
}
.icon-SuitcaseSimple:before {
  content: "\f078";
}
.icon-SwimmingPool:before {
  content: "\f079";
}
.icon-Synagogue:before {
  content: "\f07a";
}
.icon-Taxi:before {
  content: "\f07b";
}
.icon-Tent:before {
  content: "\f07c";
}
.icon-Tipi:before {
  content: "\f07d";
}
.icon-TrafficCone:before {
  content: "\f07e";
}
.icon-TrafficSign:before {
  content: "\f07f";
}
.icon-TrafficSignal:before {
  content: "\f080";
}
.icon-Train:before {
  content: "\f081";
}
.icon-TrainRegional:before {
  content: "\f082";
}
.icon-TrainSimple:before {
  content: "\f083";
}
.icon-Tram:before {
  content: "\f084";
}
.icon-Truck:before {
  content: "\f085";
}
.icon-Van:before {
  content: "\f086";
}
.icon-Bandaids:before {
  content: "\f087";
}
.icon-Barbell:before {
  content: "\f088";
}
.icon-Bed:before {
  content: "\f089";
}
.icon-Brain:before {
  content: "\f08a";
}
.icon-Dna:before {
  content: "\f08b";
}
.icon-FaceMask:before {
  content: "\f08c";
}
.icon-FirstAid:before {
  content: "\f08d";
}
.icon-FirstAidKit:before {
  content: "\f08e";
}
.icon-Flask:before {
  content: "\f08f";
}
.icon-HandHeart:before {
  content: "\f090";
}
.icon-HandSoap:before {
  content: "\f091";
}
.icon-Heartbeat:before {
  content: "\f092";
}
.icon-Lifebuoy:before {
  content: "\f093";
}
.icon-Pill:before {
  content: "\f094";
}
.icon-Prescription:before {
  content: "\f095";
}
.icon-Pulse:before {
  content: "\f096";
}
.icon-Stethoscope:before {
  content: "\f097";
}
.icon-Syringe:before {
  content: "\f098";
}
.icon-TestTube:before {
  content: "\f099";
}
.icon-Toilet:before {
  content: "\f09a";
}
.icon-ToiletPaper:before {
  content: "\f09b";
}
.icon-Tooth:before {
  content: "\f09c";
}
.icon-Virus:before {
  content: "\f09d";
}
.icon-Alien:before {
  content: "\f09e";
}
.icon-Baseball:before {
  content: "\f09f";
}
.icon-Basketball:before {
  content: "\f0a0";
}
.icon-CastleTurret:before {
  content: "\f0a1";
}
.icon-Club:before {
  content: "\f0a2";
}
.icon-Confetti:before {
  content: "\f0a3";
}
.icon-Crown:before {
  content: "\f0a4";
}
.icon-CrownSimple:before {
  content: "\f0a5";
}
.icon-CubeFocus:before {
  content: "\f0a6";
}
.icon-Diamond:before {
  content: "\f0a7";
}
.icon-DiceFive:before {
  content: "\f0a8";
}
.icon-DiceFour:before {
  content: "\f0a9";
}
.icon-DiceOne:before {
  content: "\f0aa";
}
.icon-DiceSix:before {
  content: "\f0ab";
}
.icon-DiceThree:before {
  content: "\f0ac";
}
.icon-DiceTwo:before {
  content: "\f0ad";
}
.icon-FinnTheHuman:before {
  content: "\f0ae";
}
.icon-FlyingSaucer:before {
  content: "\f0af";
}
.icon-Football:before {
  content: "\f0b0";
}
.icon-GameController:before {
  content: "\f0b1";
}
.icon-Ghost:before {
  content: "\f0b2";
}
.icon-GoogleCardboardLogo:before {
  content: "\f0b3";
}
.icon-Heart:before {
  content: "\f0b4";
}
.icon-HeartBreak:before {
  content: "\f0b5";
}
.icon-HeartHalf:before {
  content: "\f0b6";
}
.icon-HeartStraight:before {
  content: "\f0b7";
}
.icon-HeartStraightBreak:before {
  content: "\f0b8";
}
.icon-Horse:before {
  content: "\f0b9";
}
.icon-MaskHappy:before {
  content: "\f0ba";
}
.icon-MaskSad:before {
  content: "\f0bb";
}
.icon-Medal:before {
  content: "\f0bc";
}
.icon-MedalMilitary:before {
  content: "\f0bd";
}
.icon-Parachute:before {
  content: "\f0be";
}
.icon-Pinwheel:before {
  content: "\f0bf";
}
.icon-PokerChip:before {
  content: "\f0c0";
}
.icon-PuzzlePiece:before {
  content: "\f0c1";
}
.icon-Scroll:before {
  content: "\f0c2";
}
.icon-Skull:before {
  content: "\f0c3";
}
.icon-SoccerBall:before {
  content: "\f0c4";
}
.icon-Spade:before {
  content: "\f0c5";
}
.icon-Spiral:before {
  content: "\f0c6";
}
.icon-Strategy:before {
  content: "\f0c7";
}
.icon-Sword:before {
  content: "\f0c8";
}
.icon-Target:before {
  content: "\f0c9";
}
.icon-TennisBall:before {
  content: "\f0ca";
}
.icon-TreePalm:before {
  content: "\f0cb";
}
.icon-Trophy:before {
  content: "\f0cc";
}
.icon-VirtualReality:before {
  content: "\f0cd";
}
.icon-Volleyball:before {
  content: "\f0ce";
}
.icon-Book:before {
  content: "\f0cf";
}
.icon-BookBookmark:before {
  content: "\f0d0";
}
.icon-Bookmark:before {
  content: "\f0d1";
}
.icon-Bookmarks:before {
  content: "\f0d2";
}
.icon-BookmarkSimple:before {
  content: "\f0d3";
}
.icon-BookmarksSimple:before {
  content: "\f0d4";
}
.icon-BookOpen:before {
  content: "\f0d5";
}
.icon-BookOpenText:before {
  content: "\f0d6";
}
.icon-Books:before {
  content: "\f0d7";
}
.icon-Certificate:before {
  content: "\f0d8";
}
.icon-Chalkboard:before {
  content: "\f0d9";
}
.icon-ChalkboardSimple:before {
  content: "\f0da";
}
.icon-ChalkboardTeacher:before {
  content: "\f0db";
}
.icon-Exam:before {
  content: "\f0dc";
}
.icon-GraduationCap:before {
  content: "\f0dd";
}
.icon-Student:before {
  content: "\f0de";
}
.icon-Video:before {
  content: "\f0df";
}
.icon-BracketsAngle:before {
  content: "\f0e0";
}
.icon-BracketsCurly:before {
  content: "\f0e1";
}
.icon-BracketsRound:before {
  content: "\f0e2";
}
.icon-BracketsSquare:before {
  content: "\f0e3";
}
.icon-Bug:before {
  content: "\f0e4";
}
.icon-BugBeetle:before {
  content: "\f0e5";
}
.icon-BugDroid:before {
  content: "\f0e6";
}
.icon-Code:before {
  content: "\f0e7";
}
.icon-CodeBlock:before {
  content: "\f0e8";
}
.icon-CodeSimple:before {
  content: "\f0e9";
}
.icon-Cpu:before {
  content: "\f0ea";
}
.icon-Database:before {
  content: "\f0eb";
}
.icon-GitBranch:before {
  content: "\f0ec";
}
.icon-GitCommit:before {
  content: "\f0ed";
}
.icon-GitDiff:before {
  content: "\f0ee";
}
.icon-GitFork:before {
  content: "\f0ef";
}
.icon-GitMerge:before {
  content: "\f0f0";
}
.icon-GitPullRequest:before {
  content: "\f0f1";
}
.icon-Magnet:before {
  content: "\f0f2";
}
.icon-MagnetStraight:before {
  content: "\f0f3";
}
.icon-Robot:before {
  content: "\f0f4";
}
.icon-Terminal:before {
  content: "\f0f5";
}
.icon-TerminalWindow:before {
  content: "\f0f6";
}
.icon-TreeStructure:before {
  content: "\f0f7";
}
.icon-WebhooksLogo:before {
  content: "\f0f8";
}
.icon-AlignBottom:before {
  content: "\f0f9";
}
.icon-AlignBottomSimple:before {
  content: "\f0fa";
}
.icon-AlignCenterHorizontal:before {
  content: "\f0fb";
}
.icon-AlignCenterHorizontalSimple:before {
  content: "\f0fc";
}
.icon-AlignCenterVertical:before {
  content: "\f0fd";
}
.icon-AlignCenterVerticalSimple:before {
  content: "\f0fe";
}
.icon-AlignLeft:before {
  content: "\f0ff";
}
.icon-AlignLeftSimple:before {
  content: "\f100";
}
.icon-AlignRight:before {
  content: "\f101";
}
.icon-AlignRightSimple:before {
  content: "\f102";
}
.icon-AlignTop:before {
  content: "\f103";
}
.icon-AlignTopSimple:before {
  content: "\f104";
}
.icon-BezierCurve:before {
  content: "\f105";
}
.icon-BoundingBox:before {
  content: "\f106";
}
.icon-Circle:before {
  content: "\f107";
}
.icon-CircleDashed:before {
  content: "\f108";
}
.icon-CircleHalf:before {
  content: "\f109";
}
.icon-CircleHalfTilt:before {
  content: "\f10a";
}
.icon-CircleNotch:before {
  content: "\f10b";
}
.icon-CirclesFour:before {
  content: "\f10c";
}
.icon-CirclesThree:before {
  content: "\f10d";
}
.icon-CirclesThreePlus:before {
  content: "\f10e";
}
.icon-Columns:before {
  content: "\f10f";
}
.icon-CompassTool:before {
  content: "\f110";
}
.icon-Crop:before {
  content: "\f111";
}
.icon-Cube:before {
  content: "\f112";
}
.icon-CubeTransparent:before {
  content: "\f113";
}
.icon-Cylinder:before {
  content: "\f114";
}
.icon-DiamondsFour:before {
  content: "\f115";
}
.icon-DropHalf:before {
  content: "\f116";
}
.icon-DropHalfBottom:before {
  content: "\f117";
}
.icon-Eraser:before {
  content: "\f118";
}
.icon-Exclude:before {
  content: "\f119";
}
.icon-ExcludeSquare:before {
  content: "\f11a";
}
.icon-Eye:before {
  content: "\f11b";
}
.icon-EyeClosed:before {
  content: "\f11c";
}
.icon-Eyedropper:before {
  content: "\f11d";
}
.icon-EyedropperSample:before {
  content: "\f11e";
}
.icon-EyeSlash:before {
  content: "\f11f";
}
.icon-FlowArrow:before {
  content: "\f120";
}
.icon-GearFine:before {
  content: "\f121";
}
.icon-Gradient:before {
  content: "\f122";
}
.icon-GridFour:before {
  content: "\f123";
}
.icon-GridNine:before {
  content: "\f124";
}
.icon-Hexagon:before {
  content: "\f125";
}
.icon-HighlighterCircle:before {
  content: "\f126";
}
.icon-Intersect:before {
  content: "\f127";
}
.icon-IntersectSquare:before {
  content: "\f128";
}
.icon-IntersectThree:before {
  content: "\f129";
}
.icon-Layout:before {
  content: "\f12a";
}
.icon-LineSegment:before {
  content: "\f12b";
}
.icon-LineSegments:before {
  content: "\f12c";
}
.icon-MagicWand:before {
  content: "\f12d";
}
.icon-MarkerCircle:before {
  content: "\f12e";
}
.icon-Notches:before {
  content: "\f12f";
}
.icon-Octagon:before {
  content: "\f130";
}
.icon-PaintBrush:before {
  content: "\f131";
}
.icon-PaintBrushBroad:before {
  content: "\f132";
}
.icon-PaintBrushHousehold:before {
  content: "\f133";
}
.icon-PaintBucket:before {
  content: "\f134";
}
.icon-PaintRoller:before {
  content: "\f135";
}
.icon-Palette:before {
  content: "\f136";
}
.icon-Parallelogram:before {
  content: "\f137";
}
.icon-Pen:before {
  content: "\f138";
}
.icon-Pencil:before {
  content: "\f139";
}
.icon-PencilCircle:before {
  content: "\f13a";
}
.icon-PencilLine:before {
  content: "\f13b";
}
.icon-PencilSimple:before {
  content: "\f13c";
}
.icon-PencilSimpleLine:before {
  content: "\f13d";
}
.icon-PencilSimpleSlash:before {
  content: "\f13e";
}
.icon-PencilSlash:before {
  content: "\f13f";
}
.icon-PenNib:before {
  content: "\f140";
}
.icon-PenNibStraight:before {
  content: "\f141";
}
.icon-Pentagram:before {
  content: "\f142";
}
.icon-Perspective:before {
  content: "\f143";
}
.icon-Placeholder:before {
  content: "\f144";
}
.icon-Polygon:before {
  content: "\f145";
}
.icon-Rectangle:before {
  content: "\f146";
}
.icon-Rows:before {
  content: "\f147";
}
.icon-Ruler:before {
  content: "\f148";
}
.icon-Scissors:before {
  content: "\f149";
}
.icon-ScribbleLoop:before {
  content: "\f14a";
}
.icon-Selection:before {
  content: "\f14b";
}
.icon-SelectionAll:before {
  content: "\f14c";
}
.icon-SelectionBackground:before {
  content: "\f14d";
}
.icon-SelectionForeground:before {
  content: "\f14e";
}
.icon-SelectionInverse:before {
  content: "\f14f";
}
.icon-SelectionPlus:before {
  content: "\f150";
}
.icon-SelectionSlash:before {
  content: "\f151";
}
.icon-Shapes:before {
  content: "\f152";
}
.icon-Sidebar:before {
  content: "\f153";
}
.icon-SidebarSimple:before {
  content: "\f154";
}
.icon-SplitHorizontal:before {
  content: "\f155";
}
.icon-SplitVertical:before {
  content: "\f156";
}
.icon-Square:before {
  content: "\f157";
}
.icon-SquareHalf:before {
  content: "\f158";
}
.icon-SquareHalfBottom:before {
  content: "\f159";
}
.icon-SquaresFour:before {
  content: "\f15a";
}
.icon-SquareSplitHorizontal:before {
  content: "\f15b";
}
.icon-SquareSplitVertical:before {
  content: "\f15c";
}
.icon-Stack:before {
  content: "\f15d";
}
.icon-StackSimple:before {
  content: "\f15e";
}
.icon-Stamp:before {
  content: "\f15f";
}
.icon-Subtract:before {
  content: "\f160";
}
.icon-SubtractSquare:before {
  content: "\f161";
}
.icon-Swatches:before {
  content: "\f162";
}
.icon-TextAUnderline:before {
  content: "\f163";
}
.icon-Triangle:before {
  content: "\f164";
}
.icon-Unite:before {
  content: "\f165";
}
.icon-UniteSquare:before {
  content: "\f166";
}
.icon-Vignette:before {
  content: "\f167";
}
.icon-AddressBook:before {
  content: "\f168";
}
.icon-Asterisk:before {
  content: "\f169";
}
.icon-AsteriskSimple:before {
  content: "\f16a";
}
.icon-At:before {
  content: "\f16b";
}
.icon-Broadcast:before {
  content: "\f16c";
}
.icon-Chat:before {
  content: "\f16d";
}
.icon-ChatCentered:before {
  content: "\f16e";
}
.icon-ChatCenteredDots:before {
  content: "\f16f";
}
.icon-ChatCenteredText:before {
  content: "\f170";
}
.icon-ChatCircle:before {
  content: "\f171";
}
.icon-ChatCircleDots:before {
  content: "\f172";
}
.icon-ChatCircleText:before {
  content: "\f173";
}
.icon-ChatDots:before {
  content: "\f174";
}
.icon-Chats:before {
  content: "\f175";
}
.icon-ChatsCircle:before {
  content: "\f176";
}
.icon-ChatsTeardrop:before {
  content: "\f177";
}
.icon-ChatTeardrop:before {
  content: "\f178";
}
.icon-ChatTeardropDots:before {
  content: "\f179";
}
.icon-ChatTeardropText:before {
  content: "\f17a";
}
.icon-ChatText:before {
  content: "\f17b";
}
.icon-Cross:before {
  content: "\f17c";
}
.icon-Envelope:before {
  content: "\f17d";
}
.icon-EnvelopeOpen:before {
  content: "\f17e";
}
.icon-EnvelopeSimple:before {
  content: "\f17f";
}
.icon-EnvelopeSimpleOpen:before {
  content: "\f180";
}
.icon-Export:before {
  content: "\f181";
}
.icon-Hash:before {
  content: "\f182";
}
.icon-HashStraight:before {
  content: "\f183";
}
.icon-Megaphone:before {
  content: "\f184";
}
.icon-MegaphoneSimple:before {
  content: "\f185";
}
.icon-PaperPlane:before {
  content: "\f186";
}
.icon-PaperPlaneRight:before {
  content: "\f187";
}
.icon-PaperPlaneTilt:before {
  content: "\f188";
}
.icon-Peace:before {
  content: "\f189";
}
.icon-Phone:before {
  content: "\f18a";
}
.icon-PhoneCall:before {
  content: "\f18b";
}
.icon-PhoneDisconnect:before {
  content: "\f18c";
}
.icon-PhoneIncoming:before {
  content: "\f18d";
}
.icon-PhoneOutgoing:before {
  content: "\f18e";
}
.icon-PhonePlus:before {
  content: "\f18f";
}
.icon-PhoneSlash:before {
  content: "\f190";
}
.icon-PhoneX:before {
  content: "\f191";
}
.icon-Quotes:before {
  content: "\f192";
}
.icon-Radio:before {
  content: "\f193";
}
.icon-Rss:before {
  content: "\f194";
}
.icon-RssSimple:before {
  content: "\f195";
}
.icon-Share:before {
  content: "\f196";
}
.icon-ShareFat:before {
  content: "\f197";
}
.icon-ShareNetwork:before {
  content: "\f198";
}
.icon-Signature:before {
  content: "\f199";
}
.icon-Star:before {
  content: "\f19a";
}
.icon-StarAndCrescent:before {
  content: "\f19b";
}
.icon-StarHalf:before {
  content: "\f19c";
}
.icon-StarOfDavid:before {
  content: "\f19d";
}
.icon-Sticker:before {
  content: "\f19e";
}
.icon-ThumbsDown:before {
  content: "\f19f";
}
.icon-ThumbsUp:before {
  content: "\f1a0";
}
.icon-Translate:before {
  content: "\f1a1";
}
.icon-Voicemail:before {
  content: "\f1a2";
}
.icon-YinYang:before {
  content: "\f1a3";
}
.icon-Armchair:before {
  content: "\f1a4";
}
.icon-Backpack:before {
  content: "\f1a5";
}
.icon-Bag:before {
  content: "\f1a6";
}
.icon-BagSimple:before {
  content: "\f1a7";
}
.icon-Balloon:before {
  content: "\f1a8";
}
.icon-Barcode:before {
  content: "\f1a9";
}
.icon-BaseballCap:before {
  content: "\f1aa";
}
.icon-Basket:before {
  content: "\f1ab";
}
.icon-Bathtub:before {
  content: "\f1ac";
}
.icon-BeerBottle:before {
  content: "\f1ad";
}
.icon-BeerStein:before {
  content: "\f1ae";
}
.icon-Binoculars:before {
  content: "\f1af";
}
.icon-Boot:before {
  content: "\f1b0";
}
.icon-BowlFood:before {
  content: "\f1b1";
}
.icon-Brandy:before {
  content: "\f1b2";
}
.icon-Bridge:before {
  content: "\f1b3";
}
.icon-Broom:before {
  content: "\f1b4";
}
.icon-Buildings:before {
  content: "\f1b5";
}
.icon-Cake:before {
  content: "\f1b6";
}
.icon-CallBell:before {
  content: "\f1b7";
}
.icon-Cardholder:before {
  content: "\f1b8";
}
.icon-Carrot:before {
  content: "\f1b9";
}
.icon-Chair:before {
  content: "\f1ba";
}
.icon-Champagne:before {
  content: "\f1bb";
}
.icon-CoatHanger:before {
  content: "\f1bc";
}
.icon-Coffee:before {
  content: "\f1bd";
}
.icon-Coin:before {
  content: "\f1be";
}
.icon-Coins:before {
  content: "\f1bf";
}
.icon-CoinVertical:before {
  content: "\f1c0";
}
.icon-ContactlessPayment:before {
  content: "\f1c1";
}
.icon-Cookie:before {
  content: "\f1c2";
}
.icon-CookingPot:before {
  content: "\f1c3";
}
.icon-Couch:before {
  content: "\f1c4";
}
.icon-CreditCard:before {
  content: "\f1c5";
}
.icon-CurrencyBtc:before {
  content: "\f1c6";
}
.icon-CurrencyCircleDollar:before {
  content: "\f1c7";
}
.icon-CurrencyCny:before {
  content: "\f1c8";
}
.icon-CurrencyDollar:before {
  content: "\f1c9";
}
.icon-CurrencyDollarSimple:before {
  content: "\f1ca";
}
.icon-CurrencyEth:before {
  content: "\f1cb";
}
.icon-CurrencyEur:before {
  content: "\f1cc";
}
.icon-CurrencyGbp:before {
  content: "\f1cd";
}
.icon-CurrencyInr:before {
  content: "\f1ce";
}
.icon-CurrencyJpy:before {
  content: "\f1cf";
}
.icon-CurrencyKrw:before {
  content: "\f1d0";
}
.icon-CurrencyKzt:before {
  content: "\f1d1";
}
.icon-CurrencyNgn:before {
  content: "\f1d2";
}
.icon-CurrencyRub:before {
  content: "\f1d3";
}
.icon-Door:before {
  content: "\f1d4";
}
.icon-DoorOpen:before {
  content: "\f1d5";
}
.icon-Dress:before {
  content: "\f1d6";
}
.icon-Egg:before {
  content: "\f1d7";
}
.icon-EggCrack:before {
  content: "\f1d8";
}
.icon-Eyeglasses:before {
  content: "\f1d9";
}
.icon-Factory:before {
  content: "\f1da";
}
.icon-Fan:before {
  content: "\f1db";
}
.icon-ForkKnife:before {
  content: "\f1dc";
}
.icon-Garage:before {
  content: "\f1dd";
}
.icon-Gavel:before {
  content: "\f1de";
}
.icon-Gift:before {
  content: "\f1df";
}
.icon-Grains:before {
  content: "\f1e0";
}
.icon-GrainsSlash:before {
  content: "\f1e1";
}
.icon-Hamburger:before {
  content: "\f1e2";
}
.icon-Hammer:before {
  content: "\f1e3";
}
.icon-Handbag:before {
  content: "\f1e4";
}
.icon-HandbagSimple:before {
  content: "\f1e5";
}
.icon-HandCoins:before {
  content: "\f1e6";
}
.icon-HighHeel:before {
  content: "\f1e7";
}
.icon-Hoodie:before {
  content: "\f1e8";
}
.icon-IceCream:before {
  content: "\f1e9";
}
.icon-Knife:before {
  content: "\f1ea";
}
.icon-Ladder:before {
  content: "\f1eb";
}
.icon-LadderSimple:before {
  content: "\f1ec";
}
.icon-Lamp:before {
  content: "\f1ed";
}
.icon-Martini:before {
  content: "\f1ee";
}
.icon-Money:before {
  content: "\f1ef";
}
.icon-Needle:before {
  content: "\f1f0";
}
.icon-OfficeChair:before {
  content: "\f1f1";
}
.icon-OrangeSlice:before {
  content: "\f1f2";
}
.icon-Package:before {
  content: "\f1f3";
}
.icon-Pants:before {
  content: "\f1f4";
}
.icon-Pepper:before {
  content: "\f1f5";
}
.icon-PiggyBank:before {
  content: "\f1f6";
}
.icon-Pizza:before {
  content: "\f1f7";
}
.icon-Popcorn:before {
  content: "\f1f8";
}
.icon-PottedPlant:before {
  content: "\f1f9";
}
.icon-Receipt:before {
  content: "\f1fa";
}
.icon-ReceiptX:before {
  content: "\f1fb";
}
.icon-Rug:before {
  content: "\f1fc";
}
.icon-Scales:before {
  content: "\f1fd";
}
.icon-ShirtFolded:before {
  content: "\f1fe";
}
.icon-ShoppingBag:before {
  content: "\f1ff";
}
.icon-ShoppingBagOpen:before {
  content: "\f200";
}
.icon-ShoppingCart:before {
  content: "\f201";
}
.icon-ShoppingCartSimple:before {
  content: "\f202";
}
.icon-Shower:before {
  content: "\f203";
}
.icon-Sneaker:before {
  content: "\f204";
}
.icon-SneakerMove:before {
  content: "\f205";
}
.icon-Stairs:before {
  content: "\f206";
}
.icon-Stool:before {
  content: "\f207";
}
.icon-Storefront:before {
  content: "\f208";
}
.icon-Sunglasses:before {
  content: "\f209";
}
.icon-Tag:before {
  content: "\f20a";
}
.icon-TagChevron:before {
  content: "\f20b";
}
.icon-TagSimple:before {
  content: "\f20c";
}
.icon-Ticket:before {
  content: "\f20d";
}
.icon-Toolbox:before {
  content: "\f20e";
}
.icon-Tote:before {
  content: "\f20f";
}
.icon-ToteSimple:before {
  content: "\f210";
}
.icon-Trademark:before {
  content: "\f211";
}
.icon-TrademarkRegistered:before {
  content: "\f212";
}
.icon-TShirt:before {
  content: "\f213";
}
.icon-Wallet:before {
  content: "\f214";
}
.icon-Warehouse:before {
  content: "\f215";
}
.icon-Wine:before {
  content: "\f216";
}
.icon-Wrench:before {
  content: "\f217";
}
.icon-AmazonLogo:before {
  content: "\f218";
}
.icon-AndroidLogo:before {
  content: "\f219";
}
.icon-AngularLogo:before {
  content: "\f21a";
}
.icon-AppleLogo:before {
  content: "\f21b";
}
.icon-ApplePodcastsLogo:before {
  content: "\f21c";
}
.icon-AppStoreLogo:before {
  content: "\f21d";
}
.icon-BehanceLogo:before {
  content: "\f21e";
}
.icon-CodaLogo:before {
  content: "\f21f";
}
.icon-CodepenLogo:before {
  content: "\f220";
}
.icon-CodesandboxLogo:before {
  content: "\f221";
}
.icon-DevToLogo:before {
  content: "\f222";
}
.icon-DiscordLogo:before {
  content: "\f223";
}
.icon-DribbbleLogo:before {
  content: "\f224";
}
.icon-DropboxLogo:before {
  content: "\f225";
}
.icon-FacebookLogo:before {
  content: "\f226";
}
.icon-FigmaLogo:before {
  content: "\f227";
}
.icon-FramerLogo:before {
  content: "\f228";
}
.icon-GithubLogo:before {
  content: "\f229";
}
.icon-GitlabLogo:before {
  content: "\f22a";
}
.icon-GitlabLogoSimple:before {
  content: "\f22b";
}
.icon-GoodreadsLogo:before {
  content: "\f22c";
}
.icon-GoogleChromeLogo:before {
  content: "\f22d";
}
.icon-GoogleDriveLogo:before {
  content: "\f22e";
}
.icon-GoogleLogo:before {
  content: "\f22f";
}
.icon-GooglePhotosLogo:before {
  content: "\f230";
}
.icon-GooglePlayLogo:before {
  content: "\f231";
}
.icon-GooglePodcastsLogo:before {
  content: "\f232";
}
.icon-InstagramLogo:before {
  content: "\f233";
}
.icon-LinkedinLogo:before {
  content: "\f234";
}
.icon-LinuxLogo:before {
  content: "\f235";
}
.icon-MediumLogo:before {
  content: "\f236";
}
.icon-MessengerLogo:before {
  content: "\f237";
}
.icon-MetaLogo:before {
  content: "\f238";
}
.icon-MicrosoftExcelLogo:before {
  content: "\f239";
}
.icon-MicrosoftOutlookLogo:before {
  content: "\f23a";
}
.icon-MicrosoftPowerpointLogo:before {
  content: "\f23b";
}
.icon-MicrosoftTeamsLogo:before {
  content: "\f23c";
}
.icon-MicrosoftWordLogo:before {
  content: "\f23d";
}
.icon-NotionLogo:before {
  content: "\f23e";
}
.icon-NyTimesLogo:before {
  content: "\f23f";
}
.icon-PatreonLogo:before {
  content: "\f240";
}
.icon-PaypalLogo:before {
  content: "\f241";
}
.icon-PhosphorLogo:before {
  content: "\f242";
}
.icon-PinterestLogo:before {
  content: "\f243";
}
.icon-ReadCvLogo:before {
  content: "\f244";
}
.icon-RedditLogo:before {
  content: "\f245";
}
.icon-SketchLogo:before {
  content: "\f246";
}
.icon-SlackLogo:before {
  content: "\f247";
}
.icon-SnapchatLogo:before {
  content: "\f248";
}
.icon-SoundcloudLogo:before {
  content: "\f249";
}
.icon-SpotifyLogo:before {
  content: "\f24a";
}
.icon-SquareLogo:before {
  content: "\f24b";
}
.icon-StackOverflowLogo:before {
  content: "\f24c";
}
.icon-StripeLogo:before {
  content: "\f24d";
}
.icon-TelegramLogo:before {
  content: "\f24e";
}
.icon-TidalLogo:before {
  content: "\f24f";
}
.icon-TiktokLogo:before {
  content: "\f250";
}
.icon-TwitchLogo:before {
  content: "\f251";
}
.icon-TwitterLogo:before {
  content: "\f252";
}
.icon-WechatLogo:before {
  content: "\f253";
}
.icon-WhatsappLogo:before {
  content: "\f254";
}
.icon-WindowsLogo:before {
  content: "\f255";
}
.icon-YoutubeLogo:before {
  content: "\f256";
}
.icon-ArrowArcLeft:before {
  content: "\f257";
}
.icon-ArrowArcRight:before {
  content: "\f258";
}
.icon-ArrowBendDoubleUpLeft:before {
  content: "\f259";
}
.icon-ArrowBendDoubleUpRight:before {
  content: "\f25a";
}
.icon-ArrowBendDownLeft:before {
  content: "\f25b";
}
.icon-ArrowBendDownRight:before {
  content: "\f25c";
}
.icon-ArrowBendLeftDown:before {
  content: "\f25d";
}
.icon-ArrowBendLeftUp:before {
  content: "\f25e";
}
.icon-ArrowBendRightDown:before {
  content: "\f25f";
}
.icon-ArrowBendRightUp:before {
  content: "\f260";
}
.icon-ArrowBendUpLeft:before {
  content: "\f261";
}
.icon-ArrowBendUpRight:before {
  content: "\f262";
}
.icon-ArrowCircleDown:before {
  content: "\f263";
}
.icon-ArrowCircleDownLeft:before {
  content: "\f264";
}
.icon-ArrowCircleDownRight:before {
  content: "\f265";
}
.icon-ArrowCircleLeft:before {
  content: "\f266";
}
.icon-ArrowCircleRight:before {
  content: "\f267";
}
.icon-ArrowCircleUp:before {
  content: "\f268";
}
.icon-ArrowCircleUpLeft:before {
  content: "\f269";
}
.icon-ArrowCircleUpRight:before {
  content: "\f26a";
}
.icon-ArrowClockwise:before {
  content: "\f26b";
}
.icon-ArrowCounterClockwise:before {
  content: "\f26c";
}
.icon-ArrowDown:before {
  content: "\f26d";
}
.icon-ArrowDownLeft:before {
  content: "\f26e";
}
.icon-ArrowDownRight:before {
  content: "\f26f";
}
.icon-ArrowElbowDownLeft:before {
  content: "\f270";
}
.icon-ArrowElbowDownRight:before {
  content: "\f271";
}
.icon-ArrowElbowLeft:before {
  content: "\f272";
}
.icon-ArrowElbowLeftDown:before {
  content: "\f273";
}
.icon-ArrowElbowLeftUp:before {
  content: "\f274";
}
.icon-ArrowElbowRight:before {
  content: "\f275";
}
.icon-ArrowElbowRightDown:before {
  content: "\f276";
}
.icon-ArrowElbowRightUp:before {
  content: "\f277";
}
.icon-ArrowElbowUpLeft:before {
  content: "\f278";
}
.icon-ArrowElbowUpRight:before {
  content: "\f279";
}
.icon-ArrowFatDown:before {
  content: "\f27a";
}
.icon-ArrowFatLeft:before {
  content: "\f27b";
}
.icon-ArrowFatLineDown:before {
  content: "\f27c";
}
.icon-ArrowFatLineLeft:before {
  content: "\f27d";
}
.icon-ArrowFatLineRight:before {
  content: "\f27e";
}
.icon-ArrowFatLinesDown:before {
  content: "\f27f";
}
.icon-ArrowFatLinesLeft:before {
  content: "\f280";
}
.icon-ArrowFatLinesRight:before {
  content: "\f281";
}
.icon-ArrowFatLinesUp:before {
  content: "\f282";
}
.icon-ArrowFatLineUp:before {
  content: "\f283";
}
.icon-ArrowFatRight:before {
  content: "\f284";
}
.icon-ArrowFatUp:before {
  content: "\f285";
}
.icon-ArrowLeft:before {
  content: "\f286";
}
.icon-ArrowLineDown:before {
  content: "\f287";
}
.icon-ArrowLineDownLeft:before {
  content: "\f288";
}
.icon-ArrowLineDownRight:before {
  content: "\f289";
}
.icon-ArrowLineLeft:before {
  content: "\f28a";
}
.icon-ArrowLineRight:before {
  content: "\f28b";
}
.icon-ArrowLineUp:before {
  content: "\f28c";
}
.icon-ArrowLineUpLeft:before {
  content: "\f28d";
}
.icon-ArrowLineUpRight:before {
  content: "\f28e";
}
.icon-ArrowRight:before {
  content: "\f28f";
}
.icon-ArrowsClockwise:before {
  content: "\f290";
}
.icon-ArrowsCounterClockwise:before {
  content: "\f291";
}
.icon-ArrowsDownUp:before {
  content: "\f292";
}
.icon-ArrowsHorizontal:before {
  content: "\f293";
}
.icon-ArrowsIn:before {
  content: "\f294";
}
.icon-ArrowsInCardinal:before {
  content: "\f295";
}
.icon-ArrowsInLineHorizontal:before {
  content: "\f296";
}
.icon-ArrowsInLineVertical:before {
  content: "\f297";
}
.icon-ArrowsInSimple:before {
  content: "\f298";
}
.icon-ArrowsLeftRight:before {
  content: "\f299";
}
.icon-ArrowsMerge:before {
  content: "\f29a";
}
.icon-ArrowsOut:before {
  content: "\f29b";
}
.icon-ArrowsOutCardinal:before {
  content: "\f29c";
}
.icon-ArrowsOutLineHorizontal:before {
  content: "\f29d";
}
.icon-ArrowsOutLineVertical:before {
  content: "\f29e";
}
.icon-ArrowsOutSimple:before {
  content: "\f29f";
}
.icon-ArrowSquareDown:before {
  content: "\f2a0";
}
.icon-ArrowSquareDownLeft:before {
  content: "\f2a1";
}
.icon-ArrowSquareDownRight:before {
  content: "\f2a2";
}
.icon-ArrowSquareIn:before {
  content: "\f2a3";
}
.icon-ArrowSquareLeft:before {
  content: "\f2a4";
}
.icon-ArrowSquareOut:before {
  content: "\f2a5";
}
.icon-ArrowSquareRight:before {
  content: "\f2a6";
}
.icon-ArrowSquareUp:before {
  content: "\f2a7";
}
.icon-ArrowSquareUpLeft:before {
  content: "\f2a8";
}
.icon-ArrowSquareUpRight:before {
  content: "\f2a9";
}
.icon-ArrowsSplit:before {
  content: "\f2aa";
}
.icon-ArrowsVertical:before {
  content: "\f2ab";
}
.icon-ArrowUDownLeft:before {
  content: "\f2ac";
}
.icon-ArrowUDownRight:before {
  content: "\f2ad";
}
.icon-ArrowULeftDown:before {
  content: "\f2ae";
}
.icon-ArrowULeftUp:before {
  content: "\f2af";
}
.icon-ArrowUp:before {
  content: "\f2b0";
}
.icon-ArrowUpLeft:before {
  content: "\f2b1";
}
.icon-ArrowUpRight:before {
  content: "\f2b2";
}
.icon-ArrowURightDown:before {
  content: "\f2b3";
}
.icon-ArrowURightUp:before {
  content: "\f2b4";
}
.icon-ArrowUUpLeft:before {
  content: "\f2b5";
}
.icon-ArrowUUpRight:before {
  content: "\f2b6";
}
.icon-CaretCircleDoubleDown:before {
  content: "\f2b7";
}
.icon-CaretCircleDoubleLeft:before {
  content: "\f2b8";
}
.icon-CaretCircleDoubleRight:before {
  content: "\f2b9";
}
.icon-CaretCircleDoubleUp:before {
  content: "\f2ba";
}
.icon-CaretCircleDown:before {
  content: "\f2bb";
}
.icon-CaretCircleLeft:before {
  content: "\f2bc";
}
.icon-CaretCircleRight:before {
  content: "\f2bd";
}
.icon-CaretCircleUp:before {
  content: "\f2be";
}
.icon-CaretCircleUpDown:before {
  content: "\f2bf";
}
.icon-CaretDoubleDown:before {
  content: "\f2c0";
}
.icon-CaretDoubleLeft:before {
  content: "\f2c1";
}
.icon-CaretDoubleRight:before {
  content: "\f2c2";
}
.icon-CaretDoubleUp:before {
  content: "\f2c3";
}
.icon-CaretDown:before {
  content: "\f2c4";
}
.icon-CaretLeft:before {
  content: "\f2c5";
}
.icon-CaretRight:before {
  content: "\f2c6";
}
.icon-CaretUp:before {
  content: "\f2c7";
}
.icon-CaretUpDown:before {
  content: "\f2c8";
}
.icon-Recycle:before {
  content: "\f2c9";
}

:root {
  --bvos-header-height: 60px;
  --bvos-footer-height: 50px;
  --bvos-leftmenu-width: 280px;
  --bvos-leftmenu-collapsed-width: 76px;
  --bvos-primary-color: #00A4A4;
  --bvos-app-bg-color: #f6f6f6;
  --bvos-menu-bg-color: #43485F;
  --bvos-menu-active-color: #43485F;
  --bvos-menu-hover-color: #555A71;
  --bvos-menu-font-color: #CBCDD2;
  --bvos-menu-font-active-color: #66DFDF;
  --bvos-avatar-bg-color: #c5c8f3;
  --bvos-tab-bg-color: #ffecef;
  --bvos-btn-border-color: #86909c;
  --bvos-btn-color: #165dff;
  --bvos-btn-disable-color: #f5f5f5;
  --bvos-btn-hover-color: #ff5e6e;
  --bvos-btn-active-color: #fc3650;
  --bvos-btn-border-radius: 4px;
  --bvos-btn-padding: 8px 16px;
  --bvos-menu-min-width: 220px;
  --bvos-menu-max-width: 520px;
  --bvos-bvos-header-height: 72px;
  --bvos-bvos-footer-height: 50px;
  --bvos-page-title-font: 28px;
  --bvos-menu-font: 14px;
  --bvos-text-font: 14px;
  --bvos-table-title-font: 16px;
  --bvos-tab-title-font: 16px;
  --bvos-bvos-margin24: 24px;
  --bvos-bvos-padding24: 24px;
  --bvos-bvos-shadow: 0 8px 24px -2px rgba(0, 0, 0, 0.05);
}
@font-face {
  font-family: 'NotoSans';
  src: url(/static/font/NotoSans.woff2);
  font-weight: normal;
  font-style: normal;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #f5f6f9;
}
::-webkit-scrollbar-track {
  border-radius: 8px;
  background-color: #f5f5f5;
}
::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: #c1c6da;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-size: 14px;
  color: #43485F;
}
body * {
  font-family: 'NotoSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  padding: 0;
  margin: 0;
}
body sup {
  top: 0;
}
body ol,
body ul,
body dl {
  margin: 0;
}
body h1 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 24px;
}
body #mainapp {
  min-height: 100vh;
  background-color: #f6f6f6;
}
body .bvos-root {
  min-height: 100vh;
  padding-left: var(--bvos-leftmenu-width);
  background-color: var(--app-bg-color);
  transition: padding-left 0.3s cubic-bezier(0.2, 0, 0, 1) 0s;
}
body .bvos-root .bvos-main {
  position: relative;
  min-height: 100vh;
  padding-top: var(--bvos-header-height);
  display: flex;
  flex-direction: column;
}
body .bvos-root-menu-collapsed {
  padding-left: var(--bvos-leftmenu-collapsed-width);
}
body .bvos-root-menu-collapsed .bvos-header {
  left: var(--bvos-leftmenu-collapsed-width);
}
body #subapp-container {
  display: block;
  flex-grow: 1;
  background-color: transparent;
}
body #subapp-container.hidden {
  display: none;
}
body .bvos-theme-icon {
  display: flex;
  align-items: center;
  color: #555A71;
  cursor: pointer;
}
body .bvos-theme-icon i {
  font-size: 20px;
  margin-left: 4px;
}
body .bvos-theme-icon:hover i {
  color: #00A4A4;
}
.osc-btn {
  line-height: 1.5715;
  position: relative;
  display: inline-block;
  font-weight: 400;
  white-space: nowrap;
  text-align: center;
  background-image: none;
  border: 1px solid transparent;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.015);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  touch-action: manipulation;
  height: 32px;
  padding: 4px 15px;
  font-size: 14px;
  border-radius: 4px;
  color: #43485F;
  border-color: #d9d9d9;
  background: #fff;
}
.osc-btn-primary {
  color: #fff;
  background: #00a4a4;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
  background-image: none;
  border: 1px solid #00a4a4;
}

.bvos-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 16px 0;
  height: var(--bvos-footer-height);
}
.bvos-footer .bvos-footer-item a {
  font-size: 12px;
  text-decoration: none;
  padding: 0 20px;
  color: #7A869A;
  border-right: 1px solid #7A869A;
}
.bvos-footer .bvos-footer-item a:hover {
  color: var(--menu-active-color);
}

.bvos-spin {
  display: inline-block;
  width: 42px;
  height: 42px;
  font-size: 42px;
  position: relative;
}
.bvos-spin-lg {
  width: 62px;
  height: 62px;
  font-size: 62px;
}
.bvos-spin-sm {
  width: 20px;
  height: 20px;
  font-size: 20px;
}
.bvos-spin:not(.bvos-spin-ghost):before {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 0.09em solid #242129;
}
.bvos-spin::after {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border-width: 0.084em;
  border-style: solid;
  border-color: var(--bvos-primary-color) transparent transparent;
  box-shadow: transparent 0px 0px 0px 1px;
  -webkit-animation: 0.6s linear 0s infinite normal none running spinLoading;
          animation: 0.6s linear 0s infinite normal none running spinLoading;
}
.bvos-spin-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
.bvos-spin-wrapper > .bvos-spin {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1000;
  transform: translateX(-50%) translateY(-50%);
}
.bvos-spin-overlay {
  width: 100%;
  height: 100%;
}
@-webkit-keyframes spinLoading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(1turn);
  }
}
@keyframes spinLoading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(1turn);
  }
}

.osc-cookie-policy {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 34px;
  max-width: 550px;
  border-radius: 4px;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 3px 6px -4px #0000001f, 0 6px 16px #00000014, 0 9px 28px 8px #0000000d;
}
.osc-cookie-policy-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.osc-cookie-policy-header > span {
  font-size: 20px;
  font-weight: 600;
}
.osc-cookie-policy-header svg {
  width: 18px;
  height: 18px;
  cursor: pointer;
  color: #43485f;
}
.osc-cookie-policy p {
  font-size: 14px;
  margin-bottom: 1em;
  line-height: 20px;
}
.osc-cookie-policy a {
  color: #00a4a4;
  text-decoration: underline;
}
.osc-cookie-policy a:hover {
  text-decoration: underline;
}
.osc-cookie-policy button {
  float: right;
}
@media (max-width: 980px) {
  .osc-cookie-policy {
    left: 16px;
    right: 16px;
    bottom: 10px;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}

.osc-scheduled-maintenance {
  position: fixed;
  z-index: 100;
  right: 20px;
  top: 80px;
  max-width: 550px;
  border-radius: 4px;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 3px 6px -4px #0000001f, 0 6px 16px #00000014, 0 9px 28px 8px #0000000d;
}
.osc-scheduled-maintenance-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.osc-scheduled-maintenance-header > span {
  font-size: 20px;
  font-weight: 600;
}
.osc-scheduled-maintenance-header svg {
  width: 18px;
  height: 18px;
  cursor: pointer;
  color: #43485f;
}
.osc-scheduled-maintenance-msg-header {
  font-weight: 600;
  color: #00a4a4;
  margin-bottom: 20px;
  margin-top: 8px;
  line-height: 20px;
}
.osc-scheduled-maintenance-msg-body {
  line-height: 18px;
}
.osc-scheduled-maintenance-msg-body > div {
  height: 10px;
}
.osc-scheduled-maintenance button {
  margin-top: 20px;
  float: right;
}
@media (max-width: 980px) {
  .osc-scheduled-maintenance {
    left: 16px;
    right: 16px;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}

.osc-home {
  padding: 20px;
}
.osc-home-profile {
  display: flex;
  margin-bottom: 32px;
  border-radius: 8px;
}
.osc-home-profile > div {
  margin-left: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  color: #7b8094;
  font-weight: 600;
}
.osc-home-profile > div > div:first-child {
  font-size: 16px;
  color: #43485f;
  margin-top: 6px;
}
.osc-home-user-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.05)) drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.02));
  background-color: #c5c8f3;
  color: #555A71;
  cursor: default;
}
.osc-home .banners-wrap {
  margin-bottom: 32px;
}
.osc-home-section-title {
  color: #43485f;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}
.osc-modules {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
}
.osc-module {
  width: 33.333%;
  padding-right: 20px;
  margin-top: 20px;
}
.osc-module > div {
  height: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  box-shadow: 0px 2px 8px 0px #0000000d;
}
.osc-module > div:hover {
  box-shadow: 0px 8px 12px 0px #00000014;
}
.osc-module-name {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 12px;
}
.osc-module-info {
  display: flex;
}
.osc-module-info > div {
  flex: 1;
  margin-right: 16px;
}
.osc-module-info > svg {
  flex-shrink: 1;
}
.osc-module-links {
  margin-top: 20px;
  min-height: 122px;
}
.osc-module-links > a {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #cbceda;
  text-decoration: none;
  color: #00a4a4;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 8px;
  overflow: hidden;
}
.osc-module-links > a:hover {
  color: #198f8f;
}
.osc-module-links > a:last-child {
  border: none;
}
.osc-module-links > a > div {
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-right: 6px;
}
.osc-module-links > a > div .bv-icon {
  margin-right: 8px;
}
.osc-module-links > a > div span {
  display: inline-block;
  line-height: 17px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1200px) {
  .osc-module {
    width: 50%;
  }
}
@media (max-width: 860px) {
  .osc-module {
    width: 100%;
  }
}

.rc-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.rc-dialog-wrap {
  position: fixed;
  overflow: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.rc-dialog-title {
  margin: 0;
  font-size: 14px;
  line-height: 21px;
  font-weight: bold;
}
.rc-dialog-section {
  position: relative;
  background-color: #ffffff;
  border: none;
  border-radius: 6px 6px;
  background-clip: padding-box;
}
.rc-dialog-close {
  cursor: pointer;
  border: 0;
  background: transparent;
  font-size: 21px;
  position: absolute;
  right: 20px;
  top: 12px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: 0.2;
  text-decoration: none;
}
.rc-dialog-close:disabled {
  pointer-events: none;
}
.rc-dialog-close-x:after {
  content: '×';
}
.rc-dialog-close:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  text-decoration: none;
}
.rc-dialog-header {
  padding: 13px 20px 14px 20px;
  border-radius: 5px 5px 0 0;
  background: #fff;
  color: #666;
  border-bottom: 1px solid #e9e9e9;
}
.rc-dialog-body {
  padding: 20px;
}
.rc-dialog-footer {
  border-top: 1px solid #e9e9e9;
  padding: 10px 20px;
  text-align: right;
  border-radius: 0 0 5px 5px;
}
.rc-dialog-zoom-enter,
.rc-dialog-zoom-appear {
  opacity: 0;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
          animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.rc-dialog-zoom-leave {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
          animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.rc-dialog-zoom-enter.rc-dialog-zoom-enter-active,
.rc-dialog-zoom-appear.rc-dialog-zoom-appear-active {
  -webkit-animation-name: rcDialogZoomIn;
          animation-name: rcDialogZoomIn;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.rc-dialog-zoom-leave.rc-dialog-zoom-leave-active {
  -webkit-animation-name: rcDialogZoomOut;
          animation-name: rcDialogZoomOut;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
@-webkit-keyframes rcDialogZoomIn {
  0% {
    opacity: 0;
    transform: scale(0, 0);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
@keyframes rcDialogZoomIn {
  0% {
    opacity: 0;
    transform: scale(0, 0);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
@-webkit-keyframes rcDialogZoomOut {
  0% {
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    transform: scale(0, 0);
  }
}
@keyframes rcDialogZoomOut {
  0% {
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    transform: scale(0, 0);
  }
}
@media (min-width: 768px) {
  .rc-dialog {
    width: 600px;
    margin: 30px auto;
  }
}
.rc-dialog-mask {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #373737;
  background-color: rgba(55, 55, 55, 0.6);
  height: 100%;
  filter: alpha(opacity=50);
  z-index: 1050;
}
.rc-dialog-mask-hidden {
  display: none;
}
.rc-dialog-fade-enter,
.rc-dialog-fade-appear {
  opacity: 0;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
          animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.rc-dialog-fade-leave {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
          animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.rc-dialog-fade-enter.rc-dialog-fade-enter-active,
.rc-dialog-fade-appear.rc-dialog-fade-appear-active {
  -webkit-animation-name: rcDialogFadeIn;
          animation-name: rcDialogFadeIn;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.rc-dialog-fade-leave.rc-dialog-fade-leave-active {
  -webkit-animation-name: rcDialogFadeOut;
          animation-name: rcDialogFadeOut;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
@-webkit-keyframes rcDialogFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes rcDialogFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes rcDialogFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes rcDialogFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.banners {
  margin-top: 20px;
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
  flex-wrap: wrap;
}
.banners .banner {
  border-radius: 8px;
  background-color: white;
  flex: calc((100% - 40px) / 3) 0 1;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  overflow: hidden;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.02), 0px 2px 8px 0px rgba(0, 0, 0, 0.05);
}
.banners .banner:hover {
  box-shadow: 0px 8px 12px 0px #00000014;
}
.banners .banner-img-wrap {
  height: 180px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banners .banner-img-wrap img {
  cursor: pointer;
  width: 100%;
}
.banners .banner-text-wrap {
  padding: 12px;
  display: flex;
  flex-direction: column;
  row-gap: 9px;
}
.banners .banner-text-wrap p {
  cursor: pointer;
}
.banners .banner-title {
  color: var(--bvos-primary-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  text-transform: capitalize;
}
.banners .banner-title a {
  color: inherit;
  text-decoration: none;
}
.banners .banner-main-content {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  align-self: stretch;
  overflow: hidden;
  color: #43485F;
  text-overflow: ellipsis;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.custom-modal .rc-dialog-close {
  font-size: 40px;
  font-weight: 400;
  top: 5px;
}
.custom-modal .rc-dialog-header {
  padding: 20px;
  padding-bottom: 4px;
  padding-right: 45px;
  border: none;
}
.custom-modal .rc-dialog-header .rc-dialog-title {
  color: var(--bvos-primary-color);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  text-transform: capitalize;
}
.custom-modal .rc-dialog-header .rc-dialog-title a {
  color: inherit;
  text-decoration: none;
}
.custom-modal .rc-dialog-body .modal-body-content {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.custom-modal .rc-dialog-body .banner-img-wrap {
  height: 350px;
  border-radius: 8px;
  overflow: hidden;
}
.custom-modal .rc-dialog-body .banner-img-wrap img {
  width: 100%;
}
.custom-modal .rc-dialog-body .banner-main-content {
  color: #43485F;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  max-height: 140px;
  overflow-x: hidden;
}
.custom-modal .rc-dialog-body .banner-main-content::-webkit-scrollbar {
  width: 4px;
}
.custom-modal .rc-dialog-footer {
  padding: 20px;
  padding-top: 0;
  border: none;
  display: flex;
  justify-content: flex-end;
  -moz-column-gap: 18px;
       column-gap: 18px;
}
.custom-button {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #43485F;
  cursor: pointer;
  border: 1px solid #B7BBCA;
  border-radius: 4px;
  background-color: #FFF;
  padding: 5px 15px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.custom-button.primary {
  color: #FFF;
  background-color: var(--bvos-primary-color);
}
.custom-button.primary:hover {
  background-color: #1cb0ab;
}
.custom-button.secondary:hover {
  color: var(--bvos-primary-color);
  border-color: var(--bvos-primary-color);
}
@media (min-width: 768px) {
  .rc-dialog.custom-modal {
    width: 740px;
    margin: unset;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.osc-main-content {
  flex-grow: 1;
}

.osc-error-page {
  min-height: calc(100vh - 124px);
  background-color: #f6f6f6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.osc-error-page > div {
  margin-top: 8px;
  color: #555a71;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.osc-error-page-desc {
  text-align: center;
}
.osc-error-page-desc > div {
  font-size: 14px;
  color: #676c82;
  font-weight: 600;
  margin-bottom: 20px;
}
.osc-error-page-desc .osc-btn {
  height: 40px;
  font-size: 16px;
  font-weight: 600;
}

.osc-internal-error-desc {
  padding: 0 20px;
  text-align: center;
}
.osc-internal-error-desc a {
  color: #0000ee;
}
.osc-internal-error-desc > div {
  margin-top: 8px;
  color: #555a71;
  font-size: 14px;
  text-align: center;
  line-height: 18px;
  font-weight: 400;
}
.osc-internal-error-desc button {
  margin-top: 16px;
  height: 34px;
}
.osc-internal-error-desc .osc-internal-error-desc-china {
  font-size: 20px;
  line-height: 26px;
}

