:root {
  --vs-colors--lightest: rgba(60, 60, 60, .26);
  --vs-colors--light: rgba(60, 60, 60, .5);
  --vs-colors--dark: #333;
  --vs-colors--darkest: rgba(0, 0, 0, .15);
  --vs-search-input-color: inherit;
  --vs-search-input-placeholder-color: inherit;
  --vs-font-size: 1rem;
  --vs-line-height: 1.4;
  --vs-state-disabled-bg: rgb(248, 248, 248);
  --vs-state-disabled-color: var(--vs-colors--light);
  --vs-state-disabled-controls-color: var(--vs-colors--light);
  --vs-state-disabled-cursor: not-allowed;
  --vs-border-color: var(--vs-colors--lightest);
  --vs-border-width: 1px;
  --vs-border-style: solid;
  --vs-border-radius: 4px;
  --vs-actions-padding: 4px 6px 0 3px;
  --vs-controls-color: var(--vs-colors--light);
  --vs-controls-size: 1;
  --vs-controls--deselect-text-shadow: 0 1px 0 #fff;
  --vs-selected-bg: #f0f0f0;
  --vs-selected-color: var(--vs-colors--dark);
  --vs-selected-border-color: var(--vs-border-color);
  --vs-selected-border-style: var(--vs-border-style);
  --vs-selected-border-width: var(--vs-border-width);
  --vs-dropdown-bg: #fff;
  --vs-dropdown-color: inherit;
  --vs-dropdown-z-index: 1000;
  --vs-dropdown-min-width: 160px;
  --vs-dropdown-max-height: 350px;
  --vs-dropdown-box-shadow: 0px 3px 6px 0px var(--vs-colors--darkest);
  --vs-dropdown-option-bg: #000;
  --vs-dropdown-option-color: var(--vs-dropdown-color);
  --vs-dropdown-option-padding: 3px 20px;
  --vs-dropdown-option--active-bg: #5897fb;
  --vs-dropdown-option--active-color: #fff;
  --vs-dropdown-option--deselect-bg: #fb5858;
  --vs-dropdown-option--deselect-color: #fff;
  --vs-transition-timing-function: cubic-bezier(1, -.115, .975, .855);
  --vs-transition-duration: .15s;
}

.v-select {
  position: relative;
  font-family: inherit;
}

.v-select, .v-select * {
  box-sizing: border-box;
}

:root {
  --vs-transition-timing-function: cubic-bezier(1, .5, .8, 1);
  --vs-transition-duration: .15s;
}

@-webkit-keyframes vSelectSpinner {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes vSelectSpinner {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.vs__fade-enter-active, .vs__fade-leave-active {
  pointer-events: none;
  transition: opacity var(--vs-transition-duration) var(--vs-transition-timing-function);
}

.vs__fade-enter, .vs__fade-leave-to {
  opacity: 0;
}

:root {
  --vs-disabled-bg: var(--vs-state-disabled-bg);
  --vs-disabled-color: var(--vs-state-disabled-color);
  --vs-disabled-cursor: var(--vs-state-disabled-cursor);
}

.vs--disabled .vs__dropdown-toggle, .vs--disabled .vs__clear, .vs--disabled .vs__search, .vs--disabled .vs__selected, .vs--disabled .vs__open-indicator {
  cursor: var(--vs-disabled-cursor);
  background-color: var(--vs-disabled-bg);
}

.v-select[dir=rtl] .vs__actions {
  padding: 0 3px 0 6px;
}

.v-select[dir=rtl] .vs__clear {
  margin-left: 6px;
  margin-right: 0;
}

.v-select[dir=rtl] .vs__deselect {
  margin-left: 0;
  margin-right: 2px;
}

.v-select[dir=rtl] .vs__dropdown-menu {
  text-align: right;
}

.vs__dropdown-toggle {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  padding: 0 0 4px;
  background: none;
  border: var(--vs-border-width) var(--vs-border-style) var(--vs-border-color);
  border-radius: var(--vs-border-radius);
  white-space: normal;
}

.vs__selected-options {
  display: flex;
  flex-basis: 100%;
  flex-grow: 1;
  flex-wrap: wrap;
  padding: 0 2px;
  position: relative;
}

.vs__actions {
  display: flex;
  align-items: center;
  padding: var(--vs-actions-padding);
}

.vs--searchable .vs__dropdown-toggle {
  cursor: text;
}

.vs--unsearchable .vs__dropdown-toggle {
  cursor: pointer;
}

.vs--open .vs__dropdown-toggle {
  border-bottom-color: transparent;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.vs__open-indicator {
  fill: var(--vs-controls-color);
  transform: scale(var(--vs-controls-size));
  transition: transform var(--vs-transition-duration) var(--vs-transition-timing-function);
  transition-timing-function: var(--vs-transition-timing-function);
}

.vs--open .vs__open-indicator {
  transform: rotate(180deg) scale(var(--vs-controls-size));
}

.vs--loading .vs__open-indicator {
  opacity: 0;
}

.vs__clear {
  fill: var(--vs-controls-color);
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  margin-right: 8px;
}

.vs__dropdown-menu {
  display: block;
  box-sizing: border-box;
  position: absolute;
  top: calc(100% - var(--vs-border-width));
  left: 0;
  z-index: var(--vs-dropdown-z-index);
  padding: 5px 0;
  margin: 0;
  width: 100%;
  max-height: var(--vs-dropdown-max-height);
  min-width: var(--vs-dropdown-min-width);
  overflow-y: auto;
  box-shadow: var(--vs-dropdown-box-shadow);
  border: var(--vs-border-width) var(--vs-border-style) var(--vs-border-color);
  border-top-style: none;
  border-radius: 0 0 var(--vs-border-radius) var(--vs-border-radius);
  text-align: left;
  list-style: none;
  background: var(--vs-dropdown-bg);
  color: var(--vs-dropdown-color);
}

.vs__no-options {
  text-align: center;
}

.vs__dropdown-option {
  line-height: 1.42857143;
  display: block;
  padding: var(--vs-dropdown-option-padding);
  clear: both;
  color: var(--vs-dropdown-option-color);
  white-space: nowrap;
  cursor: pointer;
}

.vs__dropdown-option--highlight {
  background: var(--vs-dropdown-option--active-bg);
  color: var(--vs-dropdown-option--active-color);
}

.vs__dropdown-option--deselect {
  background: var(--vs-dropdown-option--deselect-bg);
  color: var(--vs-dropdown-option--deselect-color);
}

.vs__dropdown-option--disabled {
  background: var(--vs-state-disabled-bg);
  color: var(--vs-state-disabled-color);
  cursor: var(--vs-state-disabled-cursor);
}

.vs__selected {
  display: flex;
  align-items: center;
  background-color: var(--vs-selected-bg);
  border: var(--vs-selected-border-width) var(--vs-selected-border-style) var(--vs-selected-border-color);
  border-radius: var(--vs-border-radius);
  color: var(--vs-selected-color);
  line-height: var(--vs-line-height);
  margin: 4px 2px 0;
  padding: 0 0.25em;
  z-index: 0;
}

.vs__deselect {
  display: inline-flex;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-left: 4px;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: none;
  fill: var(--vs-controls-color);
  text-shadow: var(--vs-controls--deselect-text-shadow);
}

.vs--single .vs__selected {
  background-color: transparent;
  border-color: transparent;
}

.vs--single.vs--open .vs__selected, .vs--single.vs--loading .vs__selected {
  position: absolute;
  opacity: 0.4;
}

.vs--single.vs--searching .vs__selected {
  display: none;
}

.vs__search::-webkit-search-cancel-button {
  display: none;
}

.vs__search::-webkit-search-decoration, .vs__search::-webkit-search-results-button, .vs__search::-webkit-search-results-decoration, .vs__search::-ms-clear {
  display: none;
}

.vs__search, .vs__search:focus {
  color: var(--vs-search-input-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: var(--vs-line-height);
  font-size: var(--vs-font-size);
  border: 1px solid transparent;
  border-left: none;
  outline: none;
  margin: 4px 0 0;
  padding: 0 7px;
  background: none;
  box-shadow: none;
  width: 0;
  max-width: 100%;
  flex-grow: 1;
  z-index: 1;
}

.vs__search::-moz-placeholder {
  color: var(--vs-search-input-placeholder-color);
}

.vs__search::placeholder {
  color: var(--vs-search-input-placeholder-color);
}

.vs--unsearchable .vs__search {
  opacity: 1;
}

.vs--unsearchable:not(.vs--disabled) .vs__search {
  cursor: pointer;
}

.vs--single.vs--searching:not(.vs--open):not(.vs--loading) .vs__search {
  opacity: 0.2;
}

.vs__spinner {
  align-self: center;
  opacity: 0;
  font-size: 5px;
  text-indent: -9999em;
  overflow: hidden;
  border-top: 0.9em solid rgba(100, 100, 100, 0.1);
  border-right: 0.9em solid rgba(100, 100, 100, 0.1);
  border-bottom: 0.9em solid rgba(100, 100, 100, 0.1);
  border-left: 0.9em solid rgba(60, 60, 60, 0.45);
  transform: translateZ(0) scale(var(--vs-controls--spinner-size, var(--vs-controls-size)));
  -webkit-animation: vSelectSpinner 1.1s infinite linear;
  animation: vSelectSpinner 1.1s infinite linear;
  transition: opacity 0.1s;
}

.vs__spinner, .vs__spinner:after {
  border-radius: 50%;
  width: 5em;
  height: 5em;
  transform: scale(var(--vs-controls--spinner-size, var(--vs-controls-size)));
}

.vs--loading .vs__spinner {
  opacity: 1;
}
.code-copy-button {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 6px 8px;
  background: var(--rv-body-bg);
  border: 1px solid var(--rv-border-default);
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rv-body-color);
}
.code-copy-button:hover {
  opacity: 1;
  background: var(--rv-hover-bg);
}
pre:has(code) {
  position: relative;
}
pre:has(code):hover .code-copy-button {
  opacity: 1;
}
.left-menu-layout {
  display: flex;
  padding-top: 20px;
}
.left-menu-layout .left-menu-layout-left {
  width: 165px;
}
.left-menu-layout .left-menu-layout-right {
  flex: 1;
}
.left-menu-layout .right-pane-scroll-container {
  height: calc(100vh - var(--basemenu-height) - var(--breadcrumb-height) - 55px);
  overflow: auto;
}
.left-menu-layout .left-menu-layout-left.right-menu-border {
  border-right: 2px solid var(--rv-gray-200);
}

a {
  text-decoration: none;
  color: var(--rv-link-color);
  border: none;
}

:root a.no-link-color {
  color: inherit;
}
:root .no-link-color a {
  color: inherit;
}
:root .rv-alert {
  color: var(--rv-gray-600);
  border: none;
  font-size: 15px;
}
:root .rv-alert a {
  font-weight: 600;
  color: var(--rv-blue-light);
}
:root .rv-alert .warning-icon {
  background-image: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2716%27 viewBox=%270 0 16 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M8.58939 1.68784C8.35872 1.25184 7.64139 1.25184 7.41072 1.68784L1.41072 13.0212C1.35671 13.1228 1.32993 13.2366 1.333 13.3516C1.33607 13.4666 1.36887 13.5789 1.42822 13.6774C1.48757 13.776 1.57144 13.8575 1.67165 13.914C1.77187 13.9705 1.88501 14.0001 2.00005 13.9998H14.0001C14.115 14.0001 14.2281 13.9705 14.3282 13.9141C14.4284 13.8576 14.5122 13.7761 14.5715 13.6776C14.6308 13.5791 14.6635 13.4669 14.6665 13.352C14.6696 13.2371 14.6427 13.1233 14.5887 13.0218L8.58939 1.68784ZM8.66672 11.9998H7.33339V10.6665H8.66672V11.9998ZM7.33339 9.33317V5.99984H8.66672L8.66739 9.33317H7.33339Z%27 fill=%27%23FFA943%27/%3E%3C/svg%3E%0A");
  width: 16px;
  height: 16px;
  margin-right: 8px;
  min-width: 16px;
}
:root .rv-alert .error-icon {
  background-image: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2716%27 viewBox=%270 0 16 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M7.96859 1.3335C4.30992 1.3335 1.33325 4.32416 1.33325 8.00016C1.33325 11.6762 4.32392 14.6668 7.99992 14.6668C11.6759 14.6668 14.6666 11.6762 14.6666 8.00016C14.6666 4.32416 11.6619 1.3335 7.96859 1.3335Z%27 fill=%27white%27/%3E%3Cpath d=%27M7.96859 1.3335C4.30992 1.3335 1.33325 4.32416 1.33325 8.00016C1.33325 11.6762 4.32392 14.6668 7.99992 14.6668C11.6759 14.6668 14.6666 11.6762 14.6666 8.00016C14.6666 4.32416 11.6619 1.3335 7.96859 1.3335ZM8.66659 11.3335H7.33325V10.0002H8.66659V11.3335ZM8.66659 8.66683H7.33325V4.66683H8.66659V8.66683Z%27 fill=%27%23FF6262%27/%3E%3C/svg%3E%0A");
  width: 16px;
  height: 16px;
  margin-right: 8px;
  min-width: 16px;
}
:root .rv-alert .success-icon {
  background-image: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2716%27 viewBox=%270 0 16 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M7.06732 11.0667L11.7673 6.36671L10.834 5.43337L7.06732 9.20004L5.16732 7.30004L4.23398 8.23338L7.06732 11.0667ZM8.00065 14.6667C7.07843 14.6667 6.21176 14.4916 5.40065 14.1414C4.58954 13.7912 3.88398 13.3163 3.28398 12.7167C2.68398 12.1167 2.2091 11.4112 1.85932 10.6C1.50954 9.78893 1.33443 8.92226 1.33398 8.00004C1.33398 7.07782 1.5091 6.21115 1.85932 5.40004C2.20954 4.58893 2.68443 3.88337 3.28398 3.28337C3.88398 2.68337 4.58954 2.20849 5.40065 1.85871C6.21176 1.50893 7.07843 1.33382 8.00065 1.33337C8.92287 1.33337 9.78954 1.50849 10.6007 1.85871C11.4118 2.20893 12.1173 2.68382 12.7173 3.28337C13.3173 3.88337 13.7924 4.58893 14.1427 5.40004C14.4929 6.21115 14.6678 7.07782 14.6673 8.00004C14.6673 8.92226 14.4922 9.78893 14.142 10.6C13.7918 11.4112 13.3169 12.1167 12.7173 12.7167C12.1173 13.3167 11.4118 13.7918 10.6007 14.142C9.78954 14.4923 8.92287 14.6672 8.00065 14.6667Z%27 fill=%27%23048B33%27/%3E%3C/svg%3E%0A");
  width: 16px;
  height: 16px;
  margin-right: 8px;
  min-width: 16px;
}
:root .rv-alert-error {
  background: var(--rv-error-bg);
  border-radius: 5px;
}
:root .rv-alert-warning {
  background: var(--rv-warning-bg);
  border-radius: 5px;
}
:root .rv-alert-info {
  background: var(--rv-gray-200);
  border-radius: 5px;
}
:root .rv-alert-progress {
  background: var(--rv-gray-100);
  border-radius: 5px;
  color: var(--rv-blue-primary);
  font-weight: 500;
}
:root .rv-alert-success {
  background: var(--rv-success-bg);
  border-radius: 5px;
}

.base-height {
  height: calc(100vh - 57px);
}

@media only screen and (min-width: 550px) {
  .left-menu-layout-right {
    padding-left: 20px;
  }
}
body {
  --bs-bg-opacity: 0.8;
}

:root:root .no-link-decoration {
  text-decoration: none;
  color: unset;
}
:root:root .cursor-pointer {
  cursor: pointer;
}
:root:root .space-between {
  display: flex;
  justify-content: space-between;
}
:root:root .flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
:root:root .nowrap {
  white-space: nowrap;
  flex-wrap: nowrap;
}
:root:root .truncate-text {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
:root:root [v-cloak] {
  display: none !important;
}
:root:root .align-right {
  display: flex;
  align-content: flex-end;
  flex-direction: row-reverse;
}
:root:root .no-display {
  visibility: hidden;
}
:root:root .float-left {
  float: left;
}
:root:root .simple-row {
  display: flex;
  flex-wrap: wrap;
}

/*!
 * Copyright 2025 Rational Ventures Inc.
 * RATIONAL VENTURES INC PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 * THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF RATIONAL VENTURES INC.
 * The copyright notice above does not evidence any actual or intended publication of such source code.
 */
.page-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: var(--rv-body-color);
  min-height: 30px;
  display: flex;
  align-items: center;
  flex: 1;
}
.page-title span {
  font-size: 11px;
  margin-left: 10px;
}

.standard-height {
  height: calc(max(300px, 100vh - var(--basemenu-height) - var(--breadcrumb-and-title-height) - var(--header-height) - 55px));
}

.border-2 {
  border: 2px solid var(--rv-gray-200);
}

.no-margin-collapse {
  padding-top: 0.05px;
  padding-bottom: 0.05px;
}

:root .enduser-iframe-sizing {
  height: calc(100vh - var(--basemenu-height) - 55px);
}

:root:root .codemirror-editor-auto-sizing .editor-sizing {
  height: calc(100vh - var(--basemenu-height) - var(--breadcrumb-height) - var(--header-height) - 55px - 61px);
}

:root .generated-form .readonly-label {
  font-weight: 500;
  font-size: 12px;
  line-height: 12px;
  color: var(--rv-text-muted);
  text-transform: uppercase;
  display: block;
  user-select: none;
}

.generated-form label {
  font-weight: 500;
  font-size: 12px;
  line-height: 12px;
  color: var(--rv-text-muted);
  text-transform: uppercase;
  display: block;
}
.generated-form .select-field option {
  font-weight: 500;
}
.generated-form .form-select {
  -webkit-appearance: none;
}
.generated-form .checkbox-field {
  display: flex;
  align-items: center;
}
.generated-form .checkbox-field .form-check-input {
  margin-top: 0;
}
.generated-form .field-row {
  margin-bottom: 10px;
  min-height: 23px;
}
.generated-form .field-label-input {
  display: flex;
  align-items: baseline;
}
.generated-form .field-left-margin {
  margin-left: 4px;
}
.generated-form .field-after {
  display: inline;
}
.generated-form .inline-editable-form .form-label {
  margin: 0;
}
.generated-form .inline-editable-form .invalid-feedback {
  display: block;
}
.generated-form .inline-editable-form .field-label-input div {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: var(--rv-text-muted);
  display: flex;
  align-items: center;
}
.generated-form .readonly-form .form-label {
  margin: 0;
}
.generated-form .readonly-form .readonly-value {
  word-break: normal;
}
.generated-form .readonly-form > div {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: var(--rv-text-muted);
  display: flex;
  align-items: center;
}
.generated-form .readonly-form .codemirror-readonly {
  min-height: 100px;
  width: 100%;
  white-space: pre;
  border: 1px solid var(--rv-gray-200);
  margin: 5px;
  overflow: scroll;
  font-family: "Consolas", sans-serif;
}

:root .section-header-min-height .section-header {
  min-height: 38px;
}

:root .no-section-header-margin .section-header {
  margin-bottom: 0;
}

.page-section-form.title-margin {
  margin-top: 20px;
}
.page-section-form.page-section-no-buttons {
  margin-top: 33px;
}
.page-section-form .no-button-padding {
  height: 28px;
}
.page-section-form .section-header {
  display: flex;
  border-bottom: 2px solid var(--rv-gray-200);
  padding-bottom: 8px;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 15px;
  min-height: 26px;
}
.page-section-form .section-header.no-border {
  border-bottom: none;
  margin-bottom: 0;
}
.page-section-form .section-header h1 {
  font-weight: 700;
  font-size: 15px;
  line-height: 15px;
  margin-bottom: 0;
}
.page-section-form .section-header .large-header {
  font-size: 24px;
  font-weight: 600;
}

.svg-icon {
  mask-size: cover;
  mask-repeat: no-repeat;
  background-color: var(--rv-icon-color);
}
.svg-icon.large-icon {
  width: 25px;
  height: 25px;
}
.svg-icon.small-icon {
  width: 22px;
  height: 22px;
}
.svg-icon.home-icon {
  mask-image: url("data:image/svg+xml,%0A%3Csvg width=%2724%27 height=%2724%27 enable-background=%27new 0 0 64 64%27 fill=%27%23000000%27 version=%271.1%27 viewBox=%270 0 64 64%27 xml:space=%27preserve%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg id=%27g23%27 transform=%27matrix%28.751 0 0 .7242 7.1747 8.889%29%27%3E%3Cpath id=%27path21%27 d=%27m40 64h12c1.104 0 2-0.896 2-2v-28h8c0.809 0 1.538-0.487 1.848-1.235 0.31-0.747 0.139-1.607-0.434-2.179l-30-30c-0.781-0.781-2.047-0.781-2.828 0l-30 30c-0.572 0.572-0.743 1.432-0.434 2.179 0.31 0.748 1.039 1.235 1.848 1.235h8v28c0 1.104 0.896 2 2 2h12c1.104 0 2-0.896 2-2v-14h12v14c0 1.104 0.896 2 2 2zm-16-20c-1.104 0-2 0.896-2 2v14h-8v-28c0-1.104-0.896-2-2-2h-5.172l25.172-25.171 25.172 25.171h-5.172c-1.104 0-2 0.896-2 2v28h-8v-14c0-1.104-0.896-2-2-2z%27/%3E%3C/g%3E%3C/svg%3E");
}
.svg-icon.function-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2716%27 viewBox=%270 0 16 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M3.00781 11.9844C3.34635 11.9844 3.61719 11.8984 3.82031 11.7266C4.02344 11.5547 4.17708 11.3359 4.28125 11.0703C4.38542 10.8047 4.45573 10.5234 4.49219 10.2266C4.52865 9.92969 4.54427 9.64844 4.53906 9.38281V3.16406H5.67188V9.36719C5.67188 9.79427 5.6276 10.224 5.53906 10.6563C5.45052 11.0885 5.30208 11.4766 5.09375 11.8203C4.88542 12.1641 4.60938 12.4479 4.26562 12.6719C3.92188 12.8958 3.4974 13.0052 2.99219 13C2.83594 13 2.67969 12.9896 2.52344 12.9688C2.36719 12.9479 2.21354 12.9036 2.0625 12.8359V11.7188C2.19792 11.8177 2.34635 11.8854 2.50781 11.9219C2.66927 11.9583 2.83594 11.9792 3.00781 11.9844ZM8.875 5.48438C8.875 5.72396 8.91927 5.9349 9.00781 6.11719C9.09635 6.29948 9.23438 6.46615 9.42188 6.61719C9.65104 6.80469 9.90104 6.96615 10.1719 7.10156C10.4427 7.23698 10.7109 7.3724 10.9766 7.50781C11.2734 7.65885 11.5729 7.82031 11.875 7.99219C12.1771 8.16406 12.4531 8.36719 12.7031 8.60156C12.9531 8.83594 13.1536 9.09635 13.3047 9.38281C13.4557 9.66927 13.5339 10.0078 13.5391 10.3984C13.5391 10.8984 13.4401 11.3151 13.2422 11.6484C13.0443 11.9818 12.7812 12.2474 12.4531 12.4453C12.125 12.6432 11.7578 12.7865 11.3516 12.875C10.9453 12.9635 10.526 13.0052 10.0938 13C9.93229 13 9.74219 12.987 9.52344 12.9609C9.30469 12.9349 9.07812 12.8984 8.84375 12.8516C8.60938 12.8047 8.39062 12.7474 8.1875 12.6797C7.98438 12.612 7.8125 12.5339 7.67188 12.4453V11.1094C7.82292 11.2448 8.00521 11.3646 8.21875 11.4688C8.43229 11.5729 8.65885 11.6641 8.89844 11.7422C9.13802 11.8203 9.3776 11.8802 9.61719 11.9219C9.85677 11.9635 10.0755 11.9844 10.2734 11.9844C10.5286 11.9844 10.7786 11.9635 11.0234 11.9219C11.2682 11.8802 11.4896 11.8021 11.6875 11.6875C11.8854 11.5729 12.0443 11.4193 12.1641 11.2266C12.2839 11.0339 12.3464 10.7839 12.3516 10.4766C12.3516 10.2057 12.2865 9.96875 12.1562 9.76563C12.026 9.5625 11.849 9.375 11.625 9.20313C11.401 9.03125 11.151 8.8776 10.875 8.74219C10.599 8.60677 10.3151 8.46094 10.0234 8.30469C9.73177 8.14844 9.44531 7.99219 9.16406 7.83594C8.88281 7.67969 8.63281 7.49219 8.41406 7.27344C8.19531 7.05469 8.02083 6.8125 7.89062 6.54688C7.76042 6.28125 7.69271 5.96094 7.6875 5.58594C7.6875 5.1276 7.78646 4.73698 7.98438 4.41406C8.18229 4.09115 8.44271 3.82292 8.76562 3.60938C9.08854 3.39583 9.45052 3.24219 9.85156 3.14844C10.2526 3.05469 10.651 3.00521 11.0469 3C11.2031 3 11.3724 3.0026 11.5547 3.00781C11.737 3.01302 11.9219 3.02865 12.1094 3.05469C12.2969 3.08073 12.4766 3.11719 12.6484 3.16406C12.8203 3.21094 12.9818 3.27083 13.1328 3.34375V4.61719C12.8099 4.39844 12.4609 4.24479 12.0859 4.15625C11.7109 4.06771 11.3281 4.02344 10.9375 4.02344C10.7083 4.02344 10.474 4.04688 10.2344 4.09375C9.99479 4.14063 9.77344 4.22135 9.57031 4.33594C9.36719 4.45052 9.20052 4.60156 9.07031 4.78906C8.9401 4.97656 8.875 5.20833 8.875 5.48438Z%27 fill=%27%23363636%27/%3E%3C/svg%3E%0A");
}
.svg-icon.page-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2716%27 viewBox=%270 0 16 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M12.85 4.65L9.35 1.15C9.25 1.05 9.15 1 9 1H4C3.45 1 3 1.45 3 2V14C3 14.55 3.45 15 4 15H12C12.55 15 13 14.55 13 14V5C13 4.85 12.95 4.75 12.85 4.65ZM9 2.2L11.8 5H9V2.2ZM12 14H4V2H8V5C8 5.55 8.45 6 9 6H12V14Z%27 fill=%27%23363636%27/%3E%3Cpath d=%27M5 11H11V12H5V11ZM5 8H11V9H5V8Z%27 fill=%27%23363636%27/%3E%3C/svg%3E%0A");
}
.svg-icon.tree-folder-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%277%27 height=%2712%27 viewBox=%270 0 7 12%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M0.215922 11.7931C-0.0719741 11.5173 -0.0719741 11.0701 0.215922 10.7943L5.22023 6L0.215922 1.20568C-0.0719739 0.929865 -0.0719739 0.482678 0.215922 0.206862C0.503819 -0.0689526 0.970591 -0.0689525 1.25849 0.206862L6.78408 5.50059C7.07198 5.77641 7.07198 6.22359 6.78408 6.49941L1.25849 11.7931C0.970591 12.069 0.503818 12.069 0.215922 11.7931Z%27 fill=%27%23363636%27/%3E%3C/svg%3E%0A");
  mask-size: 6px;
}
.svg-icon.tree-folder-folded-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2716%27 viewBox=%270 0 16 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M14.6666 12.6667V6C14.6666 5.64638 14.5262 5.30724 14.2761 5.05719C14.0261 4.80714 13.6869 4.66667 13.3333 4.66667H8.82398C8.57632 4.66666 8.33355 4.59767 8.1229 4.46744C7.91224 4.33721 7.74202 4.15088 7.63131 3.92933L7.03531 2.73733C6.92456 2.51569 6.75423 2.32929 6.54345 2.19905C6.33266 2.06881 6.08975 1.99988 5.84198 2H2.66665C2.31302 2 1.97389 2.14048 1.72384 2.39052C1.47379 2.64057 1.33331 2.97971 1.33331 3.33333V12.6667C1.33331 13.0203 1.47379 13.3594 1.72384 13.6095C1.97389 13.8595 2.31302 14 2.66665 14H13.3333C13.6869 14 14.0261 13.8595 14.2761 13.6095C14.5262 13.3594 14.6666 13.0203 14.6666 12.6667Z%27 stroke=%27%23575757%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");
}
.svg-icon.db-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2768%27 height=%2768%27 viewBox=%270 0 68 68%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M18.3515 7.64773C22.2445 5.76187 27.778 4.53333 34 4.53333C40.222 4.53333 45.7555 5.75733 49.6485 7.64773C53.737 9.63333 55.25 11.9091 55.25 13.6C55.25 15.2955 53.737 17.5667 49.6485 19.5523C45.7555 21.4381 40.222 22.6667 34 22.6667C27.778 22.6667 22.2445 21.4427 18.3515 19.5523C14.263 17.5667 12.75 15.2909 12.75 13.6C12.75 11.9045 14.263 9.63333 18.3515 7.64773V7.64773ZM55.25 21.2976V27.2C55.25 28.8955 53.737 31.1667 49.6485 33.1523C45.7555 35.0381 40.222 36.2667 34 36.2667C27.778 36.2667 22.2445 35.0427 18.3515 33.1523C14.263 31.1667 12.75 28.8909 12.75 27.2V21.2976C13.9017 22.2133 15.215 23.0112 16.592 23.6776C21.1565 25.8899 27.3148 27.2 34 27.2C40.6852 27.2 46.8435 25.8899 51.408 23.6776C52.7643 23.0321 54.0522 22.2342 55.25 21.2976V21.2976ZM59.5 13.6C59.5 9.03493 55.7812 5.644 51.408 3.5224C46.8435 1.31013 40.6852 0 34 0C27.3148 0 21.1565 1.31013 16.592 3.5224C12.2188 5.644 8.5 9.03493 8.5 13.6V54.4C8.5 58.9651 12.2188 62.356 16.592 64.4776C21.1565 66.6853 27.3148 68 34 68C40.6852 68 46.8435 66.6899 51.408 64.4776C55.7812 62.356 59.5 58.9651 59.5 54.4V13.6ZM55.25 34.8976V40.8C55.25 42.4955 53.737 44.7667 49.6485 46.7523C45.7555 48.6381 40.222 49.8667 34 49.8667C27.778 49.8667 22.2445 48.6427 18.3515 46.7523C14.263 44.7667 12.75 42.4909 12.75 40.8V34.8976C13.9017 35.8133 15.215 36.6112 16.592 37.2776C21.1565 39.4853 27.3148 40.8 34 40.8C40.6852 40.8 46.8435 39.4899 51.408 37.2776C52.7643 36.6321 54.0522 35.8342 55.25 34.8976V34.8976ZM55.25 48.4976V54.4C55.25 56.0955 53.737 58.3667 49.6485 60.3523C45.7555 62.2381 40.222 63.4667 34 63.4667C27.778 63.4667 22.2445 62.2427 18.3515 60.3523C14.263 58.3667 12.75 56.0909 12.75 54.4V48.4976C13.9017 49.4133 15.215 50.2112 16.592 50.8776C21.1565 53.0853 27.3148 54.4 34 54.4C40.6852 54.4 46.8435 53.0899 51.408 50.8776C52.785 50.2112 54.0983 49.4133 55.25 48.4976Z%27 fill=%27%23363636%27/%3E%3C/svg%3E%0A");
  background-size: contain;
}
.svg-icon.file-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2768%27 height=%2768%27 viewBox=%270 0 68 68%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M54.6125 19.7625L39.7375 4.8875C39.3125 4.4625 38.8875 4.25 38.25 4.25H17C14.6625 4.25 12.75 6.1625 12.75 8.5V59.5C12.75 61.8375 14.6625 63.75 17 63.75H51C53.3375 63.75 55.25 61.8375 55.25 59.5V21.25C55.25 20.6125 55.0375 20.1875 54.6125 19.7625ZM38.25 9.35L50.15 21.25H38.25V9.35ZM51 59.5H17V8.5H34V21.25C34 23.5875 35.9125 25.5 38.25 25.5H51V59.5Z%27 fill=%27%23363636%27/%3E%3C/svg%3E%0A");
  background-size: contain;
}
.svg-icon.html-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2768%27 height=%2768%27 viewBox=%270 0 68 68%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M51 58.0833C51.3757 58.0833 51.7361 57.934 52.0017 57.6684C52.2674 57.4027 52.4167 57.0423 52.4167 56.6666V28.3333H39.6667C38.1638 28.3333 36.7224 27.7363 35.6597 26.6736C34.597 25.6109 34 24.1695 34 22.6666V9.91663H17C16.6243 9.91663 16.2639 10.0659 15.9983 10.3316C15.7326 10.5972 15.5833 10.9576 15.5833 11.3333V42.5313C14.3951 42.5313 12.9194 42.5313 11.3333 42.5313V11.3333C11.3333 9.8304 11.9304 8.38906 12.9931 7.32635C14.0558 6.26365 15.4971 5.66663 17 5.66663H34.4873C34.5667 5.66663 34.6432 5.67796 34.7197 5.68646C34.7751 5.6957 34.8308 5.70231 34.8868 5.70629C35.496 5.74879 36.0967 5.86496 36.6548 6.09729C36.8163 6.16529 36.9722 6.25596 37.1252 6.34379L37.2668 6.42596L37.4 6.49396C37.4794 6.53005 37.556 6.57171 37.6295 6.61863C37.8505 6.76879 38.0488 6.94729 38.25 7.12863C38.2829 7.15821 38.317 7.18657 38.352 7.21363C38.4007 7.24838 38.447 7.28624 38.4908 7.32696L55.0063 23.8396C56.0691 24.9021 56.6664 26.3432 56.6667 27.846V56.6666C56.6667 58.1695 56.0697 59.6109 55.0069 60.6736C53.9442 61.7363 52.5029 62.3333 51 62.3333H46.0813C47.4409 61.2272 47.5279 59.4874 47.0929 58.0833H51ZM49.2377 24.0833L38.25 13.0928V22.6666C38.25 23.0423 38.3993 23.4027 38.6649 23.6684C38.9306 23.934 39.291 24.0833 39.6667 24.0833H49.2377Z%27 fill=%27%23363636%27/%3E%3Cpath d=%27M20.8641 48.0024C20.8641 48.6359 20.6883 49.2434 20.3752 49.6913C20.0622 50.1393 19.6377 50.3909 19.195 50.3909H17.5259V59.9453C17.5259 60.5788 17.35 61.1863 17.037 61.6342C16.724 62.0822 16.2994 62.3338 15.8567 62.3338C15.4141 62.3338 14.9895 62.0822 14.6765 61.6342C14.3635 61.1863 14.1876 60.5788 14.1876 59.9453V50.3909H12.5185C12.0758 50.3909 11.6512 50.1393 11.3382 49.6913C11.0252 49.2434 10.8493 48.6359 10.8493 48.0024C10.8493 47.3689 11.0252 46.7613 11.3382 46.3134C11.6512 45.8654 12.0758 45.6138 12.5185 45.6138H19.195C19.6377 45.6138 20.0622 45.8654 20.3752 46.3134C20.6883 46.7613 20.8641 47.3689 20.8641 48.0024ZM7.51108 45.6138C7.0684 45.6138 6.64385 45.8654 6.33083 46.3134C6.01781 46.7613 5.84195 47.3689 5.84195 48.0024V51.5852H3.33826V48.0024C3.33826 47.3689 3.1624 46.7613 2.84938 46.3134C2.53636 45.8654 2.11181 45.6138 1.66913 45.6138C1.22645 45.6138 0.801899 45.8654 0.488876 46.3134C0.175854 46.7613 0 47.3689 0 48.0024V59.9453C0 60.5788 0.175854 61.1863 0.488876 61.6342C0.801899 62.0822 1.22645 62.3338 1.66913 62.3338C2.11181 62.3338 2.53636 62.0822 2.84938 61.6342C3.1624 61.1863 3.33826 60.5788 3.33826 59.9453V56.3624H5.84195V59.9453C5.84195 60.5788 6.01781 61.1863 6.33083 61.6342C6.64385 62.0822 7.0684 62.3338 7.51108 62.3338C7.95376 62.3338 8.37831 62.0822 8.69134 61.6342C9.00436 61.1863 9.18021 60.5788 9.18021 59.9453V48.0024C9.18021 47.3689 9.00436 46.7613 8.69134 46.3134C8.37831 45.8654 7.95376 45.6138 7.51108 45.6138ZM43.3974 57.5567H40.0591V48.0024C40.0591 47.3689 39.8833 46.7613 39.5702 46.3134C39.2572 45.8654 38.8327 45.6138 38.39 45.6138C37.9473 45.6138 37.5227 45.8654 37.2097 46.3134C36.8967 46.7613 36.7208 47.3689 36.7208 48.0024V59.9453C36.7208 60.5788 36.8967 61.1863 37.2097 61.6342C37.5227 62.0822 37.9473 62.3338 38.39 62.3338H43.3974C43.84 62.3338 44.2646 62.0822 44.5776 61.6342C44.8906 61.1863 45.0665 60.5788 45.0665 59.9453C45.0665 59.3118 44.8906 58.7042 44.5776 58.2563C44.2646 57.8083 43.84 57.5567 43.3974 57.5567ZM33.0488 45.7332C32.7133 45.5736 32.3506 45.5747 32.0155 45.7363C31.6805 45.8979 31.3914 46.2113 31.1919 46.6289L28.3752 52.2421L25.5585 46.6289C25.3532 46.2194 25.0627 45.9133 24.7284 45.7544C24.3941 45.5956 24.0333 45.5921 23.6976 45.7445C23.3619 45.8969 23.0684 46.1974 22.8593 46.603C22.6502 47.0085 22.536 47.4984 22.5332 48.0024V59.9453C22.5332 60.5788 22.7091 61.1863 23.0221 61.6342C23.3351 62.0822 23.7597 62.3338 24.2024 62.3338C24.6451 62.3338 25.0696 62.0822 25.3826 61.6342C25.6957 61.1863 25.8715 60.5788 25.8715 59.9453V55.4667L27.019 57.7358C27.1706 58.0499 27.3733 58.3066 27.6095 58.484C27.8457 58.6613 28.1084 58.754 28.3752 58.754C28.642 58.754 28.9047 58.6613 29.1409 58.484C29.3771 58.3066 29.5798 58.0499 29.7314 57.7358L30.8789 55.4667V59.9453C30.8789 60.5788 31.0547 61.1863 31.3678 61.6342C31.6808 62.0822 32.1053 62.3338 32.548 62.3338C32.9907 62.3338 33.4153 62.0822 33.7283 61.6342C34.0413 61.1863 34.2172 60.5788 34.2172 59.9453V48.0024C34.2225 47.4934 34.1111 46.9959 33.9001 46.5861C33.6891 46.1763 33.39 45.8767 33.0488 45.7332Z%27 fill=%27%23363636%27/%3E%3C/svg%3E%0A");
  background-size: contain;
}
.svg-icon.css-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2768%27 height=%2768%27 viewBox=%270 0 68 68%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M51 58.0833C51.3758 58.0833 51.7361 57.934 52.0018 57.6684C52.2675 57.4027 52.4167 57.0424 52.4167 56.6666V28.3333H39.6667C38.1638 28.3333 36.7225 27.7363 35.6598 26.6736C34.5971 25.6109 34 24.1695 34 22.6666V9.91663H17C16.6243 9.91663 16.264 10.0659 15.9983 10.3316C15.7326 10.5972 15.5834 10.9576 15.5834 11.3333V41.4431C14.3175 40.5592 12.8618 39.9846 11.3334 39.7658V11.3333C11.3334 9.8304 11.9304 8.38906 12.9931 7.32635C14.0558 6.26365 15.4972 5.66663 17 5.66663H34.4874C34.5667 5.66663 34.6432 5.67796 34.7197 5.68646C34.7751 5.6957 34.8309 5.70231 34.8869 5.70629C35.496 5.74879 36.0967 5.86496 36.6549 6.09729C36.8164 6.16529 36.9722 6.25596 37.1252 6.34379L37.2669 6.42596L37.4 6.49396C37.4794 6.53005 37.5561 6.57171 37.6295 6.61863C37.8505 6.76879 38.0489 6.94729 38.25 7.12863C38.283 7.15821 38.317 7.18657 38.352 7.21363C38.4007 7.24838 38.4471 7.28624 38.4909 7.32696L55.0064 23.8396C56.0692 24.9021 56.6664 26.3432 56.6667 27.846V56.6666C56.6667 58.1695 56.0697 59.6109 55.007 60.6736C53.9443 61.7363 52.5029 62.3333 51 62.3333H46.0814C47.1379 61.1365 47.8283 59.6613 48.0704 58.0833H51ZM49.2377 24.0833L38.25 13.0928V22.6666C38.25 23.0424 38.3993 23.4027 38.665 23.6684C38.9307 23.934 39.291 24.0833 39.6667 24.0833H49.2377ZM34.1474 58.0833C34.7225 60.52 36.9127 62.3333 39.525 62.3333H39.8084C40.5339 62.3333 41.2524 62.1904 41.9227 61.9127C42.593 61.6351 43.2021 61.2281 43.7151 60.7151C44.2282 60.202 44.6352 59.5929 44.9128 58.9226C45.1905 58.2523 45.3334 57.5338 45.3334 56.8083V56.1453C45.333 55.2893 45.1109 54.4479 44.6889 53.7031C44.2669 52.9584 43.6592 52.3355 42.925 51.8953L38.5929 49.2943C38.4883 49.2313 38.4019 49.1424 38.3418 49.0362C38.2817 48.9299 38.2501 48.81 38.25 48.688V48.025C38.25 47.6868 38.3844 47.3625 38.6235 47.1234C38.8626 46.8843 39.1869 46.75 39.525 46.75H39.8084C40.1465 46.75 40.4708 46.8843 40.7099 47.1234C40.9491 47.3625 41.0834 47.6868 41.0834 48.025V48.1666C41.0834 48.7302 41.3073 49.2707 41.7058 49.6692C42.1043 50.0677 42.6448 50.2916 43.2084 50.2916C43.772 50.2916 44.3125 50.0677 44.711 49.6692C45.1095 49.2707 45.3334 48.7302 45.3334 48.1666V48.025C45.3334 46.5596 44.7513 45.1543 43.7151 44.1182C42.679 43.0821 41.2737 42.5 39.8084 42.5H39.525C38.0597 42.5 36.6544 43.0821 35.6183 44.1182C34.5821 45.1543 34 46.5596 34 48.025V48.688C34 50.4276 34.9124 52.0426 36.4084 52.938L40.7405 55.539C40.8451 55.6019 40.9316 55.6908 40.9916 55.7971C41.0517 55.9033 41.0833 56.0233 41.0834 56.1453V56.8083C41.0834 57.1464 40.9491 57.4708 40.7099 57.7099C40.4708 57.949 40.1465 58.0833 39.8084 58.0833H39.525C39.1869 58.0833 38.8626 57.949 38.6235 57.7099C38.3844 57.4708 38.25 57.1464 38.25 56.8083V56.6666C38.25 56.103 38.0262 55.5625 37.6276 55.164C37.2291 54.7655 36.6886 54.5416 36.125 54.5416C35.5615 54.5416 35.021 54.7655 34.6224 55.164C34.2239 55.5625 34 56.103 34 56.6666V56.8083C34 57.2475 34.051 57.6725 34.1474 58.0833ZM16.8584 62.3333L17 62.1916V62.3333H16.8584ZM20.5332 59.5C20.0728 58.6777 19.8318 57.7507 19.8334 56.8083V56.6666C19.8334 56.103 20.0573 55.5625 20.4558 55.164C20.8543 54.7655 21.3948 54.5416 21.9584 54.5416C22.522 54.5416 23.0625 54.7655 23.461 55.164C23.8595 55.5625 24.0834 56.103 24.0834 56.6666V56.8083C24.0834 57.511 24.6529 58.0833 25.3584 58.0833H25.6417C25.9799 58.0833 26.3042 57.949 26.5433 57.7099C26.7824 57.4708 26.9167 57.1464 26.9167 56.8083V56.1453C26.9166 56.0233 26.885 55.9033 26.825 55.7971C26.7649 55.6908 26.6784 55.6019 26.5739 55.539L22.2389 52.938C21.5053 52.4974 20.8981 51.8744 20.4766 51.1296C20.0551 50.3849 19.8335 49.5437 19.8334 48.688V48.025C19.8334 47.2994 19.9763 46.581 20.2539 45.9106C20.5316 45.2403 20.9386 44.6312 21.4516 44.1182C21.9647 43.6052 22.5737 43.1982 23.2441 42.9205C23.9144 42.6429 24.6328 42.5 25.3584 42.5H25.6417C27.107 42.5 28.5123 43.0821 29.5485 44.1182C30.5846 45.1543 31.1667 46.5596 31.1667 48.025V48.1666C31.1667 48.7302 30.9428 49.2707 30.5443 49.6692C30.1458 50.0677 29.6053 50.2916 29.0417 50.2916C28.4781 50.2916 27.9376 50.0677 27.5391 49.6692C27.1406 49.2707 26.9167 48.7302 26.9167 48.1666V48.025C26.9167 47.6868 26.7824 47.3625 26.5433 47.1234C26.3042 46.8843 25.9799 46.75 25.6417 46.75H25.3584C25.0202 46.75 24.6959 46.8843 24.4568 47.1234C24.2177 47.3625 24.0834 47.6868 24.0834 48.025V48.688C24.0835 48.81 24.1151 48.9299 24.1751 49.0362C24.2352 49.1424 24.3217 49.2313 24.4262 49.2943L28.7612 51.8953C30.2544 52.7906 31.1667 54.4056 31.1667 56.1453V56.8083C31.1659 57.7504 30.925 58.6768 30.4669 59.5C29.9876 60.359 29.2878 61.0745 28.4395 61.5726C27.5912 62.0707 26.6254 62.3333 25.6417 62.3333H25.3584C24.3747 62.3333 23.4088 62.0707 22.5606 61.5726C21.7123 61.0745 21.0124 60.359 20.5332 59.5ZM16.456 57.9756C16.8074 57.137 17 56.2161 17 55.25C17 54.6864 16.7762 54.1459 16.3776 53.7474C15.9791 53.3488 15.4386 53.125 14.875 53.125C14.3115 53.125 13.771 53.3488 13.3724 53.7474C12.9739 54.1459 12.75 54.6864 12.75 55.25C12.75 56.0014 12.4515 56.7221 11.9202 57.2534C11.3888 57.7848 10.6682 58.0833 9.91671 58.0833C9.16526 58.0833 8.44459 57.7848 7.91324 57.2534C7.38189 56.7221 7.08338 56.0014 7.08338 55.25V49.5833C7.08338 48.8318 7.38189 48.1112 7.91324 47.5798C8.44459 47.0485 9.16526 46.75 9.91671 46.75C10.6682 46.75 11.3888 47.0485 11.9202 47.5798C12.4515 48.1112 12.75 48.8318 12.75 49.5833C12.75 50.1469 12.9739 50.6874 13.3724 51.0859C13.771 51.4844 14.3115 51.7083 14.875 51.7083C15.4386 51.7083 15.9791 51.4844 16.3776 51.0859C16.7762 50.6874 17 50.1469 17 49.5833C17 47.7047 16.2538 45.903 14.9254 44.5746C13.597 43.2462 11.7953 42.5 9.91671 42.5C8.03809 42.5 6.23642 43.2462 4.90804 44.5746C3.57965 45.903 2.83337 47.7047 2.83337 49.5833V55.25C2.83259 56.8879 3.3995 58.4756 4.43761 59.7426C5.47572 61.0096 6.92085 61.8777 8.527 62.199C10.1331 62.5204 11.801 62.2752 13.2467 61.5051C14.6924 60.7351 15.8265 59.4878 16.456 57.9756Z%27 fill=%27%23363636%27/%3E%3C/svg%3E%0A");
  background-size: contain;
}
.svg-icon.json-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2768%27 height=%2768%27 viewBox=%270 0 68 68%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M51 58.0834C51.3757 58.0834 51.7361 57.9341 52.0017 57.6684C52.2674 57.4027 52.4167 57.0424 52.4167 56.6667V28.3334H39.6667C38.1638 28.3334 36.7224 27.7363 35.6597 26.6736C34.597 25.6109 34 24.1696 34 22.6667V9.91669H17C16.6243 9.91669 16.2639 10.0659 15.9983 10.3316C15.7326 10.5973 15.5833 10.9576 15.5833 11.3334V44.5314C15 44 12 44 11.3333 44.5314V11.3334C11.3333 9.83046 11.9304 8.38912 12.9931 7.32641C14.0558 6.26371 15.4971 5.66669 17 5.66669H34.4873C34.5667 5.66669 34.6432 5.67802 34.7197 5.68652C34.7751 5.69576 34.8308 5.70238 34.8868 5.70635C35.496 5.74885 36.0967 5.86502 36.6548 6.09735C36.8163 6.16535 36.9722 6.25602 37.1252 6.34385L37.2668 6.42602L37.4 6.49402C37.4794 6.53011 37.556 6.57177 37.6295 6.61869C37.8505 6.76885 38.0488 6.94735 38.25 7.12869C38.2829 7.15828 38.317 7.18663 38.352 7.21369C38.4007 7.24844 38.447 7.2863 38.4908 7.32702L55.0063 23.8397C56.0691 24.9021 56.6664 26.3433 56.6667 27.846V56.6667C56.6667 58.1696 56.0697 59.6109 55.0069 60.6736C53.9442 61.7363 52.5029 62.3334 51 62.3334H46.0813C46.0813 60.5 46.0813 59.5 46.0813 58.0834H51ZM49.2377 24.0834L38.25 13.0929V22.6667C38.25 23.0424 38.3993 23.4027 38.6649 23.6684C38.9306 23.9341 39.291 24.0834 39.6667 24.0834H49.2377Z%27 fill=%27%23363636%27/%3E%3Cpath d=%27M6.82522 46.2537C7.26997 46.2537 7.59498 46.303 7.80025 46.4016C8.01692 46.4862 8.17087 46.6341 8.2621 46.8455C8.38755 47.1695 8.45027 47.6064 8.45027 48.1559V56.3356C8.45027 57.8151 8.01692 59.1255 7.15023 60.2669C6.28353 61.3941 5.17736 61.9577 3.8317 61.9577C3.07904 61.9577 2.41192 61.7534 1.83032 61.3448C1.30574 60.9925 0.940819 60.6755 0.73555 60.3937L0.598703 60.2246C0.199568 59.7032 0 59.2594 0 58.893C0 58.5126 0.199568 58.0687 0.598703 57.5614C0.997838 57.0542 1.35136 56.8005 1.65926 56.8005C1.96717 56.8005 2.30928 57.033 2.68561 57.498C3.06194 57.963 3.46678 58.1955 3.90012 58.1955C4.34487 58.1955 4.7098 58.0124 4.99489 57.646C5.27999 57.2796 5.42254 56.7935 5.42254 56.1876V48.2827C5.42254 47.4373 5.53658 46.8948 5.76466 46.6552C6.02694 46.3875 6.38046 46.2537 6.82522 46.2537Z%27 fill=%27%23363636%27/%3E%3Cpath d=%27M10.004 59.5694C9.70745 59.1185 9.5592 58.7169 9.5592 58.3646C9.5592 57.9983 9.80439 57.5192 10.2948 56.9274C10.5798 56.5892 10.8821 56.4201 11.2014 56.4201C11.5207 56.4201 11.9654 56.7724 12.5356 57.4769C12.6953 57.7164 12.9233 57.9489 13.2198 58.1744C13.5163 58.3858 13.79 58.4914 14.0409 58.4914C15.1015 58.4914 15.6318 57.956 15.6318 56.8851C15.6318 56.561 15.4835 56.2933 15.187 56.0819C14.9019 55.8565 14.5427 55.6944 14.1093 55.5958C13.676 55.4972 13.2084 55.3422 12.7067 55.1308C12.2049 54.9053 11.7373 54.6447 11.304 54.3488C10.8706 54.0529 10.5057 53.5879 10.2092 52.9538C9.92413 52.3056 9.78158 51.5306 9.78158 50.6288C9.78158 49.3888 10.1522 48.3109 10.8935 47.395C11.6461 46.465 12.6668 46 13.9554 46C14.6396 46 15.2611 46.1127 15.8199 46.3382C16.3901 46.5496 16.7836 46.768 17.0002 46.9934L17.4279 47.395C17.7814 47.8036 17.9582 48.1489 17.9582 48.4307C17.9582 48.7125 17.8213 49.1 17.5476 49.5932C17.1599 50.2977 16.7607 50.65 16.3502 50.65C16.1107 50.65 15.8142 50.509 15.4607 50.2272C15.4265 50.1991 15.3581 50.1286 15.2554 50.0159C15.1642 49.9031 15.0787 49.8116 14.9988 49.7411C14.7594 49.5579 14.4515 49.4663 14.0751 49.4663C13.7102 49.4663 13.4023 49.5791 13.1514 49.8045C12.9119 50.0159 12.7922 50.3188 12.7922 50.7134C12.7922 51.0938 12.9347 51.4038 13.2198 51.6433C13.5163 51.8829 13.8813 52.0449 14.3146 52.1295C14.748 52.214 15.2212 52.3479 15.7344 52.5311C16.2476 52.7002 16.7208 52.9115 17.1542 53.1651C17.5875 53.4188 17.9467 53.8626 18.2318 54.4967C18.5283 55.1167 18.6766 55.8847 18.6766 56.8005C18.6766 57.7164 18.5283 58.5267 18.2318 59.2312C17.9353 59.9216 17.5476 60.4571 17.0687 60.8375C16.1449 61.5843 15.1585 61.9577 14.1093 61.9577C13.5734 61.9577 13.0659 61.8803 12.5869 61.7253C12.108 61.5562 11.7202 61.3518 11.4237 61.1123C10.8193 60.6614 10.3974 60.2246 10.1579 59.8019L10.004 59.5694Z%27 fill=%27%23363636%27/%3E%3Cpath d=%27M25.673 46.0634C27.3608 46.0634 28.8262 46.8173 30.0692 48.325C31.3122 49.8327 31.9337 51.7068 31.9337 53.9472C31.9337 56.1735 31.3407 58.0758 30.1547 59.6539C28.9687 61.218 27.509 62 25.7756 62C24.0422 62 22.5654 61.225 21.3452 59.6751C20.1364 58.1251 19.532 56.2792 19.532 54.1374C19.532 52.9679 19.7031 51.8758 20.0452 50.8613C20.3873 49.8327 20.8435 48.9732 21.4137 48.2827C21.9839 47.5923 22.6396 47.0498 23.3808 46.6552C24.1221 46.2607 24.8861 46.0634 25.673 46.0634ZM22.5597 54.0317C22.5597 55.2858 22.8848 56.3074 23.5348 57.0965C24.1962 57.8714 24.9318 58.2589 25.7414 58.2589C26.5511 58.2589 27.2809 57.8785 27.931 57.1176C28.581 56.3567 28.906 55.3351 28.906 54.0529C28.906 52.7706 28.5753 51.742 27.9139 50.967C27.2638 50.192 26.534 49.8045 25.7243 49.8045C24.9146 49.8045 24.1848 50.1991 23.5348 50.9881C22.8848 51.7631 22.5597 52.7776 22.5597 54.0317Z%27 fill=%27%23363636%27/%3E%3Cpath d=%27M41.1433 46.9089C41.2574 46.6552 41.4227 46.4862 41.6394 46.4016C41.8561 46.3171 42.1241 46.2748 42.4434 46.2748C42.7741 46.2748 43.0364 46.31 43.2302 46.3805C43.4355 46.4509 43.5838 46.5355 43.675 46.6341C43.7776 46.7327 43.8517 46.8807 43.8974 47.078C43.9658 47.3034 44 47.6627 44 48.1559V59.8864C44 60.2246 43.9886 60.4712 43.9658 60.6262C43.9544 60.7812 43.9031 60.9644 43.8118 61.1757C43.6522 61.5562 43.2074 61.7464 42.4776 61.7464C42.0328 61.7464 41.7249 61.7041 41.5539 61.6196C41.3828 61.535 41.2403 61.4012 41.1262 61.218C38.5604 56.9908 36.8726 54.229 36.0629 52.9326V59.8864C36.0629 60.2246 36.0515 60.4712 36.0287 60.6262C36.0173 60.7812 35.966 60.9644 35.8747 61.1757C35.7151 61.5562 35.2703 61.7464 34.5405 61.7464C33.8335 61.7464 33.4001 61.5562 33.2404 61.1757C33.1492 60.9644 33.0922 60.7741 33.0694 60.605C33.058 60.436 33.0523 60.1894 33.0523 59.8653V48.0714C33.0523 47.5359 33.1036 47.1484 33.2062 46.9089C33.3203 46.6552 33.4856 46.4862 33.7023 46.4016C33.919 46.3171 34.1984 46.2748 34.5405 46.2748C34.8826 46.2748 35.1506 46.3171 35.3445 46.4016C35.5497 46.4721 35.6923 46.5566 35.7721 46.6552C35.8177 46.6975 35.9489 46.8807 36.1655 47.2048C38.5718 51.2488 40.1797 53.919 40.9894 55.2153V48.0714C40.9894 47.5359 41.0407 47.1484 41.1433 46.9089Z%27 fill=%27%23363636%27/%3E%3C/svg%3E%0A");
  background-size: contain;
}
.svg-icon.js-icon {
  mask-image: url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27UTF-8%27 standalone=%27no%27%3F%3E%3Csvg xmlns:dc=%27http://purl.org/dc/elements/1.1/%27 xmlns:cc=%27http://creativecommons.org/ns%23%27 xmlns:rdf=%27http://www.w3.org/1999/02/22-rdf-syntax-ns%23%27 xmlns:svg=%27http://www.w3.org/2000/svg%27 xmlns=%27http://www.w3.org/2000/svg%27 width=%2768%27 height=%2768%27 viewBox=%270 0 68 68%27 fill=%27none%27 version=%271.1%27 id=%27svg12%27%3E%3Cmetadata id=%27metadata18%27%3E%3Crdf:RDF%3E%3Ccc:Work rdf:about=%27%27%3E%3Cdc:format%3Eimage/svg+xml%3C/dc:format%3E%3Cdc:type rdf:resource=%27http://purl.org/dc/dcmitype/StillImage%27 /%3E%3Cdc:title%3E%3C/dc:title%3E%3C/cc:Work%3E%3C/rdf:RDF%3E%3C/metadata%3E%3Cdefs id=%27defs16%27 /%3E%3Cpath d=%27m 51,58.0834 c 0.375697,0.0015 0.7361,-0.1493 1.0017,-0.415 0.2657,-0.2657 0.415,-0.626 0.415,-1.0017 V 28.3334 h -12.75 c -1.5029,0 -2.9443,-0.5971 -4.007,-1.6598 C 34.597,25.6109 34,24.1696 34,22.6667 V 9.91669 H 17 c -0.3757,0 -0.7361,0.14921 -1.0017,0.41491 -0.2657,0.2657 -0.415,0.626 -0.415,1.0018 v 33.198 C 15,44 12,44 11.3333,44.5314 v -33.198 c 0,-1.50294 0.5971,-2.94428 1.6598,-4.00699 C 14.0558,6.26371 15.4971,5.66669 17,5.66669 h 17.4873 c 0.0794,0 0.1559,0.01133 0.2324,0.01983 0.0554,0.00924 0.1111,0.01586 0.1671,0.01983 0.6092,0.0425 1.2099,0.15867 1.768,0.391 0.1615,0.068 0.3174,0.15867 0.4704,0.2465 l 0.1416,0.08217 0.1332,0.068 c 0.0794,0.03609 0.156,0.07775 0.2295,0.12467 0.221,0.15016 0.4193,0.32866 0.6205,0.51 0.0329,0.02959 0.067,0.05794 0.102,0.085 0.0487,0.03475 0.095,0.07261 0.1388,0.11333 L 55.0063,23.8397 c 1.0628,1.0624 1.6601,2.5036 1.6604,4.0063 v 28.8207 c 0,1.5029 -0.597,2.9442 -1.6598,4.0069 -1.0627,1.0627 -2.504,1.6598 -4.0069,1.6598 l -23.519617,-0.06746 0.02279,-4.277991 z m -1.7623,-34 L 38.25,13.0929 v 9.5738 c 0,0.3757 0.1493,0.736 0.4149,1.0017 0.2657,0.2657 0.6261,0.415 1.0018,0.415 z%27 fill=%27%23363636%27 id=%27path2%27 /%3E%3Cpath d=%27m 12.82522,46.2537 c 0.44475,0 0.76976,0.0493 0.97503,0.1479 0.21667,0.0846 0.37062,0.2325 0.46185,0.4439 0.12545,0.324 0.18817,0.7609 0.18817,1.3104 v 8.1797 c 0,1.4795 -0.43335,2.7899 -1.30004,3.9313 -0.8667,1.1272 -1.97287,1.6908 -3.31853,1.6908 -0.75266,0 -1.41978,-0.2043 -2.00138,-0.6129 C 7.30574,60.9925 6.940819,60.6755 6.73555,60.3937 L 6.598703,60.2246 C 6.199568,59.7032 6,59.2594 6,58.893 6,58.5126 6.199568,58.0687 6.598703,57.5614 6.997838,57.0542 7.35136,56.8005 7.65926,56.8005 c 0.30791,0 0.65002,0.2325 1.02635,0.6975 0.37633,0.465 0.78117,0.6975 1.21451,0.6975 0.44475,0 0.80968,-0.1831 1.09477,-0.5495 0.2851,-0.3664 0.42765,-0.8525 0.42765,-1.4584 v -7.9049 c 0,-0.8454 0.11404,-1.3879 0.34212,-1.6275 0.26228,-0.2677 0.6158,-0.4015 1.06056,-0.4015 z%27 fill=%27%23363636%27 id=%27path4%27 /%3E%3Cpath d=%27m 16.004,59.5694 c -0.29655,-0.4509 -0.4448,-0.8525 -0.4448,-1.2048 0,-0.3663 0.24519,-0.8454 0.7356,-1.4372 0.285,-0.3382 0.5873,-0.5073 0.9066,-0.5073 0.3193,0 0.764,0.3523 1.3342,1.0568 0.1597,0.2395 0.3877,0.472 0.6842,0.6975 0.2965,0.2114 0.5702,0.317 0.8211,0.317 1.0606,0 1.5909,-0.5354 1.5909,-1.6063 0,-0.3241 -0.1483,-0.5918 -0.4448,-0.8032 -0.2851,-0.2254 -0.6443,-0.3875 -1.0777,-0.4861 -0.4333,-0.0986 -0.9009,-0.2536 -1.4026,-0.465 -0.5018,-0.2255 -0.9694,-0.4861 -1.4027,-0.782 -0.4334,-0.2959 -0.7983,-0.7609 -1.0948,-1.395 -0.28507,-0.6482 -0.42762,-1.4232 -0.42762,-2.325 0,-1.24 0.37062,-2.3179 1.11192,-3.2338 0.7526,-0.93 1.7733,-1.395 3.0619,-1.395 0.6842,0 1.3057,0.1127 1.8645,0.3382 0.5702,0.2114 0.9637,0.4298 1.1803,0.6552 l 0.4277,0.4016 c 0.3535,0.4086 0.5303,0.7539 0.5303,1.0357 0,0.2818 -0.1369,0.6693 -0.4106,1.1625 -0.3877,0.7045 -0.7869,1.0568 -1.1974,1.0568 -0.2395,0 -0.536,-0.141 -0.8895,-0.4228 -0.0342,-0.0281 -0.1026,-0.0986 -0.2053,-0.2113 -0.0912,-0.1128 -0.1767,-0.2043 -0.2566,-0.2748 -0.2394,-0.1832 -0.5473,-0.2748 -0.9237,-0.2748 -0.3649,0 -0.6728,0.1128 -0.9237,0.3382 -0.2395,0.2114 -0.3592,0.5143 -0.3592,0.9089 0,0.3804 0.1425,0.6904 0.4276,0.9299 0.2965,0.2396 0.6615,0.4016 1.0948,0.4862 0.4334,0.0845 0.9066,0.2184 1.4198,0.4016 0.5132,0.1691 0.9864,0.3804 1.4198,0.634 0.4333,0.2537 0.7925,0.6975 1.0776,1.3316 0.2965,0.62 0.4448,1.388 0.4448,2.3038 0,0.9159 -0.1483,1.7262 -0.4448,2.4307 -0.2965,0.6904 -0.6842,1.2259 -1.1631,1.6063 -0.9238,0.7468 -1.9102,1.1202 -2.9594,1.1202 -0.5359,0 -1.0434,-0.0774 -1.5224,-0.2324 -0.4789,-0.1691 -0.8667,-0.3735 -1.1632,-0.613 -0.6044,-0.4509 -1.0263,-0.8877 -1.2658,-1.3104 z%27 fill=%27%23363636%27 id=%27path6%27 /%3E%3C/svg%3E%0A");
  background-size: contain;
}
.svg-icon.remote-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2768%27 height=%2768%27 viewBox=%270 0 68 68%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M55.25 27.2V21.2976C54.0522 22.2342 52.7643 23.0321 51.408 23.6776C46.8435 25.8899 40.6852 27.2 34 27.2C27.3148 27.2 21.1565 25.8899 16.592 23.6776C15.215 23.0112 13.9018 22.2133 12.75 21.2976V27.2C12.75 28.8909 14.263 31.1667 18.3515 33.1523C22.2445 35.0427 27.778 36.2667 34 36.2667C35.1329 36.2667 36.2429 36.2259 37.3244 36.1479C36.777 36.4655 36.2423 36.8183 35.7202 37.2062C34.3288 38.2402 33.1618 39.4277 32.2191 40.7687C26.2256 40.5576 20.7481 39.2878 16.592 37.2776C15.215 36.6112 13.9018 35.8133 12.75 34.8976V40.8C12.75 42.4909 14.263 44.7667 18.3515 46.7523C19.9754 47.5408 21.8848 48.2134 24.0106 48.7296C23.6163 49.1133 23.2432 49.5284 22.8913 49.975C22.2213 50.8252 21.6759 51.7195 21.2549 52.6579C19.5691 52.1583 18.0043 51.5607 16.592 50.8776C15.215 50.2112 13.9018 49.4133 12.75 48.4976V54.4C12.75 56.0909 14.263 58.3667 18.3515 60.3523C19.075 60.7036 19.8552 61.0319 20.6859 61.3336C21.2604 63.2519 22.3315 64.9594 23.8992 66.4563C24.1306 66.6773 24.3664 66.888 24.6067 67.0883C21.6192 66.4831 18.9016 65.5947 16.592 64.4776C12.2188 62.356 8.5 58.9651 8.5 54.4V13.6C8.5 9.03493 12.2188 5.644 16.592 3.5224C21.1565 1.31013 27.3148 0 34 0C40.6852 0 46.8435 1.31013 51.408 3.5224C55.7812 5.644 59.5 9.03493 59.5 13.6V41.8224C58.8092 40.6705 57.9486 39.5907 56.9182 38.5833C56.3822 38.0591 55.8261 37.58 55.25 37.1457V34.8976C54.7192 35.3127 54.1707 35.7005 53.6063 36.0599C51.7291 34.984 49.664 34.3295 47.411 34.0966C48.2056 33.8049 48.9532 33.4891 49.6485 33.1523C53.737 31.1667 55.25 28.8955 55.25 27.2ZM34 4.53333C27.778 4.53333 22.2445 5.76187 18.3515 7.64773C14.263 9.63333 12.75 11.9045 12.75 13.6C12.75 15.2909 14.263 17.5667 18.3515 19.5523C22.2445 21.4427 27.778 22.6667 34 22.6667C40.222 22.6667 45.7555 21.4381 49.6485 19.5523C53.737 17.5667 55.25 15.2955 55.25 13.6C55.25 11.9091 53.737 9.63333 49.6485 7.64773C45.7555 5.75733 40.222 4.53333 34 4.53333Z%27 fill=%27%23363636%27/%3E%3Cpath d=%27M34.25 68C31.1477 68 28.4975 66.9736 26.2993 64.9207C24.0998 62.8679 23 60.3588 23 57.3936C23 54.8519 23.8011 52.5873 25.4034 50.5996C27.0057 48.6119 29.1023 47.3411 31.6932 46.7872C32.5455 43.7893 34.25 41.3617 36.8068 39.5044C39.3636 37.6471 42.2614 36.7184 45.5 36.7184C49.4886 36.7184 52.8718 38.0459 55.6495 40.7009C58.4286 43.3573 59.8182 46.5916 59.8182 50.4041C62.1705 50.6648 64.1225 51.6339 65.6743 53.3113C67.2248 54.9901 68 56.9537 68 59.202C68 61.6459 67.1054 63.7235 65.3164 65.4349C63.5259 67.145 61.3523 68 58.7955 68H34.25ZM34.25 64.0898H58.7955C60.2273 64.0898 61.4375 63.6173 62.4261 62.6723C63.4148 61.7274 63.9091 60.5706 63.9091 59.202C63.9091 57.8335 63.4148 56.6767 62.4261 55.7317C61.4375 54.7868 60.2273 54.3143 58.7955 54.3143H55.7273V50.4041C55.7273 47.6995 54.7305 45.3938 52.7368 43.4869C50.7418 41.5814 48.3295 40.6286 45.5 40.6286C42.6705 40.6286 40.2589 41.5814 38.2652 43.4869C36.2702 45.3938 35.2727 47.6995 35.2727 50.4041H34.25C32.2727 50.4041 30.5852 51.0721 29.1875 52.4081C27.7898 53.7441 27.0909 55.357 27.0909 57.2469C27.0909 59.1369 27.7898 60.7498 29.1875 62.0858C30.5852 63.4218 32.2727 64.0898 34.25 64.0898Z%27 fill=%27%23363636%27/%3E%3C/svg%3E%0A");
  background-size: contain;
}
.svg-icon.csv-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2768%27 height=%2768%27 viewBox=%270 0 68 68%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M51 58.0833C51.3758 58.0833 51.7361 57.934 52.0018 57.6684C52.2675 57.4027 52.4167 57.0424 52.4167 56.6666V28.3333H39.6667C38.1638 28.3333 36.7225 27.7363 35.6598 26.6736C34.5971 25.6109 34 24.1695 34 22.6666V9.91663H17C16.6243 9.91663 16.264 10.0659 15.9983 10.3316C15.7326 10.5972 15.5834 10.9576 15.5834 11.3333V41.4431C14.3175 40.5592 12.8618 39.9846 11.3334 39.7658V11.3333C11.3334 9.8304 11.9304 8.38906 12.9931 7.32635C14.0558 6.26365 15.4972 5.66663 17 5.66663H34.4874C34.5667 5.66663 34.6432 5.67796 34.7197 5.68646C34.7751 5.6957 34.8309 5.70231 34.8869 5.70629C35.496 5.74879 36.0967 5.86496 36.6549 6.09729C36.8164 6.16529 36.9722 6.25596 37.1252 6.34379L37.2669 6.42596L37.4 6.49396C37.4794 6.53005 37.5561 6.57171 37.6295 6.61863C37.8505 6.76879 38.0489 6.94729 38.25 7.12863C38.283 7.15821 38.317 7.18657 38.352 7.21363C38.4007 7.24838 38.4471 7.28624 38.4909 7.32696L55.0064 23.8396C56.0692 24.9021 56.6664 26.3432 56.6667 27.846V56.6666C56.6667 58.1695 56.0697 59.6109 55.007 60.6736C53.9443 61.7363 52.5029 62.3333 51 62.3333H46.0814C46.7473 60.9421 47.4844 59.5 48.0704 58.0833H51ZM49.2377 24.0833L38.25 13.0928V22.6666C38.25 23.0424 38.3993 23.4027 38.665 23.6684C38.9307 23.934 39.291 24.0833 39.6667 24.0833H49.2377ZM20.5332 59.5C20.0728 58.6777 19.8318 57.7507 19.8334 56.8083V56.6666C19.8334 56.1031 20.0573 55.5625 20.4558 55.164C20.8543 54.7655 21.3948 54.5416 21.9584 54.5416C22.522 54.5416 23.0625 54.7655 23.461 55.164C23.8595 55.5625 24.0834 56.1031 24.0834 56.6666V56.8083C24.0834 57.511 24.6529 58.0833 25.3584 58.0833H25.6417C25.9799 58.0833 26.3042 57.949 26.5433 57.7099C26.7824 57.4708 26.9167 57.1464 26.9167 56.8083V56.1453C26.9166 56.0233 26.885 55.9033 26.825 55.7971C26.7649 55.6908 26.6784 55.6019 26.5739 55.539L22.2389 52.938C21.5053 52.4974 20.8981 51.8744 20.4766 51.1296C20.0551 50.3849 19.8335 49.5437 19.8334 48.688V48.025C19.8334 47.2994 19.9763 46.581 20.2539 45.9106C20.5316 45.2403 20.9386 44.6312 21.4516 44.1182C21.9647 43.6052 22.5737 43.1982 23.2441 42.9205C23.9144 42.6429 24.6328 42.5 25.3584 42.5H25.6417C27.107 42.5 28.5123 43.0821 29.5485 44.1182C30.5846 45.1543 31.1667 46.5596 31.1667 48.025V48.1666C31.1667 48.7302 30.9428 49.2707 30.5443 49.6692C30.1458 50.0677 29.6053 50.2916 29.0417 50.2916C28.4781 50.2916 27.9376 50.0677 27.5391 49.6692C27.1406 49.2707 26.9167 48.7302 26.9167 48.1666V48.025C26.9167 47.6868 26.7824 47.3625 26.5433 47.1234C26.3042 46.8843 25.9799 46.75 25.6417 46.75H25.3584C25.0202 46.75 24.6959 46.8843 24.4568 47.1234C24.2177 47.3625 24.0834 47.6868 24.0834 48.025V48.688C24.0835 48.81 24.1151 48.9299 24.1751 49.0362C24.2352 49.1424 24.3217 49.2313 24.4262 49.2943L28.7612 51.8953C30.2544 52.7906 31.1667 54.4056 31.1667 56.1453V56.8083C31.1659 57.7504 30.925 58.6768 30.4669 59.5C29.9876 60.359 29.2878 61.0746 28.4395 61.5726C27.5912 62.0707 26.6254 62.3333 25.6417 62.3333H25.3584C24.3747 62.3333 23.4088 62.0707 22.5606 61.5726C21.7123 61.0746 21.0124 60.359 20.5332 59.5ZM16.456 57.9756C16.8074 57.137 17 56.2161 17 55.25C17 54.6864 16.7762 54.1459 16.3776 53.7474C15.9791 53.3488 15.4386 53.125 14.875 53.125C14.3115 53.125 13.771 53.3488 13.3724 53.7474C12.9739 54.1459 12.75 54.6864 12.75 55.25C12.75 56.0014 12.4515 56.7221 11.9202 57.2534C11.3888 57.7848 10.6682 58.0833 9.91671 58.0833C9.16526 58.0833 8.44459 57.7848 7.91324 57.2534C7.38189 56.7221 7.08338 56.0014 7.08338 55.25V49.5833C7.08338 48.8318 7.38189 48.1112 7.91324 47.5798C8.44459 47.0485 9.16526 46.75 9.91671 46.75C10.6682 46.75 11.3888 47.0485 11.9202 47.5798C12.4515 48.1112 12.75 48.8318 12.75 49.5833C12.75 50.1469 12.9739 50.6874 13.3724 51.0859C13.771 51.4844 14.3115 51.7083 14.875 51.7083C15.4386 51.7083 15.9791 51.4844 16.3776 51.0859C16.7762 50.6874 17 50.1469 17 49.5833C17 47.7047 16.2538 45.903 14.9254 44.5746C13.597 43.2462 11.7953 42.5 9.91671 42.5C8.03809 42.5 6.23642 43.2462 4.90804 44.5746C3.57965 45.903 2.83337 47.7047 2.83337 49.5833V55.25C2.83259 56.8879 3.3995 58.4756 4.43761 59.7426C5.47572 61.0096 6.92085 61.8777 8.527 62.199C10.1331 62.5204 11.801 62.2752 13.2467 61.5051C14.6924 60.7351 15.8265 59.4878 16.456 57.9756Z%27 fill=%27%23363636%27/%3E%3Cpath d=%27M48.5745 45.9602L42.9171 60.8029C42.7466 61.2566 42.4566 61.6446 42.0838 61.9178C41.7111 62.1909 41.2725 62.3367 40.8238 62.3367C40.3751 62.3367 39.9366 62.1909 39.5638 61.9178C39.1911 61.6446 38.9011 61.2566 38.7306 60.8029L33.0732 45.9602C32.958 45.6597 32.8981 45.3374 32.8969 45.0116C32.8957 44.6858 32.9533 44.3629 33.0662 44.0614C33.1791 43.7599 33.3453 43.4857 33.5552 43.2544C33.7651 43.0231 34.0146 42.8393 34.2895 42.7134C34.5644 42.5875 34.8593 42.522 35.1573 42.5207C35.4553 42.5194 35.7507 42.5823 36.0265 42.7058C36.3023 42.8292 36.5532 43.0109 36.7647 43.2403C36.9763 43.4698 37.1445 43.7425 37.2597 44.043L40.8238 53.4125L44.388 44.043C44.5032 43.7425 44.6714 43.4698 44.8829 43.2403C45.0945 43.0109 45.3454 42.8292 45.6212 42.7058C45.897 42.5823 46.1923 42.5194 46.4904 42.5207C46.7884 42.522 47.0833 42.5875 47.3582 42.7134C47.6331 42.8393 47.8826 43.0231 48.0925 43.2544C48.3024 43.4857 48.4685 43.7599 48.5815 44.0614C48.6944 44.3629 48.752 44.6858 48.7508 45.0116C48.7496 45.3374 48.6897 45.6597 48.5745 45.9602Z%27 fill=%27%23363636%27/%3E%3C/svg%3E%0A");
  background-size: contain;
}
.svg-icon.sql-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2768%27 height=%2768%27 viewBox=%270 0 68 68%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M51.0001 58.0833C51.3758 58.0833 51.7361 57.934 52.0018 57.6684C52.2675 57.4027 52.4167 57.0424 52.4167 56.6666V28.3333H39.6667C38.1638 28.3333 36.7225 27.7363 35.6598 26.6736C34.5971 25.6109 34.0001 24.1695 34.0001 22.6666V9.91663H17.0001C16.6243 9.91663 16.264 10.0659 15.9983 10.3316C15.7327 10.5972 15.5834 10.9576 15.5834 11.3333V41.4431C14.3175 40.5592 12.8618 39.9846 11.3334 39.7658V11.3333C11.3334 9.8304 11.9304 8.38906 12.9931 7.32635C14.0558 6.26365 15.4972 5.66663 17.0001 5.66663H34.4874C34.5667 5.66663 34.6432 5.67796 34.7197 5.68646C34.7751 5.6957 34.8309 5.70231 34.8869 5.70629C35.4961 5.74879 36.0967 5.86496 36.6549 6.09729C36.8164 6.16529 36.9722 6.25596 37.1252 6.34379L37.2669 6.42596L37.4001 6.49396C37.4794 6.53005 37.5561 6.57171 37.6296 6.61863C37.8506 6.76879 38.0489 6.94729 38.2501 7.12863C38.283 7.15821 38.317 7.18657 38.3521 7.21363C38.4007 7.24838 38.4471 7.28624 38.4909 7.32696L55.0064 23.8396C56.0692 24.9021 56.6664 26.3432 56.6667 27.846V56.6666C56.6667 58.1695 56.0697 59.6109 55.007 60.6736C53.9443 61.7363 52.503 62.3333 51.0001 62.3333H48.2313C49.3704 61.8759 50.2203 60.6736 50.2203 58.0833H51.0001ZM49.2377 24.0833L38.2501 13.0928V22.6666C38.2501 23.0424 38.3993 23.4027 38.665 23.6684C38.9307 23.934 39.291 24.0833 39.6667 24.0833H49.2377ZM6.22499 59.5C5.76459 58.6777 5.52358 57.7507 5.52515 56.8083V56.6666C5.52515 56.1031 5.74904 55.5625 6.14755 55.164C6.54607 54.7655 7.08657 54.5416 7.65015 54.5416C8.21374 54.5416 8.75424 54.7655 9.15276 55.164C9.55127 55.5625 9.77515 56.1031 9.77515 56.6666V56.8083C9.77515 57.511 10.3447 58.0833 11.0502 58.0833H11.3335C11.6716 58.0833 11.9959 57.949 12.235 57.7099C12.4742 57.4708 12.6085 57.1464 12.6085 56.8083V56.1453C12.6084 56.0233 12.5768 55.9033 12.5167 55.7971C12.4567 55.6908 12.3702 55.6019 12.2657 55.539L7.93065 52.938C7.19703 52.4974 6.58992 51.8744 6.16839 51.1296C5.74687 50.3849 5.52527 49.5437 5.52515 48.688V48.025C5.52515 47.2994 5.66806 46.581 5.94572 45.9106C6.22338 45.2403 6.63034 44.6312 7.14339 44.1182C7.65643 43.6052 8.26551 43.1982 8.93583 42.9205C9.60615 42.6429 10.3246 42.5 11.0502 42.5H11.3335C12.7988 42.5 14.2041 43.0821 15.2403 44.1182C16.2764 45.1543 16.8585 46.5596 16.8585 48.025V48.1666C16.8585 48.7302 16.6346 49.2707 16.2361 49.6692C15.8376 50.0677 15.2971 50.2916 14.7335 50.2916C14.1699 50.2916 13.6294 50.0677 13.2309 49.6692C12.8324 49.2707 12.6085 48.7302 12.6085 48.1666V48.025C12.6085 47.6868 12.4742 47.3625 12.235 47.1234C11.9959 46.8843 11.6716 46.75 11.3335 46.75H11.0502C10.712 46.75 10.3877 46.8843 10.1486 47.1234C9.90948 47.3625 9.77515 47.6868 9.77515 48.025V48.688C9.77523 48.81 9.80683 48.9299 9.86689 49.0362C9.92696 49.1424 10.0135 49.2313 10.118 49.2943L14.453 51.8953C15.9462 52.7906 16.8585 54.4056 16.8585 56.1453V56.8083C16.8577 57.7504 16.6168 58.6768 16.1587 59.5C15.6794 60.359 14.9795 61.0746 14.1313 61.5726C13.283 62.0707 12.3172 62.3333 11.3335 62.3333H11.0502C10.0665 62.3333 9.10062 62.0707 8.25236 61.5726C7.40411 61.0746 6.70422 60.359 6.22499 59.5Z%27 fill=%27%23363636%27/%3E%3Cpath d=%27M26.231 57.4593C25.5392 56.7674 25.5392 55.6458 26.231 54.954C26.9228 54.2622 28.0445 54.2622 28.7363 54.954L33.2432 59.4609C33.935 60.1527 33.935 61.2743 33.2432 61.9661C32.5514 62.658 31.4297 62.658 30.7379 61.9661L26.231 57.4593Z%27 fill=%27%23363636%27/%3E%3Cpath d=%27M41.3361 56.6666H45.9514C46.5634 56.6666 47.1503 56.9651 47.5831 57.4965C48.0159 58.0278 48.259 58.7485 48.259 59.4999C48.259 60.2514 48.0159 60.9721 47.5831 61.5034C47.1503 62.0348 46.5634 62.3333 45.9514 62.3333H39.0285C38.4165 62.3333 37.8295 62.0348 37.3968 61.5034C36.964 60.9721 36.7209 60.2514 36.7209 59.4999V45.3333C36.7209 44.5818 36.964 43.8612 37.3968 43.3298C37.8295 42.7985 38.4165 42.5 39.0285 42.5C39.6405 42.5 40.2275 42.7985 40.6602 43.3298C41.093 43.8612 41.3361 44.5818 41.3361 45.3333V56.6666Z%27 fill=%27%23363636%27/%3E%3Cpath d=%27M33.0637 57.9756C33.415 57.137 33.6077 56.2161 33.6077 55.25C33.6077 54.6864 33.3838 54.1459 32.9853 53.7474C32.5868 53.3488 32.0463 53.125 31.4827 53.125C30.9191 53.125 30.3786 53.3488 29.9801 53.7474C29.5816 54.1459 29.3577 54.6864 29.3577 55.25C29.3577 56.0014 29.0592 56.7221 28.5278 57.2534C27.9965 57.7848 27.2758 58.0833 26.5244 58.0833C25.7729 58.0833 25.0522 57.7848 24.5209 57.2534C23.9895 56.7221 23.691 56.0014 23.691 55.25V49.5833C23.691 48.8318 23.9895 48.1112 24.5209 47.5798C25.0522 47.0485 25.7729 46.75 26.5244 46.75C27.2758 46.75 27.9965 47.0485 28.5278 47.5798C29.0592 48.1112 29.3577 48.8318 29.3577 49.5833C29.3577 50.1469 29.3577 53.7474 29.3577 55.25C29.7562 55.6485 30.9694 55.5 31.533 55.5C32.0966 55.5 33.2092 55.6485 33.6077 55.25C33.6077 54.2838 33.6077 50.1469 33.6077 49.5833C33.6077 47.7047 32.8614 45.903 31.533 44.5746C30.2046 43.2462 28.403 42.5 26.5244 42.5C24.6457 42.5 22.8441 43.2462 21.5157 44.5746C20.1873 45.903 19.441 47.7047 19.441 49.5833V55.25C19.4402 56.8879 20.0071 58.4756 21.0453 59.7426C22.0834 61.0096 23.5285 61.8777 25.1346 62.199C26.7408 62.5204 28.4087 62.2752 29.8544 61.5051C31.3 60.7351 32.4342 59.4878 33.0637 57.9756Z%27 fill=%27%23363636%27/%3E%3C/svg%3E%0A");
  background-size: contain;
}
.svg-icon.image-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2768%27 height=%2768%27 viewBox=%270 0 68 68%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M11.4905 5.82375C12.9517 4.36253 14.9336 3.54163 17 3.54163H41.0834C41.647 3.54163 42.1875 3.76551 42.586 4.16402L58.1693 19.7474C58.5678 20.1459 58.7917 20.6864 58.7917 21.25V56.6666C58.7917 58.7331 57.9708 60.715 56.5096 62.1762C55.0484 63.6374 53.0665 64.4583 51 64.4583H17C14.9336 64.4583 12.9517 63.6374 11.4905 62.1762C10.0293 60.715 9.20837 58.7331 9.20837 56.6666V11.3333C9.20837 9.26681 10.0293 7.28497 11.4905 5.82375ZM17 7.79163C16.0607 7.79163 15.1599 8.16477 14.4957 8.82896C13.8315 9.49315 13.4584 10.394 13.4584 11.3333V56.6666C13.4584 57.6059 13.8315 58.5068 14.4957 59.171C15.1599 59.8352 16.0607 60.2083 17 60.2083H51C51.9394 60.2083 52.8402 59.8352 53.5044 59.171C54.1686 58.5068 54.5417 57.6059 54.5417 56.6666V22.1302L40.2032 7.79163H17Z%27 fill=%27%23363636%27/%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M39.6667 3.54163C40.8403 3.54163 41.7917 4.49302 41.7917 5.66663V20.5416H56.6667C57.8403 20.5416 58.7917 21.493 58.7917 22.6666C58.7917 23.8402 57.8403 24.7916 56.6667 24.7916H39.6667C38.4931 24.7916 37.5417 23.8402 37.5417 22.6666V5.66663C37.5417 4.49302 38.4931 3.54163 39.6667 3.54163Z%27 fill=%27%23363636%27/%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M28.3334 33.2916C26.3774 33.2916 24.7917 34.8773 24.7917 36.8333C24.7917 38.7893 26.3774 40.375 28.3334 40.375C30.2894 40.375 31.875 38.7893 31.875 36.8333C31.875 34.8773 30.2894 33.2916 28.3334 33.2916ZM20.5417 36.8333C20.5417 32.5301 24.0302 29.0416 28.3334 29.0416C32.6366 29.0416 36.125 32.5301 36.125 36.8333C36.125 41.1365 32.6366 44.625 28.3334 44.625C24.0302 44.625 20.5417 41.1365 20.5417 36.8333Z%27 fill=%27%23363636%27/%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M44.0903 43.5712C45.5501 42.12 47.5249 41.3055 49.5834 41.3055C51.6418 41.3055 53.6166 42.12 55.0765 43.5712L55.081 43.5757L58.1693 46.664C58.9992 47.4939 58.9992 48.8394 58.1693 49.6692C57.3394 50.4991 55.994 50.4991 55.1641 49.6692L52.0803 46.5854C51.4169 45.9269 50.5181 45.5555 49.5834 45.5555C48.6486 45.5555 47.7519 45.925 47.0885 46.5834L29.836 63.8359C29.0061 64.6658 27.6606 64.6658 26.8308 63.8359C26.0009 63.006 26.0009 61.6606 26.8308 60.8307L44.0903 43.5712Z%27 fill=%27%23363636%27/%3E%3C/svg%3E%0A");
  background-size: contain;
}
.svg-icon.connection-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2716%27 viewBox=%270 0 16 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M4.318 1.79947C5.234 1.35573 6.536 1.06667 8 1.06667C9.464 1.06667 10.766 1.35467 11.682 1.79947C12.644 2.26667 13 2.80213 13 3.2C13 3.59893 12.644 4.13333 11.682 4.60053C10.766 5.04427 9.464 5.33333 8 5.33333C6.536 5.33333 5.234 5.04533 4.318 4.60053C3.356 4.13333 3 3.59787 3 3.2C3 2.80107 3.356 2.26667 4.318 1.79947ZM13 5.0112V6.4C13 6.79893 12.644 7.33333 11.682 7.80053C10.766 8.24427 9.464 8.53333 8 8.53333C6.536 8.53333 5.234 8.24533 4.318 7.80053C3.356 7.33333 3 6.79787 3 6.4V5.0112C3.271 5.22667 3.58 5.4144 3.904 5.5712C4.978 6.09173 6.427 6.4 8 6.4C9.573 6.4 11.022 6.09173 12.096 5.5712C12.4151 5.41931 12.7182 5.23158 13 5.0112ZM14 3.2C14 2.12587 13.125 1.328 12.096 0.8288C11.022 0.308267 9.573 0 8 0C6.427 0 4.978 0.308267 3.904 0.8288C2.875 1.328 2 2.12587 2 3.2V12.8C2 13.8741 2.875 14.672 3.904 15.1712C4.978 15.6907 6.427 16 8 16C9.573 16 11.022 15.6917 12.096 15.1712C13.125 14.672 14 13.8741 14 12.8V3.2ZM13 8.2112V9.6C13 9.99893 12.644 10.5333 11.682 11.0005C10.766 11.4443 9.464 11.7333 8 11.7333C6.536 11.7333 5.234 11.4453 4.318 11.0005C3.356 10.5333 3 9.99787 3 9.6V8.2112C3.271 8.42667 3.58 8.6144 3.904 8.7712C4.978 9.29067 6.427 9.6 8 9.6C9.573 9.6 11.022 9.29173 12.096 8.7712C12.4151 8.61931 12.7182 8.43158 13 8.2112ZM13 11.4112V12.8C13 13.1989 12.644 13.7333 11.682 14.2005C10.766 14.6443 9.464 14.9333 8 14.9333C6.536 14.9333 5.234 14.6453 4.318 14.2005C3.356 13.7333 3 13.1979 3 12.8V11.4112C3.271 11.6267 3.58 11.8144 3.904 11.9712C4.978 12.4907 6.427 12.8 8 12.8C9.573 12.8 11.022 12.4917 12.096 11.9712C12.42 11.8144 12.729 11.6267 13 11.4112Z%27 fill=%27%23363636%27/%3E%3C/svg%3E%0A");
  background-size: contain;
}
.svg-icon.excel-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2768%27 height=%2768%27 viewBox=%270 0 68 68%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M7.37543 9.26597L43.4664 4.01392C43.6623 3.98597 43.862 4.00023 44.0519 4.05573C44.2418 4.11124 44.4175 4.20669 44.5671 4.33562C44.7167 4.46455 44.8366 4.62395 44.9188 4.80301C45.001 4.98206 45.0436 5.1766 45.0435 5.37343V62.627C45.0435 62.8235 45.001 63.0178 44.919 63.1966C44.837 63.3755 44.7173 63.5347 44.568 63.6636C44.4188 63.7925 44.2434 63.888 44.0538 63.9437C43.8643 63.9994 43.6649 64.014 43.4691 63.9865L7.37267 59.3786C6.71423 59.2854 6.11173 58.959 5.67586 58.4595C5.23999 57.96 5.00001 57.3209 5 56.6596V11.985C5.00001 11.3237 5.23999 10.6846 5.67586 10.1851C6.11173 9.68557 6.71699 9.35922 7.37543 9.26597ZM8.5 12.6197V55.2596L41 59.3786V8.5L8.5 12.6197ZM47.8057 54.9329H59V13H47.8057V9.2817H60.2379C60.9704 9.2817 61.673 9.57106 62.191 10.0861C62.709 10.6012 63 11.2998 63 12.0282V55.9722C63 56.7006 62.709 57.3992 62.191 57.9143C61.673 58.4293 60.9704 58.7187 60.2379 58.7187H47.8057V54.9329ZM27.9629 34.0002L35.6969 44.9862H30.128L25.716 38.1207L21.2892 44.9862H15.9104L23.6444 34.0002L15.9104 23.0142H21.2892L25.716 29.8812L30.128 23.0142H35.6969L27.9629 34.0002Z%27 fill=%27%23363636%27/%3E%3C/svg%3E%0A");
  background-size: contain;
}
.svg-icon.desktop-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2725%27 height=%2725%27 viewBox=%270 0 25 25%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M4.68757 3.7715C4.1817 3.7715 3.77162 4.18158 3.77162 4.68745V16.1458C3.77162 16.6516 4.1817 17.0617 4.68757 17.0617H20.3126C20.8184 17.0617 21.2285 16.6516 21.2285 16.1458V4.68745C21.2285 4.18158 20.8184 3.7715 20.3126 3.7715H4.68757ZM2.47852 4.68745C2.47852 3.46742 3.46754 2.47839 4.68757 2.47839H20.3126C21.5326 2.47839 22.5216 3.46742 22.5216 4.68745V16.1458C22.5216 17.3658 21.5326 18.3548 20.3126 18.3548H4.68757C3.46754 18.3548 2.47852 17.3658 2.47852 16.1458V4.68745Z%27 fill=%27%23575757%27/%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M12.4994 17.0618C12.8565 17.0618 13.146 17.3512 13.146 17.7083V21.2284H17.7078C18.0648 21.2284 18.3543 21.5179 18.3543 21.875C18.3543 22.2321 18.0648 22.5215 17.7078 22.5215H7.29108C6.934 22.5215 6.64453 22.2321 6.64453 21.875C6.64453 21.5179 6.934 21.2284 7.29108 21.2284H11.8529V17.7083C11.8529 17.3512 12.1423 17.0618 12.4994 17.0618Z%27 fill=%27%23575757%27/%3E%3C/svg%3E%0A");
}
.svg-icon.mobile-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2725%27 height=%2725%27 viewBox=%270 0 25 25%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10.4173 19.7218H14.584C14.7221 19.7218 14.8546 19.667 14.9523 19.5693C15.0499 19.4716 15.1048 19.3391 15.1048 19.201C15.1048 19.0629 15.0499 18.9304 14.9523 18.8327C14.8546 18.735 14.7221 18.6802 14.584 18.6802H10.4173C10.2792 18.6802 10.1467 18.735 10.049 18.8327C9.95136 18.9304 9.89648 19.0629 9.89648 19.201C9.89648 19.3391 9.95136 19.4716 10.049 19.5693C10.1467 19.667 10.2792 19.7218 10.4173 19.7218Z%27 fill=%27%23575757%27/%3E%3Cpath d=%27M17.4236 22.851H7.57569C6.92216 22.812 6.31046 22.5165 5.87368 22.0288C5.4369 21.5411 5.21038 20.9007 5.2434 20.2468V4.75309C5.21038 4.09923 5.4369 3.45879 5.87368 2.97109C6.31046 2.4834 6.92216 2.18791 7.57569 2.14893H17.4236C18.0771 2.18791 18.6888 2.4834 19.1256 2.97109C19.5624 3.45879 19.7889 4.09923 19.7559 4.75309V20.2468C19.7889 20.9007 19.5624 21.5411 19.1256 22.0288C18.6888 22.5165 18.0771 22.812 17.4236 22.851ZM7.57569 3.19059C7.19891 3.23039 6.85273 3.41629 6.61145 3.70841C6.37016 4.00052 6.25298 4.37557 6.28506 4.75309V20.2468C6.25298 20.6244 6.37016 20.9994 6.61145 21.2915C6.85273 21.5836 7.19891 21.7695 7.57569 21.8093H17.4236C17.8004 21.7695 18.1466 21.5836 18.3878 21.2915C18.6291 20.9994 18.7463 20.6244 18.7142 20.2468V4.75309C18.7463 4.37557 18.6291 4.00052 18.3878 3.70841C18.1466 3.41629 17.8004 3.23039 17.4236 3.19059H7.57569Z%27 fill=%27%23575757%27/%3E%3C/svg%3E%0A");
}
.svg-icon.source-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2725%27 height=%2725%27 viewBox=%270 0 25 25%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M4.13561 4.13548C4.6964 3.57469 5.45699 3.25964 6.25007 3.25964H18.7501C19.5431 3.25964 20.3037 3.57469 20.8645 4.13548C21.4253 4.69627 21.7404 5.45687 21.7404 6.24995V18.7499C21.7404 19.543 21.4253 20.3036 20.8645 20.8644C20.3037 21.4252 19.5431 21.7402 18.7501 21.7402H6.25007C5.45699 21.7402 4.6964 21.4252 4.13561 20.8644C3.57481 20.3036 3.25977 19.543 3.25977 18.7499V6.24995C3.25977 5.45687 3.57481 4.69627 4.13561 4.13548ZM6.25007 4.55275C5.79994 4.55275 5.36825 4.73156 5.04997 5.04985C4.73168 5.36813 4.55287 5.79982 4.55287 6.24995V18.7499C4.55287 19.2001 4.73168 19.6318 5.04997 19.95C5.36825 20.2683 5.79994 20.4471 6.25007 20.4471H18.7501C19.2002 20.4471 19.6319 20.2683 19.9502 19.95C20.2685 19.6318 20.4473 19.2001 20.4473 18.7499V6.24995C20.4473 5.79982 20.2685 5.36813 19.9502 5.04985C19.6319 4.73156 19.2002 4.55275 18.7501 4.55275H6.25007ZM10.6135 9.69902C10.866 9.95151 10.866 10.3609 10.6135 10.6134L8.72693 12.4999L10.6135 14.3865C10.866 14.639 10.866 15.0484 10.6135 15.3009C10.361 15.5534 9.95163 15.5534 9.69914 15.3009L7.35539 12.9571C7.10289 12.7046 7.10289 12.2953 7.35539 12.0428L9.69914 9.69902C9.95163 9.44652 10.361 9.44652 10.6135 9.69902ZM14.3866 9.69902C14.6391 9.44652 15.0485 9.44652 15.301 9.69902L17.6448 12.0428C17.8972 12.2953 17.8972 12.7046 17.6448 12.9571L15.301 15.3009C15.0485 15.5534 14.6391 15.5534 14.3866 15.3009C14.1341 15.0484 14.1341 14.639 14.3866 14.3865L16.2732 12.4999L14.3866 10.6134C14.1341 10.3609 14.1341 9.95151 14.3866 9.69902Z%27 fill=%27%23575757%27/%3E%3C/svg%3E%0A");
}
.svg-icon.metadata-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2725%27 height=%2725%27 viewBox=%270 0 25 25%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M16.2492 12.5C17.3103 12.4998 18.3437 12.162 19.2001 11.5356C20.0565 10.9092 20.6914 10.0265 21.013 9.01542C21.3345 8.0043 21.3261 6.91709 20.9889 5.91106C20.6518 4.90503 20.0033 4.03234 19.1373 3.41924C18.2714 2.80614 17.2328 2.4844 16.1719 2.50058C15.111 2.51676 14.0827 2.87001 13.2359 3.50923C12.389 4.14845 11.7674 5.0405 11.4611 6.05635C11.1547 7.07219 11.1795 8.15915 11.5317 9.16L8.8805 10.485C8.13139 10.0986 7.28663 9.93687 6.44778 10.0192C5.60893 10.1015 4.81172 10.4244 4.152 10.949C3.49228 11.4736 2.99815 12.1776 2.72902 12.9763C2.45989 13.7751 2.42722 14.6346 2.63494 15.4514C2.84265 16.2683 3.28192 17.0078 3.89991 17.581C4.5179 18.1542 5.2883 18.5366 6.11848 18.6824C6.94866 18.8281 7.80327 18.7309 8.57954 18.4026C9.35581 18.0742 10.0207 17.5285 10.4942 16.8313L13.8567 18.5613C13.7326 19.0244 13.7166 19.51 13.8099 19.9804C13.9033 20.4507 14.1035 20.8933 14.3952 21.274C14.6868 21.6547 15.062 21.9632 15.4919 22.1758C15.9217 22.3884 16.3947 22.4993 16.8742 22.5C17.4039 22.4999 17.9248 22.3652 18.3881 22.1085C18.8514 21.8518 19.2418 21.4815 19.5227 21.0325C19.8037 20.5835 19.9659 20.0705 19.9941 19.5416C20.0223 19.0127 19.9157 18.4853 19.6842 18.009C19.4526 17.5326 19.1038 17.1229 18.6705 16.8183C18.2372 16.5138 17.7336 16.3243 17.207 16.2678C16.6803 16.2113 16.148 16.2896 15.6599 16.4953C15.1718 16.701 14.7441 17.0274 14.4167 17.4438L11.0417 15.7088C11.2845 14.9522 11.3164 14.1439 11.134 13.3706C10.9517 12.5973 10.5619 11.8883 10.0067 11.32L12.0917 10.2775C12.5482 10.9616 13.1665 11.5224 13.8918 11.9101C14.6171 12.2978 15.4269 12.5004 16.2492 12.5ZM16.2492 11.25C15.2547 11.25 14.3009 10.8549 13.5976 10.1517C12.8943 9.44839 12.4992 8.49456 12.4992 7.5C12.4992 6.50544 12.8943 5.55161 13.5976 4.84835C14.3009 4.14509 15.2547 3.75 16.2492 3.75C17.2438 3.75 18.1976 4.14509 18.9009 4.84835C19.6042 5.55161 19.9992 6.50544 19.9992 7.5C19.9992 8.49456 19.6042 9.44839 18.9009 10.1517C18.1976 10.8549 17.2438 11.25 16.2492 11.25ZM6.87425 17.5C6.04544 17.5 5.25059 17.1708 4.66454 16.5847C4.07849 15.9987 3.74925 15.2038 3.74925 14.375C3.74925 13.5462 4.07849 12.7513 4.66454 12.1653C5.25059 11.5792 6.04544 11.25 6.87425 11.25C7.70305 11.25 8.4979 11.5792 9.08395 12.1653C9.67001 12.7513 9.99925 13.5462 9.99925 14.375C9.99925 15.2038 9.67001 15.9987 9.08395 16.5847C8.4979 17.1708 7.70305 17.5 6.87425 17.5ZM18.7492 19.375C18.7492 19.8723 18.5517 20.3492 18.2001 20.7008C17.8484 21.0525 17.3715 21.25 16.8742 21.25C16.377 21.25 15.9001 21.0525 15.5484 20.7008C15.1968 20.3492 14.9992 19.8723 14.9992 19.375C14.9992 18.8777 15.1968 18.4008 15.5484 18.0492C15.9001 17.6975 16.377 17.5 16.8742 17.5C17.3715 17.5 17.8484 17.6975 18.2001 18.0492C18.5517 18.4008 18.7492 18.8777 18.7492 19.375Z%27 fill=%27%23575757%27/%3E%3C/svg%3E%0A");
}
.svg-icon.add-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2725%27 height=%2725%27 viewBox=%270 0 25 25%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M4.13561 4.13548C4.6964 3.57469 5.45699 3.25964 6.25007 3.25964H18.7501C19.5431 3.25964 20.3037 3.57469 20.8645 4.13548C21.4253 4.69627 21.7404 5.45687 21.7404 6.24995V18.7499C21.7404 19.543 21.4253 20.3036 20.8645 20.8644C20.3037 21.4252 19.5431 21.7402 18.7501 21.7402H6.25007C5.45699 21.7402 4.6964 21.4252 4.13561 20.8644C3.57481 20.3036 3.25977 19.543 3.25977 18.7499V6.24995C3.25977 5.45687 3.57481 4.69627 4.13561 4.13548ZM6.25007 4.55275C5.79994 4.55275 5.36825 4.73156 5.04997 5.04985C4.73168 5.36813 4.55287 5.79982 4.55287 6.24995V18.7499C4.55287 19.2001 4.73168 19.6318 5.04997 19.95C5.36825 20.2683 5.79994 20.4471 6.25007 20.4471H18.7501C19.2002 20.4471 19.6319 20.2683 19.9502 19.95C20.2685 19.6318 20.4473 19.2001 20.4473 18.7499V6.24995C20.4473 5.79982 20.2685 5.36813 19.9502 5.04985C19.6319 4.73156 19.2002 4.55275 18.7501 4.55275H6.25007Z%27 fill=%27%23575757%27/%3E%3Cpath d=%27M12.4992 17.2414C12.1251 17.2414 11.8219 16.9382 11.8219 16.5641V13.1774H8.43515C8.06107 13.1774 7.75781 12.8741 7.75781 12.5C7.75781 12.126 8.06107 11.8227 8.43515 11.8227H11.8219V8.43601C11.8219 8.06192 12.1251 7.75867 12.4992 7.75867C12.8733 7.75867 13.1765 8.06192 13.1765 8.43601V11.8227H16.5632C16.9373 11.8227 17.2406 12.126 17.2406 12.5C17.2406 12.8741 16.9373 13.1774 16.5632 13.1774H13.1765V16.5641C13.1765 16.9382 12.8733 17.2414 12.4992 17.2414Z%27 fill=%27%23575757%27/%3E%3C/svg%3E%0A");
}
.svg-icon.duplicate-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2725%27 height=%2725%27 viewBox=%270 0 25 25%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M4.19528 4.1943C4.67297 3.71661 5.32086 3.44824 5.99641 3.44824H16.6442C17.3197 3.44824 17.9676 3.71661 18.4453 4.1943C18.923 4.67199 19.1913 5.31988 19.1913 5.99544V16.6432C19.1913 17.3187 18.923 17.9666 18.4453 18.4443C17.9676 18.922 17.3197 19.1904 16.6442 19.1904H5.99641C5.32086 19.1904 4.67297 18.922 4.19528 18.4443C3.71758 17.9666 3.44922 17.3187 3.44922 16.6432V5.99544C3.44922 5.31988 3.71758 4.67199 4.19528 4.1943ZM5.99641 4.54973C5.61299 4.54973 5.24527 4.70205 4.97415 4.97317C4.70302 5.24429 4.55071 5.61201 4.55071 5.99544V16.6432C4.55071 17.0266 4.70302 17.3943 4.97415 17.6654C5.24527 17.9366 5.61299 18.0889 5.99641 18.0889H16.6442C17.0276 18.0889 17.3953 17.9366 17.6664 17.6654C17.9375 17.3943 18.0899 17.0266 18.0899 16.6432V5.99544C18.0899 5.61201 17.9375 5.24429 17.6664 4.97317C17.3953 4.70205 17.0276 4.54973 16.6442 4.54973H5.99641Z%27 fill=%27%23363636%27/%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M18.4547 6.36032C18.4547 6.05615 18.7013 5.80957 19.0055 5.80957C19.681 5.80957 20.3289 6.07794 20.8066 6.55563C21.2843 7.03332 21.5527 7.68121 21.5527 8.35677V19.0045C21.5527 19.6801 21.2843 20.328 20.8066 20.8056C20.3289 21.2833 19.681 21.5517 19.0055 21.5517H8.35774C7.68218 21.5517 7.0343 21.2833 6.5566 20.8056C6.07891 20.328 5.81055 19.6801 5.81055 19.0045C5.81055 18.7003 6.05712 18.4538 6.36129 18.4538C6.66546 18.4538 6.91204 18.7003 6.91204 19.0045C6.91204 19.3879 7.06435 19.7557 7.33547 20.0268C7.6066 20.2979 7.97432 20.4502 8.35774 20.4502H19.0055C19.3889 20.4502 19.7566 20.2979 20.0278 20.0268C20.2989 19.7557 20.4512 19.3879 20.4512 19.0045V8.35677C20.4512 7.97334 20.2989 7.60562 20.0278 7.3345C19.7566 7.06338 19.3889 6.91106 19.0055 6.91106C18.7013 6.91106 18.4547 6.66448 18.4547 6.36032Z%27 fill=%27%23363636%27/%3E%3Cpath d=%27M11.3203 15.2549C11.0098 15.2549 10.7581 15.0031 10.7581 14.6926V11.8815H7.94698C7.63648 11.8815 7.38477 11.6298 7.38477 11.3193C7.38477 11.0088 7.63648 10.7571 7.94698 10.7571H10.7581V7.94601C10.7581 7.6355 11.0098 7.38379 11.3203 7.38379C11.6308 7.38379 11.8825 7.6355 11.8825 7.94601V10.7571H14.6936C15.0041 10.7571 15.2558 11.0088 15.2558 11.3193C15.2558 11.6298 15.0041 11.8815 14.6936 11.8815H11.8825V14.6926C11.8825 15.0031 11.6308 15.2549 11.3203 15.2549Z%27 fill=%27%23363636%27/%3E%3C/svg%3E%0A");
}
.svg-icon.copy-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2725%27 height=%2725%27 viewBox=%270 0 25 25%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M19.2834 5.82471C19.8571 5.88745 20.3956 6.14372 20.8075 6.55566C21.2852 7.03336 21.5536 7.68124 21.5536 8.3568V19.0045C21.5536 19.6801 21.2852 20.328 20.8075 20.8057C20.3298 21.2834 19.6819 21.5517 19.0064 21.5517H8.35864C7.68308 21.5517 7.03519 21.2834 6.5575 20.8057C6.17323 20.4214 5.92442 19.927 5.8418 19.3967C6.03637 19.3967 6.46741 19.3967 6.96713 19.3967C7.03367 19.6328 7.15984 19.8503 7.33637 20.0268C7.60749 20.2979 7.97521 20.4502 8.35864 20.4502H19.0064C19.3898 20.4502 19.7575 20.2979 20.0286 20.0268C20.2998 19.7557 20.4521 19.388 20.4521 19.0045V8.3568C20.4521 7.97338 20.2998 7.60566 20.0286 7.33454C19.8238 7.12965 19.5637 6.99261 19.2834 6.93788C19.2834 6.69332 19.2834 6.03454 19.2834 5.82471Z%27 fill=%27%23575757%27/%3E%3Cpath d=%27M5.87379 3.44824C5.7128 3.44824 5.55374 3.46376 5.40148 3.49479L5.58963 4.44523C5.68324 4.42694 5.77841 4.41785 5.87379 4.41807H6.31797V3.44824H5.87379ZM8.09663 3.44824H7.2073V4.41807H8.09663V3.44824ZM9.87433 3.44824H8.985V4.41807H9.87433V3.44824ZM11.652 3.44824H10.7637V4.41807H11.652V3.44824ZM13.4307 3.44824H12.5414V4.41807H13.4307V3.44824ZM15.2084 3.44824H14.319V4.41807H15.2084V3.44824ZM16.5419 3.44824H16.0977V4.41807H16.5419C16.6389 4.41807 16.7349 4.42777 16.8261 4.44619L17.0142 3.49479C16.8587 3.46393 16.7005 3.44834 16.5419 3.44824ZM18.5582 4.52475C18.3809 4.26043 18.1536 4.03341 17.889 3.85654L17.3498 4.66247C17.5088 4.76915 17.6456 4.90589 17.7522 5.06494L18.5572 4.52572L18.5582 4.52475ZM4.52573 3.85654C4.2614 4.03379 4.03439 4.26114 3.85752 4.52572L4.66344 5.06494C4.77012 4.90589 4.90687 4.76915 5.06592 4.66247L4.52573 3.85654ZM18.9665 5.87281C18.9665 5.71182 18.9509 5.55277 18.9199 5.40051L17.9695 5.58865C17.9869 5.67982 17.9966 5.77486 17.9966 5.87281V6.31699H18.9665V5.87281ZM3.49577 5.40051C3.46491 5.55605 3.44932 5.71424 3.44922 5.87281V6.31699H4.41905V5.87281C4.41905 5.77583 4.42874 5.67982 4.44717 5.58865L3.49577 5.40051ZM3.44922 7.20632V8.09566H4.41905V7.20632H3.44922ZM18.9665 8.09566V7.20632H17.9966V8.09566H18.9665ZM3.44922 8.98402V9.87335H4.41905V8.98402H3.44922ZM18.9665 9.87335V8.98402H17.9966V9.87335H18.9665ZM3.44922 10.7627V11.651H4.41905V10.7627H3.44922ZM17.9966 11.651H18.9665V10.7627H17.9966V11.651ZM3.44922 12.5404V13.4297H4.41905V12.5404H3.44922ZM18.9665 13.4297V12.5404H17.9966V13.4297H18.9665ZM3.44922 14.3181V15.2074H4.41905V14.3181H3.44922ZM18.9665 15.2074V14.3181H17.9966V15.2074H18.9665ZM3.44922 16.0967V16.5409C3.44922 16.7019 3.46474 16.861 3.49577 17.0132L4.4462 16.8251C4.42792 16.7315 4.41882 16.6363 4.41905 16.5409V16.0967H3.44922ZM18.9665 16.5409V16.0967H17.9966V16.5409C17.9966 16.6379 17.9869 16.7339 17.9685 16.8251L18.9199 17.0132C18.9509 16.86 18.9665 16.7029 18.9665 16.5409ZM3.85752 17.889C4.03499 18.1528 4.26193 18.3797 4.5267 18.5572L5.06592 17.7513C4.90673 17.6447 4.76999 17.508 4.66344 17.3488L3.85849 17.888L3.85752 17.889ZM17.89 18.5572C18.1537 18.3797 18.3807 18.1528 18.5582 17.888L17.7522 17.3488C17.6456 17.5078 17.5088 17.6446 17.3498 17.7513L17.889 18.5562L17.89 18.5572ZM5.40148 18.9189C5.55471 18.95 5.71183 18.9655 5.87379 18.9655H6.31797V17.9957H5.87379C5.77681 17.9957 5.68079 17.986 5.58963 17.9675L5.40148 18.9189ZM16.5419 18.9655C16.7029 18.9655 16.8619 18.95 17.0142 18.9189L16.8261 17.9685C16.7324 17.9868 16.6373 17.9959 16.5419 17.9957H16.0977V18.9655H16.5419ZM7.2073 18.9655H8.09663V17.9957H7.2073V18.9655ZM8.985 18.9655H9.87433V17.9957H8.985V18.9655ZM10.7637 18.9655H11.652V17.9957H10.7637V18.9655ZM12.5414 18.9655H13.4307V17.9957H12.5414V18.9655ZM14.319 18.9655H15.2084V17.9957H14.319V18.9655Z%27 fill=%27%23575757%27/%3E%3C/svg%3E%0A");
}
.svg-icon.history-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2725%27 height=%2725%27 viewBox=%270 0 25 25%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M13.1116 4.21011C12.9081 4.19508 12.7041 4.18756 12.5 4.18755V3C12.7334 3.00011 12.9667 3.00883 13.1995 3.02613L13.1116 4.21011ZM15.4914 4.74451C15.1108 4.59761 14.7198 4.47893 14.3217 4.38943L14.5818 3.23038C15.0366 3.33251 15.4843 3.46789 15.9189 3.63653L15.4914 4.74451ZM17.1184 5.58766C16.9486 5.47443 16.7747 5.36748 16.597 5.26703L17.1825 4.23386C17.5885 4.46393 17.9771 4.72351 18.3451 5.01052L17.6148 5.94749C17.4538 5.82189 17.2882 5.70226 17.1184 5.58885V5.58766ZM19.2963 7.71337C19.0614 7.37964 18.8022 7.06369 18.5209 6.76809L19.3806 5.94868C19.7013 6.28713 19.9982 6.64933 20.2677 7.02935L19.2963 7.71337ZM20.1799 9.31894C20.1019 9.13066 20.0171 8.94528 19.9257 8.76316L20.9862 8.22877C21.1959 8.6457 21.3745 9.07756 21.5206 9.52082L20.3924 9.89252C20.3286 9.69879 20.2577 9.50747 20.1799 9.31894ZM20.8093 12.2961C20.7997 11.888 20.76 11.4812 20.6905 11.0789L21.8602 10.877C21.9398 11.3354 21.9861 11.8009 21.998 12.2664L20.8105 12.2961H20.8093ZM20.6537 14.1226C20.6929 13.9207 20.7249 13.72 20.7499 13.5169L21.9291 13.663C21.8721 14.1263 21.7808 14.5848 21.656 15.0346L20.5112 14.7175C20.5658 14.5216 20.6133 14.3233 20.6537 14.1226ZM19.5232 16.9477C19.7417 16.6033 19.934 16.2423 20.1003 15.8694L21.1857 16.3504C20.9957 16.7779 20.776 17.1888 20.5266 17.5831L19.5232 16.9477ZM18.3784 18.3787C18.5232 18.2339 18.6622 18.0842 18.794 17.9298L19.6942 18.7053C19.5417 18.8821 19.3829 19.0532 19.218 19.2183L18.3784 18.3787Z%27 fill=%27%23575757%27/%3E%3Cpath d=%27M12.5002 4.18755C11.1332 4.18765 9.78728 4.52487 8.58172 5.16934C7.37616 5.81381 6.34815 6.74564 5.58872 7.8823C4.8293 9.01896 4.36191 10.3254 4.22796 11.6858C4.094 13.0462 4.29762 14.4187 4.82076 15.6816C5.34391 16.9446 6.17044 18.059 7.22715 18.9263C8.28385 19.7935 9.53812 20.3867 10.8789 20.6534C12.2196 20.9202 13.6054 20.8521 14.9136 20.4553C16.2217 20.0586 17.4119 19.3453 18.3785 18.3787L19.2181 19.2183C18.1134 20.3237 16.7531 21.1395 15.2577 21.5934C13.7623 22.0474 12.1781 22.1255 10.6453 21.8208C9.11253 21.5162 7.67857 20.8381 6.47047 19.8468C5.26237 18.8555 4.31743 17.5815 3.71938 16.1377C3.12133 14.6939 2.88863 13.1249 3.04191 11.5697C3.19518 10.0144 3.72969 8.52102 4.59808 7.22175C5.46648 5.92248 6.64193 4.85745 8.02031 4.12105C9.39868 3.38464 10.9374 2.99959 12.5002 3V4.18755Z%27 fill=%27%23575757%27/%3E%3Cpath d=%27M11.9063 6.56274C12.0638 6.56274 12.2148 6.6253 12.3261 6.73666C12.4375 6.84801 12.5 6.99904 12.5 7.15652V13.3436L16.3572 15.5477C16.49 15.6278 16.5861 15.7567 16.6251 15.9067C16.6642 16.0568 16.643 16.2161 16.566 16.3507C16.4891 16.4854 16.3626 16.5845 16.2135 16.6271C16.0644 16.6697 15.9046 16.6522 15.7682 16.5785L11.6118 14.2034C11.5209 14.1515 11.4453 14.0765 11.3928 13.986C11.3402 13.8955 11.3125 13.7927 11.3125 13.688V7.15652C11.3125 6.99904 11.3751 6.84801 11.4864 6.73666C11.5978 6.6253 11.7488 6.56274 11.9063 6.56274Z%27 fill=%27%23575757%27/%3E%3C/svg%3E%0A");
}
.svg-icon.edit-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2725%27 height=%2725%27 viewBox=%270 0 25 25%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M18.6342 19.496H5.50418V6.366H13.3941L14.5877 5.17236H5.50418C5.18761 5.17236 4.884 5.29812 4.66015 5.52197C4.4363 5.74582 4.31055 6.04943 4.31055 6.366V19.496C4.31055 19.8125 4.4363 20.1161 4.66015 20.34C4.884 20.5638 5.18761 20.6896 5.50418 20.6896H18.6342C18.9507 20.6896 19.2543 20.5638 19.4782 20.34C19.702 20.1161 19.8278 19.8125 19.8278 19.496V10.5437L18.6342 11.7374V19.496Z%27 fill=%27%23575757%27/%3E%3Cpath d=%27M22.1218 4.95114L20.0442 2.87733C19.952 2.78504 19.8425 2.71182 19.7219 2.66186C19.6013 2.6119 19.472 2.58618 19.3414 2.58618C19.2108 2.58618 19.0816 2.6119 18.961 2.66186C18.8404 2.71182 18.7308 2.78504 18.6386 2.87733L10.1865 11.3633L9.50223 14.3233C9.47307 14.4668 9.47614 14.6149 9.5112 14.7571C9.54626 14.8992 9.61245 15.0319 9.70501 15.1454C9.79756 15.259 9.91418 15.3507 10.0465 15.4139C10.1788 15.4771 10.3235 15.5102 10.4701 15.511C10.5459 15.5193 10.6224 15.5193 10.6982 15.511L13.6882 14.8525L22.1218 6.35419C22.2142 6.26216 22.2876 6.15282 22.3376 6.03244C22.3877 5.91206 22.4135 5.783 22.4135 5.65267C22.4135 5.52233 22.3877 5.39327 22.3376 5.27289C22.2876 5.15251 22.2142 5.04317 22.1218 4.95114ZM13.047 13.7141L10.7907 14.2125L11.3147 11.9787L17.6769 5.58497L19.4154 7.32033L13.047 13.7141ZM20.112 6.62496L18.3735 4.8896L19.3291 3.91731L21.0799 5.66497L20.112 6.62496Z%27 fill=%27%23575757%27/%3E%3C/svg%3E%0A");
}
.svg-icon.trash-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2725%27 height=%2725%27 viewBox=%270 0 25 25%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M20.0074 6.23339H16.595V5.5371C16.5928 4.98381 16.3764 4.45383 15.9929 4.06259C15.6094 3.67134 15.0899 3.45053 14.5476 3.44824H10.4528C9.91047 3.45053 9.39101 3.67134 9.00753 4.06259C8.62405 4.45383 8.40762 4.98381 8.40537 5.5371V6.23339H4.99302C4.81202 6.23339 4.63843 6.30675 4.51044 6.43733C4.38245 6.5679 4.31055 6.74501 4.31055 6.92967C4.31055 7.11434 4.38245 7.29144 4.51044 7.42202C4.63843 7.5526 4.81202 7.62596 4.99302 7.62596H5.67549V20.1591C5.67549 20.5285 5.8193 20.8827 6.07527 21.1438C6.33125 21.405 6.67843 21.5517 7.04043 21.5517H17.96C18.322 21.5517 18.6692 21.405 18.9251 21.1438C19.1811 20.8827 19.3249 20.5285 19.3249 20.1591V7.62596H20.0074C20.1884 7.62596 20.362 7.5526 20.49 7.42202C20.618 7.29144 20.6899 7.11434 20.6899 6.92967C20.6899 6.74501 20.618 6.5679 20.49 6.43733C20.362 6.30675 20.1884 6.23339 20.0074 6.23339ZM9.77032 5.5371C9.77032 5.35243 9.84222 5.17533 9.97021 5.04475C10.0982 4.91417 10.2718 4.84082 10.4528 4.84082H14.5476C14.7286 4.84082 14.9022 4.91417 15.0302 5.04475C15.1582 5.17533 15.2301 5.35243 15.2301 5.5371V6.23339H9.77032V5.5371ZM17.96 20.1591H7.04043V7.62596H17.96V20.1591ZM11.1353 11.1074V16.6777C11.1353 16.8624 11.0634 17.0395 10.9354 17.17C10.8074 17.3006 10.6338 17.374 10.4528 17.374C10.2718 17.374 10.0982 17.3006 9.97021 17.17C9.84222 17.0395 9.77032 16.8624 9.77032 16.6777V11.1074C9.77032 10.9227 9.84222 10.7456 9.97021 10.615C10.0982 10.4845 10.2718 10.4111 10.4528 10.4111C10.6338 10.4111 10.8074 10.4845 10.9354 10.615C11.0634 10.7456 11.1353 10.9227 11.1353 11.1074ZM15.2301 11.1074V16.6777C15.2301 16.8624 15.1582 17.0395 15.0302 17.17C14.9022 17.3006 14.7286 17.374 14.5476 17.374C14.3666 17.374 14.193 17.3006 14.065 17.17C13.937 17.0395 13.8651 16.8624 13.8651 16.6777V11.1074C13.8651 10.9227 13.937 10.7456 14.065 10.615C14.193 10.4845 14.3666 10.4111 14.5476 10.4111C14.7286 10.4111 14.9022 10.4845 15.0302 10.615C15.1582 10.7456 15.2301 10.9227 15.2301 11.1074Z%27 fill=%27%23575757%27/%3E%3C/svg%3E%0A");
}
.svg-icon.info-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2725%27 height=%2725%27 viewBox=%270 0 25 25%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M12.5 2.34375C10.4913 2.34375 8.52768 2.9394 6.85749 4.05539C5.18731 5.17137 3.88556 6.75756 3.11685 8.61337C2.34815 10.4692 2.14702 12.5113 2.5389 14.4814C2.93079 16.4515 3.89807 18.2612 5.31845 19.6816C6.73883 21.1019 8.5485 22.0692 10.5186 22.4611C12.4887 22.853 14.5308 22.6519 16.3866 21.8832C18.2424 21.1145 19.8286 19.8127 20.9446 18.1425C22.0606 16.4723 22.6563 14.5087 22.6563 12.5C22.6537 9.80719 21.5828 7.22541 19.6787 5.3213C17.7746 3.4172 15.1928 2.34634 12.5 2.34375ZM12.5 21.0938C10.8003 21.0938 9.13881 20.5897 7.72557 19.6454C6.31234 18.7011 5.21086 17.359 4.56041 15.7887C3.90997 14.2184 3.73979 12.4905 4.07138 10.8234C4.40297 9.15642 5.22145 7.62516 6.42331 6.4233C7.62516 5.22144 9.15642 4.40297 10.8234 4.07138C12.4905 3.73978 14.2184 3.90997 15.7887 4.56041C17.359 5.21085 18.7012 6.31233 19.6454 7.72557C20.5897 9.1388 21.0938 10.8003 21.0938 12.5C21.0912 14.7784 20.1849 16.9628 18.5739 18.5738C16.9628 20.1849 14.7784 21.0912 12.5 21.0938ZM14.0625 17.1875C14.0625 17.3947 13.9802 17.5934 13.8337 17.7399C13.6872 17.8864 13.4885 17.9688 13.2813 17.9688H12.5C12.2928 17.9688 12.0941 17.8864 11.9476 17.7399C11.8011 17.5934 11.7188 17.3947 11.7188 17.1875V12.5C11.5116 12.5 11.3128 12.4177 11.1663 12.2712C11.0198 12.1247 10.9375 11.926 10.9375 11.7188C10.9375 11.5115 11.0198 11.3128 11.1663 11.1663C11.3128 11.0198 11.5116 10.9375 11.7188 10.9375H12.5C12.7072 10.9375 12.9059 11.0198 13.0524 11.1663C13.1989 11.3128 13.2813 11.5115 13.2813 11.7188V16.4063C13.4885 16.4063 13.6872 16.4886 13.8337 16.6351C13.9802 16.7816 14.0625 16.9803 14.0625 17.1875ZM11.1328 8.20313C11.1328 7.97135 11.2015 7.74478 11.3303 7.55207C11.4591 7.35935 11.6421 7.20915 11.8562 7.12045C12.0704 7.03176 12.306 7.00855 12.5333 7.05377C12.7606 7.09898 12.9694 7.21059 13.1333 7.37448C13.2972 7.53837 13.4088 7.74718 13.4541 7.9745C13.4993 8.20183 13.4761 8.43745 13.3874 8.65158C13.2987 8.86572 13.1485 9.04874 12.9558 9.1775C12.763 9.30627 12.5365 9.375 12.3047 9.375C11.9939 9.375 11.6958 9.25154 11.4761 9.03177C11.2563 8.812 11.1328 8.51393 11.1328 8.20313Z%27 fill=%27%23575757%27/%3E%3C/svg%3E%0A");
}
.svg-icon.more-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2725%27 height=%2725%27 viewBox=%270 0 25 25%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M6.24935 14.5833C5.67643 14.5833 5.18615 14.3791 4.77852 13.9708C4.37018 13.5632 4.16602 13.0729 4.16602 12.5C4.16602 11.927 4.37018 11.4364 4.77852 11.0281C5.18615 10.6204 5.67643 10.4166 6.24935 10.4166C6.82227 10.4166 7.31254 10.6204 7.72018 11.0281C8.12852 11.4364 8.33268 11.927 8.33268 12.5C8.33268 13.0729 8.12852 13.5632 7.72018 13.9708C7.31254 14.3791 6.82227 14.5833 6.24935 14.5833ZM12.4993 14.5833C11.9264 14.5833 11.4362 14.3791 11.0285 13.9708C10.6202 13.5632 10.416 13.0729 10.416 12.5C10.416 11.927 10.6202 11.4364 11.0285 11.0281C11.4362 10.6204 11.9264 10.4166 12.4993 10.4166C13.0723 10.4166 13.5629 10.6204 13.9712 11.0281C14.3789 11.4364 14.5827 11.927 14.5827 12.5C14.5827 13.0729 14.3789 13.5632 13.9712 13.9708C13.5629 14.3791 13.0723 14.5833 12.4993 14.5833ZM18.7493 14.5833C18.1764 14.5833 17.6858 14.3791 17.2775 13.9708C16.8698 13.5632 16.666 13.0729 16.666 12.5C16.666 11.927 16.8698 11.4364 17.2775 11.0281C17.6858 10.6204 18.1764 10.4166 18.7493 10.4166C19.3223 10.4166 19.8129 10.6204 20.2212 11.0281C20.6289 11.4364 20.8327 11.927 20.8327 12.5C20.8327 13.0729 20.6289 13.5632 20.2212 13.9708C19.8129 14.3791 19.3223 14.5833 18.7493 14.5833Z%27 fill=%27%23575757%27/%3E%3C/svg%3E%0A");
}
.svg-icon.preview-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2725%27 height=%2725%27 viewBox=%270 0 25 25%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M18.6342 19.496H5.50418V6.36606H13.3941L14.5877 5.17242H5.50418C5.18761 5.17242 4.884 5.29818 4.66015 5.52203C4.4363 5.74588 4.31055 6.04949 4.31055 6.36606V19.496C4.31055 19.8126 4.4363 20.1162 4.66015 20.3401C4.884 20.5639 5.18761 20.6897 5.50418 20.6897H18.6342C18.9507 20.6897 19.2543 20.5639 19.4782 20.3401C19.702 20.1162 19.8278 19.8126 19.8278 19.496V10.5438L18.6342 11.7374V19.496Z%27 fill=%27%23575757%27/%3E%3Cpath d=%27M22.1218 4.95114L20.0442 2.87733C19.952 2.78504 19.8425 2.71182 19.7219 2.66186C19.6013 2.6119 19.472 2.58618 19.3414 2.58618C19.2108 2.58618 19.0816 2.6119 18.961 2.66186C18.8404 2.71182 18.7308 2.78504 18.6386 2.87733L10.1865 11.3633L9.50223 14.3233C9.47307 14.4668 9.47614 14.6149 9.5112 14.7571C9.54626 14.8992 9.61245 15.0319 9.70501 15.1454C9.79756 15.259 9.91418 15.3507 10.0465 15.4139C10.1788 15.4771 10.3235 15.5102 10.4701 15.511C10.5459 15.5193 10.6224 15.5193 10.6982 15.511L13.6882 14.8525L22.1218 6.35419C22.2142 6.26216 22.2876 6.15282 22.3376 6.03244C22.3877 5.91206 22.4135 5.783 22.4135 5.65267C22.4135 5.52233 22.3877 5.39327 22.3376 5.27289C22.2876 5.15251 22.2142 5.04317 22.1218 4.95114ZM13.047 13.7141L10.7907 14.2125L11.3147 11.9787L17.6769 5.58497L19.4154 7.32033L13.047 13.7141ZM20.112 6.62496L18.3735 4.8896L19.3291 3.91731L21.0799 5.66497L20.112 6.62496Z%27 fill=%27%23575757%27/%3E%3C/svg%3E%0A");
}
.svg-icon.download-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2725%27 height=%2725%27 viewBox=%270 0 25 25%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M5.90937 12.127C5.84029 12.0652 5.78489 11.9907 5.74646 11.9079C5.70803 11.8251 5.68736 11.7357 5.6857 11.6451C5.68403 11.5544 5.7014 11.4644 5.73676 11.3804C5.77212 11.2963 5.82476 11.22 5.89153 11.1559C5.95829 11.0918 6.03783 11.0412 6.12538 11.0073C6.21293 10.9733 6.30671 10.9567 6.40111 10.9583C6.49552 10.9599 6.58863 10.9797 6.67488 11.0166C6.76113 11.0535 6.83875 11.1067 6.90313 11.173L11.5625 15.646V4.675C11.5625 4.49598 11.6366 4.32429 11.7684 4.1977C11.9003 4.07112 12.0791 4 12.2656 4C12.4521 4 12.6309 4.07112 12.7628 4.1977C12.8947 4.32429 12.9688 4.49598 12.9688 4.675V15.646L17.6281 11.173C17.6925 11.1067 17.7701 11.0535 17.8564 11.0166C17.9426 10.9797 18.0357 10.9599 18.1301 10.9583C18.2245 10.9567 18.3183 10.9733 18.4059 11.0073C18.4934 11.0412 18.573 11.0918 18.6397 11.1559C18.7065 11.22 18.7591 11.2963 18.7945 11.3804C18.8299 11.4644 18.8472 11.5544 18.8456 11.6451C18.8439 11.7357 18.8232 11.8251 18.7848 11.9079C18.7464 11.9907 18.691 12.0652 18.6219 12.127L12.7625 17.752C12.6307 17.8784 12.452 17.9494 12.2656 17.9494C12.0793 17.9494 11.9006 17.8784 11.7688 17.752L5.90937 12.127ZM5.70312 20.65C5.51664 20.65 5.3378 20.7211 5.20594 20.8477C5.07408 20.9743 5 21.146 5 21.325C5 21.504 5.07408 21.6757 5.20594 21.8023C5.3378 21.9289 5.51664 22 5.70312 22H19.2969C19.4834 22 19.6622 21.9289 19.7941 21.8023C19.9259 21.6757 20 21.504 20 21.325C20 21.146 19.9259 20.9743 19.7941 20.8477C19.6622 20.7211 19.4834 20.65 19.2969 20.65H5.70312Z%27 fill=%27%23575757%27/%3E%3C/svg%3E%0A");
}
.svg-icon.upload-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2725%27 height=%2725%27 viewBox=%270 0 25 25%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M18.7492 9.83163C18.8182 9.89342 18.8736 9.96794 18.9121 10.0507C18.9505 10.1335 18.9712 10.2229 18.9728 10.3136C18.9745 10.4042 18.9571 10.4942 18.9218 10.5783C18.8864 10.6623 18.8338 10.7387 18.767 10.8028C18.7002 10.8669 18.6207 10.9174 18.5332 10.9513C18.4456 10.9853 18.3518 11.002 18.2574 11.0004C18.163 10.9988 18.0699 10.9789 17.9837 10.942C17.8974 10.9051 17.8198 10.852 17.7554 10.7856L13.096 6.31259L13.096 17.2837C13.096 17.4627 13.022 17.6344 12.8901 17.761C12.7582 17.8876 12.5794 17.9587 12.3929 17.9587C12.2064 17.9587 12.0276 17.8876 11.8957 17.761C11.7639 17.6344 11.6898 17.4627 11.6898 17.2837L11.6898 6.31259L7.0304 10.7856C6.96603 10.852 6.88841 10.9051 6.80216 10.942C6.71591 10.9789 6.6228 10.9988 6.52839 11.0004C6.43398 11.002 6.34021 10.9853 6.25266 10.9513C6.1651 10.9174 6.08557 10.8669 6.01881 10.8028C5.95204 10.7387 5.8994 10.6623 5.86404 10.5783C5.82868 10.4942 5.81131 10.4042 5.81297 10.3136C5.81464 10.2229 5.8353 10.1335 5.87373 10.0507C5.91216 9.96794 5.96757 9.89342 6.03665 9.83162L11.896 4.20656C12.0279 4.08015 12.2066 4.00915 12.3929 4.00915C12.5792 4.00915 12.7579 4.08015 12.8898 4.20656L18.7492 9.83163ZM19.2969 22.0076C19.4834 22.0076 19.6622 21.9365 19.7941 21.8099C19.9259 21.6833 20 21.5116 20 21.3326C20 21.1535 19.9259 20.9819 19.7941 20.8553C19.6622 20.7287 19.4834 20.6576 19.2969 20.6576L5.70313 20.6576C5.51664 20.6576 5.3378 20.7287 5.20594 20.8553C5.07408 20.9819 5 21.1535 5 21.3326C5 21.5116 5.07408 21.6833 5.20594 21.8099C5.3378 21.9365 5.51664 22.0076 5.70312 22.0076L19.2969 22.0076Z%27 fill=%27%23575757%27/%3E%3C/svg%3E%0A");
}
.svg-icon.table-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2725%27 height=%2725%27 viewBox=%270 0 25 25%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M20.875 3.88281H4.125C3.9696 3.88281 3.82056 3.94454 3.71068 4.05443C3.60079 4.16431 3.53906 4.31335 3.53906 4.46875V19.75C3.53906 20.1126 3.68311 20.4604 3.9395 20.7167C4.1959 20.9731 4.54365 21.1172 4.90625 21.1172H20.0938C20.4564 21.1172 20.8041 20.9731 21.0605 20.7167C21.3169 20.4604 21.4609 20.1126 21.4609 19.75V4.46875C21.4609 4.31335 21.3992 4.16431 21.2893 4.05443C21.1794 3.94454 21.0304 3.88281 20.875 3.88281ZM4.71094 9.74219H8.00781V12.559H4.71094V9.74219ZM9.17969 9.74219H20.2891V12.559H9.17969V9.74219ZM20.2891 5.05469V8.57031H4.71094V5.05469H20.2891ZM4.71094 19.75V13.7308H8.00781V19.9453H4.90625C4.85445 19.9453 4.80477 19.9247 4.76814 19.8881C4.73151 19.8515 4.71094 19.8018 4.71094 19.75ZM20.0938 19.9453H9.17969V13.7308H20.2891V19.75C20.2891 19.8018 20.2685 19.8515 20.2319 19.8881C20.1952 19.9247 20.1455 19.9453 20.0938 19.9453Z%27 fill=%27%23575757%27/%3E%3Cpath d=%27M4.51953 16.1193H20.4434V17.1976H4.51953V16.1193Z%27 fill=%27%23575757%27/%3E%3C/svg%3E%0A");
}
.svg-icon.preview-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2725%27 height=%2725%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M2.60166 3.5543C3.04818 3.10778 3.65378 2.85693 4.28525 2.85693H15.7138C16.3453 2.85693 16.9509 3.10778 17.3974 3.5543C17.8439 4.00081 18.0948 4.60642 18.0948 5.23789V13.8093C18.0948 14.4408 17.8439 15.0464 17.3974 15.4929C16.9509 15.9394 16.3453 16.1903 15.7138 16.1903H4.28525C3.65378 16.1903 3.04818 15.9394 2.60166 15.4929C2.15515 15.0464 1.9043 14.4408 1.9043 13.8093V5.23789C1.9043 4.60642 2.15515 4.00081 2.60166 3.5543ZM4.28525 3.80931C3.90637 3.80931 3.54301 3.95982 3.2751 4.22773C3.00719 4.49564 2.85668 4.85901 2.85668 5.23789V13.8093C2.85668 14.1882 3.00719 14.5516 3.2751 14.8195C3.54301 15.0874 3.90637 15.2379 4.28525 15.2379H15.7138C16.0927 15.2379 16.4561 15.0874 16.724 14.8195C16.9919 14.5516 17.1424 14.1882 17.1424 13.8093V5.23789C17.1424 4.85901 16.9919 4.49564 16.724 4.22773C16.4561 3.95982 16.0927 3.80931 15.7138 3.80931H4.28525ZM4.22748 5.18011C4.49539 4.91221 4.85875 4.7617 5.23763 4.7617H7.14239C7.52127 4.7617 7.88464 4.91221 8.15254 5.18011C8.42045 5.44802 8.57096 5.81139 8.57096 6.19027V12.8569C8.57096 13.2358 8.42045 13.5992 8.15254 13.8671C7.88464 14.135 7.52127 14.2855 7.14239 14.2855H5.23763C4.85875 14.2855 4.49539 14.135 4.22748 13.8671C3.95957 13.5992 3.80906 13.2358 3.80906 12.8569V6.19027C3.80906 5.81139 3.95957 5.44802 4.22748 5.18011ZM5.23763 5.71408C5.11134 5.71408 4.99022 5.76425 4.90091 5.85355C4.81161 5.94285 4.76144 6.06397 4.76144 6.19027V12.8569C4.76144 12.9832 4.81161 13.1043 4.90091 13.1937C4.99022 13.283 5.11134 13.3331 5.23763 13.3331H7.14239C7.26868 13.3331 7.38981 13.283 7.47911 13.1937C7.56841 13.1043 7.61858 12.9832 7.61858 12.8569V6.19027C7.61858 6.06397 7.56841 5.94285 7.47911 5.85355C7.38981 5.76425 7.26869 5.71408 7.14239 5.71408H5.23763ZM9.94176 5.18011C10.2097 4.91221 10.573 4.7617 10.9519 4.7617H14.7614C15.1403 4.7617 15.5037 4.91221 15.7716 5.18011C16.0395 5.44802 16.19 5.81139 16.19 6.19027V7.14265C16.19 7.52153 16.0395 7.88489 15.7716 8.1528C15.5037 8.42071 15.1403 8.57122 14.7614 8.57122H10.9519C10.573 8.57122 10.2097 8.42071 9.94176 8.1528C9.67386 7.88489 9.52334 7.52153 9.52334 7.14265V6.19027C9.52334 5.81139 9.67386 5.44802 9.94176 5.18011ZM10.9519 5.71408C10.8256 5.71408 10.7045 5.76425 10.6152 5.85355C10.5259 5.94285 10.4757 6.06397 10.4757 6.19027V7.14265C10.4757 7.26894 10.5259 7.39006 10.6152 7.47937C10.7045 7.56867 10.8256 7.61884 10.9519 7.61884H14.7614C14.8877 7.61884 15.0089 7.56867 15.0982 7.47937C15.1875 7.39006 15.2376 7.26894 15.2376 7.14265V6.19027C15.2376 6.06397 15.1875 5.94285 15.0982 5.85355C15.0089 5.76425 14.8877 5.71408 14.7614 5.71408H10.9519ZM9.94176 9.94202C10.2097 9.67411 10.573 9.5236 10.9519 9.5236H14.7614C15.1403 9.5236 15.5037 9.67411 15.7716 9.94202C16.0395 10.2099 16.19 10.5733 16.19 10.9522V12.8569C16.19 13.2358 16.0395 13.5992 15.7716 13.8671C15.5037 14.135 15.1403 14.2855 14.7614 14.2855H10.9519C10.573 14.2855 10.2097 14.135 9.94176 13.8671C9.67386 13.5992 9.52334 13.2358 9.52334 12.8569V10.9522C9.52334 10.5733 9.67386 10.2099 9.94176 9.94202ZM10.9519 10.476C10.8256 10.476 10.7045 10.5262 10.6152 10.6155C10.5259 10.7048 10.4757 10.8259 10.4757 10.9522V12.8569C10.4757 12.9832 10.5259 13.1043 10.6152 13.1937C10.7045 13.283 10.8256 13.3331 10.9519 13.3331H14.7614C14.8877 13.3331 15.0089 13.283 15.0982 13.1937C15.1875 13.1044 15.2376 12.9832 15.2376 12.8569V10.9522C15.2376 10.8259 15.1875 10.7048 15.0982 10.6155C15.0089 10.5262 14.8877 10.476 14.7614 10.476H10.9519Z%27 fill=%27%23575757%27/%3E%3C/svg%3E%0A");
}
.svg-icon.mix-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2725%27 height=%2725%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M2.60166 3.5543C3.04818 3.10778 3.65378 2.85693 4.28525 2.85693H15.7138C16.3453 2.85693 16.9509 3.10778 17.3974 3.5543C17.8439 4.00081 18.0948 4.60642 18.0948 5.23789V13.8093C18.0948 14.4408 17.8439 15.0464 17.3974 15.4929C16.9509 15.9394 16.3453 16.1903 15.7138 16.1903H4.28525C3.65378 16.1903 3.04818 15.9394 2.60166 15.4929C2.15515 15.0464 1.9043 14.4408 1.9043 13.8093V5.23789C1.9043 4.60642 2.15515 4.00081 2.60166 3.5543ZM4.28525 3.80931C3.90637 3.80931 3.54301 3.95982 3.2751 4.22773C3.00719 4.49564 2.85668 4.85901 2.85668 5.23789V9.63565H17.1424V5.23789C17.1424 4.85901 16.9919 4.49564 16.724 4.22773C16.4561 3.95982 16.0927 3.80931 15.7138 3.80931H4.28525ZM17.1424 10.588H2.85668V13.8093C2.85668 14.1882 3.00719 14.5516 3.2751 14.8195C3.54301 15.0874 3.90637 15.2379 4.28525 15.2379H15.7138C16.0927 15.2379 16.4561 15.0874 16.724 14.8195C16.9919 14.5516 17.1424 14.1882 17.1424 13.8093V10.588Z%27 fill=%27%23575757%27/%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M3.93555 11.9438C3.93555 11.6806 4.14887 11.4673 4.41202 11.4673H10.7355C10.9987 11.4673 11.212 11.6806 11.212 11.9438C11.212 12.2069 10.9987 12.4202 10.7355 12.4202H4.41202C4.14887 12.4202 3.93555 12.2069 3.93555 11.9438ZM12.0238 11.9438C12.0238 11.6806 12.2371 11.4673 12.5003 11.4673H15.5885C15.8516 11.4673 16.065 11.6806 16.065 11.9438C16.065 12.2069 15.8516 12.4202 15.5885 12.4202H12.5003C12.2371 12.4202 12.0238 12.2069 12.0238 11.9438Z%27 fill=%27%23575757%27/%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M16.0645 13.7084C16.0645 13.4453 15.8511 13.2319 15.588 13.2319H9.26445C9.00131 13.2319 8.78798 13.4453 8.78798 13.7084C8.78798 13.9716 9.00131 14.1849 9.26445 14.1849H15.588C15.8511 14.1849 16.0645 13.9716 16.0645 13.7084ZM7.97622 13.7084C7.97622 13.4453 7.76289 13.2319 7.49975 13.2319H4.41151C4.14837 13.2319 3.93504 13.4453 3.93504 13.7084C3.93504 13.9716 4.14837 14.1849 4.41151 14.1849H7.49975C7.76289 14.1849 7.97622 13.9716 7.97622 13.7084Z%27 fill=%27%23575757%27/%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M4.22701 5.18014C4.49492 4.91223 4.85828 4.76172 5.23717 4.76172H7.14193C7.52081 4.76172 7.88417 4.91223 8.15208 5.18014C8.41999 5.44805 8.5705 5.81141 8.5705 6.19029V7.26872C8.5705 7.6476 8.41999 8.01097 8.15208 8.27887C7.88417 8.54678 7.52081 8.69729 7.14193 8.69729H5.23717C4.85828 8.69729 4.49492 8.54678 4.22701 8.27887C3.9591 8.01097 3.80859 7.6476 3.80859 7.26872V6.19029C3.80859 5.81141 3.9591 5.44805 4.22701 5.18014ZM5.23717 5.7141C5.11087 5.7141 4.98975 5.76427 4.90045 5.85357C4.81114 5.94288 4.76097 6.064 4.76097 6.19029V7.26872C4.76097 7.39501 4.81114 7.51614 4.90045 7.60544C4.98975 7.69474 5.11087 7.74491 5.23717 7.74491H7.14193C7.26822 7.74491 7.38934 7.69474 7.47864 7.60544C7.56795 7.51614 7.61812 7.39501 7.61812 7.26872V6.19029C7.61812 6.064 7.56795 5.94288 7.47864 5.85357C7.38934 5.76427 7.26822 5.7141 7.14193 5.7141H5.23717ZM9.9413 5.18014C10.2092 4.91223 10.5726 4.76172 10.9515 4.76172H14.761C15.1399 4.76172 15.5032 4.91223 15.7711 5.18014C16.039 5.44805 16.1895 5.81141 16.1895 6.19029V7.26872C16.1895 7.6476 16.039 8.01096 15.7711 8.27887C15.5032 8.54678 15.1399 8.69729 14.761 8.69729H10.9515C10.5726 8.69729 10.2092 8.54678 9.9413 8.27887C9.67339 8.01097 9.52288 7.6476 9.52288 7.26872V6.19029C9.52288 5.81141 9.67339 5.44805 9.9413 5.18014ZM10.9515 5.7141C10.8252 5.7141 10.704 5.76427 10.6147 5.85357C10.5254 5.94288 10.4753 6.064 10.4753 6.19029V7.26872C10.4753 7.39501 10.5254 7.51614 10.6147 7.60544C10.704 7.69474 10.8252 7.74491 10.9515 7.74491H14.761C14.8873 7.74491 15.0084 7.69474 15.0977 7.60544C15.187 7.51614 15.2372 7.39502 15.2372 7.26872V6.19029C15.2372 6.064 15.187 5.94288 15.0977 5.85357C15.0084 5.76427 14.8873 5.7141 14.761 5.7141H10.9515Z%27 fill=%27%23575757%27/%3E%3C/svg%3E%0A");
}
.svg-icon.something-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2725%27 height=%2725%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M2.60166 3.5543C3.04818 3.10778 3.65378 2.85693 4.28525 2.85693H15.7138C16.3453 2.85693 16.9509 3.10778 17.3974 3.5543C17.8439 4.00081 18.0948 4.60642 18.0948 5.23789V13.8093C18.0948 14.4408 17.8439 15.0464 17.3974 15.4929C16.9509 15.9394 16.3453 16.1903 15.7138 16.1903H4.28525C3.65378 16.1903 3.04818 15.9394 2.60166 15.4929C2.15515 15.0464 1.9043 14.4408 1.9043 13.8093V5.23789C1.9043 4.60642 2.15515 4.00081 2.60166 3.5543ZM4.28525 3.80931C3.90637 3.80931 3.54301 3.95982 3.2751 4.22773C3.00719 4.49564 2.85668 4.85901 2.85668 5.23789V13.8093C2.85668 14.1882 3.00719 14.5516 3.2751 14.8195C3.54301 15.0874 3.90637 15.2379 4.28525 15.2379H15.7138C16.0927 15.2379 16.4561 15.0874 16.724 14.8195C16.9919 14.5516 17.1424 14.1882 17.1424 13.8093V5.23789C17.1424 4.85901 16.9919 4.49564 16.724 4.22773C16.4561 3.95982 16.0927 3.80931 15.7138 3.80931H4.28525Z%27 fill=%27%23575757%27/%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M3.93555 11.5824C3.93555 11.3193 4.14887 11.106 4.41202 11.106H10.7355C10.9987 11.106 11.212 11.3193 11.212 11.5824C11.212 11.8456 10.9987 12.0589 10.7355 12.0589H4.41202C4.14887 12.0589 3.93555 11.8456 3.93555 11.5824ZM12.0238 11.5824C12.0238 11.3193 12.2371 11.106 12.5003 11.106H15.5885C15.8516 11.106 16.065 11.3193 16.065 11.5824C16.065 11.8456 15.8516 12.0589 15.5885 12.0589H12.5003C12.2371 12.0589 12.0238 11.8456 12.0238 11.5824Z%27 fill=%27%23575757%27/%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M16.0645 13.641C16.0645 13.3779 15.8511 13.1646 15.588 13.1646H9.26445C9.00131 13.1646 8.78798 13.3779 8.78798 13.641C8.78798 13.9042 9.00131 14.1175 9.26445 14.1175H15.588C15.8511 14.1175 16.0645 13.9042 16.0645 13.641ZM7.97622 13.641C7.97622 13.3779 7.76289 13.1646 7.49975 13.1646H4.41151C4.14837 13.1646 3.93504 13.3779 3.93504 13.641C3.93504 13.9042 4.14837 14.1175 4.41151 14.1175H7.49975C7.76289 14.1175 7.97622 13.9042 7.97622 13.641Z%27 fill=%27%23575757%27/%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M3.93555 7.46475C3.93555 7.2016 4.14887 6.98828 4.41202 6.98828H10.7355C10.9987 6.98828 11.212 7.2016 11.212 7.46475C11.212 7.7279 10.9987 7.94122 10.7355 7.94122H4.41202C4.14887 7.94122 3.93555 7.7279 3.93555 7.46475ZM12.0238 7.46475C12.0238 7.2016 12.2371 6.98828 12.5003 6.98828H15.5885C15.8516 6.98828 16.065 7.2016 16.065 7.46475C16.065 7.7279 15.8516 7.94122 15.5885 7.94122H12.5003C12.2371 7.94122 12.0238 7.7279 12.0238 7.46475Z%27 fill=%27%23575757%27/%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M16.0645 9.52335C16.0645 9.2602 15.8511 9.04688 15.588 9.04688H9.26445C9.00131 9.04688 8.78798 9.2602 8.78798 9.52335C8.78798 9.78649 9.00131 9.99982 9.26445 9.99982H15.588C15.8511 9.99982 16.0645 9.78649 16.0645 9.52335ZM7.97622 9.52335C7.97622 9.2602 7.76289 9.04688 7.49975 9.04688H4.41151C4.14837 9.04688 3.93504 9.2602 3.93504 9.52335C3.93504 9.78649 4.14837 9.99982 4.41151 9.99982H7.49975C7.76289 9.99982 7.97622 9.78649 7.97622 9.52335Z%27 fill=%27%23575757%27/%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M16.0645 5.40616C16.0645 5.14301 15.8511 4.92969 15.588 4.92969H9.26445C9.00131 4.92969 8.78798 5.14301 8.78798 5.40616C8.78798 5.66931 9.00131 5.88263 9.26445 5.88263H15.588C15.8511 5.88263 16.0645 5.66931 16.0645 5.40616ZM7.97622 5.40616C7.97622 5.14301 7.76289 4.92969 7.49975 4.92969H4.41151C4.14837 4.92969 3.93504 5.14301 3.93504 5.40616C3.93504 5.66931 4.14837 5.88263 4.41151 5.88263H7.49975C7.76289 5.88263 7.97622 5.66931 7.97622 5.40616Z%27 fill=%27%23575757%27/%3E%3C/svg%3E%0A");
}
.svg-icon.folder-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2716%27 viewBox=%270 0 16 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M14.6666 12.6667V6C14.6666 5.64638 14.5262 5.30724 14.2761 5.05719C14.0261 4.80714 13.6869 4.66667 13.3333 4.66667H8.82398C8.57632 4.66666 8.33355 4.59767 8.1229 4.46744C7.91224 4.33721 7.74202 4.15088 7.63131 3.92933L7.03531 2.73733C6.92456 2.51569 6.75423 2.32929 6.54345 2.19905C6.33266 2.06881 6.08975 1.99988 5.84198 2H2.66665C2.31302 2 1.97389 2.14048 1.72384 2.39052C1.47379 2.64057 1.33331 2.97971 1.33331 3.33333V12.6667C1.33331 13.0203 1.47379 13.3594 1.72384 13.6095C1.97389 13.8595 2.31302 14 2.66665 14H13.3333C13.6869 14 14.0261 13.8595 14.2761 13.6095C14.5262 13.3594 14.6666 13.0203 14.6666 12.6667Z%27 stroke=%27%23575757%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");
}
.svg-icon.dashboard-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2725%27 height=%2725%27 viewBox=%270 0 25 25%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M4.56589 4.54995C4.56147 4.54995 4.55723 4.55171 4.5541 4.55483C4.55097 4.55796 4.54922 4.5622 4.54922 4.56662V10.0444C4.54922 10.0488 4.55098 10.0531 4.5541 10.0562C4.55722 10.0593 4.56146 10.0611 4.56589 10.0611H10.0437C10.0481 10.0611 10.0523 10.0593 10.0554 10.0562C10.0586 10.0531 10.0603 10.0488 10.0603 10.0444V4.56662C10.0603 4.5622 10.0586 4.55796 10.0554 4.55483C10.0523 4.55171 10.0481 4.54995 10.0437 4.54995H4.56589ZM3.77628 3.77702C3.9857 3.5676 4.26973 3.44995 4.56589 3.44995H10.0437C10.3398 3.44995 10.6239 3.5676 10.8333 3.77702C11.0427 3.98643 11.1603 4.27046 11.1603 4.56662V10.0444C11.1603 10.3406 11.0427 10.6246 10.8333 10.834C10.6238 11.0434 10.3398 11.1611 10.0437 11.1611H4.56589C4.26973 11.1611 3.9857 11.0434 3.77628 10.834C3.56687 10.6246 3.44922 10.3406 3.44922 10.0444V4.56662C3.44922 4.27046 3.56687 3.98643 3.77628 3.77702ZM14.9548 4.54995C14.9504 4.54995 14.9461 4.55171 14.943 4.55483C14.9399 4.55796 14.9381 4.5622 14.9381 4.56662V10.0444C14.9381 10.0488 14.9399 10.0531 14.943 10.0562C14.9461 10.0593 14.9504 10.0611 14.9548 10.0611H20.4326C20.437 10.0611 20.4412 10.0593 20.4443 10.0562C20.4475 10.0531 20.4492 10.0488 20.4492 10.0444V4.56662C20.4492 4.5622 20.4475 4.55796 20.4443 4.55483C20.4412 4.55171 20.437 4.54995 20.4326 4.54995H14.9548ZM14.1652 3.77702C14.3746 3.5676 14.6586 3.44995 14.9548 3.44995H20.4326C20.7287 3.44995 21.0127 3.5676 21.2222 3.77702C21.4316 3.98643 21.5492 4.27046 21.5492 4.56662V10.0444C21.5492 10.3406 21.4316 10.6246 21.2222 10.834C21.0127 11.0434 20.7287 11.1611 20.4326 11.1611H14.9548C14.6586 11.1611 14.3746 11.0434 14.1652 10.834C13.9558 10.6246 13.8381 10.3406 13.8381 10.0444V4.56662C13.8381 4.27046 13.9558 3.98643 14.1652 3.77702ZM4.56589 14.9388C4.56146 14.9388 4.55723 14.9406 4.5541 14.9437C4.55098 14.9468 4.54922 14.9511 4.54922 14.9555V20.4333C4.54922 20.4377 4.55097 20.4419 4.5541 20.4451C4.55723 20.4482 4.56147 20.45 4.56589 20.45H10.0437C10.0481 20.45 10.0523 20.4482 10.0554 20.4451C10.0586 20.4419 10.0603 20.4377 10.0603 20.4333V14.9555C10.0603 14.9511 10.0586 14.9468 10.0554 14.9437C10.0523 14.9406 10.0481 14.9388 10.0437 14.9388H4.56589ZM3.77628 14.1659C3.9857 13.9565 4.26973 13.8388 4.56589 13.8388H10.0437C10.3398 13.8388 10.6238 13.9565 10.8333 14.1659C11.0427 14.3753 11.1603 14.6594 11.1603 14.9555V20.4333C11.1603 20.7294 11.0427 21.0135 10.8333 21.2229C10.6239 21.4323 10.3398 21.5499 10.0437 21.5499H4.56589C4.26972 21.5499 3.9857 21.4323 3.77628 21.2229C3.56687 21.0135 3.44922 20.7294 3.44922 20.4333V14.9555C3.44922 14.6593 3.56687 14.3753 3.77628 14.1659ZM14.9548 14.9388C14.9504 14.9388 14.9461 14.9406 14.943 14.9437C14.9399 14.9468 14.9381 14.9511 14.9381 14.9555V20.4333C14.9381 20.4377 14.9399 20.4419 14.943 20.4451C14.9461 20.4482 14.9504 20.45 14.9548 20.45H20.4326C20.437 20.45 20.4412 20.4482 20.4443 20.4451C20.4475 20.4419 20.4492 20.4377 20.4492 20.4333V14.9555C20.4492 14.9511 20.4475 14.9468 20.4443 14.9437C20.4412 14.9406 20.437 14.9388 20.4326 14.9388H14.9548ZM14.1652 14.1659C14.3746 13.9565 14.6586 13.8388 14.9548 13.8388H20.4326C20.7287 13.8388 21.0127 13.9565 21.2222 14.1659C21.4316 14.3753 21.5492 14.6593 21.5492 14.9555V20.4333C21.5492 20.7294 21.4316 21.0135 21.2222 21.2229C21.0127 21.4323 20.7287 21.5499 20.4326 21.5499H14.9548C14.6586 21.5499 14.3746 21.4323 14.1652 21.2229C13.9558 21.0135 13.8381 20.7294 13.8381 20.4333V14.9555C13.8381 14.6594 13.9558 14.3753 14.1652 14.1659Z%27 fill=%27%23575757%27/%3E%3C/svg%3E%0A");
}
.svg-icon.fullscreen-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2725%27 height=%2725%27 viewBox=%270 0 25 25%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M4.13561 4.13561C4.6964 3.57481 5.45699 3.25977 6.25007 3.25977H18.7501C19.5431 3.25977 20.3037 3.57481 20.8645 4.13561C21.4253 4.6964 21.7404 5.45699 21.7404 6.25007V18.7501C21.7404 19.5431 21.4253 20.3037 20.8645 20.8645C20.3037 21.4253 19.5431 21.7404 18.7501 21.7404H6.25007C5.45699 21.7404 4.6964 21.4253 4.13561 20.8645C3.57481 20.3037 3.25977 19.5431 3.25977 18.7501V6.25007C3.25977 5.45699 3.57481 4.6964 4.13561 4.13561ZM6.25007 4.55287C5.79994 4.55287 5.36825 4.73168 5.04997 5.04997C4.73168 5.36825 4.55287 5.79994 4.55287 6.25007V18.7501C4.55287 19.2002 4.73168 19.6319 5.04997 19.9502C5.36825 20.2685 5.79994 20.4473 6.25007 20.4473H18.7501C19.2002 20.4473 19.6319 20.2685 19.9502 19.9502C20.2685 19.6319 20.4473 19.2002 20.4473 18.7501V6.25007C20.4473 5.79994 20.2685 5.36825 19.9502 5.04997C19.6319 4.73168 19.2002 4.55287 18.7501 4.55287H6.25007Z%27 fill=%27%23575757%27/%3E%3Cpath d=%27M16.5477 10.0345C16.3261 9.79981 15.9527 9.79981 15.7311 10.0345C15.5271 10.2506 15.5268 10.5881 15.7304 10.8046L16.7795 11.9202H8.22048L9.26963 10.8046C9.47319 10.5881 9.47286 10.2506 9.26889 10.0345C9.04731 9.79981 8.67392 9.79981 8.45234 10.0345L6.125 12.4998L8.45234 14.965C8.67392 15.1997 9.04731 15.1997 9.26889 14.965C9.47286 14.749 9.47319 14.4114 9.26964 14.195L8.22048 13.0793H16.7795L15.7304 14.195C15.5268 14.4114 15.5271 14.749 15.7311 14.965C15.9527 15.1997 16.3261 15.1997 16.5477 14.965L18.875 12.4998L16.5477 10.0345Z%27 fill=%27%23575757%27/%3E%3C/svg%3E%0A");
}
.svg-icon.copy-link-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2725%27 height=%2725%27 viewBox=%270 0 25 25%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M4.19528 4.1943C4.67297 3.71661 5.32086 3.44824 5.99641 3.44824H16.6442C17.3197 3.44824 17.9676 3.71661 18.4453 4.1943C18.923 4.67199 19.1913 5.31988 19.1913 5.99544V16.6432C19.1913 17.3187 18.923 17.9666 18.4453 18.4443C17.9676 18.922 17.3197 19.1904 16.6442 19.1904H5.99641C5.32086 19.1904 4.67297 18.922 4.19528 18.4443C3.71758 17.9666 3.44922 17.3187 3.44922 16.6432V5.99544C3.44922 5.31988 3.71758 4.67199 4.19528 4.1943ZM5.99641 4.54973C5.61299 4.54973 5.24527 4.70205 4.97415 4.97317C4.70302 5.24429 4.55071 5.61201 4.55071 5.99544V16.6432C4.55071 17.0266 4.70302 17.3943 4.97415 17.6654C5.24527 17.9366 5.61299 18.0889 5.99641 18.0889H16.6442C17.0276 18.0889 17.3953 17.9366 17.6664 17.6654C17.9375 17.3943 18.0899 17.0266 18.0899 16.6432V5.99544C18.0899 5.61201 17.9375 5.24429 17.6664 4.97317C17.3953 4.70205 17.0276 4.54973 16.6442 4.54973H5.99641Z%27 fill=%27%23575757%27/%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M18.4547 6.36032C18.4547 6.05615 18.7013 5.80957 19.0055 5.80957C19.681 5.80957 20.3289 6.07794 20.8066 6.55563C21.2843 7.03332 21.5527 7.68121 21.5527 8.35677V19.0045C21.5527 19.6801 21.2843 20.328 20.8066 20.8056C20.3289 21.2833 19.681 21.5517 19.0055 21.5517H8.35774C7.68218 21.5517 7.0343 21.2833 6.5566 20.8056C6.07891 20.328 5.81055 19.6801 5.81055 19.0045C5.81055 18.7003 6.05712 18.4538 6.36129 18.4538C6.66546 18.4538 6.91204 18.7003 6.91204 19.0045C6.91204 19.3879 7.06435 19.7557 7.33547 20.0268C7.6066 20.2979 7.97432 20.4502 8.35774 20.4502H19.0055C19.3889 20.4502 19.7566 20.2979 20.0278 20.0268C20.2989 19.7557 20.4512 19.3879 20.4512 19.0045V8.35677C20.4512 7.97334 20.2989 7.60562 20.0278 7.3345C19.7566 7.06338 19.3889 6.91106 19.0055 6.91106C18.7013 6.91106 18.4547 6.66448 18.4547 6.36032Z%27 fill=%27%23575757%27/%3E%3Cpath d=%27M10.2953 11.7053C10.5003 11.9003 10.5003 12.2203 10.2953 12.4153C10.1003 12.6103 9.78025 12.6103 9.58525 12.4153C9.11694 11.9462 8.85391 11.3105 8.85391 10.6478C8.85391 9.98496 9.11694 9.34927 9.58525 8.88025L11.3553 7.11025C11.8243 6.64194 12.46 6.37891 13.1228 6.37891C13.7855 6.37891 14.4212 6.64194 14.8903 7.11025C15.3586 7.57927 15.6216 8.21496 15.6216 8.87775C15.6216 9.54054 15.3586 10.1762 14.8903 10.6453L14.1453 11.3903C14.1503 10.9803 14.0853 10.5703 13.9453 10.1803L14.1803 9.94025C14.3204 9.8016 14.4317 9.63652 14.5076 9.45457C14.5836 9.27262 14.6227 9.07741 14.6227 8.88025C14.6227 8.68309 14.5836 8.48789 14.5076 8.30594C14.4317 8.12399 14.3204 7.95891 14.1803 7.82025C14.0416 7.68008 13.8765 7.56881 13.6946 7.49286C13.5126 7.41692 13.3174 7.37781 13.1203 7.37781C12.9231 7.37781 12.7279 7.41692 12.5459 7.49286C12.364 7.56881 12.1989 7.68008 12.0603 7.82025L10.2953 9.58525C10.1551 9.72391 10.0438 9.88899 9.96786 10.0709C9.89192 10.2529 9.85281 10.4481 9.85281 10.6453C9.85281 10.8424 9.89192 11.0376 9.96786 11.2196C10.0438 11.4015 10.1551 11.5666 10.2953 11.7053ZM11.7053 9.58525C11.9003 9.39025 12.2203 9.39025 12.4153 9.58525C12.8836 10.0543 13.1466 10.69 13.1466 11.3528C13.1466 12.0155 12.8836 12.6512 12.4153 13.1203L10.6453 14.8903C10.1762 15.3586 9.54054 15.6216 8.87775 15.6216C8.21496 15.6216 7.57927 15.3586 7.11025 14.8903C6.64194 14.4212 6.37891 13.7855 6.37891 13.1228C6.37891 12.46 6.64194 11.8243 7.11025 11.3553L7.85525 10.6103C7.85025 11.0203 7.91525 11.4303 8.05525 11.8253L7.82025 12.0603C7.68008 12.1989 7.56881 12.364 7.49286 12.5459C7.41692 12.7279 7.37781 12.9231 7.37781 13.1203C7.37781 13.3174 7.41692 13.5126 7.49286 13.6946C7.56881 13.8765 7.68008 14.0416 7.82025 14.1803C7.95891 14.3204 8.12399 14.4317 8.30594 14.5076C8.48789 14.5836 8.68309 14.6227 8.88025 14.6227C9.07741 14.6227 9.27262 14.5836 9.45457 14.5076C9.63652 14.4317 9.8016 14.3204 9.94025 14.1803L11.7053 12.4153C11.8454 12.2766 11.9567 12.1115 12.0326 11.9296C12.1086 11.7476 12.1477 11.5524 12.1477 11.3553C12.1477 11.1581 12.1086 10.9629 12.0326 10.7809C11.9567 10.599 11.8454 10.4339 11.7053 10.2953C11.6567 10.2497 11.618 10.1948 11.5915 10.1337C11.5651 10.0726 11.5514 10.0068 11.5514 9.94025C11.5514 9.8737 11.5651 9.80786 11.5915 9.7468C11.618 9.68574 11.6567 9.63076 11.7053 9.58525Z%27 fill=%27%23575757%27/%3E%3C/svg%3E%0A");
}
.svg-icon.copy-embed-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2725%27 height=%2725%27 viewBox=%270 0 25 25%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M4.19528 4.1943C4.67297 3.71661 5.32086 3.44824 5.99641 3.44824H16.6442C17.3197 3.44824 17.9676 3.71661 18.4453 4.1943C18.923 4.67199 19.1913 5.31988 19.1913 5.99544V16.6432C19.1913 17.3187 18.923 17.9666 18.4453 18.4443C17.9676 18.922 17.3197 19.1904 16.6442 19.1904H5.99641C5.32086 19.1904 4.67297 18.922 4.19528 18.4443C3.71758 17.9666 3.44922 17.3187 3.44922 16.6432V5.99544C3.44922 5.31988 3.71758 4.67199 4.19528 4.1943ZM5.99641 4.54973C5.61299 4.54973 5.24527 4.70205 4.97415 4.97317C4.70302 5.24429 4.55071 5.61201 4.55071 5.99544V16.6432C4.55071 17.0266 4.70302 17.3943 4.97415 17.6654C5.24527 17.9366 5.61299 18.0889 5.99641 18.0889H16.6442C17.0276 18.0889 17.3953 17.9366 17.6664 17.6654C17.9375 17.3943 18.0899 17.0266 18.0899 16.6432V5.99544C18.0899 5.61201 17.9375 5.24429 17.6664 4.97317C17.3953 4.70205 17.0276 4.54973 16.6442 4.54973H5.99641Z%27 fill=%27%23575757%27/%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M18.4547 6.36032C18.4547 6.05615 18.7013 5.80957 19.0055 5.80957C19.681 5.80957 20.3289 6.07794 20.8066 6.55563C21.2843 7.03332 21.5527 7.68121 21.5527 8.35677V19.0045C21.5527 19.6801 21.2843 20.328 20.8066 20.8056C20.3289 21.2833 19.681 21.5517 19.0055 21.5517H8.35774C7.68218 21.5517 7.0343 21.2833 6.5566 20.8056C6.07891 20.328 5.81055 19.6801 5.81055 19.0045C5.81055 18.7003 6.05712 18.4538 6.36129 18.4538C6.66546 18.4538 6.91204 18.7003 6.91204 19.0045C6.91204 19.3879 7.06435 19.7557 7.33547 20.0268C7.6066 20.2979 7.97432 20.4502 8.35774 20.4502H19.0055C19.3889 20.4502 19.7566 20.2979 20.0278 20.0268C20.2989 19.7557 20.4512 19.3879 20.4512 19.0045V8.35677C20.4512 7.97334 20.2989 7.60562 20.0278 7.3345C19.7566 7.06338 19.3889 6.91106 19.0055 6.91106C18.7013 6.91106 18.4547 6.66448 18.4547 6.36032Z%27 fill=%27%23575757%27/%3E%3Cpath d=%27M7.943 9.0823C8.0865 8.93176 8.32675 8.9319 8.47008 9.0826C8.60354 9.22294 8.6037 9.44323 8.47045 9.58376L6.82473 11.3193L8.47045 13.0549C8.6037 13.1954 8.60354 13.4157 8.47008 13.5561C8.32675 13.7068 8.0865 13.7069 7.943 13.5564L5.81055 11.3193L7.943 9.0823ZM14.151 9.0826C14.2943 8.9319 14.5346 8.93176 14.6781 9.0823L16.8105 11.3193L14.6781 13.5564C14.5346 13.7069 14.2943 13.7068 14.151 13.5561C14.0176 13.4157 14.0174 13.1954 14.1506 13.0549L15.7964 11.3193L14.1506 9.58376C14.0174 9.44323 14.0176 9.22294 14.151 9.0826ZM9.99683 15.8193C9.75611 15.8193 9.58482 15.5854 9.65757 15.3559L12.285 7.06769C12.3319 6.91981 12.4691 6.81934 12.6243 6.81934C12.865 6.81934 13.0363 7.05332 12.9635 7.28278L10.3361 15.571C10.2892 15.7189 10.152 15.8193 9.99683 15.8193Z%27 fill=%27%23575757%27/%3E%3C/svg%3E%0A");
}
.svg-icon.external-view-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2725%27 height=%2725%27 viewBox=%270 0 25 25%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M6.46028 5.46604C6.19646 5.46604 5.94345 5.57084 5.7569 5.75739C5.57035 5.94393 5.46555 6.19695 5.46555 6.46077V18.5396C5.46555 18.8034 5.57035 19.0565 5.7569 19.243C5.94345 19.4296 6.19646 19.5344 6.46028 19.5344H18.5391C18.803 19.5344 19.056 19.4296 19.2425 19.243C19.4291 19.0565 19.5339 18.8034 19.5339 18.5396V14.2257C19.5339 13.8221 19.8611 13.4949 20.2647 13.4949C20.6683 13.4949 20.9955 13.8221 20.9955 14.2257V18.5396C20.9955 19.1911 20.7367 19.8159 20.2761 20.2765C19.8154 20.7372 19.1906 20.996 18.5391 20.996H6.46028C5.80881 20.996 5.18402 20.7372 4.72336 20.2765C4.2627 19.8159 4.00391 19.1911 4.00391 18.5396V6.46077C4.00391 5.8093 4.2627 5.18451 4.72336 4.72385C5.18402 4.26319 5.80881 4.00439 6.46028 4.00439H10.7742C11.1778 4.00439 11.505 4.33159 11.505 4.73522C11.505 5.13884 11.1778 5.46604 10.7742 5.46604H6.46028ZM15.22 4.73522C15.22 4.33159 15.5472 4.00439 15.9508 4.00439H20.2647C20.6683 4.00439 20.9955 4.33159 20.9955 4.73522V9.04909C20.9955 9.45272 20.6683 9.77992 20.2647 9.77992C19.8611 9.77992 19.5339 9.45272 19.5339 9.04909V6.49957L14.3106 11.7228C14.0252 12.0082 13.5625 12.0082 13.2771 11.7228C12.9917 11.4374 12.9917 10.9747 13.2771 10.6893L18.5003 5.46604H15.9508C15.5472 5.46604 15.22 5.13884 15.22 4.73522Z%27 fill=%27%23575757%27/%3E%3C/svg%3E%0A");
}
.svg-icon.app-view-icon {
  mask-image: url("data:image/svg+xml,%3Csvg width=%2725%27 height=%2725%27 viewBox=%270 0 25 25%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M18.5012 5.45068C18.7655 5.45068 19.0191 5.55571 19.2061 5.74266C19.393 5.92962 19.4981 6.18318 19.4981 6.44758V18.5528C19.4981 18.8172 19.393 19.0708 19.2061 19.2577C19.0191 19.4447 18.7655 19.5497 18.5012 19.5497H6.39591C6.13152 19.5497 5.87795 19.4447 5.691 19.2577C5.50404 19.0708 5.39901 18.8172 5.39901 18.5528V16.0606C5.39901 15.6561 5.07109 15.3281 4.66659 15.3281C4.26209 15.3281 3.93417 15.6561 3.93417 16.0606V18.5528C3.93417 19.2057 4.19354 19.8319 4.6552 20.2935C5.11686 20.7552 5.74302 21.0146 6.39591 21.0146H18.5012C19.154 21.0146 19.7802 20.7552 20.2419 20.2935C20.7035 19.8319 20.9629 19.2057 20.9629 18.5528V6.44758C20.9629 5.79468 20.7035 5.16853 20.2419 4.70687C19.7802 4.2452 19.154 3.98584 18.5012 3.98584L11.3492 3.98584C10.9447 3.98584 10.6168 4.31375 10.6168 4.71826C10.6168 5.12276 10.9447 5.45068 11.3492 5.45068H18.5012Z%27 fill=%27%23575757%27/%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M18.5012 19.5498C18.7655 19.5498 19.0191 19.4448 19.2061 19.2578C19.393 19.0709 19.4981 18.8173 19.4981 18.5529V6.44767C19.4981 6.18327 19.393 5.92971 19.2061 5.74275C19.0191 5.5558 18.7655 5.45077 18.5012 5.45077H6.39591C6.13152 5.45077 5.87795 5.5558 5.691 5.74275C5.50404 5.92971 5.39901 6.18327 5.39901 6.44767V8.93992C5.39901 9.34443 5.07109 9.67234 4.66659 9.67234C4.26209 9.67234 3.93417 9.34443 3.93417 8.93992V6.44767C3.93417 5.79477 4.19354 5.16862 4.6552 4.70696C5.11686 4.24529 5.74302 3.98593 6.39591 3.98593H18.5012C19.154 3.98593 19.7802 4.24529 20.2419 4.70696C20.7035 5.16862 20.9629 5.79478 20.9629 6.44767V18.5529C20.9629 19.2058 20.7035 19.832 20.2419 20.2936C19.7802 20.7553 19.154 21.0146 18.5012 21.0146L5.85605 21.0146C5.45155 21.0146 5.12364 20.6867 5.12364 20.2822C5.12364 19.8777 5.45155 19.5498 5.85605 19.5498H18.5012Z%27 fill=%27%23575757%27/%3E%3Cpath d=%27M9.4696 8.59573C9.75563 8.30971 10.2194 8.30971 10.5054 8.59573L13.5624 11.6528C13.8485 11.9388 13.8485 12.4025 13.5624 12.6886L10.5054 15.7456C10.2194 16.0316 9.75563 16.0316 9.4696 15.7456C9.18358 15.4596 9.18358 14.9958 9.4696 14.7098L11.2763 12.9031L3.87343 12.9031C3.46893 12.9031 3.14101 12.5752 3.14101 12.1707C3.14101 11.7662 3.46893 11.4382 3.87343 11.4382L11.2763 11.4382L9.4696 9.63153C9.18358 9.3455 9.18358 8.88176 9.4696 8.59573Z%27 fill=%27%23575757%27/%3E%3C/svg%3E%0A");
}
.svg-icon.passkey-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2720%27 height=%2720%27 viewBox=%270 0 16 16%27%3E%3Cpath d=%27M2.743 4.757a3.757 3.757 0 1 1 5.851 3.119 5.991 5.991 0 0 1 2.15 1.383c.17.17.257.405.258.646.003.598.001 1.197 0 1.795L11 12.778v.721a.5.5 0 0 1-.5.5H1.221a.749.749 0 0 1-.714-.784 6.004 6.004 0 0 1 3.899-5.339 3.754 3.754 0 0 1-1.663-3.119Z%27/%3E%3Cpath d=%27M15.75 6.875c0 .874-.448 1.643-1.127 2.09a.265.265 0 0 0-.123.22v.59c0 .067-.026.13-.073.177l-.356.356a.125.125 0 0 0 0 .177l.356.356c.047.047.073.11.073.176v.231c0 .067-.026.13-.073.177l-.356.356a.125.125 0 0 0 0 .177l.356.356c.047.047.073.11.073.177v.287a.247.247 0 0 1-.065.168l-.8.88a.52.52 0 0 1-.77 0l-.8-.88a.247.247 0 0 1-.065-.168V9.185a.264.264 0 0 0-.123-.22 2.5 2.5 0 1 1 3.873-2.09ZM14 6.5a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Z%27/%3E%3C/svg%3E");
}
.svg-icon.file-history-icon {
  mask-image: url("data:image/svg+xml,%0A%3Csvg id=%27svg64%27 enable-background=%27new 0 0 256 256%27 version=%271.1%27 viewBox=%270 0 256 256%27 xml:space=%27preserve%27 width=%2720%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg id=%27g62%27 transform=%27matrix%28.83212 0 0 .83212 18.187 19.711%29%27%3E%3Cg id=%27g60%27 fill=%27%23000000%27%3E%3Cpath id=%27path56%27 d=%27m120.6 54.2c-4.1 0-7.4 3.3-7.4 7.4v73.8c0 4.1 3.3 7.4 7.4 7.4h59c4.1 0 7.4-3.3 7.4-7.4s-3.3-7.4-7.4-7.4h-51.6v-66.4c0-4.1-3.3-7.4-7.4-7.4z%27/%3E%3Cpath id=%27path58%27 d=%27m236.8 82.1c-5.9-14.1-14.4-26.7-25.3-37.5-10.9-10.9-23.5-19.4-37.5-25.3-14.6-6.2-30-9.3-46-9.3-24.3 0-47.6 7.3-67.5 21.2-9.5 6.6-18 14.6-25.2 23.8-3.9 5-7.5 10.3-10.5 15.8v-24c0-4.1-3.3-7.4-7.4-7.4s-7.4 3.3-7.4 7.4v44.3c0 4.1 3.3 7.4 7.4 7.4h36.9c4.1 0 7.4-3.3 7.4-7.4s-3.3-7.4-7.4-7.4h-19.6c16.9-35.6 53.5-59 93.3-59 56.9 0 103.3 46.3 103.3 103.3 0 56.9-46.3 103.2-103.2 103.2-51.8 0-95.8-38.7-102.4-90-0.5-4-4.2-6.9-8.3-6.4-4 0.5-6.9 4.2-6.4 8.3 3.6 28.2 17.4 54.2 38.8 73.2 21.6 19.2 49.3 29.7 78.2 29.7 15.9 0 31.4-3.1 45.9-9.3 14.1-5.9 26.7-14.4 37.5-25.3 10.8-10.8 19.3-23.5 25.3-37.5 6.2-14.5 9.3-30 9.3-45.9s-3.1-31.4-9.2-45.9z%27/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.svg-icon.back-icon {
  mask-image: url("data:image/svg+xml, %3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 16 16%27 fill=%27currentColor%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 d=%27M15 8a.5.5 0 0 0-.5-.5H2.707l3.147-3.146a.5.5 0 1 0-.708-.708l-4 4a.5.5 0 0 0 0 .708l4 4a.5.5 0 0 0 .708-.708L2.707 8.5H14.5A.5.5 0 0 0 15 8z%27/%3E%3C/svg%3E");
}
.svg-icon.lock-icon {
  mask-image: url("data:image/svg+xml, %3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2716%27 height=%2716%27 fill=%27currentColor%27 viewBox=%270 0 16 16%27%3E%3Cpath d=%27M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2z%27/%3E%3C/svg%3E");
}
.svg-icon.unlock-icon {
  mask-image: url("data:image/svg+xml, %3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2716%27 height=%2716%27 fill=%27currentColor%27 viewBox=%270 0 16 16%27%3E%3Cpath d=%27M11 1a2 2 0 0 0-2 2v4a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h5V3a3 3 0 0 1 6 0v4a.5.5 0 0 1-1 0V3a2 2 0 0 0-2-2z%27/%3E%3C/svg%3E");
}
.svg-icon.refresh-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 24 24%27 height=%2724%27 width=%2724%27%3E%3Cpath fill=%27%23000000%27 d=%27M12 20c-2.21665 0 -4.10415 -0.77915 -5.6625 -2.3375C4.779165 16.10415 4 14.21665 4 12c0 -2.21665 0.779165 -4.10415 2.3375 -5.6625C7.89585 4.779165 9.78335 4 12 4c1.41665 0 2.65835 0.2875 3.725 0.8625 1.06665 0.575 1.99165 1.3625 2.775 2.3625V4.75c0 -0.216665 0.07085 -0.395835 0.2125 -0.5375 0.14165 -0.141665 0.32085 -0.2125 0.5375 -0.2125 0.21665 0 0.39585 0.070835 0.5375 0.2125 0.14165 0.141665 0.2125 0.320835 0.2125 0.5375v4.85c0 0.21665 -0.07085 0.39585 -0.2125 0.5375s-0.32085 0.2125 -0.5375 0.2125h-4.85c-0.21665 0 -0.39585 -0.07085 -0.5375 -0.2125s-0.2125 -0.32085 -0.2125 -0.5375c0 -0.21665 0.07085 -0.39585 0.2125 -0.5375s0.32085 -0.2125 0.5375 -0.2125h3.45c-0.63335 -1 -1.44165 -1.80835 -2.425 -2.425C14.44165 5.80835 13.3 5.5 12 5.5c-1.81665 0 -3.35415 0.62915 -4.6125 1.8875C6.12915 8.64585 5.5 10.18335 5.5 12c0 1.81665 0.62915 3.35415 1.8875 4.6125C8.64585 17.87085 10.18335 18.5 12 18.5c1.25 0 2.41665 -0.32915 3.5 -0.9875 1.08335 -0.65835 1.89165 -1.54585 2.425 -2.6625 0.08335 -0.18335 0.22085 -0.32085 0.4125 -0.4125 0.19165 -0.09165 0.37915 -0.09585 0.5625 -0.0125 0.2 0.08335 0.33335 0.22085 0.4 0.4125 0.06665 0.19165 0.05835 0.3875 -0.025 0.5875 -0.65 1.4 -1.62915 2.5125 -2.9375 3.3375C15.02915 19.5875 13.58335 20 12 20Z%27 stroke-width=%270.5%27%3E%3C/path%3E%3C/svg%3E");
}
.svg-icon.open-new-window-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23000000%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M5 12V6C5 5.44772 5.44772 5 6 5H18C18.5523 5 19 5.44772 19 6V18C19 18.5523 18.5523 19 18 19H12M8.11111 12H12M12 12V15.8889M12 12L5 19%27/%3E%3C/svg%3E");
}
.svg-icon.mobile-view-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23000000%27 stroke-width=%271%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M12 18H12.01M9.2 21H14.8C15.9201 21 16.4802 21 16.908 20.782C17.2843 20.5903 17.5903 20.2843 17.782 19.908C18 19.4802 18 18.9201 18 17.8V6.2C18 5.0799 18 4.51984 17.782 4.09202C17.5903 3.71569 17.2843 3.40973 16.908 3.21799C16.4802 3 15.9201 3 14.8 3H9.2C8.0799 3 7.51984 3 7.09202 3.21799C6.71569 3.40973 6.40973 3.71569 6.21799 4.09202C6 4.51984 6 5.07989 6 6.2V17.8C6 18.9201 6 19.4802 6.21799 19.908C6.40973 20.2843 6.71569 20.5903 7.09202 20.782C7.51984 21 8.07989 21 9.2 21Z%27/%3E%3C/svg%3E");
}
.svg-icon.mobile-view-active-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23000000%27 stroke-width=%271%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M3 3L21 21M12 18H12.01M6 6V17.8C6 18.9201 6 19.4802 6.21799 19.908C6.40973 20.2843 6.71569 20.5903 7.09202 20.782C7.51984 21 8.0799 21 9.2 21H15C15.9319 21 16.3978 21 16.7654 20.8478C17.2554 20.6448 17.6448 20.2554 17.8478 19.7654C18 19.3978 18 18.9319 18 18M8.6499 3H14.8C15.9201 3 16.4802 3 16.908 3.21799C17.2843 3.40973 17.5903 3.71569 17.782 4.09202C18 4.51984 18 5.0799 18 6.2V12.3501%27/%3E%3C/svg%3E");
}
.svg-icon .google-icon {
  width: 17px;
  height: 17px;
  display: inline-block;
  margin-right: 15px;
  mask-image: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.2627 7.9495H16.625V7.91665H9.5V11.0833H13.9741C13.3214 12.9267 11.5674 14.25 9.5 14.25C6.87681 14.25 4.75 12.1232 4.75 9.49998C4.75 6.87679 6.87681 4.74998 9.5 4.74998C10.7109 4.74998 11.8125 5.20677 12.6512 5.95292L14.8905 3.71369C13.4765 2.39596 11.5853 1.58331 9.5 1.58331C5.12802 1.58331 1.58334 5.128 1.58334 9.49998C1.58334 13.872 5.12802 17.4166 9.5 17.4166C13.872 17.4166 17.4167 13.872 17.4167 9.49998C17.4167 8.96917 17.362 8.45102 17.2627 7.9495Z%27 fill=%27%23FFC107%27/%3E%3Cpath d=%27M2.49612 5.81517L5.09714 7.72269C5.80094 5.98023 7.50539 4.74998 9.5 4.74998C10.7109 4.74998 11.8125 5.20677 12.6512 5.95292L14.8905 3.71369C13.4765 2.39596 11.5852 1.58331 9.5 1.58331C6.45921 1.58331 3.82217 3.30004 2.49612 5.81517Z%27 fill=%27%23FF3D00%27/%3E%3Cpath d=%27M9.5 17.4167C11.5449 17.4167 13.4029 16.6341 14.8077 15.3615L12.3575 13.2882C11.536 13.9129 10.5321 14.2508 9.5 14.25C7.44087 14.25 5.69248 12.937 5.03381 11.1047L2.45219 13.0938C3.76239 15.6576 6.42319 17.4167 9.5 17.4167Z%27 fill=%27%234CAF50%27/%3E%3Cpath d=%27M17.2627 7.94954H16.625V7.91669H9.5V11.0834H13.9741C13.6619 11.9607 13.0995 12.7273 12.3563 13.2885L12.3575 13.2877L14.8077 15.3611C14.6344 15.5187 17.4167 13.4584 17.4167 9.50002C17.4167 8.96921 17.362 8.45106 17.2627 7.94954Z%27 fill=%27%231976D2%27/%3E%3C/svg%3E%0A");
}

.login-page {
  height: 100vh;
  display: flex;
  align-items: center;
}
.login-page .logo {
  background-image: url("data:image/svg+xml,%3Csvg width=%27154%27 height=%2724%27 viewBox=%270 0 154 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg clip-path=%27url%28%23clip0_195_12694%29%27%3E%3Cpath d=%27M29.0179 21.3817V2.65778H35.471C36.9629 2.65778 38.1878 2.90768 39.1451 3.40747C40.1025 3.90117 40.8111 4.58076 41.2713 5.44625C41.7313 6.31175 41.9614 7.2961 41.9614 8.3993C41.9614 9.50251 41.7313 10.4808 41.2713 11.3341C40.8111 12.1874 40.1056 12.8578 39.1545 13.3454C38.2031 13.8269 36.9878 14.0677 35.5081 14.0677H30.2859V12.0198H35.4336C36.4533 12.0198 37.2738 11.8735 37.8956 11.5809C38.5234 11.2884 38.9771 10.8739 39.2571 10.3375C39.5431 9.79507 39.6859 9.14899 39.6859 8.3993C39.6859 7.64962 39.5431 6.9944 39.2571 6.43365C38.9711 5.8729 38.514 5.44016 37.8862 5.1354C37.2582 4.82456 36.4283 4.66913 35.3964 4.66913H31.3305V21.3817H29.0179ZM38.0073 12.9706L42.7074 21.3817H40.0217L35.3964 12.9706H38.0073Z%27 fill=%27%234A4C4F%27/%3E%3Cpath d=%27M46.5983 21.3817H44.1737L51.1863 2.65778H53.5737L60.5863 21.3817H58.1617L52.4546 5.61997H52.3055L46.5983 21.3817ZM47.4936 14.0677H57.2666V16.0791H47.4936V14.0677Z%27 fill=%27%234A4C4F%27/%3E%3Cpath d=%27M60.2857 4.66913V2.65778H74.6092V4.66913H68.6039V21.3817H66.2912V4.66913H60.2857Z%27 fill=%27%234A4C4F%27/%3E%3Cpath d=%27M80.4913 2.65778V21.3817H78.1786V2.65778H80.4913Z%27 fill=%27%234A4C4F%27/%3E%3Cpath d=%27M101.243 12.0198C101.243 13.9946 100.879 15.7012 100.151 17.1396C99.4239 18.578 98.4262 19.6873 97.158 20.4675C95.8897 21.2477 94.4412 21.6378 92.8124 21.6378C91.1836 21.6378 89.735 21.2477 88.4668 20.4675C87.1985 19.6873 86.2006 18.578 85.4733 17.1396C84.7458 15.7012 84.3822 13.9946 84.3822 12.0198C84.3822 10.045 84.7458 8.33837 85.4733 6.89994C86.2006 5.46151 87.1985 4.35221 88.4668 3.57203C89.735 2.79188 91.1836 2.40179 92.8124 2.40179C94.4412 2.40179 95.8897 2.79188 97.158 3.57203C98.4262 4.35221 99.4239 5.46151 100.151 6.89994C100.879 8.33837 101.243 10.045 101.243 12.0198ZM99.0044 12.0198C99.0044 10.3985 98.7278 9.03016 98.1743 7.91477C97.6273 6.79936 96.8845 5.95521 95.9456 5.38227C95.0131 4.80934 93.9687 4.52287 92.8124 4.52287C91.656 4.52287 90.6085 4.80934 89.6696 5.38227C88.7372 5.95521 87.9943 6.79936 87.4408 7.91477C86.8938 9.03016 86.6203 10.3985 86.6203 12.0198C86.6203 13.6411 86.8938 15.0094 87.4408 16.1248C87.9943 17.2402 88.7372 18.0843 89.6696 18.6573C90.6085 19.2302 91.656 19.5167 92.8124 19.5167C93.9687 19.5167 95.0131 19.2302 95.9456 18.6573C96.8845 18.0843 97.6273 17.2402 98.1743 16.1248C98.7278 15.0094 99.0044 13.6411 99.0044 12.0198Z%27 fill=%27%234A4C4F%27/%3E%3Cpath d=%27M120.275 2.65778V21.3817H118.037L107.63 6.6805H107.444V21.3817H105.131V2.65778H107.369L117.814 17.3956H118V2.65778H120.275Z%27 fill=%27%234A4C4F%27/%3E%3Cpath d=%27M125.686 21.3817H123.262L130.274 2.65778H132.662L139.674 21.3817H137.25L131.543 5.61997H131.394L125.686 21.3817ZM126.582 14.0677H136.355V16.0791H126.582V14.0677Z%27 fill=%27%234A4C4F%27/%3E%3Cpath d=%27M142.649 21.3817V2.65778H144.962V19.3704H153.84V21.3817H142.649Z%27 fill=%27%234A4C4F%27/%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M1.78035 1.74545V9.16364H9.34682V1.74545H1.78035ZM0.66763 0C0.298909 0 0 0.293051 0 0.654545V10.2545C0 10.6161 0.298909 10.9091 0.66763 10.9091H10.4595C10.8283 10.9091 11.1272 10.6161 11.1272 10.2545V0.654545C11.1272 0.293051 10.8283 0 10.4595 0H0.66763Z%27 fill=%27%234A4C4F%27/%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M1.78035 14.8363V22.2545H9.34682V14.8363H1.78035ZM0.66763 13.0909C0.298909 13.0909 0 13.3839 0 13.7454V23.3454C0 23.707 0.298909 24 0.66763 24H10.4595C10.8283 24 11.1272 23.707 11.1272 23.3454V13.7454C11.1272 13.3839 10.8283 13.0909 10.4595 13.0909H0.66763Z%27 fill=%27%234A4C4F%27/%3E%3Cpath d=%27M13.3526 13.7454C13.3526 13.3839 13.6515 13.0909 14.0202 13.0909H21.5867C21.9554 13.0909 22.2543 13.3839 22.2543 13.7454V21.1636C22.2543 21.5251 21.9554 21.8182 21.5867 21.8182H14.0202C13.6515 21.8182 13.3526 21.5251 13.3526 21.1636V13.7454Z%27 fill=%27%231768B5%27/%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M15.1329 1.74545V9.16364H22.6994V1.74545H15.1329ZM14.0202 0C13.6515 0 13.3526 0.293051 13.3526 0.654545V10.2545C13.3526 10.6161 13.6515 10.9091 14.0202 10.9091H23.8121C24.1809 10.9091 24.4798 10.6161 24.4798 10.2545V0.654545C24.4798 0.293051 24.1809 0 23.8121 0H14.0202Z%27 fill=%27%234A4C4F%27/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id=%27clip0_195_12694%27%3E%3Crect width=%27154%27 height=%2724%27 fill=%27white%27/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.login-page .login-box {
  max-width: 600px;
  background: var(--rv-secondary-bg);
  box-shadow: 2px 4px 24px rgba(118, 118, 138, 0.1);
  border-radius: 10px;
  padding: 40px;
}
.login-page .login-box .header h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 39px;
  color: var(--rv-body-color);
}
.login-page .login-box .header h2 {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: var(--rv-body-color);
}
.login-page .login-box .login-form {
  padding-top: 20px;
}
.login-page .login-box .forgot-message {
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  text-align: right;
}
.login-page .login-box .forgot-message a {
  display: block;
  color: var(--rv-text-muted);
}
.login-page .login-box button {
  display: block;
  width: 100%;
  margin-top: 20px;
  height: 40px;
}
.login-page .login-box .google-icon {
  width: 17px;
  height: 17px;
  display: inline-block;
  margin-right: 15px;
  background-image: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.2627 7.9495H16.625V7.91665H9.5V11.0833H13.9741C13.3214 12.9267 11.5674 14.25 9.5 14.25C6.87681 14.25 4.75 12.1232 4.75 9.49998C4.75 6.87679 6.87681 4.74998 9.5 4.74998C10.7109 4.74998 11.8125 5.20677 12.6512 5.95292L14.8905 3.71369C13.4765 2.39596 11.5853 1.58331 9.5 1.58331C5.12802 1.58331 1.58334 5.128 1.58334 9.49998C1.58334 13.872 5.12802 17.4166 9.5 17.4166C13.872 17.4166 17.4167 13.872 17.4167 9.49998C17.4167 8.96917 17.362 8.45102 17.2627 7.9495Z%27 fill=%27%23FFC107%27/%3E%3Cpath d=%27M2.49612 5.81517L5.09714 7.72269C5.80094 5.98023 7.50539 4.74998 9.5 4.74998C10.7109 4.74998 11.8125 5.20677 12.6512 5.95292L14.8905 3.71369C13.4765 2.39596 11.5852 1.58331 9.5 1.58331C6.45921 1.58331 3.82217 3.30004 2.49612 5.81517Z%27 fill=%27%23FF3D00%27/%3E%3Cpath d=%27M9.5 17.4167C11.5449 17.4167 13.4029 16.6341 14.8077 15.3615L12.3575 13.2882C11.536 13.9129 10.5321 14.2508 9.5 14.25C7.44087 14.25 5.69248 12.937 5.03381 11.1047L2.45219 13.0938C3.76239 15.6576 6.42319 17.4167 9.5 17.4167Z%27 fill=%27%234CAF50%27/%3E%3Cpath d=%27M17.2627 7.94954H16.625V7.91669H9.5V11.0834H13.9741C13.6619 11.9607 13.0995 12.7273 12.3563 13.2885L12.3575 13.2877L14.8077 15.3611C14.6344 15.5187 17.4167 13.4584 17.4167 9.50002C17.4167 8.96921 17.362 8.45106 17.2627 7.94954Z%27 fill=%27%231976D2%27/%3E%3C/svg%3E%0A");
}
.login-page .login-box .ms-icon {
  width: 17px;
  height: 17px;
  display: inline-block;
  margin-right: 15px;
  background-image: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg clip-path=%27url%28%23clip0_195_12687%29%27%3E%3Cpath d=%27M9.0299 9.0299H0V0H9.0299V9.0299Z%27 fill=%27%23F1511B%27/%3E%3Cpath d=%27M19 9.0299H9.97018V0H19V9.0299Z%27 fill=%27%2380CC28%27/%3E%3Cpath d=%27M9.02968 19.0001H0V9.97021H9.02968V19.0001Z%27 fill=%27%2300ADEF%27/%3E%3Cpath d=%27M19 19.0001H9.97018V9.97021H19V19.0001Z%27 fill=%27%23FBBC09%27/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id=%27clip0_195_12687%27%3E%3Crect width=%2719%27 height=%2719%27 fill=%27white%27/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.login-page .login-box .black-outline-button {
  border: 1px solid #212529;
}
.login-page .login-box .sso-text {
  margin-top: 45px;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: var(--rv-accent-1);
}
.login-page .login-box .divider {
  border-top: 2px solid var(--rv-gray-200);
  width: 80%;
  height: 5px;
  margin: 9px auto;
}
.login-page .login-box .footer-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: var(--rv-body-color);
}
.login-page .login-box .footer-text a {
  margin-left: 4px;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: var(--rv-accent-1);
}
.login-page .text-divider {
  color: #969EA2;
  text-align: center;
  font-size: 14px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.login-page .text-divider::before,
.login-page .text-divider::after {
  content: "";
  height: 1px;
  flex: 1 0 0;
  background-color: #DADFE2;
}
.login-page .text-divider::before {
  margin-right: 20px;
}
.login-page .text-divider::after {
  margin-left: 20px;
}

.rational-header {
  color: #4286c5;
  font-size: 22px;
  /* border-bottom: 1px solid; */
  text-align: center;
}

.signup-page {
  height: 100vh;
  display: flex;
  align-items: center;
}
.signup-page .sign-up__divider {
  color: #969EA2;
  text-align: center;
  font-size: 14px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.signup-page .sign-up__divider::before,
.signup-page .sign-up__divider::after {
  content: "";
  height: 1px;
  flex: 1 0 0;
  background-color: #DADFE2;
}
.signup-page .sign-up__divider::before {
  margin-right: 20px;
}
.signup-page .sign-up__divider::after {
  margin-left: 20px;
}
.signup-page .signup-box {
  max-width: 600px;
  padding: 40px;
  background: var(--rv-secondary-bg);
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  box-shadow: 2px 3px 15px 0 rgba(201, 201, 201, 0.2);
}
.signup-page .signup-box .signup-success h1 {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  color: var(--rv-body-color);
}
.signup-page .signup-box .signup-success h2 {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: var(--rv-text-muted);
}
.signup-page .signup-box .header h1 {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 39px;
  color: var(--rv-body-color);
  text-align: center;
}
.signup-page .signup-box .header h2 {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: var(--rv-text-muted);
  text-align: center;
}
.signup-page .signup-box .page-section-form .btn {
  width: 40%;
}
.signup-page .signup-box .page-section-form > div {
  justify-content: center;
}
.signup-page .signup-box .step-text {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: var(--rv-text-muted);
  text-align: right;
  margin-bottom: 20px;
}
.signup-page .signup-box .login-form {
  padding-top: 20px;
}
.signup-page .signup-box .forgot-message {
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  text-align: right;
}
.signup-page .signup-box .forgot-message a {
  display: block;
  color: var(--rv-text-muted);
}
.signup-page .signup-box button {
  display: block;
  width: 100%;
  margin-top: 20px;
  height: 40px;
}
.signup-page .signup-box .google-icon {
  width: 17px;
  height: 17px;
  display: inline-block;
  margin-right: 15px;
  background-image: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M17.2627 7.9495H16.625V7.91665H9.5V11.0833H13.9741C13.3214 12.9267 11.5674 14.25 9.5 14.25C6.87681 14.25 4.75 12.1232 4.75 9.49998C4.75 6.87679 6.87681 4.74998 9.5 4.74998C10.7109 4.74998 11.8125 5.20677 12.6512 5.95292L14.8905 3.71369C13.4765 2.39596 11.5853 1.58331 9.5 1.58331C5.12802 1.58331 1.58334 5.128 1.58334 9.49998C1.58334 13.872 5.12802 17.4166 9.5 17.4166C13.872 17.4166 17.4167 13.872 17.4167 9.49998C17.4167 8.96917 17.362 8.45102 17.2627 7.9495Z%27 fill=%27%23FFC107%27/%3E%3Cpath d=%27M2.49612 5.81517L5.09714 7.72269C5.80094 5.98023 7.50539 4.74998 9.5 4.74998C10.7109 4.74998 11.8125 5.20677 12.6512 5.95292L14.8905 3.71369C13.4765 2.39596 11.5852 1.58331 9.5 1.58331C6.45921 1.58331 3.82217 3.30004 2.49612 5.81517Z%27 fill=%27%23FF3D00%27/%3E%3Cpath d=%27M9.5 17.4167C11.5449 17.4167 13.4029 16.6341 14.8077 15.3615L12.3575 13.2882C11.536 13.9129 10.5321 14.2508 9.5 14.25C7.44087 14.25 5.69248 12.937 5.03381 11.1047L2.45219 13.0938C3.76239 15.6576 6.42319 17.4167 9.5 17.4167Z%27 fill=%27%234CAF50%27/%3E%3Cpath d=%27M17.2627 7.94954H16.625V7.91669H9.5V11.0834H13.9741C13.6619 11.9607 13.0995 12.7273 12.3563 13.2885L12.3575 13.2877L14.8077 15.3611C14.6344 15.5187 17.4167 13.4584 17.4167 9.50002C17.4167 8.96921 17.362 8.45106 17.2627 7.94954Z%27 fill=%27%231976D2%27/%3E%3C/svg%3E%0A");
}
.signup-page .signup-box .ms-icon {
  width: 17px;
  height: 17px;
  display: inline-block;
  margin-right: 15px;
  background-image: url("data:image/svg+xml,%3Csvg width=%2719%27 height=%2719%27 viewBox=%270 0 19 19%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg clip-path=%27url%28%23clip0_195_12687%29%27%3E%3Cpath d=%27M9.0299 9.0299H0V0H9.0299V9.0299Z%27 fill=%27%23F1511B%27/%3E%3Cpath d=%27M19 9.0299H9.97018V0H19V9.0299Z%27 fill=%27%2380CC28%27/%3E%3Cpath d=%27M9.02968 19.0001H0V9.97021H9.02968V19.0001Z%27 fill=%27%2300ADEF%27/%3E%3Cpath d=%27M19 19.0001H9.97018V9.97021H19V19.0001Z%27 fill=%27%23FBBC09%27/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id=%27clip0_195_12687%27%3E%3Crect width=%2719%27 height=%2719%27 fill=%27white%27/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.signup-page .signup-box .black-outline-button {
  border: 1px solid #212529;
}
.signup-page .signup-box .sso-text {
  margin-top: 45px;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: var(--rv-accent-1);
}
.signup-page .signup-box .divider {
  border-top: 2px solid var(--rv-gray-200);
  width: 80%;
  height: 5px;
  margin: 9px auto;
}
.signup-page .signup-box .footer-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: var(--rv-body-color);
}
.signup-page .signup-box .footer-text a {
  margin-left: 4px;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: var(--rv-accent-1);
}
.signup-page .text-divider {
  color: #969EA2;
  text-align: center;
  font-size: 14px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.signup-page .text-divider::before,
.signup-page .text-divider::after {
  content: "";
  height: 1px;
  flex: 1 0 0;
  background-color: #DADFE2;
}
.signup-page .text-divider::before {
  margin-right: 20px;
}
.signup-page .text-divider::after {
  margin-left: 20px;
}
.signup-page #domain-parent #domain {
  width: 150px;
}
.signup-page #domain-parent input {
  display: inline;
}
.signup-page .password-strength {
  display: flex;
  gap: 10px;
  justify-content: space-around;
  min-width: 150px;
}
.signup-page .password-strength > div {
  height: 10px;
  border-radius: 10px;
  width: 100%;
}
.signup-page .password-strength .grey {
  background: #DFE2E5;
}
.signup-page .password-strength .orange {
  background: #FFA943;
}
.signup-page .password-strength .red {
  background: #FF6262;
}
.signup-page .password-strength .green {
  background: #41D295;
}

.rational-header {
  color: #4286c5;
  font-size: 22px;
  /* border-bottom: 1px solid; */
  text-align: center;
}
