@charset "UTF-8";

/* node_modules/diff2html/bundles/css/diff2html.min.css */
:host,
:root {
  --d2h-bg-color:#fff;
  --d2h-border-color:#ddd;
  --d2h-dim-color:rgba(0,0,0,.3);
  --d2h-line-border-color:#eee;
  --d2h-file-header-bg-color:#f7f7f7;
  --d2h-file-header-border-color:#d8d8d8;
  --d2h-empty-placeholder-bg-color:#f1f1f1;
  --d2h-empty-placeholder-border-color:#e1e1e1;
  --d2h-selected-color:#c8e1ff;
  --d2h-ins-bg-color:#dfd;
  --d2h-ins-border-color:#b4e2b4;
  --d2h-ins-highlight-bg-color:#97f295;
  --d2h-ins-label-color:#399839;
  --d2h-del-bg-color:#fee8e9;
  --d2h-del-border-color:#e9aeae;
  --d2h-del-highlight-bg-color:#ffb6ba;
  --d2h-del-label-color:#c33;
  --d2h-change-del-color:#fdf2d0;
  --d2h-change-ins-color:#ded;
  --d2h-info-bg-color:#f8fafd;
  --d2h-info-border-color:#d5e4f2;
  --d2h-change-label-color:#d0b44c;
  --d2h-moved-label-color:#3572b0;
  --d2h-dark-color:#e6edf3;
  --d2h-dark-bg-color:#0d1117;
  --d2h-dark-border-color:#30363d;
  --d2h-dark-dim-color:#6e7681;
  --d2h-dark-line-border-color:#21262d;
  --d2h-dark-file-header-bg-color:#161b22;
  --d2h-dark-file-header-border-color:#30363d;
  --d2h-dark-empty-placeholder-bg-color:hsla(215,8%,47%,.1);
  --d2h-dark-empty-placeholder-border-color:#30363d;
  --d2h-dark-selected-color:rgba(56,139,253,.1);
  --d2h-dark-ins-bg-color:rgba(46,160,67,.15);
  --d2h-dark-ins-border-color:rgba(46,160,67,.4);
  --d2h-dark-ins-highlight-bg-color:rgba(46,160,67,.4);
  --d2h-dark-ins-label-color:#3fb950;
  --d2h-dark-del-bg-color:rgba(248,81,73,.1);
  --d2h-dark-del-border-color:rgba(248,81,73,.4);
  --d2h-dark-del-highlight-bg-color:rgba(248,81,73,.4);
  --d2h-dark-del-label-color:#f85149;
  --d2h-dark-change-del-color:rgba(210,153,34,.2);
  --d2h-dark-change-ins-color:rgba(46,160,67,.25);
  --d2h-dark-info-bg-color:rgba(56,139,253,.1);
  --d2h-dark-info-border-color:rgba(56,139,253,.4);
  --d2h-dark-change-label-color:#d29922;
  --d2h-dark-moved-label-color:#3572b0;
}
.d2h-wrapper {
  text-align: left;
}
.d2h-file-header {
  background-color: #f7f7f7;
  background-color: var(--d2h-file-header-bg-color);
  border-bottom: 1px solid #d8d8d8;
  border-bottom: 1px solid var(--d2h-file-header-border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family:
    Source Sans Pro,
    Helvetica Neue,
    Helvetica,
    Arial,
    sans-serif;
  height: 35px;
  padding: 5px 10px;
}
.d2h-file-header.d2h-sticky-header {
  position: sticky;
  top: 0;
  z-index: 1;
}
.d2h-file-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  margin-left: auto;
}
.d2h-lines-added {
  border: 1px solid #b4e2b4;
  border: 1px solid var(--d2h-ins-border-color);
  border-radius: 5px 0 0 5px;
  color: #399839;
  color: var(--d2h-ins-label-color);
  padding: 2px;
  text-align: right;
  vertical-align: middle;
}
.d2h-lines-deleted {
  border: 1px solid #e9aeae;
  border: 1px solid var(--d2h-del-border-color);
  border-radius: 0 5px 5px 0;
  color: #c33;
  color: var(--d2h-del-label-color);
  margin-left: 1px;
  padding: 2px;
  text-align: left;
  vertical-align: middle;
}
.d2h-file-name-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15px;
  width: 100%;
}
.d2h-file-name {
  overflow-x: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.d2h-file-wrapper {
  border: 1px solid #ddd;
  border: 1px solid var(--d2h-border-color);
  border-radius: 3px;
  margin-bottom: 1em;
}
.d2h-file-collapse {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  cursor: pointer;
  display: none;
  font-size: 12px;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #ddd;
  border: 1px solid var(--d2h-border-color);
  border-radius: 3px;
  padding: 4px 8px;
}
.d2h-file-collapse.d2h-selected {
  background-color: #c8e1ff;
  background-color: var(--d2h-selected-color);
}
.d2h-file-collapse-input {
  margin: 0 4px 0 0;
}
.d2h-diff-table {
  border-collapse: collapse;
  font-family:
    Menlo,
    Consolas,
    monospace;
  font-size: 13px;
  width: 100%;
}
.d2h-files-diff {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.d2h-file-diff {
  overflow-y: hidden;
}
.d2h-file-diff.d2h-d-none,
.d2h-files-diff.d2h-d-none {
  display: none;
}
.d2h-file-side-diff {
  display: inline-block;
  overflow-x: scroll;
  overflow-y: hidden;
  width: 50%;
}
.d2h-code-line {
  padding: 0 8em;
  width: calc(100% - 16em);
}
.d2h-code-line,
.d2h-code-side-line {
  display: inline-block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}
.d2h-code-side-line {
  padding: 0 4.5em;
  width: calc(100% - 9em);
}
.d2h-code-line-ctn {
  background: none;
  display: inline-block;
  padding: 0;
  word-wrap: normal;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  vertical-align: middle;
  white-space: pre;
  width: 100%;
}
.d2h-code-line del,
.d2h-code-side-line del {
  background-color: #ffb6ba;
  background-color: var(--d2h-del-highlight-bg-color);
}
.d2h-code-line del,
.d2h-code-line ins,
.d2h-code-side-line del,
.d2h-code-side-line ins {
  border-radius: .2em;
  display: inline-block;
  margin-top: -1px;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.d2h-code-line ins,
.d2h-code-side-line ins {
  background-color: #97f295;
  background-color: var(--d2h-ins-highlight-bg-color);
  text-align: left;
}
.d2h-code-line-prefix {
  background: none;
  display: inline;
  padding: 0;
  word-wrap: normal;
  white-space: pre;
}
.line-num1 {
  float: left;
}
.line-num1,
.line-num2 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  padding: 0 .5em;
  text-overflow: ellipsis;
  width: 3.5em;
}
.line-num2 {
  float: right;
}
.d2h-code-linenumber {
  background-color: #fff;
  background-color: var(--d2h-bg-color);
  border: solid #eee;
  border: solid var(--d2h-line-border-color);
  border-width: 0 1px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: rgba(0, 0, 0, .3);
  color: var(--d2h-dim-color);
  cursor: pointer;
  display: inline-block;
  position: absolute;
  text-align: right;
  width: 7.5em;
}
.d2h-code-linenumber:after {
  content: "\200b";
}
.d2h-code-side-linenumber {
  background-color: #fff;
  background-color: var(--d2h-bg-color);
  border: solid #eee;
  border: solid var(--d2h-line-border-color);
  border-width: 0 1px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: rgba(0, 0, 0, .3);
  color: var(--d2h-dim-color);
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  padding: 0 .5em;
  position: absolute;
  text-align: right;
  text-overflow: ellipsis;
  width: 4em;
}
.d2h-code-side-linenumber:after {
  content: "\200b";
}
.d2h-code-side-emptyplaceholder,
.d2h-emptyplaceholder {
  background-color: #f1f1f1;
  background-color: var(--d2h-empty-placeholder-bg-color);
  border-color: #e1e1e1;
  border-color: var(--d2h-empty-placeholder-border-color);
}
.d2h-code-line-prefix,
.d2h-code-linenumber,
.d2h-code-side-linenumber,
.d2h-emptyplaceholder {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.d2h-code-linenumber,
.d2h-code-side-linenumber {
  direction: rtl;
}
.d2h-del {
  background-color: #fee8e9;
  background-color: var(--d2h-del-bg-color);
  border-color: #e9aeae;
  border-color: var(--d2h-del-border-color);
}
.d2h-ins {
  background-color: #dfd;
  background-color: var(--d2h-ins-bg-color);
  border-color: #b4e2b4;
  border-color: var(--d2h-ins-border-color);
}
.d2h-info {
  background-color: #f8fafd;
  background-color: var(--d2h-info-bg-color);
  border-color: #d5e4f2;
  border-color: var(--d2h-info-border-color);
  color: rgba(0, 0, 0, .3);
  color: var(--d2h-dim-color);
}
.d2h-file-diff .d2h-del.d2h-change {
  background-color: #fdf2d0;
  background-color: var(--d2h-change-del-color);
}
.d2h-file-diff .d2h-ins.d2h-change {
  background-color: #ded;
  background-color: var(--d2h-change-ins-color);
}
.d2h-file-list-wrapper {
  margin-bottom: 10px;
}
.d2h-file-list-wrapper a {
  -webkit-text-decoration: none;
  text-decoration: none;
}
.d2h-file-list-wrapper a,
.d2h-file-list-wrapper a:visited {
  color: #3572b0;
  color: var(--d2h-moved-label-color);
}
.d2h-file-list-header {
  text-align: left;
}
.d2h-file-list-title {
  font-weight: 700;
}
.d2h-file-list-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
}
.d2h-file-list {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}
.d2h-file-list > li {
  border-bottom: 1px solid #ddd;
  border-bottom: 1px solid var(--d2h-border-color);
  margin: 0;
  padding: 5px 10px;
}
.d2h-file-list > li:last-child {
  border-bottom: none;
}
.d2h-file-switch {
  cursor: pointer;
  display: none;
  font-size: 10px;
}
.d2h-icon {
  margin-right: 10px;
  vertical-align: middle;
  fill: currentColor;
}
.d2h-deleted {
  color: #c33;
  color: var(--d2h-del-label-color);
}
.d2h-added {
  color: #399839;
  color: var(--d2h-ins-label-color);
}
.d2h-changed {
  color: #d0b44c;
  color: var(--d2h-change-label-color);
}
.d2h-moved {
  color: #3572b0;
  color: var(--d2h-moved-label-color);
}
.d2h-tag {
  background-color: #fff;
  background-color: var(--d2h-bg-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 10px;
  margin-left: 5px;
  padding: 0 2px;
}
.d2h-deleted-tag {
  border: 1px solid #c33;
  border: 1px solid var(--d2h-del-label-color);
}
.d2h-added-tag {
  border: 1px solid #399839;
  border: 1px solid var(--d2h-ins-label-color);
}
.d2h-changed-tag {
  border: 1px solid #d0b44c;
  border: 1px solid var(--d2h-change-label-color);
}
.d2h-moved-tag {
  border: 1px solid #3572b0;
  border: 1px solid var(--d2h-moved-label-color);
}
.d2h-dark-color-scheme {
  background-color: #0d1117;
  background-color: var(--d2h-dark-bg-color);
  color: #e6edf3;
  color: var(--d2h-dark-color);
}
.d2h-dark-color-scheme .d2h-file-header {
  background-color: #161b22;
  background-color: var(--d2h-dark-file-header-bg-color);
  border-bottom: #30363d;
  border-bottom: var(--d2h-dark-file-header-border-color);
}
.d2h-dark-color-scheme .d2h-lines-added {
  border: 1px solid rgba(46, 160, 67, .4);
  border: 1px solid var(--d2h-dark-ins-border-color);
  color: #3fb950;
  color: var(--d2h-dark-ins-label-color);
}
.d2h-dark-color-scheme .d2h-lines-deleted {
  border: 1px solid rgba(248, 81, 73, .4);
  border: 1px solid var(--d2h-dark-del-border-color);
  color: #f85149;
  color: var(--d2h-dark-del-label-color);
}
.d2h-dark-color-scheme .d2h-code-line del,
.d2h-dark-color-scheme .d2h-code-side-line del {
  background-color: rgba(248, 81, 73, .4);
  background-color: var(--d2h-dark-del-highlight-bg-color);
}
.d2h-dark-color-scheme .d2h-code-line ins,
.d2h-dark-color-scheme .d2h-code-side-line ins {
  background-color: rgba(46, 160, 67, .4);
  background-color: var(--d2h-dark-ins-highlight-bg-color);
}
.d2h-dark-color-scheme .d2h-diff-tbody {
  border-color: #30363d;
  border-color: var(--d2h-dark-border-color);
}
.d2h-dark-color-scheme .d2h-code-side-linenumber {
  background-color: #0d1117;
  background-color: var(--d2h-dark-bg-color);
  border-color: #21262d;
  border-color: var(--d2h-dark-line-border-color);
  color: #6e7681;
  color: var(--d2h-dark-dim-color);
}
.d2h-dark-color-scheme .d2h-files-diff .d2h-code-side-emptyplaceholder,
.d2h-dark-color-scheme .d2h-files-diff .d2h-emptyplaceholder {
  background-color: hsla(215, 8%, 47%, .1);
  background-color: var(--d2h-dark-empty-placeholder-bg-color);
  border-color: #30363d;
  border-color: var(--d2h-dark-empty-placeholder-border-color);
}
.d2h-dark-color-scheme .d2h-code-linenumber {
  background-color: #0d1117;
  background-color: var(--d2h-dark-bg-color);
  border-color: #21262d;
  border-color: var(--d2h-dark-line-border-color);
  color: #6e7681;
  color: var(--d2h-dark-dim-color);
}
.d2h-dark-color-scheme .d2h-del {
  background-color: rgba(248, 81, 73, .1);
  background-color: var(--d2h-dark-del-bg-color);
  border-color: rgba(248, 81, 73, .4);
  border-color: var(--d2h-dark-del-border-color);
}
.d2h-dark-color-scheme .d2h-ins {
  background-color: rgba(46, 160, 67, .15);
  background-color: var(--d2h-dark-ins-bg-color);
  border-color: rgba(46, 160, 67, .4);
  border-color: var(--d2h-dark-ins-border-color);
}
.d2h-dark-color-scheme .d2h-info {
  background-color: rgba(56, 139, 253, .1);
  background-color: var(--d2h-dark-info-bg-color);
  border-color: rgba(56, 139, 253, .4);
  border-color: var(--d2h-dark-info-border-color);
  color: #6e7681;
  color: var(--d2h-dark-dim-color);
}
.d2h-dark-color-scheme .d2h-file-diff .d2h-del.d2h-change {
  background-color: rgba(210, 153, 34, .2);
  background-color: var(--d2h-dark-change-del-color);
}
.d2h-dark-color-scheme .d2h-file-diff .d2h-ins.d2h-change {
  background-color: rgba(46, 160, 67, .25);
  background-color: var(--d2h-dark-change-ins-color);
}
.d2h-dark-color-scheme .d2h-file-wrapper {
  border: 1px solid #30363d;
  border: 1px solid var(--d2h-dark-border-color);
}
.d2h-dark-color-scheme .d2h-file-collapse {
  border: 1px solid #0d1117;
  border: 1px solid var(--d2h-dark-bg-color);
}
.d2h-dark-color-scheme .d2h-file-collapse.d2h-selected {
  background-color: rgba(56, 139, 253, .1);
  background-color: var(--d2h-dark-selected-color);
}
.d2h-dark-color-scheme .d2h-file-list-wrapper a,
.d2h-dark-color-scheme .d2h-file-list-wrapper a:visited {
  color: #3572b0;
  color: var(--d2h-dark-moved-label-color);
}
.d2h-dark-color-scheme .d2h-file-list > li {
  border-bottom: 1px solid #0d1117;
  border-bottom: 1px solid var(--d2h-dark-bg-color);
}
.d2h-dark-color-scheme .d2h-deleted {
  color: #f85149;
  color: var(--d2h-dark-del-label-color);
}
.d2h-dark-color-scheme .d2h-added {
  color: #3fb950;
  color: var(--d2h-dark-ins-label-color);
}
.d2h-dark-color-scheme .d2h-changed {
  color: #d29922;
  color: var(--d2h-dark-change-label-color);
}
.d2h-dark-color-scheme .d2h-moved {
  color: #3572b0;
  color: var(--d2h-dark-moved-label-color);
}
.d2h-dark-color-scheme .d2h-tag {
  background-color: #0d1117;
  background-color: var(--d2h-dark-bg-color);
}
.d2h-dark-color-scheme .d2h-deleted-tag {
  border: 1px solid #f85149;
  border: 1px solid var(--d2h-dark-del-label-color);
}
.d2h-dark-color-scheme .d2h-added-tag {
  border: 1px solid #3fb950;
  border: 1px solid var(--d2h-dark-ins-label-color);
}
.d2h-dark-color-scheme .d2h-changed-tag {
  border: 1px solid #d29922;
  border: 1px solid var(--d2h-dark-change-label-color);
}
.d2h-dark-color-scheme .d2h-moved-tag {
  border: 1px solid #3572b0;
  border: 1px solid var(--d2h-dark-moved-label-color);
}
@media (prefers-color-scheme:dark) {
  .d2h-auto-color-scheme {
    background-color: #0d1117;
    background-color: var(--d2h-dark-bg-color);
    color: #e6edf3;
    color: var(--d2h-dark-color);
  }
  .d2h-auto-color-scheme .d2h-file-header {
    background-color: #161b22;
    background-color: var(--d2h-dark-file-header-bg-color);
    border-bottom: #30363d;
    border-bottom: var(--d2h-dark-file-header-border-color);
  }
  .d2h-auto-color-scheme .d2h-lines-added {
    border: 1px solid rgba(46, 160, 67, .4);
    border: 1px solid var(--d2h-dark-ins-border-color);
    color: #3fb950;
    color: var(--d2h-dark-ins-label-color);
  }
  .d2h-auto-color-scheme .d2h-lines-deleted {
    border: 1px solid rgba(248, 81, 73, .4);
    border: 1px solid var(--d2h-dark-del-border-color);
    color: #f85149;
    color: var(--d2h-dark-del-label-color);
  }
  .d2h-auto-color-scheme .d2h-code-line del,
  .d2h-auto-color-scheme .d2h-code-side-line del {
    background-color: rgba(248, 81, 73, .4);
    background-color: var(--d2h-dark-del-highlight-bg-color);
  }
  .d2h-auto-color-scheme .d2h-code-line ins,
  .d2h-auto-color-scheme .d2h-code-side-line ins {
    background-color: rgba(46, 160, 67, .4);
    background-color: var(--d2h-dark-ins-highlight-bg-color);
  }
  .d2h-auto-color-scheme .d2h-diff-tbody {
    border-color: #30363d;
    border-color: var(--d2h-dark-border-color);
  }
  .d2h-auto-color-scheme .d2h-code-side-linenumber {
    background-color: #0d1117;
    background-color: var(--d2h-dark-bg-color);
    border-color: #21262d;
    border-color: var(--d2h-dark-line-border-color);
    color: #6e7681;
    color: var(--d2h-dark-dim-color);
  }
  .d2h-auto-color-scheme .d2h-files-diff .d2h-code-side-emptyplaceholder,
  .d2h-auto-color-scheme .d2h-files-diff .d2h-emptyplaceholder {
    background-color: hsla(215, 8%, 47%, .1);
    background-color: var(--d2h-dark-empty-placeholder-bg-color);
    border-color: #30363d;
    border-color: var(--d2h-dark-empty-placeholder-border-color);
  }
  .d2h-auto-color-scheme .d2h-code-linenumber {
    background-color: #0d1117;
    background-color: var(--d2h-dark-bg-color);
    border-color: #21262d;
    border-color: var(--d2h-dark-line-border-color);
    color: #6e7681;
    color: var(--d2h-dark-dim-color);
  }
  .d2h-auto-color-scheme .d2h-del {
    background-color: rgba(248, 81, 73, .1);
    background-color: var(--d2h-dark-del-bg-color);
    border-color: rgba(248, 81, 73, .4);
    border-color: var(--d2h-dark-del-border-color);
  }
  .d2h-auto-color-scheme .d2h-ins {
    background-color: rgba(46, 160, 67, .15);
    background-color: var(--d2h-dark-ins-bg-color);
    border-color: rgba(46, 160, 67, .4);
    border-color: var(--d2h-dark-ins-border-color);
  }
  .d2h-auto-color-scheme .d2h-info {
    background-color: rgba(56, 139, 253, .1);
    background-color: var(--d2h-dark-info-bg-color);
    border-color: rgba(56, 139, 253, .4);
    border-color: var(--d2h-dark-info-border-color);
    color: #6e7681;
    color: var(--d2h-dark-dim-color);
  }
  .d2h-auto-color-scheme .d2h-file-diff .d2h-del.d2h-change {
    background-color: rgba(210, 153, 34, .2);
    background-color: var(--d2h-dark-change-del-color);
  }
  .d2h-auto-color-scheme .d2h-file-diff .d2h-ins.d2h-change {
    background-color: rgba(46, 160, 67, .25);
    background-color: var(--d2h-dark-change-ins-color);
  }
  .d2h-auto-color-scheme .d2h-file-wrapper {
    border: 1px solid #30363d;
    border: 1px solid var(--d2h-dark-border-color);
  }
  .d2h-auto-color-scheme .d2h-file-collapse {
    border: 1px solid #0d1117;
    border: 1px solid var(--d2h-dark-bg-color);
  }
  .d2h-auto-color-scheme .d2h-file-collapse.d2h-selected {
    background-color: rgba(56, 139, 253, .1);
    background-color: var(--d2h-dark-selected-color);
  }
  .d2h-auto-color-scheme .d2h-file-list-wrapper a,
  .d2h-auto-color-scheme .d2h-file-list-wrapper a:visited {
    color: #3572b0;
    color: var(--d2h-dark-moved-label-color);
  }
  .d2h-auto-color-scheme .d2h-file-list > li {
    border-bottom: 1px solid #0d1117;
    border-bottom: 1px solid var(--d2h-dark-bg-color);
  }
  .d2h-dark-color-scheme .d2h-deleted {
    color: #f85149;
    color: var(--d2h-dark-del-label-color);
  }
  .d2h-auto-color-scheme .d2h-added {
    color: #3fb950;
    color: var(--d2h-dark-ins-label-color);
  }
  .d2h-auto-color-scheme .d2h-changed {
    color: #d29922;
    color: var(--d2h-dark-change-label-color);
  }
  .d2h-auto-color-scheme .d2h-moved {
    color: #3572b0;
    color: var(--d2h-dark-moved-label-color);
  }
  .d2h-auto-color-scheme .d2h-tag {
    background-color: #0d1117;
    background-color: var(--d2h-dark-bg-color);
  }
  .d2h-auto-color-scheme .d2h-deleted-tag {
    border: 1px solid #f85149;
    border: 1px solid var(--d2h-dark-del-label-color);
  }
  .d2h-auto-color-scheme .d2h-added-tag {
    border: 1px solid #3fb950;
    border: 1px solid var(--d2h-dark-ins-label-color);
  }
  .d2h-auto-color-scheme .d2h-changed-tag {
    border: 1px solid #d29922;
    border: 1px solid var(--d2h-dark-change-label-color);
  }
  .d2h-auto-color-scheme .d2h-moved-tag {
    border: 1px solid #3572b0;
    border: 1px solid var(--d2h-dark-moved-label-color);
  }
}

/* src/styles.scss */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-family: sans-serif;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  vertical-align: baseline;
  display: inline-block;
}
audio:not([controls]) {
  height: 0;
  display: none;
}
[hidden],
template {
  display: none;
}
a {
  background-color: rgba(0, 0, 0, 0);
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  margin: 0.67em 0;
  font-size: 2em;
}
mark {
  color: #000;
  background: #ff0;
}
small {
  font-size: 80%;
}
sub,
sup {
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
  position: relative;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type=button],
input[type=reset] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}
input[type=search] {
  -webkit-appearance: none;
}
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
@font-face {
  font-family: webflow-icons;
  src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBiUAAAC8AAAAYGNtYXDpP+a4AAABHAAAAFxnYXNwAAAAEAAAAXgAAAAIZ2x5ZmhS2XEAAAGAAAADHGhlYWQTFw3HAAAEnAAAADZoaGVhCXYFgQAABNQAAAAkaG10eCe4A1oAAAT4AAAAMGxvY2EDtALGAAAFKAAAABptYXhwABAAPgAABUQAAAAgbmFtZSoCsMsAAAVkAAABznBvc3QAAwAAAAAHNAAAACAAAwP4AZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpAwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAQAAAAAwACAACAAQAAQAg5gPpA//9//8AAAAAACDmAOkA//3//wAB/+MaBBcIAAMAAQAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEBIAAAAyADgAAFAAAJAQcJARcDIP5AQAGA/oBAAcABwED+gP6AQAABAOAAAALgA4AABQAAEwEXCQEH4AHAQP6AAYBAAcABwED+gP6AQAAAAwDAAOADQALAAA8AHwAvAAABISIGHQEUFjMhMjY9ATQmByEiBh0BFBYzITI2PQE0JgchIgYdARQWMyEyNj0BNCYDIP3ADRMTDQJADRMTDf3ADRMTDQJADRMTDf3ADRMTDQJADRMTAsATDSANExMNIA0TwBMNIA0TEw0gDRPAEw0gDRMTDSANEwAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFVz+fAGEAAAAAAL//f+9BAMDwwAEAAkAABcBJwEXAwE3AQdpA5ps/GZsbAOabPxmbEMDmmz8ZmwDmvxmbAOabAAAAgAA/8AEAAPAAB0AOwAABSInLgEnJjU0Nz4BNzYzMTIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjMSIHDgEHBhUUFx4BFxYzAgBqXV6LKCgoKIteXWpqXV6LKCgoKIteXWpVSktvICEhIG9LSlVVSktvICEhIG9LSlVAKCiLXl1qal1eiygoKCiLXl1qal1eiygoZiEgb0tKVVVKS28gISEgb0tKVVVKS28gIQABAAABwAIAA8AAEgAAEzQ3PgE3NjMxFSIHDgEHBhUxIwAoKIteXWpVSktvICFmAcBqXV6LKChmISBvS0pVAAAAAgAA/8AFtgPAADIAOgAAARYXHgEXFhUUBw4BBwYHIxUhIicuAScmNTQ3PgE3NjMxOAExNDc+ATc2MzIXHgEXFhcVATMJATMVMzUEjD83NlAXFxYXTjU1PQL8kz01Nk8XFxcXTzY1PSIjd1BQWlJJSXInJw3+mdv+2/7c25MCUQYcHFg5OUA/ODlXHBwIAhcXTzY1PTw1Nk8XF1tQUHcjIhwcYUNDTgL+3QFt/pOTkwABAAAAAQAAmM7nP18PPPUACwQAAAAAANciZKUAAAAA1yJkpf/9/70FtgPDAAAACAACAAAAAAAAAAEAAAPA/8AAAAW3//3//QW2AAEAAAAAAAAAAAAAAAAAAAAMBAAAAAAAAAAAAAAAAgAAAAQAASAEAADgBAAAwAQAAJ0EAP/9BAAAAAQAAAAFtwAAAAAAAAAKABQAHgAyAEYAjACiAL4BFgE2AY4AAAABAAAADAA8AAMAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADQAAAAEAAAAAAAIABwCWAAEAAAAAAAMADQBIAAEAAAAAAAQADQCrAAEAAAAAAAUACwAnAAEAAAAAAAYADQBvAAEAAAAAAAoAGgDSAAMAAQQJAAEAGgANAAMAAQQJAAIADgCdAAMAAQQJAAMAGgBVAAMAAQQJAAQAGgC4AAMAAQQJAAUAFgAyAAMAAQQJAAYAGgB8AAMAAQQJAAoANADsd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzUmVndWxhcgBSAGUAZwB1AGwAYQByd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("truetype");
  font-weight: normal;
  font-style: normal;
}
[class^=w-icon-],
[class*=" w-icon-"] {
  speak: none;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  font-family: webflow-icons !important;
}
.w-icon-slider-right:before {
  content: "\ee\2dc\20ac";
}
.w-icon-slider-left:before {
  content: "\ee\2dc\81";
}
.w-icon-nav-menu:before {
  content: "\ee\2dc\201a";
}
.w-icon-arrow-down:before,
.w-icon-dropdown-toggle:before {
  content: "\ee\2dc\192";
}
.w-icon-file-upload-remove:before {
  content: "\ee\a4\20ac";
}
.w-icon-file-upload-icon:before {
  content: "\ee\a4\192";
}
* {
  box-sizing: border-box;
}
html {
  height: 100%;
}
body {
  color: #333;
  background-color: #fff;
  min-height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
}
img {
  vertical-align: middle;
  max-width: 100%;
  display: inline-block;
}
html.w-mod-touch * {
  background-attachment: scroll !important;
}
.w-block {
  display: block;
}
.w-inline-block {
  max-width: 100%;
  display: inline-block;
}
.w-clearfix:before,
.w-clearfix:after {
  content: " ";
  grid-area: 1/1/2/2;
  display: table;
}
.w-clearfix:after {
  clear: both;
}
.w-hidden {
  display: none;
}
.w-button {
  color: #fff;
  line-height: inherit;
  cursor: pointer;
  background-color: #3898ec;
  border: 0;
  border-radius: 0;
  padding: 9px 15px;
  text-decoration: none;
  display: inline-block;
}
input.w-button {
  -webkit-appearance: button;
}
html[data-w-dynpage] [data-w-cloak] {
  color: rgba(0, 0, 0, 0) !important;
}
.w-code-block {
  margin: unset;
}
pre.w-code-block code {
  all: inherit;
}
.w-optimization {
  display: contents;
}
.w-webflow-badge,
.w-webflow-badge > img {
  box-sizing: unset;
  width: unset;
  height: unset;
  max-height: unset;
  max-width: unset;
  min-height: unset;
  min-width: unset;
  margin: unset;
  padding: unset;
  float: unset;
  clear: unset;
  border: unset;
  border-radius: unset;
  background: unset;
  background-image: unset;
  background-position: unset;
  background-size: unset;
  background-repeat: unset;
  background-origin: unset;
  background-clip: unset;
  background-attachment: unset;
  background-color: unset;
  box-shadow: unset;
  transform: unset;
  direction: unset;
  font-family: unset;
  font-weight: unset;
  color: unset;
  font-size: unset;
  line-height: unset;
  font-style: unset;
  font-variant: unset;
  text-align: unset;
  letter-spacing: unset;
  -webkit-text-decoration: unset;
  text-decoration: unset;
  text-indent: unset;
  text-transform: unset;
  list-style-type: unset;
  text-shadow: unset;
  vertical-align: unset;
  cursor: unset;
  white-space: unset;
  word-break: unset;
  word-spacing: unset;
  word-wrap: unset;
  transition: unset;
}
.w-webflow-badge {
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1019607843), 0 1px 3px rgba(0, 0, 0, 0.1019607843);
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 2147483647 !important;
  color: #aaadb0 !important;
  overflow: unset !important;
  background-color: #fff !important;
  border-radius: 3px !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 6px !important;
  font-size: 12px !important;
  line-height: 14px !important;
  text-decoration: none !important;
  display: inline-block !important;
  position: fixed !important;
  inset: auto 12px 12px auto !important;
  transform: none !important;
}
.w-webflow-badge > img {
  position: unset;
  visibility: unset !important;
  opacity: 1 !important;
  vertical-align: middle !important;
  display: inline-block !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 10px;
  font-weight: bold;
}
h1 {
  margin-top: 20px;
  font-size: 38px;
  line-height: 44px;
}
h2 {
  margin-top: 20px;
  font-size: 32px;
  line-height: 36px;
}
h3 {
  margin-top: 20px;
  font-size: 24px;
  line-height: 30px;
}
h4 {
  margin-top: 10px;
  font-size: 18px;
  line-height: 24px;
}
h5 {
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
}
h6 {
  margin-top: 10px;
  font-size: 12px;
  line-height: 18px;
}
p {
  margin-top: 0;
  margin-bottom: 10px;
}
blockquote {
  border-left: 5px solid #e2e2e2;
  margin: 0 0 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}
figure {
  margin: 0 0 10px;
}
figcaption {
  text-align: center;
  margin-top: 5px;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}
.w-list-unstyled {
  padding-left: 0;
  list-style: none;
}
.w-embed:before,
.w-embed:after {
  content: " ";
  grid-area: 1/1/2/2;
  display: table;
}
.w-embed:after {
  clear: both;
}
.w-video {
  width: 100%;
  padding: 0;
  position: relative;
}
.w-video iframe,
.w-video object,
.w-video embed {
  border: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
button,
[type=button],
[type=reset] {
  cursor: pointer;
  -webkit-appearance: button;
  border: 0;
}
.w-form {
  margin: 0 0 15px;
}
.w-form-done {
  text-align: center;
  background-color: #ddd;
  padding: 20px;
  display: none;
}
.w-form-fail {
  background-color: #ffdede;
  margin-top: 10px;
  padding: 10px;
  display: none;
}
label {
  margin-bottom: 5px;
  font-weight: bold;
  display: block;
}
.w-input,
.w-select {
  color: #333;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #ccc;
  width: 100%;
  height: 38px;
  margin-bottom: 10px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.42857;
  display: block;
}
.w-input::placeholder,
.w-select::placeholder {
  color: #999;
}
.w-input:focus,
.w-select:focus {
  border-color: #3898ec;
  outline: 0;
}
.w-input[disabled],
.w-select[disabled],
.w-input[readonly],
.w-select[readonly],
fieldset[disabled] .w-input,
fieldset[disabled] .w-select {
  cursor: not-allowed;
}
.w-input[disabled]:not(.w-input-disabled),
.w-select[disabled]:not(.w-input-disabled),
.w-input[readonly],
.w-select[readonly],
fieldset[disabled]:not(.w-input-disabled) .w-input,
fieldset[disabled]:not(.w-input-disabled) .w-select {
  background-color: #eee;
}
textarea.w-input,
textarea.w-select {
  height: auto;
}
.w-select {
  background-color: #f3f3f3;
}
.w-select[multiple] {
  height: auto;
}
.w-form-label {
  cursor: pointer;
  margin-bottom: 0;
  font-weight: normal;
  display: inline-block;
}
.w-radio {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}
.w-radio:before,
.w-radio:after {
  content: " ";
  grid-area: 1/1/2/2;
  display: table;
}
.w-radio:after {
  clear: both;
}
.w-radio-input {
  float: left;
  margin: 3px 0 0 -20px;
  line-height: normal;
}
.w-file-upload {
  margin-bottom: 10px;
  display: block;
}
.w-file-upload-input {
  opacity: 0;
  z-index: -100;
  width: 0.1px;
  height: 0.1px;
  position: absolute;
  overflow: hidden;
}
.w-file-upload-default,
.w-file-upload-uploading,
.w-file-upload-success {
  color: #333;
  display: inline-block;
}
.w-file-upload-error {
  margin-top: 10px;
  display: block;
}
.w-file-upload-default.w-hidden,
.w-file-upload-uploading.w-hidden,
.w-file-upload-error.w-hidden,
.w-file-upload-success.w-hidden {
  display: none;
}
.w-file-upload-uploading-btn {
  cursor: pointer;
  background-color: #fafafa;
  border: 1px solid #ccc;
  margin: 0;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: normal;
  display: flex;
}
.w-file-upload-file {
  background-color: #fafafa;
  border: 1px solid #ccc;
  flex-grow: 1;
  justify-content: space-between;
  margin: 0;
  padding: 8px 9px 8px 11px;
  display: flex;
}
.w-file-upload-file-name {
  font-size: 14px;
  font-weight: normal;
  display: block;
}
.w-file-remove-link {
  cursor: pointer;
  width: auto;
  height: auto;
  margin-top: 3px;
  margin-left: 10px;
  padding: 3px;
  display: block;
}
.w-icon-file-upload-remove {
  margin: auto;
  font-size: 10px;
}
.w-file-upload-error-msg {
  color: #ea384c;
  padding: 2px 0;
  display: inline-block;
}
.w-file-upload-info {
  padding: 0 12px;
  line-height: 38px;
  display: inline-block;
}
.w-file-upload-label {
  cursor: pointer;
  background-color: #fafafa;
  border: 1px solid #ccc;
  margin: 0;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: normal;
  display: inline-block;
}
.w-icon-file-upload-icon,
.w-icon-file-upload-uploading {
  width: 20px;
  margin-right: 8px;
  display: inline-block;
}
.w-icon-file-upload-uploading {
  height: 20px;
}
.w-container {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}
.w-container:before,
.w-container:after {
  content: " ";
  grid-area: 1/1/2/2;
  display: table;
}
.w-container:after {
  clear: both;
}
.w-container .w-row {
  margin-left: -10px;
  margin-right: -10px;
}
.w-row:before,
.w-row:after {
  content: " ";
  grid-area: 1/1/2/2;
  display: table;
}
.w-row:after {
  clear: both;
}
.w-row .w-row {
  margin-left: 0;
  margin-right: 0;
}
.w-col {
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}
.w-col .w-col {
  padding-left: 0;
  padding-right: 0;
}
.w-col-1 {
  width: 8.33333%;
}
.w-col-2 {
  width: 16.6667%;
}
.w-col-3 {
  width: 25%;
}
.w-col-4 {
  width: 33.3333%;
}
.w-col-5 {
  width: 41.6667%;
}
.w-col-6 {
  width: 50%;
}
.w-col-7 {
  width: 58.3333%;
}
.w-col-8 {
  width: 66.6667%;
}
.w-col-9 {
  width: 75%;
}
.w-col-10 {
  width: 83.3333%;
}
.w-col-11 {
  width: 91.6667%;
}
.w-col-12 {
  width: 100%;
}
.w-hidden-main {
  display: none !important;
}
@media screen and (max-width: 991px) {
  .w-container {
    max-width: 728px;
  }
  .w-hidden-main {
    display: inherit !important;
  }
  .w-hidden-medium {
    display: none !important;
  }
  .w-col-medium-1 {
    width: 8.33333%;
  }
  .w-col-medium-2 {
    width: 16.6667%;
  }
  .w-col-medium-3 {
    width: 25%;
  }
  .w-col-medium-4 {
    width: 33.3333%;
  }
  .w-col-medium-5 {
    width: 41.6667%;
  }
  .w-col-medium-6 {
    width: 50%;
  }
  .w-col-medium-7 {
    width: 58.3333%;
  }
  .w-col-medium-8 {
    width: 66.6667%;
  }
  .w-col-medium-9 {
    width: 75%;
  }
  .w-col-medium-10 {
    width: 83.3333%;
  }
  .w-col-medium-11 {
    width: 91.6667%;
  }
  .w-col-medium-12 {
    width: 100%;
  }
  .w-col-stack {
    width: 100%;
    left: auto;
    right: auto;
  }
}
@media screen and (max-width: 767px) {
  .w-hidden-main,
  .w-hidden-medium {
    display: inherit !important;
  }
  .w-hidden-small {
    display: none !important;
  }
  .w-row,
  .w-container .w-row {
    margin-left: 0;
    margin-right: 0;
  }
  .w-col {
    width: 100%;
    left: auto;
    right: auto;
  }
  .w-col-small-1 {
    width: 8.33333%;
  }
  .w-col-small-2 {
    width: 16.6667%;
  }
  .w-col-small-3 {
    width: 25%;
  }
  .w-col-small-4 {
    width: 33.3333%;
  }
  .w-col-small-5 {
    width: 41.6667%;
  }
  .w-col-small-6 {
    width: 50%;
  }
  .w-col-small-7 {
    width: 58.3333%;
  }
  .w-col-small-8 {
    width: 66.6667%;
  }
  .w-col-small-9 {
    width: 75%;
  }
  .w-col-small-10 {
    width: 83.3333%;
  }
  .w-col-small-11 {
    width: 91.6667%;
  }
  .w-col-small-12 {
    width: 100%;
  }
}
@media screen and (max-width: 479px) {
  .w-container {
    max-width: none;
  }
  .w-hidden-main,
  .w-hidden-medium,
  .w-hidden-small {
    display: inherit !important;
  }
  .w-hidden-tiny {
    display: none !important;
  }
  .w-col {
    width: 100%;
  }
  .w-col-tiny-1 {
    width: 8.33333%;
  }
  .w-col-tiny-2 {
    width: 16.6667%;
  }
  .w-col-tiny-3 {
    width: 25%;
  }
  .w-col-tiny-4 {
    width: 33.3333%;
  }
  .w-col-tiny-5 {
    width: 41.6667%;
  }
  .w-col-tiny-6 {
    width: 50%;
  }
  .w-col-tiny-7 {
    width: 58.3333%;
  }
  .w-col-tiny-8 {
    width: 66.6667%;
  }
  .w-col-tiny-9 {
    width: 75%;
  }
  .w-col-tiny-10 {
    width: 83.3333%;
  }
  .w-col-tiny-11 {
    width: 91.6667%;
  }
  .w-col-tiny-12 {
    width: 100%;
  }
}
.w-widget {
  position: relative;
}
.w-widget-map {
  width: 100%;
  height: 400px;
}
.w-widget-map label {
  width: auto;
  display: inline;
}
.w-widget-map img {
  max-width: inherit;
}
.w-widget-map .gm-style-iw {
  text-align: center;
}
.w-widget-map .gm-style-iw > button {
  display: none !important;
}
.w-widget-twitter {
  overflow: hidden;
}
.w-widget-twitter-count-shim {
  vertical-align: top;
  text-align: center;
  background: #fff;
  border: 1px solid #758696;
  border-radius: 3px;
  width: 28px;
  height: 20px;
  display: inline-block;
  position: relative;
}
.w-widget-twitter-count-shim * {
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}
.w-widget-twitter-count-shim .w-widget-twitter-count-inner {
  text-align: center;
  color: #999;
  font-family: serif;
  font-size: 15px;
  line-height: 12px;
  position: relative;
}
.w-widget-twitter-count-shim .w-widget-twitter-count-clear {
  display: block;
  position: relative;
}
.w-widget-twitter-count-shim.w--large {
  width: 36px;
  height: 28px;
}
.w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 18px;
}
.w-widget-twitter-count-shim:not(.w--vertical) {
  margin-left: 5px;
  margin-right: 8px;
}
.w-widget-twitter-count-shim:not(.w--vertical).w--large {
  margin-left: 6px;
}
.w-widget-twitter-count-shim:not(.w--vertical):before,
.w-widget-twitter-count-shim:not(.w--vertical):after {
  content: " ";
  pointer-events: none;
  border: solid rgba(0, 0, 0, 0);
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 0;
}
.w-widget-twitter-count-shim:not(.w--vertical):before {
  border-width: 4px;
  border-color: rgba(117, 134, 150, 0) #5d6c7b rgba(117, 134, 150, 0) rgba(117, 134, 150, 0);
  margin-top: -4px;
  margin-left: -9px;
}
.w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
  border-width: 5px;
  margin-top: -5px;
  margin-left: -10px;
}
.w-widget-twitter-count-shim:not(.w--vertical):after {
  border-width: 4px;
  border-color: rgba(255, 255, 255, 0) #fff rgba(255, 255, 255, 0) rgba(255, 255, 255, 0);
  margin-top: -4px;
  margin-left: -8px;
}
.w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
  border-width: 5px;
  margin-top: -5px;
  margin-left: -9px;
}
.w-widget-twitter-count-shim.w--vertical {
  width: 61px;
  height: 33px;
  margin-bottom: 8px;
}
.w-widget-twitter-count-shim.w--vertical:before,
.w-widget-twitter-count-shim.w--vertical:after {
  content: " ";
  pointer-events: none;
  border: solid rgba(0, 0, 0, 0);
  width: 0;
  height: 0;
  position: absolute;
  top: 100%;
  left: 50%;
}
.w-widget-twitter-count-shim.w--vertical:before {
  border-width: 5px;
  border-color: #5d6c7b rgba(117, 134, 150, 0) rgba(117, 134, 150, 0);
  margin-left: -5px;
}
.w-widget-twitter-count-shim.w--vertical:after {
  border-width: 4px;
  border-color: #fff rgba(255, 255, 255, 0) rgba(255, 255, 255, 0);
  margin-left: -4px;
}
.w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 22px;
}
.w-widget-twitter-count-shim.w--vertical.w--large {
  width: 76px;
}
.w-background-video {
  color: #fff;
  height: 500px;
  position: relative;
  overflow: hidden;
}
.w-background-video > video {
  object-fit: cover;
  z-index: -100;
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  inset: -100%;
}
.w-background-video > video::-webkit-media-controls-start-playback-button {
  -webkit-appearance: none;
  display: none !important;
}
.w-background-video--control {
  background-color: rgba(0, 0, 0, 0);
  padding: 0;
  position: absolute;
  bottom: 1em;
  right: 1em;
}
.w-background-video--control > [hidden] {
  display: none !important;
}
.w-slider {
  text-align: center;
  clear: both;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  background: #ddd;
  height: 300px;
  position: relative;
}
.w-slider-mask {
  z-index: 1;
  white-space: nowrap;
  height: 100%;
  display: block;
  position: relative;
  left: 0;
  right: 0;
  overflow: hidden;
}
.w-slide {
  vertical-align: top;
  white-space: normal;
  text-align: left;
  width: 100%;
  height: 100%;
  display: inline-block;
  position: relative;
}
.w-slider-nav {
  z-index: 2;
  text-align: center;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  height: 40px;
  margin: auto;
  padding-top: 10px;
  position: absolute;
  inset: auto 0 0;
}
.w-slider-nav.w-round > div {
  border-radius: 100%;
}
.w-slider-nav.w-num > div {
  font-size: inherit;
  line-height: inherit;
  width: auto;
  height: auto;
  padding: 0.2em 0.5em;
}
.w-slider-nav.w-shadow > div {
  box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
}
.w-slider-nav-invert {
  color: #fff;
}
.w-slider-nav-invert > div {
  background-color: rgba(34, 34, 34, 0.4);
}
.w-slider-nav-invert > div.w-active {
  background-color: #222;
}
.w-slider-dot {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.4);
  width: 1em;
  height: 1em;
  margin: 0 3px 0.5em;
  transition: background-color 0.1s, color 0.1s;
  display: inline-block;
  position: relative;
}
.w-slider-dot.w-active {
  background-color: #fff;
}
.w-slider-dot:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fff;
}
.w-slider-dot:focus.w-active {
  box-shadow: none;
}
.w-slider-arrow-left,
.w-slider-arrow-right {
  cursor: pointer;
  color: #fff;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  user-select: none;
  width: 80px;
  margin: auto;
  font-size: 40px;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.w-slider-arrow-left [class^=w-icon-],
.w-slider-arrow-right [class^=w-icon-],
.w-slider-arrow-left [class*=" w-icon-"],
.w-slider-arrow-right [class*=" w-icon-"] {
  position: absolute;
}
.w-slider-arrow-left:focus,
.w-slider-arrow-right:focus {
  outline: 0;
}
.w-slider-arrow-left {
  z-index: 3;
  right: auto;
}
.w-slider-arrow-right {
  z-index: 4;
  left: auto;
}
.w-icon-slider-left,
.w-icon-slider-right {
  width: 1em;
  height: 1em;
  margin: auto;
  inset: 0;
}
.w-slider-aria-label {
  clip: rect(0 0 0 0);
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}
.w-slider-force-show {
  display: block !important;
}
.w-dropdown {
  text-align: left;
  z-index: 900;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  position: relative;
}
.w-dropdown-btn,
.w-dropdown-toggle,
.w-dropdown-link {
  vertical-align: top;
  color: #222;
  text-align: left;
  white-space: nowrap;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  text-decoration: none;
  position: relative;
}
.w-dropdown-toggle {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  padding-right: 40px;
  display: inline-block;
}
.w-dropdown-toggle:focus {
  outline: 0;
}
.w-icon-dropdown-toggle {
  width: 1em;
  height: 1em;
  margin: auto 20px auto auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
.w-dropdown-list {
  background: #ddd;
  min-width: 100%;
  display: none;
  position: absolute;
}
.w-dropdown-list.w--open {
  display: block;
}
.w-dropdown-link {
  color: #222;
  padding: 10px 20px;
  display: block;
}
.w-dropdown-link.w--current {
  color: #0082f3;
}
.w-dropdown-link:focus {
  outline: 0;
}
@media screen and (max-width: 767px) {
  .w-nav-brand {
    padding-left: 10px;
  }
}
.w-lightbox-backdrop {
  cursor: auto;
  letter-spacing: normal;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  color: #fff;
  text-align: center;
  z-index: 2000;
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -webkit-tap-highlight-color: transparent;
  background: rgba(0, 0, 0, 0.9019607843);
  outline: 0;
  font-family:
    Helvetica Neue,
    Helvetica,
    Ubuntu,
    Segoe UI,
    Verdana,
    sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.2;
  list-style: disc;
  position: fixed;
  inset: 0;
  -webkit-transform: translate(0);
}
.w-lightbox-backdrop,
.w-lightbox-container {
  -webkit-overflow-scrolling: touch;
  height: 100%;
  overflow: auto;
}
.w-lightbox-content {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.w-lightbox-view {
  opacity: 0;
  width: 100vw;
  height: 100vh;
  position: absolute;
}
.w-lightbox-view:before {
  content: "";
  height: 100vh;
}
.w-lightbox-group,
.w-lightbox-group .w-lightbox-view,
.w-lightbox-group .w-lightbox-view:before {
  height: 86vh;
}
.w-lightbox-frame,
.w-lightbox-view:before {
  vertical-align: middle;
  display: inline-block;
}
.w-lightbox-figure {
  margin: 0;
  position: relative;
}
.w-lightbox-group .w-lightbox-figure {
  cursor: pointer;
}
.w-lightbox-img {
  width: auto;
  max-width: none;
  height: auto;
}
.w-lightbox-image {
  float: none;
  max-width: 100vw;
  max-height: 100vh;
  display: block;
}
.w-lightbox-group .w-lightbox-image {
  max-height: 86vh;
}
.w-lightbox-caption {
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.5em 1em;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
.w-lightbox-embed {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.w-lightbox-control {
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  width: 4em;
  transition: all 0.3s;
  position: absolute;
  top: 0;
}
.w-lightbox-left {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==);
  display: none;
  bottom: 0;
  left: 0;
}
.w-lightbox-right {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+);
  display: none;
  bottom: 0;
  right: 0;
}
.w-lightbox-close {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=);
  background-size: 18px;
  height: 2.6em;
  right: 0;
}
.w-lightbox-strip {
  white-space: nowrap;
  padding: 0 1vh;
  line-height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: auto hidden;
}
.w-lightbox-item {
  box-sizing: content-box;
  cursor: pointer;
  width: 10vh;
  padding: 2vh 1vh;
  display: inline-block;
  -webkit-transform: translate3d(0, 0, 0);
}
.w-lightbox-active {
  opacity: 0.3;
}
.w-lightbox-thumbnail {
  background: #222;
  height: 10vh;
  position: relative;
  overflow: hidden;
}
.w-lightbox-thumbnail-image {
  position: absolute;
  top: 0;
  left: 0;
}
.w-lightbox-thumbnail .w-lightbox-tall {
  width: 100%;
  top: 50%;
  transform: translate(0, -50%);
}
.w-lightbox-thumbnail .w-lightbox-wide {
  height: 100%;
  left: 50%;
  transform: translate(-50%);
}
.w-lightbox-spinner {
  box-sizing: border-box;
  border: 5px solid rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  animation: 0.8s linear infinite spin;
  position: absolute;
  top: 50%;
  left: 50%;
}
.w-lightbox-spinner:after {
  content: "";
  border: 3px solid rgba(0, 0, 0, 0);
  border-bottom-color: #fff;
  border-radius: 50%;
  position: absolute;
  inset: -4px;
}
.w-lightbox-hide {
  display: none;
}
.w-lightbox-noscroll {
  overflow: hidden;
}
@media (min-width: 768px) {
  .w-lightbox-content {
    height: 96vh;
    margin-top: 2vh;
  }
  .w-lightbox-view,
  .w-lightbox-view:before {
    height: 96vh;
  }
  .w-lightbox-group,
  .w-lightbox-group .w-lightbox-view,
  .w-lightbox-group .w-lightbox-view:before {
    height: 84vh;
  }
  .w-lightbox-image {
    max-width: 96vw;
    max-height: 96vh;
  }
  .w-lightbox-group .w-lightbox-image {
    max-width: 82.3vw;
    max-height: 84vh;
  }
  .w-lightbox-left,
  .w-lightbox-right {
    opacity: 0.5;
    display: block;
  }
  .w-lightbox-close {
    opacity: 0.8;
  }
  .w-lightbox-control:hover {
    opacity: 1;
  }
}
.w-lightbox-inactive,
.w-lightbox-inactive:hover {
  opacity: 0;
}
.w-richtext:before,
.w-richtext:after {
  content: " ";
  grid-area: 1/1/2/2;
  display: table;
}
.w-richtext:after {
  clear: both;
}
.w-richtext[contenteditable=true]:before,
.w-richtext[contenteditable=true]:after {
  white-space: initial;
}
.w-richtext ol,
.w-richtext ul {
  overflow: hidden;
}
.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:after,
.w-richtext .w-richtext-figure-selected[data-rt-type=video] div:after,
.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div,
.w-richtext .w-richtext-figure-selected[data-rt-type=image] div {
  outline: 2px solid #2895f7;
}
.w-richtext figure.w-richtext-figure-type-video > div:after,
.w-richtext figure[data-rt-type=video] > div:after {
  content: "";
  display: none;
  position: absolute;
  inset: 0;
}
.w-richtext figure {
  max-width: 60%;
  position: relative;
}
.w-richtext figure > div:before {
  cursor: default !important;
}
.w-richtext figure img {
  width: 100%;
}
.w-richtext figure figcaption.w-richtext-figcaption-placeholder {
  opacity: 0.6;
}
.w-richtext figure div {
  color: rgba(0, 0, 0, 0);
  font-size: 0;
}
.w-richtext figure.w-richtext-figure-type-image,
.w-richtext figure[data-rt-type=image] {
  display: table;
}
.w-richtext figure.w-richtext-figure-type-image > div,
.w-richtext figure[data-rt-type=image] > div {
  display: inline-block;
}
.w-richtext figure.w-richtext-figure-type-image > figcaption,
.w-richtext figure[data-rt-type=image] > figcaption {
  caption-side: bottom;
  display: table-caption;
}
.w-richtext figure.w-richtext-figure-type-video,
.w-richtext figure[data-rt-type=video] {
  width: 60%;
  height: 0;
}
.w-richtext figure.w-richtext-figure-type-video iframe,
.w-richtext figure[data-rt-type=video] iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.w-richtext figure.w-richtext-figure-type-video > div,
.w-richtext figure[data-rt-type=video] > div {
  width: 100%;
}
.w-richtext figure.w-richtext-align-center {
  clear: both;
  margin-left: auto;
  margin-right: auto;
}
.w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div,
.w-richtext figure.w-richtext-align-center[data-rt-type=image] > div {
  max-width: 100%;
}
.w-richtext figure.w-richtext-align-normal {
  clear: both;
}
.w-richtext figure.w-richtext-align-fullwidth {
  text-align: center;
  clear: both;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.w-richtext figure.w-richtext-align-fullwidth > div {
  padding-bottom: inherit;
  display: inline-block;
}
.w-richtext figure.w-richtext-align-fullwidth > figcaption {
  display: block;
}
.w-richtext figure.w-richtext-align-floatleft {
  float: left;
  clear: none;
  margin-right: 15px;
}
.w-richtext figure.w-richtext-align-floatright {
  float: right;
  clear: none;
  margin-left: 15px;
}
.w-nav {
  z-index: 1000;
  background: #ddd;
  position: relative;
}
.w-nav:before,
.w-nav:after {
  content: " ";
  grid-area: 1/1/2/2;
  display: table;
}
.w-nav:after {
  clear: both;
}
.w-nav-brand {
  float: left;
  color: #333;
  text-decoration: none;
  position: relative;
}
.w-nav-link {
  vertical-align: top;
  color: #222;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}
.w-nav-link.w--current {
  color: #0082f3;
}
.w-nav-menu {
  float: right;
  position: relative;
}
[data-nav-menu-open] {
  text-align: center;
  background: #c8c8c8;
  min-width: 200px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: visible;
  display: block !important;
}
.w--nav-link-open {
  display: block;
  position: relative;
}
.w-nav-overlay {
  width: 100%;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
}
.w-nav-overlay [data-nav-menu-open] {
  top: 0;
}
.w-nav[data-animation=over-left] .w-nav-overlay {
  width: auto;
}
.w-nav[data-animation=over-left] .w-nav-overlay,
.w-nav[data-animation=over-left] [data-nav-menu-open] {
  z-index: 1;
  top: 0;
  right: auto;
}
.w-nav[data-animation=over-right] .w-nav-overlay {
  width: auto;
}
.w-nav[data-animation=over-right] .w-nav-overlay,
.w-nav[data-animation=over-right] [data-nav-menu-open] {
  z-index: 1;
  top: 0;
  left: auto;
}
.w-nav-button {
  float: right;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  user-select: none;
  padding: 18px;
  font-size: 24px;
  display: none;
  position: relative;
}
.w-nav-button:focus {
  outline: 0;
}
.w-nav-button.w--open {
  color: #fff;
  background-color: #c8c8c8;
}
.w-nav[data-collapse=all] .w-nav-menu {
  display: none;
}
.w-nav[data-collapse=all] .w-nav-button,
.w--nav-dropdown-open,
.w--nav-dropdown-toggle-open {
  display: block;
}
.w--nav-dropdown-list-open {
  position: static;
}
@media screen and (max-width: 991px) {
  .w-nav[data-collapse=medium] .w-nav-menu {
    display: none;
  }
  .w-nav[data-collapse=medium] .w-nav-button {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .w-nav[data-collapse=small] .w-nav-menu {
    display: none;
  }
  .w-nav[data-collapse=small] .w-nav-button {
    display: block;
  }
  .w-nav-brand {
    padding-left: 10px;
  }
}
@media screen and (max-width: 479px) {
  .w-nav[data-collapse=tiny] .w-nav-menu {
    display: none;
  }
  .w-nav[data-collapse=tiny] .w-nav-button {
    display: block;
  }
}
.w-tabs {
  position: relative;
}
.w-tabs:before,
.w-tabs:after {
  content: " ";
  grid-area: 1/1/2/2;
  display: table;
}
.w-tabs:after {
  clear: both;
}
.w-tab-menu {
  position: relative;
}
.w-tab-link {
  vertical-align: top;
  text-align: left;
  cursor: pointer;
  color: #222;
  background-color: #ddd;
  padding: 9px 30px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}
.w-tab-link.w--current {
  background-color: #c8c8c8;
}
.w-tab-link:focus {
  outline: 0;
}
.w-tab-content {
  display: block;
  position: relative;
  overflow: hidden;
}
.w-tab-pane {
  display: none;
  position: relative;
}
.w--tab-active {
  display: block;
}
@media screen and (max-width: 479px) {
  .w-tab-link {
    display: block;
  }
}
.w-ix-emptyfix:after {
  content: "";
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.w-dyn-empty {
  background-color: #ddd;
  padding: 10px;
}
.w-dyn-hide,
.w-dyn-bind-empty,
.w-condition-invisible {
  display: none !important;
}
.wf-layout-layout {
  display: grid;
}
@font-face {
  font-family: Onest;
  src: url(/assets/fonts/Onest-ExtraBold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Onest;
  src: url(/assets/fonts/Onest-ExtraLight.ttf) format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Onest;
  src: url(/assets/fonts/Onest-SemiBold.ttf) format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Onest;
  src: url(/assets/fonts/Onest-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Onest;
  src: url(/assets/fonts/Onest-Black.ttf) format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --color: white;
  --black: black;
  --bg: #0b1220;
  --white: white;
  --primary: #141d2f;
  --text-color: #94a3b8;
  --blue: #1168f3;
  --blue-light: #3e82ee;
  --pink-dark: #e71e83;
  --pink: #e65ea26b;
  --purple: #8924e736;
  --sea: #16bdf4;
  --purple-light: #ab5df3;
  --sea-light: #46c4ee;
  --border: #f8fafc24;
  --purple-dark: #8524df;
  --error: #ff1818;
  --orange: #d56300;
  --green: #16a34a;
  --orange-trans: #d563008f;
}
.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}
.w-checkbox:before {
  content: " ";
  grid-area: 1/1/2/2;
  display: table;
}
.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1/1/2/2;
  display: table;
}
.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}
.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}
.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url(https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}
.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}
body {
  color: var(--color);
  font-family:
    Arial,
    Helvetica Neue,
    Helvetica,
    sans-serif;
  font-size: 14px;
  line-height: 20px;
}
h1 {
  color: var(--black);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}
h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}
h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}
h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}
h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}
h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}
p {
  color: #000;
  margin-bottom: 5px;
}
a {
  display: block;
}
img {
  width: 15px;
  max-width: 100%;
  display: inline-block;
}
.body {
  background-color: var(--bg);
  color: var(--white);
  font-family:
    Onest,
    Verdana,
    sans-serif;
  font-size: 1em;
}
.lb {
  z-index: 99;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.5019607843);
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0;
}
.box {
  z-index: 100;
  background-color: #fff;
  border-radius: 5px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: none;
  position: fixed;
  top: 15%;
  left: 0%;
  right: 0%;
  overflow: visible;
}
.nav {
  z-index: 10;
  background-color: var(--bg);
  border-bottom: 1px solid #1d2842;
  justify-content: center;
  width: 100%;
  display: flex;
  position: sticky;
  inset: 0% 0% auto;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.nav-right-block {
  grid-column-gap: 6vw;
  grid-row-gap: 6vw;
  display: flex;
}
.nav-left-block {
  grid-column-gap: 6vw;
  grid-row-gap: 6vw;
  align-self: center;
  padding-left: 15px;
  display: flex;
}
.nav-left-block.left {
  align-self: flex-start;
}
.nav-right-switcher-theme {
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  cursor: pointer;
  align-items: center;
  display: flex;
}
.container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.container.flex-10 {
  grid-column-gap: 10vh;
  grid-row-gap: 10vh;
  flex-flow: column;
  display: flex;
}
.container.flex {
  flex-flow: column;
  display: flex;
}
.nav-right-theme__inner {
  width: 20px;
  height: 20px;
}
.nav-left-block__home-icon {
  width: 30px;
  height: 30px;
}
.nav-left-block__home {
  grid-column-gap: 0.7vw;
  grid-row-gap: 0.7vw;
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
.nav-inner {
  justify-content: space-between;
  align-items: center;
  height: 4.5rem;
  display: flex;
  position: sticky;
}
.nav-left-block__home-text {
  font-weight: 200;
}
.main {
  background-color: var(--primary);
  min-height: 100vh;
  padding-top: 5vh;
}
.main-header {
  grid-column-gap: 2vh;
  grid-row-gap: 2vh;
  flex-flow: column;
  justify-content: center;
  width: 100%;
  margin-top: 10vh;
  display: flex;
}
.main-h1 {
  color: var(--white);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family:
    Onest,
    Verdana,
    sans-serif;
  font-size: 4em;
  line-height: 7vh;
}
.bold-text {
  color: rgba(0, 0, 0, 0);
  -webkit-text-fill-color: transparent;
  background-image:
    linear-gradient(
      46deg,
      #e7e8ff,
      #8a76ff 54%,
      #ff4da7);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 700;
}
.nav-centre-block {
  align-items: center;
  display: flex;
}
.nav-list-centre {
  grid-column-gap: 4vw;
  grid-row-gap: 4vw;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}
.nav-list-centre__item {
  pointer-events: auto;
  color: var(--text-color);
  cursor: pointer;
  font-weight: 300;
  transition: color 0.2s;
}
.nav-list-centre__item:hover {
  color: var(--white);
}
.nav-login-link {
  background-color: var(--blue);
  color: var(--white);
  border-radius: 10px;
  padding: 10px;
  font-weight: 400;
  text-decoration: none;
  transition: background-color 0.2s;
}
.nav-login-link:hover {
  background-color: var(--blue-light);
}
.nav-right-theme {
  border-radius: 50%;
  padding: 10px;
  transition: background-color 0.3s;
}
.nav-right-theme:hover {
  background-color: var(--pink-dark);
}
.start-btn__text {
  justify-content: center;
  align-self: center;
  font-weight: 400;
}
.start-btn {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  background-color: var(--blue);
  cursor: pointer;
  border-radius: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-self: center;
  padding: 15px 30px;
  transition: background-color 0.2s;
  display: flex;
}
.start-btn:hover {
  background-color: #2b67c7;
}
.start-btn__icon {
  width: 20px;
}
.home-code-block {
  background-color: #1d283a;
  border-radius: 10px;
  align-self: center;
  width: 50%;
  height: 400px;
  padding: 15px;
  box-shadow: 0 0 9px 4px rgba(17, 25, 44, 0.3882352941);
}
.home-code-block__header {
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  align-items: center;
  display: flex;
}
.home-code-block__point {
  border-radius: 50%;
  width: 12px;
  height: 12px;
}
.home-code-block__point.red {
  background-color: #7f1d1d;
}
.home-code-block__point.pink {
  background-color: var(--pink);
}
.home-code-block__point.blue {
  background-color: var(--blue);
}
.home-code-block__points {
  grid-column-gap: 0.5vw;
  grid-row-gap: 0.5vw;
  display: flex;
}
.home-code-block__header-text {
  color: var(--text-color);
  font-size: 0.9em;
  font-weight: 200;
}
.main-page-block {
  padding-top: 8vh;
  padding-bottom: 8vh;
}
.main-page-block.black {
  background-color: var(--primary);
}
.main-page-block.p-4 {
  padding-bottom: 4vh;
}
.main-page-block-header__h1 {
  text-align: center;
  font-size: 2.4em;
  font-weight: 600;
}
.main-page-block-header__description {
  color: var(--text-color);
  text-align: center;
  font-size: 1.3em;
  font-weight: 200;
}
.main-page-block-header {
  margin-bottom: 8vh;
}
.possibilities-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: wrap;
  grid-template: ". ." ". ." ". Area"/1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  width: 100%;
  display: grid;
}
.possibility-item {
  grid-column-gap: 3vh;
  grid-row-gap: 3vh;
  background-color: var(--primary);
  cursor: auto;
  border-radius: 20px;
  flex-flow: column;
  padding: 25px;
  display: flex;
}
.possibility-item.blue:hover {
  outline-color: var(--blue);
  outline-offset: -1px;
  outline-width: 1px;
  outline-style: solid;
  box-shadow: 0 0 25px rgba(55, 120, 225, 0.2196078431);
}
.possibility-item.pink {
  transition: box-shadow 0.2s;
}
.possibility-item.pink:hover {
  box-shadow: 0 0 25px 0 var(--pink);
  outline-color: var(--pink);
  outline-offset: -1px;
  outline-width: 1px;
  outline-style: solid;
}
.possibility-item.purple:hover {
  box-shadow: 0 0 25px 0 var(--purple);
  outline-color: var(--purple);
  outline-offset: -1px;
  outline-width: 1px;
  outline-style: solid;
}
.possibility-item.sea:hover {
  outline-color: var(--sea);
  outline-offset: -1px;
  outline-width: 1px;
  outline-style: solid;
  box-shadow: 0 0 25px rgba(22, 189, 244, 0.1882352941);
}
.possibility-item__icon {
  width: 30px;
  height: 30px;
}
.possibility-item__text {
  color: var(--text-color);
  font-weight: 200;
  line-height: 23px;
}
.possibility-item__title {
  font-size: 1.3em;
  font-weight: 600;
}
.possibility-item__icon-wrapper {
  border-radius: 10px;
  align-self: flex-start;
  padding: 10px;
  display: flex;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.possibility-item__icon-wrapper.blue {
  background-image:
    linear-gradient(
      312deg,
      var(--blue),
      var(--blue-light));
}
.possibility-item__icon-wrapper.pink {
  background-color: var(--pink);
  background-image:
    linear-gradient(
      302deg,
      var(--pink-dark),
      var(--pink));
}
.possibility-item__icon-wrapper.purple {
  background-image:
    linear-gradient(
      145deg,
      var(--purple-light),
      var(--purple));
}
.possibility-item__icon-wrapper.sea {
  background-color: var(--sea-light);
  background-image:
    linear-gradient(
      321deg,
      var(--sea),
      var(--sea-light));
}
.integration-flex {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  flex-flow: row;
  flex: 0 auto;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}
.integration-item {
  grid-column-gap: 3vh;
  grid-row-gap: 3vh;
  background-color: var(--bg);
  border-radius: 15px;
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
  padding: 25px;
  display: flex;
}
.integration-item:hover {
  outline-offset: -1px;
  outline: 1px solid rgba(248, 250, 252, 0.2);
}
.integration-item__icon-wrapper {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  border-radius: 10px;
  align-self: flex-start;
  align-items: center;
  padding: 10px;
  display: flex;
}
.integration-item__icon {
  width: 60px;
  height: 60px;
}
.integration-item__text {
  color: var(--text-color);
  font-weight: 200;
  line-height: 23px;
}
.integration-item__text-header {
  font-size: 2em;
  font-weight: 400;
}
.integration-btn-connect {
  border: 1px solid var(--primary);
  cursor: pointer;
  border-radius: 10px;
  align-self: center;
  padding: 10px 20px;
  font-weight: 200;
  transition: background-color 0.2s;
  display: flex;
}
.integration-btn-connect:hover {
  background-color: var(--primary);
}
.api-item {
  grid-column-gap: 3vh;
  grid-row-gap: 3vh;
  background-color: var(--primary);
  cursor: pointer;
  border-radius: 20px;
  flex-flow: column;
  padding: 25px;
  display: flex;
}
.api-item.blue {
  transition: box-shadow 0.2s;
}
.api-item.blue:hover {
  outline-color: var(--blue);
  outline-offset: -1px;
  outline-width: 1px;
  outline-style: solid;
  box-shadow: 0 0 25px rgba(55, 120, 225, 0.2196078431);
}
.api-item__icon-wrapper {
  border-radius: 10px;
  align-self: flex-start;
  padding: 10px;
  display: flex;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.api-item__icon-wrapper.blue {
  background-image:
    linear-gradient(
      312deg,
      var(--blue),
      var(--blue-light));
}
.api-item__title {
  font-size: 1.3em;
  font-weight: 600;
}
.api-item__text {
  color: var(--text-color);
  font-weight: 200;
  line-height: 23px;
}
.api-block {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}
.doc-item {
  grid-column-gap: 1vh;
  grid-row-gap: 1vh;
  background-color: var(--bg);
  cursor: pointer;
  border-radius: 15px;
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 25px 20px;
  display: flex;
}
.doc-item:hover {
  outline-color: var(--border);
  outline-offset: -1px;
  outline-width: 1px;
  outline-style: solid;
}
.doc-item__icon {
  align-self: center;
  width: 40px;
  height: 40px;
}
.doc-item__text {
  color: var(--white);
  align-self: center;
  font-weight: 400;
  line-height: 23px;
}
.doc-item__desc {
  color: var(--text-color);
  text-align: center;
  align-self: center;
  font-size: 0.9em;
  font-weight: 200;
  line-height: 23px;
}
.doc-item__action {
  color: var(--color);
  border-radius: 10px;
  align-self: center;
  margin-top: 3vh;
  padding: 10px 15px;
  font-weight: 400;
  line-height: 23px;
  transition: background-color 0.2s;
  position: static;
  bottom: 0;
}
.doc-item__action:hover {
  background-color: var(--pink-dark);
}
.integration-list {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}
.footer-column {
  grid-column-gap: 3vh;
  grid-row-gap: 3vh;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}
.footer-list__item {
  color: var(--text-color);
  font-size: 0.9em;
  font-weight: 200;
  text-decoration: none;
}
.footer-list {
  grid-column-gap: 1vh;
  grid-row-gap: 1vh;
  flex-flow: column;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}
.footer-inner {
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1215686275);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  place-items: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 8vh;
  display: flex;
}
.footer-title-name-firm {
  font-size: 1.3em;
  font-weight: 600;
}
.footer-network {
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}
.footer-network__item {
  cursor: pointer;
  width: 20px;
  height: 20px;
}
.footer-network__item:hover {
  opacity: 0.8;
}
.right-reserved {
  color: var(--text-color);
  text-align: center;
  margin-top: 4vh;
  font-weight: 200;
}
.window-header {
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}
.window-body {
  border-style: solid;
  border-width: 5px 1px 1px;
  border-color: var(--blue) var(--border) var(--border);
  background-color: var(--primary);
  border-radius: 15px;
  width: 30%;
  padding: 25px;
}
.window-body._404 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.window-body.terms {
  width: 70%;
  margin-top: 4vh;
  font-weight: 400;
}
.window-header__logo {
  cursor: pointer;
  width: 40px;
  height: 40px;
}
.window-header__text {
  color: var(--white);
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
}
.window-body__title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}
.group-form {
  margin-top: 2vh;
}
.group-input {
  border: 1px solid var(--border);
  background-color: var(--bg);
  color: var(--color);
  cursor: text;
  border-radius: 10px;
  height: 40px;
  margin-bottom: 0;
}
.group-input.block {
  background-color: var(--primary);
}
.group-input.blocked {
  background-color: var(--primary);
  cursor: not-allowed;
}
.form-wrapper {
  margin-top: 5vh;
}
.group-label {
  color: var(--text-color);
  margin-left: 3px;
  font-weight: 400;
}
.group-btn-ok {
  background-color: rgba(56, 152, 236, 0);
  background-image:
    linear-gradient(
      270deg,
      var(--purple-dark),
      var(--blue));
  cursor: pointer;
  border-radius: 5px;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
}
.group-btn-ok:hover {
  opacity: 0.9;
}
.group-btn-ok.mt-6 {
  border-radius: 10px;
  margin-top: 6vh;
}
.group-btn-ok.mt-6:hover {
  opacity: 0.9;
}
.group-btn-ok.blocked {
  background-image:
    linear-gradient(
      270deg,
      var(--primary),
      var(--bg));
  color: var(--border);
}
.window-header__text-span {
  color: var(--text-color);
  font-size: 0.7em;
  font-weight: 200;
}
.form-checkbox-wrapper {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  justify-content: flex-start;
  align-items: center;
  margin-top: 3vh;
  margin-bottom: 0;
  display: flex;
}
.form-checkbox {
  color: var(--text-color);
  cursor: pointer;
  width: 20px;
  height: 20px;
  margin-top: 0;
}
.form-checkbox-text {
  color: var(--text-color);
  cursor: pointer;
  margin-bottom: 0;
  text-decoration: underline;
}
.success-message {
  background-color: var(--bg);
  border-radius: 15px;
}
.group-error {
  background-color: var(--error);
  border-radius: 10px;
}
.body-inner {
  background-color: var(--bg);
  color: var(--white);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  font-family:
    Onest,
    Verdana,
    sans-serif;
  font-size: 1em;
  display: flex;
}
.body-inner.no-gradient {
  grid-column-gap: 6vh;
  grid-row-gap: 6vh;
  flex-flow: column;
}
.body-inner.terms {
  grid-column-gap: 6vh;
  grid-row-gap: 6vh;
  background-image:
    linear-gradient(
      180deg,
      var(--bg),
      #1a2337 54%,
      var(--primary) 71%,
      var(--black) 91%,
      var(--black));
  flex-flow: column;
}
.body-inner.auth {
  grid-column-gap: 5vh;
  grid-row-gap: 5vh;
  background-image:
    linear-gradient(
      180deg,
      var(--bg),
      #212c3f 45%,
      #202b41 60%,
      #202a3e 72%,
      var(--black));
  flex-flow: column;
}
.group-btn-google {
  background-color: rgba(56, 152, 236, 0);
  background-image:
    linear-gradient(
      270deg,
      var(--purple-dark),
      var(--blue));
  border-radius: 5px;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
}
.group-btn-google:hover {
  opacity: 0.9;
}
.group-btn-google.mt-6 {
  cursor: pointer;
  border-radius: 10px;
  margin-top: 6vh;
}
.group-btn-google.mt-6:hover {
  opacity: 0.9;
}
.group-btn-google.blocked {
  background-image:
    linear-gradient(
      270deg,
      var(--primary),
      var(--bg));
  color: var(--border);
}
.btn-google-wrapper {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  background-color: var(--black);
  cursor: pointer;
  border-radius: 15px;
  align-items: center;
  margin-top: 1vh;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: 10px;
  display: flex;
  position: relative;
}
.btn-google-wrapper:hover {
  opacity: 0.9;
}
.btn-login-wrapper__icon {
  width: 20px;
}
.btn-login-wrapper__text {
  text-align: center;
  width: 100%;
}
.btn-github-wrapper {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  background-color: var(--bg);
  cursor: pointer;
  border-radius: 15px;
  align-items: center;
  margin-top: 1vh;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  display: flex;
  position: relative;
}
.btn-github-wrapper:hover {
  opacity: 0.9;
}
.window-under-block__text-link-left {
  color: var(--text-color);
  cursor: pointer;
  justify-content: flex-end;
  text-decoration: underline;
  transition: color 0.2s;
}
.window-under-block__text-link-left:hover {
  color: var(--color);
}
.window-under-block {
  justify-content: space-between;
  display: flex;
}
.window-under-block.mt-2 {
  margin-top: 2vh;
}
.window-under-block__text-link-right {
  color: var(--text-color);
  cursor: pointer;
  justify-content: flex-end;
  text-decoration: underline;
  transition: color 0.2s;
}
.window-under-block__text-link-right:hover {
  color: var(--color);
}
.error-page-separator {
  background-color: rgba(148, 163, 184, 0.1411764706);
  width: 1px;
  height: 100%;
}
.error-page-404,
.error-page-text {
  color: var(--text-color);
}
.group-textaria {
  border: 1px solid var(--border);
  background-color: var(--bg);
  color: var(--color);
  border-radius: 10px;
}
.paragraph-terms {
  color: var(--color);
  line-height: 23px;
}
.body-inner-terms {
  background-color: var(--bg);
  color: var(--white);
  justify-content: center;
  align-items: center;
  width: 100%;
  font-family:
    Onest,
    Verdana,
    sans-serif;
  font-size: 1em;
  display: flex;
}
.body-inner-terms.auth {
  grid-column-gap: 6vh;
  grid-row-gap: 6vh;
  background-image:
    linear-gradient(
      180deg,
      var(--bg),
      #1a2337 54%,
      var(--primary) 71%,
      var(--black) 91%,
      var(--black));
  flex-flow: column;
}
.body-inner-terms.terms {
  grid-column-gap: 6vh;
  grid-row-gap: 6vh;
  background-image:
    linear-gradient(
      180deg,
      var(--bg),
      #1a2337 54%,
      var(--primary) 71%,
      var(--black) 91%,
      var(--black));
  flex-flow: column;
  padding-top: 10vh;
}
.body-inner-terms-new {
  background-color: var(--bg);
  color: var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 4vh;
  font-family:
    Onest,
    Verdana,
    sans-serif;
  font-size: 1em;
  display: flex;
}
.body-inner-terms-new.auth {
  grid-column-gap: 6vh;
  grid-row-gap: 6vh;
  background-image:
    linear-gradient(
      180deg,
      var(--bg),
      #1a2337 54%,
      var(--primary) 71%,
      var(--black) 91%,
      var(--black));
  flex-flow: column;
}
.body-inner-terms-new.terms {
  grid-column-gap: 6vh;
  grid-row-gap: 6vh;
  background-image:
    linear-gradient(
      180deg,
      var(--bg),
      #1a2337 54%,
      var(--primary) 71%,
      var(--black) 91%,
      var(--black));
  flex-flow: column;
  padding-top: 10vh;
}
.nav-dash-block__icon {
  width: 40px;
}
.nav-dash-block {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  align-items: center;
  display: flex;
}
.dashboard-wrapper {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}
.dashboard-wrapper.none {
  display: none;
}
.div-block {
  background-color: var(--blue);
  border-radius: 50%;
  width: 10px;
  height: 10px;
  position: absolute;
  inset: auto 5% -2% auto;
}
.div-block-3 {
  display: flex;
}
.block-navbar-dash-left {
  align-self: center;
  display: flex;
}
.nav-username {
  color: var(--pink-dark);
  text-decoration: none;
}
.navbar-dash-right {
  background-color: var(--primary);
  flex-flow: column;
  width: 80%;
  height: 100%;
  margin-left: 20%;
  display: flex;
}
.block-left-navbar-dash__icon {
  cursor: pointer;
  width: 20px;
  height: 20px;
}
.form-block {
  align-self: center;
  margin-bottom: 0;
  display: flex;
}
.block-left-navbar-dash {
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: flex;
}
.nav-menu-left__item {
  border-left: 5px solid var(--primary);
  cursor: pointer;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  width: 90%;
  padding-top: 10px;
  padding-bottom: 10px;
}
.nav-menu-left__item:hover {
  background-color: var(--bg);
}
.nav-menu-left__item.active {
  border-left: 4px solid var(--purple-dark);
  background-color: var(--bg);
}
.div-block-8 {
  width: 80%;
}
.item-inner-nav__icon {
  color: #8524df;
  border-radius: 50%;
  width: 25px;
  height: 25px;
}
.nav-menu-left__item-text {
  color: var(--text-color);
  font-weight: 200;
  transition: color 0.2s;
}
.nav-menu-left__item-text:hover {
  color: var(--color);
}
.nav-menu-left__item-text.active {
  color: var(--color);
  transition: color 0.2s;
}
.nav-menu-left__item-text.active:hover {
  color: var(--border);
}
.item-inner-nav {
  grid-column-gap: 0.5vw;
  grid-row-gap: 0.5vw;
  align-items: center;
  padding-left: 9px;
  display: flex;
}
.item-inner-nav-in {
  box-sizing: border-box;
  aspect-ratio: 1;
  background-color: var(--border);
  object-fit: contain;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 5px;
  display: flex;
}
.item-inner-nav-in.gitlab {
  background-color: var(--orange);
}
.nav-menu-left {
  flex-flow: column;
  width: 100%;
  margin-top: 4vh;
  display: flex;
}
.block-create-project__icon {
  width: 20px;
}
.block-navbar-hi {
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  align-items: center;
  display: flex;
}
.block-create-project__text:hover {
  -webkit-text-stroke-color: var(--color);
}
.block-navbar-dash-right {
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding-right: 1vw;
  display: flex;
}
.block-create-project {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  color: var(--color);
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
}
.block-create-project:hover {
  color: var(--text-color);
  -webkit-text-stroke-color: var(--color);
}
.navbar-righr-notification__icon {
  width: 20px;
  height: 20px;
}
.navbar-right-notification {
  background-color: var(--orange);
  cursor: pointer;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  transition: background-color 0.2s;
  display: flex;
}
.navbar-right-notification:hover {
  background-color: #8c4100;
}
.navbar-dash-right__high {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 90px;
  padding-left: 10px;
  display: flex;
}
.dash-main {
  background-color: var(--bg);
  height: 100%;
  padding-top: 15px;
  padding-left: 15px;
  padding-right: 15px;
}
.dash-main-hello__text {
  font-weight: 400;
}
.nav-repo-description {
  grid-column-gap: 0.5vh;
  grid-row-gap: 0.5vh;
  flex-flow: column;
  margin-left: 10px;
  display: flex;
}
.text-block {
  font-weight: 600;
}
.navbar-settings {
  cursor: pointer;
  width: 20px;
  height: 20px;
}
.dash-main-hello {
  margin-top: 0;
  margin-bottom: 0;
}
.dash-main-navbar {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}
.btn-add-new-project {
  background-color: var(--blue);
  color: var(--color);
  cursor: pointer;
  border-radius: 10px;
  padding: 15px 20px;
  transition: background-color 0.2s;
}
.btn-add-new-project:hover {
  background-color: var(--blue-light);
}
.item-inner-nav__sub-menu {
  width: 22px;
}
.sub-menu-points {
  position: relative;
}
.sub-menu-repo {
  z-index: 1;
  border: 1px solid var(--border);
  background-color: var(--bg);
  white-space: nowrap;
  border-radius: 10px;
  flex-flow: column;
  align-items: flex-start;
  display: inline-flex;
  position: absolute;
  top: 30px;
  left: 0%;
  right: auto;
}
.sub-menu-repo.none {
  display: none;
}
.sub-menu-repo__item {
  grid-column-gap: 0.5vw;
  grid-row-gap: 0.5vw;
  background-color: var(--primary);
  cursor: pointer;
  align-items: center;
  width: 100%;
  padding: 10px 30px 10px 15px;
  transition: background-color 0.2s;
  display: flex;
}
.sub-menu-repo__item:hover {
  background-color: var(--bg);
}
.sub-menu-repo__item.last {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.sub-menu-repo__item.first {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.sub-menu-repo__icon {
  width: 18px;
  height: 18px;
}
.sub-menu-repo__text.delete {
  color: var(--error);
  transition: color 0.2s;
}
.sub-menu-repo__text.delete:hover {
  -webkit-text-stroke-color: #ff5858;
}
.repo-dates {
  grid-column-gap: 0.2vw;
  grid-row-gap: 0.2vw;
  color: var(--text-color);
  flex-flow: column;
  align-items: flex-end;
  margin-top: 1vh;
  font-size: 0.8em;
  font-weight: 200;
  display: flex;
}
.repo-dates__wrapper {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  display: flex;
}
.nav-sub-menu-high {
  border: 1px solid var(--border);
  background-color: var(--bg);
  border-radius: 10px;
  flex-flow: column;
  width: 100%;
  display: inline-flex;
  position: absolute;
  inset: 30px auto auto 0%;
}
.nav-sub-menu-high__item {
  grid-column-gap: 0.5vw;
  grid-row-gap: 0.5vw;
  padding: 10px 20px 10px 15px;
  display: flex;
  position: absolute;
}
.nav-sub-menu-high__icon {
  width: 25px;
}
.tabs-menu {
  justify-content: center;
  display: flex;
}
.profile-tab {
  padding: 16px 40px 15px;
}
.profile-tab.w--current {
  background-color: var(--pink-dark);
}
.profile-tab.left {
  background-color: var(--bg);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.profile-tab.left.w--current {
  background-color: var(--pink-dark);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.profile-tab.right {
  background-color: var(--bg);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.profile-tab.right.w--current {
  background-color: var(--pink-dark);
}
.profile-tab-bio__text {
  color: var(--color);
}
.tab-link-tab-2 {
  background-color: var(--bg);
  border-top-right-radius: 10px;
}
.text-block-3 {
  color: var(--color);
}
.form-settings {
  padding-top: 10px;
}
.repo-outlet {
  z-index: 10;
  background-color: var(--bg);
  border-radius: 10px;
  justify-content: space-between;
  margin-top: 2vh;
  padding: 10px;
  display: flex;
}
.navig-tabs {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  text-align: center;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 2fr 2.25fr 1.25fr 1.25fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 0;
  padding: 0;
  list-style-type: none;
  display: grid;
}
.navig-tabs__item {
  background-color: var(--primary);
  cursor: pointer;
  border-radius: 10px;
  padding: 15px;
  transition: border-width 0.2s, background-color 0.2s;
}
.navig-tabs__item:hover,
.navig-tabs__item.active {
  background-color: var(--pink-dark);
}
.navig-tabs_a {
  color: var(--color);
  text-decoration: none;
}
.tab-content-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  margin-top: 2vh;
  display: grid;
}
.dash-mr-observ {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  cursor: pointer;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}
.dash-mr-observ__item {
  grid-column-gap: 2vh;
  grid-row-gap: 2vh;
  background-color: var(--primary);
  cursor: pointer;
  border-radius: 20px;
  flex-flow: column;
  align-items: flex-start;
  padding: 20px;
  transition: all 0.625s;
  display: flex;
}
.dash-mr-observ__item:hover {
  box-shadow: 0 0 8px 0 var(--blue-light);
}
.dash-mr-observ__status-pending {
  background-color: var(--blue);
  border-radius: 15px;
  flex-flow: row;
  justify-content: center;
  margin-left: 0;
  margin-right: auto;
  padding: 5px 10px;
  display: inline-flex;
}
.dash-mr-observ__title {
  font-size: 1.2em;
  font-weight: 600;
}
.dash-mr-observ__header {
  justify-content: space-between;
  width: 100%;
  display: flex;
}
.image-2 {
  cursor: pointer;
  width: 20px;
}
.dash-mr-observ__description {
  color: var(--text-color);
  font-size: 1em;
  font-weight: 200;
}
.dash-mr-observ__git {
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: grid;
}
.dash-mr-observ__git.search {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
}
.dash-mr-observ__branch {
  grid-column-gap: 0.3vw;
  grid-row-gap: 0.3vw;
  align-items: center;
  display: inline-flex;
}
.dash-mr-observ__branch__text {
  color: var(--text-color);
  font-size: 0.8em;
  font-weight: 200;
}
.dash-mr-observ__git-block {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}
.git-plus {
  align-items: center;
  display: flex;
}
.git-plus__text {
  color: var(--green);
}
.git-minus {
  align-items: center;
  display: flex;
}
.git-minus__text {
  color: var(--error);
}
.git-commnet {
  grid-column-gap: 0.2vw;
  grid-row-gap: 0.2vw;
  align-items: center;
  display: flex;
}
.git-commnet__text {
  color: var(--text-color);
}
.git-file {
  grid-column-gap: 0.2vw;
  grid-row-gap: 0.2vw;
  align-items: center;
  display: flex;
}
.git-file__text {
  color: var(--text-color);
}
.git-plus-minus-block {
  grid-column-gap: 0.7vw;
  grid-row-gap: 0.7vw;
  display: flex;
}
.git-file-commnet-block {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  display: flex;
}
.dash-mr-observ__status-ready {
  background-color: var(--green);
  border-radius: 15px;
  flex-flow: row;
  justify-content: center;
  margin-left: 0;
  margin-right: auto;
  padding: 5px 10px;
  display: inline-flex;
}
.dash-mr-observ__status-in-progress {
  background-color: var(--orange);
  border-radius: 15px;
  flex-flow: row;
  justify-content: center;
  margin-left: 0;
  margin-right: auto;
  padding: 5px 10px;
  display: inline-flex;
}
.dash-mr-observ__branch__text-time {
  color: var(--text-color);
  white-space: nowrap;
  font-size: 0.8em;
  font-weight: 200;
}
.dash-mr-observ__time {
  grid-column-gap: 0.3vw;
  grid-row-gap: 0.3vw;
  align-items: center;
  display: inline-flex;
}
.index-tab-wrapper {
  flex-flow: column;
  align-items: center;
  display: flex;
  position: relative;
}
.index-tab-wrapper.none {
  display: none;
}
.mr-btn-plus {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  background-color: var(--primary);
  cursor: pointer;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  margin-top: 2vh;
  padding: 15px;
  transition: all 0.3s;
  display: flex;
  position: sticky;
  top: 10px;
}
.mr-btn-plus:hover {
  background-color: #0f1626;
}
.mr-btn-plus__icon {
  width: 30px;
}
.git-processing-block {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  display: flex;
}
.dash-notifications-wrapper {
  width: 100%;
  margin-top: 3vh;
}
.dash-notifications-item {
  background-color: var(--primary);
  cursor: pointer;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  display: flex;
}
.dash-notifications-item:hover {
  background-color: var(--border);
}
.dash-notifications-item__branch_mr {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  display: flex;
}
.dash-notifications-item__right {
  color: var(--text-color);
  font-weight: 200;
}
.dash-notifications-item__left {
  grid-column-gap: 0.5vh;
  grid-row-gap: 0.5vh;
  flex-flow: column;
  display: flex;
}
.dash-recent-notifications__h3 {
  margin-bottom: 0;
}
.dash-recent-notifications__description {
  color: var(--text-color);
  font-weight: 200;
}
.dash-recent-notifications {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 15px;
}
.dash-notifications-list {
  grid-column-gap: 1vh;
  grid-row-gap: 1vh;
  flex-flow: column;
  margin-top: 1vh;
  padding-bottom: 3vh;
  display: flex;
}
.orphane-icon-back-block__icon {
  width: 25px;
  height: 25px;
}
.orphane-icon-back-block {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  border: 1px solid var(--border);
  cursor: pointer;
  border-radius: 10px;
  align-items: center;
  padding: 5px 10px;
  display: flex;
}
.orphane-icon-back-block:hover {
  background-color: var(--primary);
}
.orphane-body {
  margin-top: 2vh;
}
.orphane-header {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 3vh;
  display: flex;
}
.orphane-wrapper {
  flex-flow: column;
  width: 100%;
  display: flex;
}
.inspector-header-block {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  align-items: center;
  display: flex;
}
.inspector-header-block__label {
  font-size: 1.7em;
}
.inspector-header-block__thread-number {
  background-color: var(--border);
  border-radius: 10px;
  padding: 5px 10px;
  font-weight: 200;
}
.mr_test__label {
  margin-top: 0;
  margin-bottom: 0;
}
.orphane-body__block-1 {
  border-bottom: 1px solid var(--border);
  margin-top: 2vh;
}
.orphane-thread-line__span {
  color: var(--color);
  font-weight: 600;
}
.orphane-body__block-left {
  grid-column-gap: 1vh;
  grid-row-gap: 1vh;
  flex-flow: column;
  display: flex;
}
.orphane-body__block-under {
  justify-content: space-between;
  align-items: center;
  margin-top: 2vh;
  padding-bottom: 2vh;
  display: flex;
}
.orphane-body__block-right {
  background-color: var(--blue);
  cursor: pointer;
  border-radius: 10px;
  padding: 10px 15px;
  transition: background-color 0.2s;
}
.orphane-body__block-right:hover {
  background-color: var(--blue-light);
}
.text-block-4 {
  color: var(--text-color);
}
.orphane-thread-line__label {
  color: var(--text-color);
  font-weight: 200;
}
.thread-meta-block {
  grid-column-gap: 13px;
  grid-row-gap: 1vh;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}
.thread-meta-block__bold {
  font-weight: 700;
}
.thread-meta-block__think {
  color: var(--text-color);
  font-weight: 200;
}
.orphane-body__block-2 {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  border-bottom: 1px solid var(--border);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 2vh;
  padding-bottom: 2vh;
  display: grid;
}
.orphane-body__block-1-copy,
.orphane-body__block-2__left {
  margin-top: 2vh;
}
.orphane-body__block-timeline {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 2vh;
  display: flex;
  position: relative;
}
.timeline-icon-wrapper {
  background-color: var(--primary);
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  display: flex;
}
.timeline-thread-line {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  align-items: center;
  display: flex;
  position: relative;
}
.timeline-thread-line__comment {
  color: var(--text-color);
}
.div-block-9 {
  background-color: var(--text-color);
  width: 1px;
  height: 100%;
  position: absolute;
  left: 17px;
}
.orphane-body__block-3 {
  grid-column-gap: 0.5vw;
  grid-row-gap: 0.5vw;
  border-bottom: 1px solid var(--border);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  margin-top: 2vh;
  padding-bottom: 2vh;
  display: flex;
}
.orphane-body__block-under-copy {
  justify-content: space-between;
  align-items: center;
  margin-top: 2vh;
  padding-bottom: 2vh;
  display: flex;
}
.thread-block-version {
  grid-column-gap: 13px;
  grid-row-gap: 1vh;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}
.thread-version-label {
  margin-top: 0;
  margin-bottom: 0;
}
.orphane-body__block-4 {
  grid-column-gap: 0.5vw;
  grid-row-gap: 0.5vw;
  border-bottom: 1px solid var(--border);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  margin-top: 2vh;
  padding-bottom: 2vh;
  display: flex;
}
.thread-linked-discussion-label {
  margin-top: 0;
  margin-bottom: 0;
}
.thread-linked-discussion__text {
  color: var(--text-color);
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  font-weight: 200;
  display: flex;
}
.thread-linked-discussion__wrapper {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  background-color: var(--primary);
  cursor: pointer;
  border-radius: 10px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 2vh;
  padding-right: 15px;
  display: flex;
}
.thread-linked-discussion__icon {
  width: 20px;
}
.block-last-login {
  grid-column-gap: 0.5vw;
  grid-row-gap: 0.5vw;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
.block-last-login:hover {
  color: var(--text-color);
  -webkit-text-stroke-color: var(--color);
}
.block-last-login__text {
  color: var(--text-color);
  font-size: 0.7em;
  font-weight: 200;
}
.login-last-block {
  color: var(--color);
  cursor: pointer;
}
.dash-mr-observ__sha {
  white-space: nowrap;
}
.dash-notifications-item__login {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  display: flex;
}
.dash-notifications-item__login-place {
  color: var(--text-color);
  font-weight: 200;
}
.read-block {
  grid-column-gap: 1vh;
  grid-row-gap: 1vh;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}
.read-block__status {
  background-color: var(--green);
  border-radius: 50%;
  width: 10px;
  height: 10px;
}
.read-block__time {
  color: var(--text-color);
  font-weight: 200;
}
.read-block__status-done {
  background-color: var(--primary);
  border-radius: 50%;
  width: 10px;
  height: 10px;
}
.dialog-overlay {
  background-color: rgba(0, 0, 0, 0.6117647059);
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}
.dialog-overlay.none {
  display: none;
}
.dialog-content {
  background-color: var(--bg);
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  animation: none;
  overflow: auto;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}
.dialog-content.search {
  border: 1px solid var(--border);
  position: relative;
  top: -10vh;
}
.dialog-header {
  border-bottom: 1px solid var(--border);
  justify-content: space-between;
  align-items: center;
  padding: 15px 24px 15px 20px;
  display: flex;
}
.dialog-body {
  padding: 25px;
}
.dialog-footer {
  border-top: 1px solid var(--border);
}
.dialog-title {
  font-weight: 600;
  line-height: 0.5em;
}
.dialog-header-block {
  background-color: var(--primary);
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  display: flex;
}
.search-filter-block {
  scrollbar-width: none;
  border-style: none;
  width: 100%;
  display: inline-block;
  overflow: auto hidden;
}
.search-filter-ul {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}
.search-filter-li {
  background-color: var(--primary);
  cursor: pointer;
  border-radius: 20px;
  align-items: center;
  padding: 7px 15px;
  display: flex;
}
.search-filter-li:hover,
.search-filter-li.active {
  background-color: var(--pink-dark);
}
.search-filter-li__a {
  color: var(--color);
  text-align: center;
  white-space: nowrap;
  font-weight: 200;
  text-decoration: none;
  display: inline-flex;
}
.search-list {
  margin-top: 2vh;
}
.search-list-title {
  margin-top: 0;
  margin-bottom: 0;
}
.search-list-result {
  grid-column-gap: 1vh;
  grid-row-gap: 1vh;
  flex-flow: column;
  margin-top: 1vh;
  display: flex;
}
.search-list-result__item {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  background-color: var(--primary);
  cursor: pointer;
  border-radius: 15px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px;
  display: flex;
}
.search-list-result__item:hover {
  background-color: var(--bg);
  outline-color: var(--border);
  outline-offset: -1px;
  outline-width: 0.5px;
  outline-style: solid;
}
.search-icon-wrapper {
  background-color: var(--bg);
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}
.search-icon-wrapper__icon {
  width: 20px;
}
.search-centre-text {
  color: var(--text-color);
  font-weight: 200;
}
.search-info {
  cursor: pointer;
  width: 25px;
  height: 25px;
}
.search-left {
  grid-column-gap: 0.5vw;
  grid-row-gap: 0.5vw;
  border-right: 1px solid var(--border);
  color: var(--text-color);
  align-items: center;
  padding-right: 10px;
  font-weight: 600;
  display: flex;
}
.dashboard-tree {
  grid-column-gap: 2vh;
  grid-row-gap: 2vh;
  flex-flow: column;
  width: 100%;
  display: flex;
  position: relative;
}
.branch-btn {
  grid-column-gap: 0.8vw;
  grid-row-gap: 0.8vw;
  border: 1px solid var(--border);
  background-color: var(--primary);
  cursor: pointer;
  border-radius: 10px;
  align-items: center;
  padding: 10px 15px;
  display: flex;
}
.branch-btn:hover {
  background-color: #1d273c;
}
.branch-btn__text {
  color: var(--text-color);
  font-weight: 600;
}
.dashboard-tree__header {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  justify-content: space-between;
  display: flex;
}
.branch-label {
  grid-column-gap: 0.5vw;
  grid-row-gap: 0.5vw;
  align-items: center;
  display: flex;
}
.branch-label__text {
  color: var(--text-color);
}
.dashboard-tree__header-right {
  min-width: 520px;
  margin-bottom: 0;
}
.search-branch-input {
  border: 1px solid var(--border);
  background-color: var(--bg);
  color: var(--color);
  cursor: text;
  background-image: url(/assets/images/search.svg);
  background-position: 2%;
  background-repeat: no-repeat;
  background-size: 20px;
  border-radius: 10px;
  height: 40px;
  margin-bottom: 0;
  padding-left: 35px;
}
.search-branch-input.block {
  background-color: var(--primary);
}
.search-branch-input.blocked {
  background-color: var(--primary);
  cursor: not-allowed;
}
.search-branch-form {
  position: relative;
}
.dashboard-tree__header-left {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  align-items: stretch;
  display: flex;
}
.search-branch-input__close-icon {
  width: 8px;
  height: 8px;
}
.search-branch-input__close {
  background-color: var(--border);
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  padding: 5px;
  display: flex;
  position: absolute;
  inset: 10px 10px 0% auto;
}
.search-branch-input__close:hover {
  background-color: var(--primary);
}
.search-branch-list {
  grid-column-gap: 1vh;
  grid-row-gap: 1vh;
  border: 1px solid var(--border);
  background-color: var(--primary);
  border-radius: 15px;
  flex-flow: column;
  width: 100%;
  padding: 10px;
  display: flex;
  position: absolute;
  inset: 50px auto auto 0%;
  overflow: auto;
}
.search-branch-list.none {
  display: none;
}
.div-block-13 {
  position: relative;
}
.search-branch-list__item {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  cursor: pointer;
  border-radius: 10px;
  align-items: center;
  padding: 10px;
  display: flex;
}
.search-branch-list__item:hover {
  background-color: var(--bg);
}
.search-branch-list__item:active {
  background-color: var(--blue);
}
.search-branch-list__item-icon {
  width: 25px;
}
.repo-list__item {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  border-bottom: 1px solid var(--border);
  cursor: auto;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10px;
  display: flex;
}
.repo-list__item:hover {
  background-color: var(--primary);
}
.repo-list {
  border: 1px solid var(--border);
  border-radius: 15px;
  flex-flow: column;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
}
.repo-list__item-icon {
  cursor: pointer;
  width: 25px;
}
.repo-list__item-commnet-exist {
  color: var(--text-color);
  cursor: pointer;
}
.form {
  position: relative;
}
.repo-list__item-left,
.repo-list__item-right {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  align-items: center;
  display: flex;
}
.repo-list__item-commnet-icon {
  cursor: pointer;
  width: 20px;
}
.orphane-wrapper-copy {
  flex-flow: column;
  width: 100%;
  display: flex;
}
.thread-block-file {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  margin-top: 2vh;
  transition: all 0.2s;
  display: grid;
}
.file-display-left {
  transition: all 0.3s;
}
.thread-block-header__path {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  justify-content: space-between;
  align-self: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 2vh;
  display: flex;
}
.thread-block-header__icon {
  cursor: pointer;
  width: 20px;
}
.button-back-to-repo {
  grid-column-gap: 0.5vw;
  grid-row-gap: 0.5vw;
  border: 1px solid var(--border);
  background-color: var(--bg);
  cursor: pointer;
  border-radius: 10px;
  align-items: center;
  padding: 5px 10px;
  display: flex;
}
.button-back-to-repo:hover {
  background-color: var(--primary);
}
.button-back-to-repo__icon {
  width: 20px;
  height: 25px;
}
.button-back-to-repo__text-span {
  color: var(--pink-dark);
  font-size: 1.4em;
  font-weight: 700;
}
.thread-path {
  color: var(--text-color);
  align-items: center;
  font-size: 1.2em;
  display: flex;
}
.bread__span {
  color: var(--color);
  font-weight: 600;
}
.navigation-block {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  justify-content: space-between;
  align-self: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}
.file-display-left__wrapper {
  border: 1px solid var(--border);
  border-radius: 15px;
}
.block-file-header {
  border-bottom: 1px solid var(--border);
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  display: flex;
}
.block-file__text {
  color: var(--text-color);
}
.comments-thread {
  grid-column-gap: 0.6vh;
  grid-row-gap: 0.6vh;
  flex-flow: column;
  width: 100%;
  display: flex;
}
.comments-thread__item {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  border: 1px solid var(--border);
  background-color: var(--primary);
  border-radius: 10px;
  flex-flow: column;
  align-items: center;
  padding: 10px 10px 5px;
  display: flex;
  position: relative;
}
.file-display-right_header {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  color: var(--text-color);
  align-items: center;
  font-size: 1.2em;
  font-weight: 700;
  display: flex;
}
.image-3 {
  width: 30px;
}
.div-block-14 {
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 4px;
  padding: 10px;
  display: flex;
}
.user-comment-avatar {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}
.user-comment-avatar__image {
  border-radius: 50%;
  width: 30px;
}
.user-comment-username {
  color: var(--text-color);
  font-weight: 600;
  text-decoration: underline;
}
.comments-thread__header {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
}
.comment-text__text {
  grid-column-gap: 1vh;
  grid-row-gap: 1vh;
  color: var(--text-color);
  word-break: break-all;
  flex-flow: column;
  font-weight: 200;
  display: flex;
}
.text-block-5 {
  color: var(--text-color);
  font-weight: 200;
}
.options-comment__icon {
  cursor: pointer;
  width: 20px;
  height: 20px;
}
.options-comment {
  border-radius: 50%;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  width: 35px;
  height: 35px;
  display: flex;
  position: relative;
}
.options-comment:hover {
  background-color: var(--border);
}
.options-comment.none {
  display: none;
}
.bread {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  display: flex;
}
.comment-text-wrapper {
  flex-flow: column;
  display: flex;
}
.bread-text {
  color: var(--text-color);
  align-items: center;
  font-size: 1.2em;
  display: flex;
}
.add-comment-btn {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  background-color: var(--primary);
  cursor: pointer;
  border-radius: 20px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  display: flex;
}
.add-comment-btn:hover {
  background-color: var(--border);
}
.add-comment-btn.no-active {
  opacity: 0.3;
  cursor: not-allowed;
}
.add-comment-btn__icon {
  width: 17px;
}
.div-block-15 {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  border: 1px solid var(--border);
  width: 100px;
  height: 20px;
  padding: 5px;
  display: flex;
  position: absolute;
  inset: 30px 5px auto auto;
}
.options-comment__item-icon {
  width: 17px;
}
.options-comment__item {
  grid-column-gap: 0.5vw;
  grid-row-gap: 0.5vw;
  cursor: pointer;
  border-radius: 10px;
  flex-flow: row;
  align-self: center;
  padding: 10px;
  font-weight: 200;
  display: flex;
}
.options-comment__item:hover {
  background-color: var(--border);
}
.options-comment__item.last {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.options-comment__item.first {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.options-comment__item-text {
  white-space: nowrap;
}
.options-comment__item-text.red {
  color: var(--error);
}
.comments-thread__down {
  z-index: 10;
  grid-column-gap: 0.2px;
  grid-row-gap: 0.2px;
  border-top: 1px solid var(--border);
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  padding-top: 10px;
  display: flex;
}
.div-block-17 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}
.image-4 {
  width: 20px;
  height: 20px;
}
.comment-text__eye {
  cursor: pointer;
  align-self: flex-end;
  width: 20px;
}
.comments-thread__up {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}
.slider {
  z-index: 10;
  border: 1px solid var(--border);
  background-color: var(--primary);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  width: 80%;
  height: 400px;
  margin-left: auto;
  margin-right: auto;
  position: fixed;
  inset: auto 0% 0%;
  box-shadow: 0 -1px 12px 9px rgba(27, 34, 64, 0.3607843137);
}
.slider.none {
  display: none;
}
.slider-inner {
  grid-column-gap: 1vh;
  grid-row-gap: 1vh;
  flex-flow: column;
  padding: 60px 10px 10px;
  display: flex;
  position: relative;
}
.slider-item {
  background-color: var(--bg);
  border-radius: 10px;
  padding: 10px;
}
.slider-item__path-link {
  color: var(--text-color);
  cursor: pointer;
  font-weight: 600;
}
.slider-item__header {
  flex-flow: column;
  display: flex;
}
.div-block-18 {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  display: flex;
}
.file-display-righ_text {
  color: var(--text-color);
  font-size: 1.2em;
  font-weight: 700;
}
.file-display-right_icon {
  cursor: pointer;
  width: 20px;
}
.slider-inner-items {
  grid-column-gap: 1vh;
  grid-row-gap: 1vh;
  flex-flow: column;
  display: flex;
}
.div-block-19 {
  background-color: var(--bg);
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  display: flex;
  position: absolute;
  inset: 10px 10px auto auto;
}
.div-block-19:hover {
  background-color: var(--border);
}
.options-comment-action {
  grid-column-gap: 0.2vw;
  grid-row-gap: 0.2vw;
  display: flex;
}
.comments-thread-inner {
  grid-column-gap: 1vh;
  grid-row-gap: 1vh;
  flex-flow: column;
  width: 100%;
  display: flex;
}
.additional-option {
  grid-column-gap: 0.5vw;
  grid-row-gap: 0.5vw;
  background-color: var(--bg);
  border-radius: 10px;
  align-items: center;
  height: 40px;
  padding: 10px;
  display: flex;
}
.additional-option.none {
  display: none;
}
.image-5 {
  width: 35px;
}
.image-6 {
  width: 25px;
}
.additional-option__item {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  display: flex;
}
.additional-option__item:hover {
  background-color: var(--primary);
  border-radius: 5px;
}
.div-block-22 {
  width: 35px;
  height: 35px;
}
.additional-option__item-icon {
  cursor: pointer;
  width: 20px;
}
.commnet-right_1-icon {
  width: 24px;
}
.div-block-23 {
  grid-column-gap: 0.2vw;
  grid-row-gap: 0.2vw;
  display: flex;
}
.commnet-right_1 {
  align-items: center;
  display: flex;
  position: relative;
}
.commnet-right {
  grid-column-gap: 0.2vw;
  grid-row-gap: 0.2vw;
  display: flex;
}
.block-file__sha {
  color: var(--text-color);
  font-size: 0.9em;
  font-weight: 200;
}
.popup-upload {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding-top: 5vh;
  display: flex;
  position: fixed;
}
.popup-upload.none {
  display: none;
}
.div-block-25 {
  width: 30%;
}
.upload_button-wrap {
  background-color: var(--blue);
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.3s;
  display: flex;
}
.upload_button-wrap:hover {
  background-color: var(--primary);
}
.upload_form {
  grid-column-gap: 2vh;
  grid-row-gap: 2vh;
  flex-flow: column;
  display: flex;
}
.upload_detail-wrap {
  grid-column-gap: 2vh;
  grid-row-gap: 2vh;
  background-color: var(--border);
  border: 1px dashed #9fbad5;
  border-radius: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  display: flex;
  position: relative;
}
.text-size-large {
  font-size: 1em;
  font-weight: 400;
}
.upload_or-line {
  background-color: #7394b4;
  width: 20%;
  height: 1px;
}
.upload_detail {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 75%;
  display: flex;
}
.upload_or-wrap {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  color: #7394b4;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}
.upload_main-div {
  grid-column-gap: 1vh;
  grid-row-gap: 1vh;
  border: 1px solid var(--border);
  background-color: var(--primary);
  border-radius: 30px;
  flex-flow: column;
  width: 30%;
  min-width: 615px;
  padding: 20px;
  display: flex;
  position: relative;
}
.upload_image-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
}
.upload_buttobn-wrap {
  grid-column-gap: 1vh;
  grid-row-gap: 1vh;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}
.upload_file-image {
  width: 70px;
}
.upload-file-folder {
  text-align: center;
  height: 50px;
  font-size: 1em;
  font-weight: 400;
}
.upload-list {
  grid-column-gap: 1vh;
  grid-row-gap: 1vh;
  border: 1px solid var(--border);
  background-color: var(--bg);
  border-radius: 15px;
  flex-flow: column;
  padding: 10px;
  display: flex;
}
.upload-list__item {
  border: 1px solid var(--border);
  background-color: var(--bg);
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  display: flex;
}
.upload-list__item:hover {
  background-color: var(--border);
}
.upload-item-name {
  color: var(--text-color);
}
.upload-item-remove {
  cursor: pointer;
  width: 18px;
  height: 18px;
}
.upload-item-remove__wrapper {
  cursor: pointer;
  border-radius: 50%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  display: flex;
}
.upload-item-remove__wrapper:hover {
  background-color: var(--border);
}
.upload-item-remove__wrapper.close-absolute {
  position: absolute;
  inset: 10px 10px auto auto;
}
.upload-btn {
  background-color: var(--pink-dark);
  cursor: pointer;
  border-radius: 5px;
  padding: 7px 14px;
  position: absolute;
  inset: auto 10px 10px auto;
}
.upload-btn:hover {
  opacity: 0.7;
}
.text-block-6 {
  color: var(--text-color);
  font-weight: 200;
}
.upload-header {
  grid-column-gap: 1vh;
  grid-row-gap: 1vh;
  border-radius: 15px;
  flex-flow: column;
  display: flex;
}
.upload-header__line-1 {
  font-size: 1.2em;
  font-weight: 600;
}
.upload-header__line-2 {
  color: var(--text-color);
  font-size: 1em;
  font-weight: 200;
}
.listener-file-pc {
  grid-column-gap: 1.4vh;
  grid-row-gap: 1.4vh;
  border: 1px solid var(--border);
  background-color: var(--bg);
  border-radius: 15px;
  flex-flow: column;
  align-items: center;
  margin-top: 1vh;
  padding: 15px;
  display: flex;
}
.listener-file-pc.none {
  display: none;
}
.upload-body__micro-wrapper {
  background-color: var(--border);
  border-radius: 50%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  display: flex;
}
.upload-body__micro-wrapper.red {
  background-color: rgba(255, 24, 24, 0.1803921569);
}
.upload-body__micro-icon {
  width: 20px;
  height: 20px;
}
.micro-recording-btn {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  background-color: var(--color);
  cursor: pointer;
  border-radius: 10px;
  justify-content: center;
  padding: 8px 16px;
  display: flex;
}
.micro-recording-btn:hover {
  background-color: var(--green);
}
.micro-recording-btn__icon {
  width: 15px;
}
.micro-recording-btn__label {
  color: var(--black);
  line-height: 30px;
}
.upload-body__headphone-icon {
  width: 40px;
  height: 40px;
}
.upload-body__headphone-text {
  color: var(--text-color);
  font-weight: 200;
}
.upload-file-block {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  border: 1px solid var(--border);
  background-color: var(--primary);
  cursor: pointer;
  border-radius: 10px;
  align-items: center;
  padding: 10px 20px;
  display: flex;
}
.upload-file-block:hover {
  background-color: var(--bg);
}
.upload-file-block__icon {
  width: 25px;
  height: 25px;
}
.close-icon {
  cursor: pointer;
  width: 20px;
  position: absolute;
  inset: 10px 10px auto auto;
}
.upload-body__cercle-icon {
  width: 30px;
  height: 30px;
}
.cercle-micro {
  background-color: var(--error);
  border-radius: 50%;
  width: 15px;
  height: 15px;
}
.micro-inner {
  grid-column-gap: 1vh;
  grid-row-gap: 1vh;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}
.text-block-7 {
  color: var(--error);
  font-size: 0.8em;
  font-weight: 200;
}
.micro-inner__cercle {
  background-color: var(--error);
  border-radius: 50%;
  width: 15px;
  height: 15px;
}
.micro-inner__label {
  color: var(--error);
  font-size: 0.8em;
  font-weight: 200;
}
.micro-recording-btn-stop {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  background-color: var(--error);
  border-radius: 10px;
  justify-content: center;
  padding: 8px 16px;
  display: flex;
}
.micro-recording-btn-stop:hover {
  background-color: #fd4444;
}
.micro-recording-stop-btn__label {
  color: var(--color);
  line-height: 30px;
}
.micro-recording-stop-btn__icon {
  width: 30px;
}
.prelistener-header {
  justify-content: space-between;
  width: 100%;
  display: flex;
  position: relative;
}
.bold-text-2 {
  font-weight: 400;
}
.prelistener-header__title {
  font-weight: 600;
}
.prelistener-header__time {
  color: var(--text-color);
  font-size: 0.9em;
  font-weight: 200;
}
.prelistener-body {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  justify-content: space-between;
  width: 100%;
  display: flex;
}
.listener-btn {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  border: 1px solid var(--border);
  cursor: pointer;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding: 10px 20px;
  display: flex;
}
.listener-btn:hover {
  background-color: var(--border);
}
.listener-btn__icon {
  width: 25px;
  height: 25px;
}
.listener-btn__text {
  font-weight: 600;
}
.list-block {
  grid-column-gap: 1vh;
  grid-row-gap: 1vh;
  flex-flow: column;
  display: flex;
}
.prelistener-header-right {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  display: flex;
}
.prelistener-header-right__icon {
  width: 20px;
}
.prelistener-header-right__text {
  font-weight: 400;
}
.upload-header-left {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  display: flex;
}
.upload-header-left__icon {
  width: 20px;
}
.upload-header-left__text {
  font-size: 1.2em;
  font-weight: 600;
}
.play-btn-block__icon {
  width: 20px;
  height: 20px;
}
.sound-descr-block {
  grid-column-gap: 0.5vh;
  grid-row-gap: 0.5vh;
  flex-flow: column;
  display: flex;
}
.div-block-28 {
  grid-column-gap: 3vw;
  grid-row-gap: 3vw;
  align-items: center;
  padding-left: 20px;
  display: flex;
}
.date-time-sound-block__time {
  color: var(--text-color);
  font-weight: 200;
}
.date-time-sound-block__point {
  background-color: var(--text-color);
  border-radius: 50%;
  width: 5px;
  height: 5px;
}
.date-time-sound-block {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  align-items: center;
  font-size: 0.9em;
  display: flex;
}
.div-block-29 {
  justify-content: center;
  align-items: center;
  display: flex;
}
.div-block-30 {
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  display: flex;
}
.play-btn-block {
  cursor: pointer;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  display: flex;
}
.play-btn-block:hover {
  background-color: var(--border);
}
.list-block__header {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  display: flex;
}
.list-block__header-icon {
  width: 20px;
}
.download-file-listener {
  grid-column-gap: 0.5vh;
  grid-row-gap: 0.5vh;
  flex-flow: column;
  display: flex;
}
.download-file-listener__text {
  color: var(--text-color);
  font-size: 0.9em;
  font-weight: 200;
}
.text-span {
  font-weight: 400;
}
.close-sound-block {
  cursor: pointer;
  border-radius: 50%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  display: flex;
}
.close-sound-block:hover {
  background-color: var(--border);
}
.close-sound-block.close-absolute {
  position: absolute;
  inset: 10px 10px auto auto;
}
.close-sound-block__inner {
  cursor: pointer;
  width: 20px;
  height: 20px;
}
.popup-settings-repo {
  z-index: 10;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding-top: 5vh;
  display: flex;
  position: fixed;
}
.popup-settings-repo.none {
  display: none;
}
.popup-settings-repo__inner {
  grid-column-gap: 1vh;
  grid-row-gap: 1vh;
  border: 1px solid var(--border);
  background-color: var(--primary);
  border-radius: 15px;
  flex-flow: column;
  width: 40%;
  min-width: 615px;
  padding: 20px;
  display: flex;
  position: relative;
}
.popup-settings-repo__inner-1 {
  grid-column-gap: 2vh;
  grid-row-gap: 2vh;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}
.btn-lock {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  border: 1px solid var(--border);
  background-color: var(--error);
  cursor: pointer;
  border-radius: 10px;
  justify-content: center;
  padding: 8px 16px;
  display: flex;
}
.image-7,
.btn-lock__icon {
  width: 20px;
}
.div-block-31 {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  display: flex;
}
.btn-lock__label,
.text-block-9 {
  font-weight: 600;
}
.div-block-32 {
  grid-column-gap: 0.5vh;
  grid-row-gap: 0.5vh;
  flex-flow: column;
  display: flex;
}
.text-block-10 {
  color: var(--text-color);
}
.lock-block {
  grid-column-gap: 0.5vh;
  grid-row-gap: 0.5vh;
  flex-flow: column;
  display: flex;
}
.lock-block__title {
  color: var(--text-color);
}
.lock-block-btns {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  display: flex;
}
.comment-uuid {
  opacity: 0.63;
  color: var(--text-color);
  align-self: flex-end;
  font-size: 0.6em;
  font-weight: 200;
}
.comments-thread__down-up {
  justify-content: space-between;
  display: flex;
}
.text-span-2 {
  margin-right: 0.2vw;
  font-weight: 600;
}
.thread-under-info {
  align-self: flex-end;
  display: flex;
}
html.w-mod-js [data-ix=opacity-0-initial-appearance] {
  opacity: 0;
}
@media screen and (max-width: 991px) {
  h1 {
    padding-left: 10px;
    font-size: 30px;
  }
  .nav-inner {
    padding-left: 10px;
    padding-right: 10px;
  }
  .main-header {
    margin-top: 5vh;
  }
  .main-h1 {
    padding-left: 0;
    font-size: 3em;
    line-height: 6vh;
  }
  .home-code-block {
    width: 70%;
  }
  .main-page-block {
    padding: 4vh 10px;
  }
  .integration-flex {
    grid-template-columns: 1fr 1fr 1fr;
    align-self: center;
    width: 100%;
  }
  .integration-item__icon {
    width: 40px;
    height: 40px;
  }
  .api-block {
    width: 100%;
  }
  .integration-list {
    grid-column-gap: 2vw;
    grid-row-gap: 2vw;
    width: 100%;
  }
  .footer-inner {
    width: 100%;
  }
  .window-body {
    width: 50%;
  }
  .window-body.terms {
    width: 95%;
  }
  .repo-dates__wrapper {
    flex-flow: row;
  }
  .navig-tabs {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }
  .tab-content-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 20px;
  }
  .nav-left-block__home {
    grid-column-gap: 2vw;
    grid-row-gap: 2vw;
  }
  .main {
    min-height: auto;
    padding-bottom: 20px;
  }
  .main-header {
    margin-top: 4vh;
    line-height: 10px;
  }
  .main-h1 {
    font-size: 2em;
    line-height: 6vh;
  }
  .nav-centre-block {
    display: none;
  }
  .home-code-block {
    width: 90%;
    height: 300px;
  }
  .main-page-block-header__description {
    line-height: 25px;
  }
  .main-page-block-header {
    margin-bottom: 2vh;
  }
  .possibilities-grid {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
  }
  .integration-flex {
    grid-column-gap: 2vh;
    grid-row-gap: 2vh;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
  }
  .doc-item {
    width: 100%;
  }
  .integration-list {
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
  }
  .window-body {
    width: 90%;
  }
  .window-header__text {
    font-size: 30px;
  }
  .navig-tabs {
    grid-template-columns: 1fr 1fr;
  }
  .text-size-large {
    font-size: 1.25rem;
  }
  .upload_detail {
    width: 100%;
  }
  .upload_main-div,
  .popup-settings-repo__inner {
    width: 100%;
    min-width: 0;
    max-width: 500px;
  }
}
@media screen and (max-width: 479px) {
  h1 {
    font-size: 13px;
    line-height: 20px;
  }
  a {
    float: none;
    width: auto;
    padding-left: 1px;
    padding-right: 1px;
    display: inline-block;
    position: static;
  }
  .box {
    opacity: 1;
  }
  .main-h1 {
    font-size: 1.6em;
    line-height: 3vh;
  }
  .possibilities-grid {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template: "." "." "Area" "." "." "." "."/1fr;
    grid-auto-columns: 0.25fr;
  }
  .integration-flex {
    grid-column-gap: 1vh;
    grid-row-gap: 1vh;
    grid-template-columns: 1fr;
  }
  .api-block {
    grid-column-gap: 1vh;
    grid-row-gap: 1vh;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }
  .doc-item {
    width: 100%;
  }
  .integration-list {
    grid-column-gap: 1vh;
    grid-row-gap: 1vh;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }
  .footer-column {
    grid-column-gap: 1vh;
    grid-row-gap: 1vh;
    width: 100%;
  }
  .footer-inner {
    grid-column-gap: 3vh;
    grid-row-gap: 3vh;
    flex-flow: column;
  }
  .window-header {
    grid-column-gap: 6vw;
    grid-row-gap: 6vw;
    flex-flow: column;
  }
  .window-body {
    width: 95%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .window-header__text {
    text-align: center;
    font-size: 20px;
  }
  .body-inner.no-gradient,
  .body-inner.terms {
    justify-content: flex-start;
    align-items: center;
    margin-top: 3vh;
  }
  .btn-login-wrapper__text {
    left: 10%;
  }
  .body-inner-terms.auth,
  .body-inner-terms.terms,
  .body-inner-terms-new.auth,
  .body-inner-terms-new.terms {
    justify-content: flex-start;
    align-items: center;
    margin-top: 3vh;
  }
  .repo-dates {
    grid-column-gap: 1vh;
    grid-row-gap: 1vh;
  }
  .navig-tabs {
    grid-column-gap: 1vh;
    grid-row-gap: 1vh;
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr;
  }
  .tab-content-wrapper {
    grid-template-columns: 1fr;
  }
  .search-list-result__item {
    flex-flow: column;
  }
  .upload_button-wrap,
  .text-size-large {
    font-size: 1rem;
  }
  .upload_main-div {
    width: 100%;
    min-width: 0;
    padding: 20px;
  }
  .upload-file-folder.text-align-center.text-weight-semibold.text-color-gray {
    font-size: 1.2rem;
  }
  .popup-settings-repo__inner {
    width: 100%;
    min-width: 0;
    padding: 20px;
  }
}
#w-node-_5d6aa937-6798-0040-f3d4-69e65753e420-a8008394 {
  grid-area: span 2/span 2/span 2/span 2;
}
#w-node-cf8b1eae-34a6-1114-18b8-1cb11923cf17-a8008394 {
  grid-area: span 2/span 6/span 2/span 6;
}
#w-node-_1700c2de-53f8-33e2-2c4c-e68052e535d6-a8008394 {
  justify-self: end;
}
#w-node-e7908a53-495b-4bf8-5fe0-f1f8f616a84b-a8008394 {
  grid-area: span 1/span 6/span 1/span 6;
}
#w-node-e7908a53-495b-4bf8-5fe0-f1f8f616a84c-a8008394 {
  grid-area: span 1/span 2/span 1/span 2;
}
#w-node-_0369129a-11f3-ba9f-df4b-a1c05a33c2af-a8008394,
#w-node-_0369129a-11f3-ba9f-df4b-a1c05a33c2dd-a8008394,
#w-node-_0369129a-11f3-ba9f-df4b-a1c05a33c308-a8008394,
#w-node-_0369129a-11f3-ba9f-df4b-a1c05a33c333-a8008394,
#w-node-_0369129a-11f3-ba9f-df4b-a1c05a33c35e-a8008394,
#w-node-_0369129a-11f3-ba9f-df4b-a1c05a33c389-a8008394 {
  justify-self: end;
}
@media screen and (max-width: 767px) {
  #w-node-a6b27b3f-2a38-3568-991e-4c474cd58ef6-a80082eb {
    grid-area: span 1/span 2/span 1/span 2;
  }
}
@media screen and (max-width: 479px) {
  #w-node-a6b27b3f-2a38-3568-991e-4c474cd58ef6-a80082eb {
    grid-area: span 1/span 1/span 1/span 1;
  }
}
.shirm {
  background-color: rgba(0, 0, 0, 0.28);
  position: absolute;
  inset: 0%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.noscroll {
  overflow: hidden;
}
.popup-overlay {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.popup-up-block {
  z-index: 1001;
  justify-content: center;
  width: 100%;
  display: flex;
  position: fixed;
  inset: 10% 0% auto;
}
.popup-up-block__inner {
  justify-content: center;
  align-items: center;
  max-width: 50%;
  display: flex;
}
.popup-up-block__message {
  color: #333;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 1.5vw;
  font-size: 1em;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.popup-up-block__message.black {
  background-color: var(--black);
  color: var(--white);
  z-index: 100000;
}
.popup-up-block__message.red {
  background-color: #fff5f5;
  color: #c53030;
  z-index: 100000;
  border: 1px solid #feb2b2;
}
.popup-up-block__message.secondary {
  z-index: 100000;
  background-color: rgba(255, 255, 255, 0.95);
  color: #333;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.popup-up-block.z-100 {
  z-index: 20000;
}
@media screen and (min-width: 1440px) {
  .popup-up-block__message {
    padding: 1vw;
  }
}
@media screen and (min-width: 1920px) {
  .popup-up-block__message {
    padding: 0.5vw;
  }
}
@media screen and (max-width: 991px) {
  .popup-up-block__inner {
    max-width: 70%;
  }
}
@media screen and (max-width: 767px) {
  .popup-up-block {
    top: 1%;
  }
  .popup-up-block__inner {
    max-width: 90%;
  }
}
.navbar-dash-left.collapsed .item-inner-nav {
  grid-column-gap: 0.1vw;
}
.ng-tooltip {
  position: absolute;
  font-size: 14px;
  text-align: center;
  color: var(--white);
  padding: 3px 8px;
  background: var(--blue);
  border-radius: 4px;
  z-index: 1000;
  opacity: 0;
}
.ng-tooltip:after {
  content: "";
  position: absolute;
  border-style: solid;
}
.ng-tooltip-top:after {
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-color: var(--blue) transparent transparent transparent;
}
.ng-tooltip-bottom:after {
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-color: transparent transparent var(--blue) transparent;
}
.ng-tooltip-left:after {
  top: 50%;
  left: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-color: transparent transparent transparent var(--blue);
}
.ng-tooltip-right:after {
  top: 50%;
  right: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-color: transparent var(--blue) transparent transparent;
}
.ng-tooltip-show {
  opacity: 1;
}
.group-form input.w-input:disabled {
  background-color: var(--primary);
}
.file-display-left {
  grid-column: span 6;
  transition: grid-column 0.3s ease;
}
.file-display-left.expanded {
  grid-column: span 8 !important;
}
.file-display-right {
  grid-column: span 2;
  position: sticky;
  top: 130px;
  align-self: start;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  transition: all 0.3s ease;
  scrollbar-width: none;
}
.file-display-right::-webkit-scrollbar {
  display: none;
}
.file-display-right.collapsed {
  display: none;
}
.file-display-right_header {
  position: relative;
}
.file-display-right_icon {
  cursor: pointer;
  pointer-events: auto;
}
.navigation-block {
  margin-bottom: 1vh;
}
.thread-block-header__path {
  margin-top: 1vh !important;
}
.bread {
  align-items: center;
  gap: 0.5vw;
}
.bread-text {
  font-weight: 500;
}
.pagination-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.pagination-wrapper .pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  background: var(--card-color, #1a1a2e);
  border: 1px solid var(--border-color, #2a2a3e);
  border-radius: 8px;
  color: var(--text-brown, #aaa);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
}
.pagination-wrapper .pagination__btn:hover:not(.pagination__btn--active):not(:disabled) {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--focus, #0095f6);
  color: var(--white, #fff);
}
.pagination-wrapper .pagination__btn--active {
  background: var(--focus, #0095f6);
  border-color: var(--focus, #0095f6);
  color: #fff;
  cursor: default;
}
.pagination-wrapper .pagination__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.pagination-wrapper .pagination__info {
  margin-left: 8px;
  color: var(--text-brown, #aaa);
  font-size: 13px;
}
@font-face {
  font-family: "Caveat";
  src: url(/assets/canvas-editor/Caveat/static/Caveat-Regular.ttf) format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Caveat";
  src: url(/assets/canvas-editor/Caveat/static/Caveat-Medium.ttf) format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Caveat";
  src: url(/assets/canvas-editor/Caveat/static/Caveat-SemiBold.ttf) format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "Caveat";
  src: url(/assets/canvas-editor/Caveat/static/Caveat-Bold.ttf) format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "PlaywriteDEGrund";
  src: url(/assets/canvas-editor/Playwrite_DE_Grund/static/PlaywriteDEGrund-Regular.ttf) format("truetype");
  font-weight: 400;
}
.text-annotation-highlight {
  text-decoration: underline;
  text-decoration-style: dashed;
  text-decoration-color: #9ca3af;
  text-underline-offset: 3px;
  cursor: default;
  transition: background-color 0.15s, text-decoration-color 0.15s;
}
.text-annotation-highlight--hovered {
  background-color: rgba(252, 211, 77, 0.2);
  text-decoration-color: #fbbf24;
  border-radius: 2px;
}
.text-annotation-highlight--self {
  text-decoration-color: #facc15;
}
.text-annotation-highlight--dimmed {
  text-decoration-color: #d1d5db;
  opacity: 0.6;
}
.text-annotation-highlight--flash {
  border-radius: 2px;
  animation: annotation-flash 0.5s ease-in-out 2;
}
@keyframes annotation-flash {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: rgba(255, 236, 87, 0.55);
  }
  100% {
    background-color: transparent;
  }
}
.scroll-highlight-flash {
  animation: scroll-highlight-flash var(--scroll-flash-duration, 500ms) ease-in-out var(--scroll-flash-count, 2);
  border-radius: 4px;
}
@keyframes scroll-highlight-flash {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: var(--scroll-flash-color, rgba(59, 203, 255, 0.42));
  }
  100% {
    background-color: transparent;
  }
}

/* src/assets/scss/style-custom.scss */
.shirm {
  background-color: rgba(0, 0, 0, 0.28);
  position: absolute;
  inset: 0%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.noscroll {
  overflow: hidden;
}
.popup-overlay {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.popup-up-block {
  z-index: 1001;
  justify-content: center;
  width: 100%;
  display: flex;
  position: fixed;
  inset: 10% 0% auto;
}
.popup-up-block__inner {
  justify-content: center;
  align-items: center;
  max-width: 50%;
  display: flex;
}
.popup-up-block__message {
  color: #333;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 1.5vw;
  font-size: 1em;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.popup-up-block__message.black {
  background-color: var(--black);
  color: var(--white);
  z-index: 100000;
}
.popup-up-block__message.red {
  background-color: #fff5f5;
  color: #c53030;
  z-index: 100000;
  border: 1px solid #feb2b2;
}
.popup-up-block__message.secondary {
  z-index: 100000;
  background-color: rgba(255, 255, 255, 0.95);
  color: #333;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.popup-up-block.z-100 {
  z-index: 20000;
}
@media screen and (min-width: 1440px) {
  .popup-up-block__message {
    padding: 1vw;
  }
}
@media screen and (min-width: 1920px) {
  .popup-up-block__message {
    padding: 0.5vw;
  }
}
@media screen and (max-width: 991px) {
  .popup-up-block__inner {
    max-width: 70%;
  }
}
@media screen and (max-width: 767px) {
  .popup-up-block {
    top: 1%;
  }
  .popup-up-block__inner {
    max-width: 90%;
  }
}
.navbar-dash-left.collapsed .item-inner-nav {
  grid-column-gap: 0.1vw;
}
.ng-tooltip {
  position: absolute;
  font-size: 14px;
  text-align: center;
  color: var(--white);
  padding: 3px 8px;
  background: var(--blue);
  border-radius: 4px;
  z-index: 1000;
  opacity: 0;
}
.ng-tooltip:after {
  content: "";
  position: absolute;
  border-style: solid;
}
.ng-tooltip-top:after {
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-color: var(--blue) transparent transparent transparent;
}
.ng-tooltip-bottom:after {
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-color: transparent transparent var(--blue) transparent;
}
.ng-tooltip-left:after {
  top: 50%;
  left: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-color: transparent transparent transparent var(--blue);
}
.ng-tooltip-right:after {
  top: 50%;
  right: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-color: transparent var(--blue) transparent transparent;
}
.ng-tooltip-show {
  opacity: 1;
}
.group-form input.w-input:disabled {
  background-color: var(--primary);
}
.file-display-left {
  grid-column: span 6;
  transition: grid-column 0.3s ease;
}
.file-display-left.expanded {
  grid-column: span 8 !important;
}
.file-display-right {
  grid-column: span 2;
  position: sticky;
  top: 130px;
  align-self: start;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  transition: all 0.3s ease;
  scrollbar-width: none;
}
.file-display-right::-webkit-scrollbar {
  display: none;
}
.file-display-right.collapsed {
  display: none;
}
.file-display-right_header {
  position: relative;
}
.file-display-right_icon {
  cursor: pointer;
  pointer-events: auto;
}
.navigation-block {
  margin-bottom: 1vh;
}
.thread-block-header__path {
  margin-top: 1vh !important;
}
.bread {
  align-items: center;
  gap: 0.5vw;
}
.bread-text {
  font-weight: 500;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
