:root {
  --text-secondary-color: #91b9cd;
  --active-color: #20a5d6;
  --primary-background-color: #000;
  --ui-border-color-dark: #3c5d80;
  --sidebar-transition: all 0.3s ease;
}
.ImageThumbnail {
  position: relative;
  transition: var(--sidebar-transition);
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
}
.ImageThumbnail .image-thumbnail-loading-indicator {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -22px 0 0 -22px;
  display: block;
  width: 44px;
  height: 44px;
}
.ImageThumbnail .image-thumbnail-loading-indicator:after {
  content: " ";
  display: block;
  width: 32px;
  height: 32px;
  margin: 1px;
  border-radius: 50%;
  border: 5px solid var(--ui-border-color-dark);
  border-color: var(--ui-border-color-dark) transparent var(--ui-border-color-dark) transparent;
  animation: image-thumbnail-loading-indicator 1.2s linear infinite;
}
@-moz-keyframes image-thumbnail-loading-indicator {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes image-thumbnail-loading-indicator {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-o-keyframes image-thumbnail-loading-indicator {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes image-thumbnail-loading-indicator {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.image-thumbnail-canvas {
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-thumbnail-canvas img {
  -webkit-user-drag: none;
  pointer-events: none;
}
.thumbnailLoadingIndicator {
  display: none;
  pointer-events: none;
  color: var(--text-secondary-color);
  height: 20px;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
}
.thumbnailLoadingIndicator.d-block {
  display: block;
}
.thumbnailLoadingIndicator p {
  text-align: center;
  font-size: 10pt;
}
.image-thumbnail-progress-bar {
  position: relative;
  width: 100%;
  height: 1px;
  margin: 1px 0px;
  top: -5px;
  background-color: #c0c0c0;
}
.image-thumbnail-progress-bar .image-thumbnail-progress-bar-inner {
  height: 100%;
  width: 0;
  border-radius: 5px;
  background-color: var(--active-color);
}
.image-thumbnail-progress-bar-color {
  position: relative;
  width: 100%;
  height: 3px;
  top: -5px;
}
.image-thumbnail-progress-bar-color .image-thumbnail-progress-bar-inner {
  height: 100%;
  width: 0;
  border-radius: 5px;
  background-color: #43afff;
}

@media only screen and (max-width:768px){.ImageThumbnail-m{width:4.96rem;height:3.21rem}}
.icon-pulse {
  fa-spin: 1s infinite steps(8);
}
.icon-spin {
  animation: spin 2s linear infinite;
}
@-moz-keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
@-webkit-keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
@-o-keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.full-width {
  width: 100%;
}
.full-height {
  height: 100%;
}
.flex-h {
  display: flex;
  flex-direction: row;
}
.flex-v {
  display: flex;
  flex-direction: column;
}
.flex-grow {
  flex-grow: 1;
}
.nowrap {
  white-space: nowrap;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
h1 {
  font-size: 36px;
}
h3,
h1 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 20px;
  margin-bottom: 10px;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.pull-left {
  float: left !important;
}
.pull-right {
  float: right !important;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
a {
  color: #337ab7;
  text-decoration: none;
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  opacity: 0;
  line-break: auto;
}
.tooltip.in {
  opacity: 0.9;
}
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip-inner {
  max-width: 300px !important;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}
.tooltip-list {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  min-width: 200px;
}
.list-margin {
  margin: 0px 10px;
}
.tooltip-column {
  display: flex;
  flex-direction: column;
}
.tooltip-column .toolbar-button {
  display: flex !important;
  height: 30px !important;
  align-items: center;
  margin-bottom: 0px;
}
.tooltip-column .toolbar-button svg {
  margin-right: 10px;
}
.tooltip-column .toolbar-button .toolbar-button-label {
  height: 21px;
  line-height: 21px;
  display: flex;
  align-items: center;
  -webkit-user-drag: none;
  user-select: none;
}
.tooltip-row {
  display: flex;
  flex-wrap: wrap;
  width: 200px;
}
.tooltip-row .toolbar-button {
  width: 200px;
  display: flex !important;
  height: 30px !important;
  line-height: 30px;
  align-items: start;
  margin-bottom: 0px;
}
.tooltip-row .toolbar-button svg {
  margin-right: 10px;
}
.tooltip-row .toolbar-button .toolbar-button-label {
  height: 28px;
  line-height: 28px;
  display: flex;
  align-items: center;
  font-size: 13px;
  -webkit-user-drag: none;
  user-select: none;
}
.tooltip-arrow {
  position: absolute;
  width: 250px;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border: 1px solid #ff0;
}
.tooltip.in {
  opacity: 0.9;
}

@media (orientation:portrait){.tooltip-m{bottom:5.5rem!important;left:0!important;width:100%;height:4.5rem;position:fixed;background:transparent;z-index:1000}}@media (orientation:landscape){.tooltip-m{bottom:5.5rem!important;left:0!important;width:calc(100% - 80px);height:4.5rem;position:fixed;background:transparent;z-index:1000}}.tooltip-inner-m{position:absolute;bottom:0;width:100%;height:100%;overflow-x:auto;background:#1a273c;border:1px solid #486182}.tooltip-inner-m::-webkit-scrollbar{width:.1rem}.tooltip-inner-m::-webkit-scrollbar-thumb,.tooltip-inner-m::-webkit-scrollbar-track{background-color:transparent}.tooltip-inner-m .tooltip-children-m{display:flex;height:100%;align-items:center;position:relative}.tooltip-inner-m .toolbar-button-m{margin:0 .36rem;padding:0 .4rem}.tooltip-inner-m .toolbar-button-m .icon-row{font-size:1.6rem}.tooltip-inner-m .toolbar-button-m .toolbar-button-label{width:2.3rem}.tooltip-inner-m .toolbar-button-m .toolbar-button-label .button-label-m{font-size:1rem}.childrenBox-m{position:absolute;display:flex;align-items:end;justify-content:center;min-height:3.8rem;width:100%;bottom:4.1rem;z-index:1000;background:transparent}.childrenBox-m .childrenOuterBox{max-width:85%;width:auto;display:flex;background:#1a273c;border:1px solid #486182;border-radius:8px;flex-wrap:wrap;padding:.42rem .64rem;align-items:center}.childrenBox-m .childrenOuterBox .childrenInnerBox{width:100%;display:flex;flex-wrap:wrap}.childrenBox-m .childrenOuterBox .childrenInnerBox .toolbar-button-m{width:2.8rem;padding:0 .2rem;border-radius:4px}.childrenBox-m .childrenOuterBox .childrenInnerBox .toolbar-button-m:hover{background-color:#000;opacity:.6;border-radius:4px}.childrenBox-m .childrenOuterBox .childrenInnerBox .toolbar-button-m .toolbar-button-label .button-label-m{display:none}.childrenBox-yushe{position:absolute;width:100%;bottom:4.1rem;z-index:1000;background:transparent}.childrenBox-yushe .childrenOuterBox{display:flex;background:#1a273c;border:1px solid #486182;overflow-x:scroll;padding:.42rem .64rem}.childrenBox-yushe .childrenOuterBox .childrenInnerBox{width:100%;display:flex}
.toolbar-button {
  color: #9eb8cc;
  float: left;
  text-align: center;
  cursor: pointer;
  border-radius: 4px;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Chrome and Opera */
  display: flex;
  flex-direction: column;
  align-items: center;
}
.toolbar-button .toolbar-button-label {
  font-size: 12px;
  font-weight: 500;
  position: reactive;
  white-space: nowrap;
  -webkit-user-drag: none;
  user-select: none;
}
.toolbar-button .toolbar-button-label .arrowIcon {
  position: absolute;
}
.toolbar-button .expand-caret {
  width: 8px;
  height: 8px;
  transform: translate(2px, 2px);
}
.toolbar-button svg {
  height: 21px;
  width: 21px;
  margin: 2px;
}
.toolbar-button .icon-row {
  font-weight: 500;
  font-size: 22px;
  height: 30px;
  width: 30px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}
.toolbar-button:hover {
  color: var(--hover-color);
}
.toolbar-button.active .icon-row,
.toolbar-button:active .icon-row {
  color: var(--hover-color);
  background-color: #43afff;
}
.toolbar-button.active .toolbar-button-label,
.toolbar-button:active .toolbar-button-label {
  color: var(--hover-color);
}
.toolbar-button-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  color: #9eb8cc;
  float: left;
  text-align: center;
  cursor: pointer;
  border-radius: 4px;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Chrome and Opera */
}
.toolbar-button-flex .toolbar-button-label {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  -webkit-user-drag: none;
  user-select: none;
}
.toolbar-button-flex .toolbar-button-tagInfo {
  font-size: 14px;
  font-weight: 500;
  text-align: start;
}
.toolbar-button-flex .expand-caret {
  width: 8px;
  height: 8px;
  transform: translate(2px, 2px);
}
.toolbar-button-flex .icon-row {
  font-weight: 500;
  font-size: 18px;
  height: 30px;
  width: 30px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}
.toolbar-button-flex .icon-tagInfo,
.toolbar-button-flex:hover {
  color: var(--hover-color);
}
.toolbar-button-flex.active .icon-row,
.toolbar-button-flex:active .icon-row {
  color: var(--hover-color);
}
.buttonBox .toolbar-button-flex .toolbar-button-label {
  width: 50px;
  height: 32px;
  border-right: #9eb8cc solid 1px;
  padding-right: 8px;
  display: flex;
  align-items: center;
  -webkit-user-drag: none;
  user-select: none;
}
.toolbar-col {
  color: #9eb8cc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px 5px 0;
  cursor: pointer;
}
.toolbar-col:hover {
  color: #fff;
}
.toolbar-col .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.toolbar-col .icon-box .icon-button {
  margin: 0 auto;
  color: inherit;
  font-weight: 500;
  font-size: 22px;
  min-width: 28px;
  -webkit-user-drag: none;
  user-select: none;
}
.toolbar-col .icon-label {
  font-size: 12px;
  color: inherit;
}
.toolbar-col .icon-button {
  color: inherit;
  font-weight: 500;
  font-size: 22px;
  min-width: 28px;
  -webkit-user-drag: none;
  user-select: none;
}
.toolbar-col .icon-button:hover {
  color: #fff;
}
.toolbar-col .icon-button.disabled {
  color: #9eb8cc;
  opacity: 0.5;
}
.toolbar-col .icon-button.disabled:hover {
  color: #9eb8cc;
  opacity: 0.5;
}
.toolbar-col .label-button {
  width: auto;
  border: 1px solid #475c7e;
  border-radius: 2px;
  font-size: 12px;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #accdf7;
  line-height: 24px;
  padding: 0 10px;
}
.toolbar-col .label-button:hover {
  color: #fff;
}
.toolbar-col .label-button.disabled {
  color: #9eb8cc;
  opacity: 0.5;
}
.toolbar-col .label-button.disabled:hover {
  color: #9eb8cc;
  opacity: 0.5;
}
.toolbar-col.active a .icon-button,
.toolbar-col:active a .icon-button {
  color: #43afff;
}
.toolbar-col.active a .label-button,
.toolbar-col:active a .label-button {
  color: #fff;
  background: #43afff;
}
.p10 {
  padding: 0 0 0 10px;
  float: left;
  text-align: center;
}

.toolbar-button{padding:0 4px}.toolbar-button-flex-m{display:flex;flex-direction:row;align-items:center;justify-content:start;color:#9eb8cc;float:left;text-align:center;margin:.5rem .3rem .5rem .4rem;padding-right:.2rem;cursor:pointer;border-right:1px solid #495262;-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}.button-label-large-m{font-size:1.2rem;margin-right:.2rem;width:3rem;font-weight:700}.button-label-m{font-size:1rem}.button-label-m.active{color:#43afff}.button-icon-m{font-size:.6rem}.button-arrow{display:flex;height:80%;align-items:flex-end}.toolbar-button-m{color:#9eb8cc;text-align:center;cursor:pointer;-webkit-touch-callout:none;-webkit-user-select:none;user-select:none;display:flex;justify-content:center;flex:1}.toolbar-button-m:active{animation:myfirst .5s}@keyframes myfirst{0%{background-color:rgba(67,175,255,.5)}}.toolbar-button-label{width:fit-content}.toolbar-button-box{width:3.57rem;height:2.14rem;color:#fff;border:1px solid #486182;border-radius:4px;display:flex;justify-content:center;align-items:center;margin:0 .38rem .3rem 0}.toolbar-button-box:hover{background-color:rgba(0,0,0,.6)}.icon-row{font-size:1.8rem}.icon-row.active{color:#43afff}.toolbar-yushe-box{box-sizing:border-box;padding:.3rem .5rem;width:max-content}.toolbar-yushe-box:hover{background-color:#000;opacity:.6;border-radius:4px}.toolbar-button-image{width:2.93rem;height:2.93rem;display:block;margin:0 auto}.toolbar-yushe-label-box{height:calc(100% - 2.93rem);display:flex;align-items:center;justify-content:center}.toolbar-yushe-label{font-size:1rem;text-align:center;width:max-content;color:#fff}.toolbar-yushe-subLabel{font-size:.8rem}@media only screen and (min-width:768px) and (max-width:1199px){.lg,.md{display:none}.sm{display:block}}@media only screen and (min-width:1200px) and (max-width:1599px){.lg,.sm{display:none}.md{display:block}}@media only screen and (min-width:1600px){.md,.sm{display:none}.lg{display:block}}
.sb-container{position:fixed;width:var(--snackbar-size);padding:20px;z-index:9999;box-sizing:border-box;height:auto}.sb-topLeft{top:0;bottom:auto;left:0;right:auto}.sb-topCenter{left:50%;top:0;bottom:auto;transform:translateX(-50%)}.sb-topRight{top:0;bottom:auto;left:auto;right:0}.sb-bottomLeft{top:auto;bottom:0;left:0;right:auto}.sb-bottomCenter{left:50%;bottom:0;top:auto;transform:translateX(-50%)}.sb-bottomRight{top:auto;bottom:0;left:auto;right:0;margin:10px 0 0}.sb-topCenter .sb-item,.sb-topLeft .sb-item,.sb-topRight .sb-item{margin:10px 0 0}.sb-bottomCenter .sb-item,.sb-bottomLeft .sb-item,.sb-bottomRight .sb-item{margin:0 0 10px}.sb-closeBtn{height:20px;opacity:1;overflow:hidden;padding:2px;text-align:center;text-shadow:none;width:20px;cursor:pointer;position:absolute;right:5px;top:5px;transition:all .3s ease;background:hsla(0,0%,100%,.6);border-radius:100%}.sb-closeBtn:hover{background:#fff}.sb-closeIcon{display:block;font-size:0;height:100%;line-height:0;overflow:hidden;position:relative;width:100%}.sb-closeIcon:after,.sb-closeIcon:before{content:" ";display:block;height:2px;transition:all .3s ease;width:12px;background-color:#222;opacity:1;position:absolute}.sb-closeIcon:before{left:4px;top:3px;transform:rotate(45deg);transform-origin:0 50%}.sb-closeIcon:after{right:3px;top:5px;transform:rotate(-45deg);transform-origin:calc(100% - 3px) 50%}.sb-title{font-size:16px;font-weight:700}.sb-message{font-size:14px;word-break:normal}.sb-item{position:relative;transition:height .3s ease;animation:fadein 1s;padding:20px;color:#fff;overflow:hidden;border-radius:4px;box-shadow:0 6px 10px 0 rgba(0,0,0,.2),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px -1px rgba(0,0,0,.14)}.sb-item a{color:#fff;text-decoration:underline}.sb-container .sb-hidden{padding-top:0;padding-bottom:0;margin-bottom:0;height:0;opacity:0;transition:all .3s ease}.sb-error .sb-action,.sb-info .sb-action,.sb-item .sb-action,.sb-success .sb-action,.sb-warning .sb-action{margin-top:10px;display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;user-select:none;background-image:none;border:none;color:#fff}.sb-success,.sb-success .sb-action{background-color:var(--snackbar-success)}.sb-error,.sb-error .sb-action{background-color:var(--snackbar-error)}.sb-warning,.sb-warning .sb-action{background-color:var(--snackbar-warning)}.sb-info,.sb-info .sb-action{background-color:var(--snackbar-info)}@keyframes fadein{0%{opacity:0;top:30px}to{opacity:1;top:0}}
.DraggableItem .header.draggable {
  cursor: grab !important;
}
.DraggableItem .header.draggable.dragging {
  cursor: grabbing !important;
}
.DraggableArea {
  width: 100%;
  height: 100%;
  position: absolute;
}
.DraggableArea .Overlay {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.1);
}
.DraggableItem {
  user-select: none;
}
.header {
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: #000;
  padding: 10px 20px 8px;
  position: relative;
  background-color: #2d3643;
  display: flex;
}
.header .title {
  font-size: 16px;
  line-height: 24px;
  padding-right: 40px;
  color: #91b9cd;
  margin: 0;
  flex: 1;
}
.header .closeBtn {
  height: 30px;
  opacity: 1;
  overflow: hidden;
  padding: 2px;
  text-align: center;
  text-shadow: none;
  width: 30px;
  color: #91b9cd;
  cursor: pointer;
  position: absolute;
  right: 21px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: color 0.3s ease;
}
.header .closeIcon {
  color: #91b9cd;
  display: block;
  font-size: 20px;
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
  cursor: pointer;
}
.dialog-content-contract {
  width: 1px;
  height: 1px;
  overflow: auto;
}
.btn-box {
  display: flex;
  align-items: center;
}
.icon-row {
  color: #91b9cd;
  font-size: 20px;
  cursor: pointer;
}
.mr10 {
  margin-right: 10px;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.full-width {
  width: 100%;
}
.full-height {
  height: 100%;
}
.flex-h {
  display: flex;
  flex-direction: row;
}
.flex-v {
  display: flex;
  flex-direction: column;
}
.flex-grow {
  flex-grow: 1;
}
.nowrap {
  white-space: nowrap;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
h1 {
  font-size: 36px;
}
h3,
h1 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 20px;
  margin-bottom: 10px;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.pull-left {
  float: left !important;
}
.pull-right {
  float: right !important;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
a {
  color: #337ab7;
  text-decoration: none;
}
:root {
  --series-count-background-color: #678696;
  --active-color: #20a5d6;
  --text-secondary-color: #91b9cd;
  --active-color: #20a5d6;
  --primary-background-color: #000;
  --ui-border-color-dark: #3c5d80;
  --sidebar-transition: all 0.3s ease;
}
.thumbnail.active .alt-image-text {
  border-color: var(--active-color);
  box-shadow: none;
  transition: var(--sidebar-transition);
}
.thumbnail.active {
  border-color: var(--active-color);
  box-shadow: none;
  transition: var(--sidebar-transition);
}
.thumbnail {
  cursor: pointer;
  margin: 0;
  background-color: var(--primary-background-color);
  box-shadow: inset 0 0 0 1px var(--ui-border-color-dark);
  border: 2px solid transparent;
  padding-top: 1px;
}
.thumbnail .alt-image-text {
  align-items: center;
  justify-content: center;
  background-color: var(--primary-background-color);
  box-shadow: inset 0 0 0 1px var(--ui-border-color-dark);
  border: 2px solid transparent;
  border-radius: 12px;
  margin: 0 auto;
  padding: 10px;
  position: relative;
  transition: var(--sidebar-transition);
  display: flex;
  width: 90%;
}
.thumbnail .alt-image-text h1 {
  text-align: center;
  color: var(--text-primary-color);
}
.thumbnail .series-details {
  background-color: #2d3643;
  display: flex;
  flex-direction: column;
  color: var(--text-primary-color);
  font-size: 12px;
  line-height: 16px;
  padding-left: 5px;
  padding-right: 5px;
  max-width: 100%;
  position: relative;
  word-wrap: break-word;
}
.thumbnail .series-details .series-description a {
  display: block;
  flex-grow: 1;
  width: 100px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #fff;
  font-size: 12px;
}
.thumbnail .series-information {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  line-height: 14px;
  align-items: center;
}
.thumbnail .series-information .item-frames .icon {
  height: 18px;
}
.thumbnail .series-information .item-series.image-frames .icon {
  background-color: var(--series-count-background-color);
  margin-top: 6px;
  position: relative;
}
.thumbnail .series-information .item-series.image-frames .icon:after {
  content: '';
  background-color: var(--active-color);
  box-shadow: 1px 1px rgba(0,0,0,0.115);
  left: -4px;
  position: absolute;
  top: -4px;
}
.thumbnail .series-information .item-series.image-frames .icon,
.thumbnail .series-information .item-series.image-frames .icon:after {
  content: '';
  border: 0px solid var(--series-count-background-color);
  display: inline-block;
  height: 11px;
  width: 11px;
}
.thumbnail .series-information .warning {
  margin: auto 0;
  opacity: 1;
  color: #e29e4a;
}
.thumbnail .series-information .warning svg {
  width: 16px;
  height: 14px;
  pointer-events: inherit;
}
.thumbnail .series-information .value {
  color: var(--text-secondary-color);
  display: inline-block;
  font-size: 12px;
  margin-left: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}
.thumbnail .series-information .icon {
  color: var(--active-color);
  display: inline-block;
  font-size: 10px;
  font-weight: 900;
  text-align: right;
}

.thumbnail-m{width:5rem;padding:0;border:1px solid #3c5d80;box-shadow:unset!important;-webkit-user-select:none;user-select:none}.thumbnail-m.active{border-color:#08f}.thumbnail-m .series-details{background-color:#2d3643;display:flex;flex-direction:column;color:var(--text-primary-color);font-size:12px;line-height:16px;padding-left:5px;padding-right:5px;max-width:100%;position:relative;word-wrap:break-word}.thumbnail-m .series-information-m{width:100%;height:1rem;display:flex}.thumbnail-m .series-information-m .ser{width:2.85rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.thumbnail-m .series-information-m .num{display:flex;justify-content:flex-end;width:2.45rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.study-browser {
  float: left;
  height: 100%;
  width: 115px;
  overflow: hidden;
  background-color: #000;
  display: flex;
  flex-direction: column;
}
.study-browser .study-thumbnails-select {
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 12px;
  height: 26px;
  color: #9eb8cc;
  background-color: #2c363f;
  border-color: #3c5d80;
}
.study-browser .study-browser-info {
  background-color: #343435;
}
.study-browser .study-browser-info .study-browser-info-item {
  color: #d8d8d8;
  font-size: 14px;
  line-height: 25px;
  border-bottom: 1px solid #3c5d80;
  white-space: nowrap; /* 禁止换行 */
  overflow: hidden; /* 超出部分隐藏 */
  text-overflow: ellipsis; /* 显示省略号 */
  user-select: none;
  -webkit-user-drag: none;
}
.study-browser .study-browser-top {
  display: flex;
  align-items: center;
  background-color: #343435;
  justify-content: space-between;
  padding: 0 10px;
  margin-bottom: 2px;
  user-select: none;
  -webkit-user-drag: none;
}
.study-browser .study-browser-top .study-browser-title {
  color: #d8d8d8;
  font-size: 14px;
  line-height: 36px;
  -webkit-user-drag: none;
  user-select: none;
}
.study-browser .study-browser-top .study-browser-icon {
  width: 10px;
  height: 10px;
  cursor: pointer;
}
.study-browser .scrollable-study-box {
  flex: 1;
  width: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
}
.study-browser .scrollable-study-thumbnails {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.study-browser .scrollable-study-thumbnails::-webkit-scrollbar {
  display: none;
}
.study-browser .scrollable-study-thumbnails .thumbnail-container {
  margin: 0 auto;
  width: 100%;
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer */
  -khtml-user-select: none; /* KHTML browsers (e.g. Konqueror) */
  -webkit-user-select: none; /* Chrome, Safari, and Opera */
  -webkit-touch-callout: none; /* Disable Android and iOS callouts*/
}
.study-browser .scrollable-study-thumbnails .thumbnail-container .noselect {
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer */
  -khtml-user-select: none; /* KHTML browsers (e.g. Konqueror) */
  -webkit-user-select: none; /* Chrome, Safari, and Opera */
  -webkit-touch-callout: none; /* Disable Android and iOS callouts*/
}
.study-browser-collapse {
  height: 100%;
  width: 30px;
  background-color: #343435;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.study-browser-collapse .study-browser-collapse-title {
  width: 15px;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
}
.study-browser-collapse .study-browser-icon {
  width: 10px;
  height: 10px;
  cursor: pointer;
}
.draggable {
  cursor: copy;
  cursor: grab;
}
::-webkit-scrollbar {
  position: absolute;
  width: 0.5vw;
  height: 0;
  background-color: #223842;
}
/*定义滚动条轨道
 内阴影+圆角*/
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  border-radius: 25%;
  background-color: #223842;
}
/*定义滑块
 内阴影+圆角*/
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  background-color: #555;
}

@media only screen and (max-width:768px){.study-browser{margin-top:5px;width:100%;padding:0!important;overflow:hidden!important}.scrollable-study-thumbnails-mobile{width:100%;display:flex;flex-direction:row!important;overflow-x:auto!important;overflow-y:hidden!important;padding:0!important}.thumbnail-container-mobile{display:flex;margin:0!important;padding:0!important}}@media only screen and (max-width:1199px){.study-browser{display:none}.study-browser-medium{width:100%;overflow:hidden;background-color:#000}.study-thumbnails-select{display:flex;align-items:center;font-size:12px;height:24px;color:#9eb8cc;background-color:#2c363f;border-color:transparent}.study-browser-info{background-color:#343435}.study-browser-info-item{color:#d8d8d8;font-size:14px;line-height:25px;border-bottom:1px solid #3c5d80;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-user-select:none;user-select:none;-webkit-user-drag:none}.study-browser-top-medium{display:flex;align-items:center;background-color:#343435;padding:0 10px;margin-bottom:2px}.study-browser-top-medium,.study-browser-top-medium .study-browser-title-medium{color:#d8d8d8;height:25px;-webkit-user-select:none;user-select:none;-webkit-user-drag:none}.study-browser-top-medium .study-browser-title-medium{font-size:14px;line-height:25px;margin-right:20px}.scrollable-study-box-medium{flex:1;width:100%;overflow-x:auto;scrollbar-width:thin}.scrollable-study-thumbnails-medium{display:flex;flex-direction:row;flex-wrap:nowrap}.series-description{height:16px}::-webkit-scrollbar{position:absolute;width:.5vw;height:10px;background-color:#223842}::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);border-radius:25%;background-color:#223842}::-webkit-scrollbar-thumb{border-radius:10px;-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);background-color:#555}}@media (orientation:portrait){.study-browser{margin-top:5px;width:100%;padding:0!important;overflow:hidden!important}.scrollable-study-thumbnails-mobile{width:100%;display:flex;flex-direction:row!important;overflow-x:auto!important;overflow-y:hidden!important;padding:0!important}.thumbnail-container-mobile{display:flex;margin:0!important;padding:0!important}}@media (orientation:landscape){.scrollable-study-thumbnails-mobile{width:100%;height:100%;flex-direction:row!important;overflow-x:hidden!important;overflow-y:auto!important;padding:0!important}.thumbnail-container-mobile{display:flex;margin:0!important;padding:0!important;flex-direction:column}}
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 0.65;
}
button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.full-width {
  width: 100%;
}
.full-height {
  height: 100%;
}
.flex-h {
  display: flex;
  flex-direction: row;
}
.flex-v {
  display: flex;
  flex-direction: column;
}
.flex-grow {
  flex-grow: 1;
}
.nowrap {
  white-space: nowrap;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
h1 {
  font-size: 36px;
}
h3,
h1 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 20px;
  margin-bottom: 10px;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.pull-left {
  float: left !important;
}
.pull-right {
  float: right !important;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
a {
  color: #337ab7;
  text-decoration: none;
}
.layoutChooser-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  margin: -22px 8px 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0,0,0,0.175);
  box-shadow: 0 6px 12px rgba(0,0,0,0.175);
}
.layoutChooser-dropdown-menu .float-text {
  position: absolute;
  left: 25%;
  bottom: 1px;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
  user-select: none;
}
.layoutChooser {
  border: 1px solid rgba(77,99,110,0.81);
  border-radius: 8px;
  padding: 5px 0;
  position: absolute;
  z-index: 5000;
}
.layoutChooser .selectedBefore {
  background-color: #5cc3eb;
}
.layoutChooser table {
  margin: 0 auto;
  border-spacing: 0;
  border-collapse: collapse;
}
.layoutChooser table td {
  cursor: pointer;
}
.layoutChooser table td:hover,
.layoutChooser table td.hover {
  background-color: #209ac9;
}

@media only screen and (max-width:768px){.layoutChooser-dropdown-menu{left:unset;right:0}}
.measurementTable {
  background-color: var(--primary-background-color);
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.measurementTable .maxMeasurements {
  border-radius: 3px;
  color: var(--primary-background-color);
  font-size: 12px;
  font-weight: 500;
  height: 19px;
  line-height: 17px;
  margin-top: 22px;
  margin-right: 15px;
  padding: 2px 6px 0;
  text-transform: uppercase;
  transition: all 0.3s ease;
  background-color: var(--default-color);
}
.measurementTable .measurementTableHeader {
  padding-left: 45px;
}
.measurementTable .measurementTableHeader .measurementTableHeaderItem {
  display: inline-block;
  margin-top: 9px;
  margin-left: 9px;
  padding-left: 9px;
  width: 90px;
  font-size: 14px;
  line-height: 20px;
  border-left: 1px solid var(--text-secondary-color);
  color: var(--text-primary-color);
}
.measurementTable .measurementTableHeader .measurementTableHeaderItem .timepointLabel {
  color: var(--text-secondary-color);
  font-size: 12px;
}
.measurementTable .measurementTableHeader .warning-status {
  display: block;
  position: absolute;
  width: 50px;
  height: 40px;
  padding-left: 7px;
  left: 15px;
  top: 7px;
}
.measurementTable .measurementTableHeader .warning-status .warning-border {
  display: block;
  border: 2px solid #e29e4a;
  border-radius: 36px;
  padding: 6px 7px;
  width: 40px;
  height: 40px;
}
.measurementTable .measurementTableHeader .warning-status svg {
  color: #e29e4a;
  width: 22px;
  height: 20px;
  pointer-events: inherit;
}
.measurementTable .measurementTableFooter {
  padding: 10px;
  color: #fff;
  text-align: center;
  z-index: 1;
}
.measurementTable .measurementTableFooter .saveBtn {
  border: 1px solid var(--ui-border-color-active);
  border-radius: 25px;
  background-color: var(--active-color);
  color: var(--ui-gray-dark);
  line-height: 25px;
  padding: 0 20px;
  outline: none;
  cursor: pointer;
}
.measurementTable .measurementTableFooter .saveBtn:hover,
.measurementTable .measurementTableFooter .saveBtn:active {
  background-color: var(--ui-sky-blue);
}
.measurementTable .measurementTableFooter .saveBtn svg {
  margin-right: 4px;
  position: relative;
  top: 2px;
}
.tooltip-warning.in {
  opacity: 1;
}
.tooltip-warning .tooltip-inner {
  padding: 0;
}
.tooltip-warning .tooltip-inner .warningTitle {
  text-align: left;
  background-color: var(--ui-gray-darkest);
  padding: 7px 15px;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}
.tooltip-warning .tooltip-inner .warningContent {
  text-align: center;
  background-color: var(--ui-gray);
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}
.tooltip-warning .tooltip-inner .warningContent ol {
  margin-top: auto;
  padding-inline-start: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 25px;
  text-align: left;
}
.tooltip-warning .tooltip-inner .warningContent ol li {
  padding-right: 10px;
}

.tableListItem {
  display: flex;
  margin-left: -6px;
  margin-top: 2px;
  padding-left: 6px;
  opacity: 0.7;
  cursor: pointer;
  width: calc(100% + 6px);
}
.tableListItem:hover {
  opacity: 1;
}
.tableListItem.selected {
  opacity: 1;
}
.tableListItem.selected .itemIndex {
  color: $activeColor;
}
.tableListItem.hasWarning .warning {
  display: block;
}
.tableListItem .itemIndex {
  background-color: var(--ui-gray);
  color: var(--text-secondary-color);
  cursor: pointer;
  flex: 1;
  max-width: 25px;
  font-size: 14px;
  font-weight: 400;
  margin-right: 6px;
  padding: 10px;
  text-align: center;
  -webkit-box-sizing: initial;
  -moz-box-sizing: initial;
  box-sizing: initial;
}
.tableListItem .itemContent {
  flex: 1;
  color: var(--text-secondary-color);
  width: calc(100% - 51px);
  font-weight: 400;
  margin-top: 9px;
}
.tableListItem .warning-icon {
  display: none;
}

.measurementItem .rowActions {
  margin-left: -1px;
  background-color: var(--ui-gray-darker);
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  visibility: hidden;
  padding-left: 14px;
}
.measurementItem .rowActions .btnAction {
  background-color: transparent;
  border: none;
  color: var(--default-color);
  cursor: pointer;
  line-height: 35px;
  height: 35px;
  transition: all 0.3s ease;
}
.measurementItem .rowActions .btnAction:hover,
.measurementItem .rowActions .btnAction:active {
  color: var(--text-primary-color);
}
.measurementItem .rowActions .btnAction i {
  margin-right: 4px;
}
.measurementItem.selected .rowActions {
  height: auto;
  visibility: visible;
}
.measurementItem .measurementLocation {
  margin-top: 9px;
  overflow: hidden;
  max-width: calc(100% - 50px);
  text-overflow: ellipsis;
  overflow-wrap: normal;
  white-space: nowrap;
}
.measurementItem .measurementDisplayText {
  display: inline-block;
  margin-top: 9px;
  padding-left: 9px;
  width: 90px;
  border-left: 1px solid var(--text-secondary-color);
  color: var(--text-primary-color);
}
.measurementItem .itemIndex {
  -webkit-box-sizing: initial;
  -moz-box-sizing: initial;
  box-sizing: initial;
}
.measurementItem.hasWarnings .itemIndex {
  opacity: 1;
  background-color: #e29e4a;
  color: #fff;
}
.measurementItem.hasWarnings .warning-icon {
  display: block;
  margin: 7px auto 0;
}
.measurementItem.hasWarnings .warning-icon svg {
  width: 22px;
  height: 20px;
  pointer-events: inherit;
}

.scrollArea {
  overflow: hidden;
  position: relative;
}
.scrollArea .scrollable {
  max-height: inherit;
  overflow: hidden;
  zoom: 1;
}
.scrollArea .scrollable.scrollX {
  overflow-x: scroll;
}
.scrollArea .scrollable.scrollY {
  overflow-y: scroll;
}
.scrollArea.fit {
  height: 100%;
  width: 100%;
}
.scrollArea.fit .scrollable {
  bottom: 0;
  left: 0;
  max-height: none;
  position: absolute;
  right: 0;
  top: 0;
}
.scrollArea .scrollNav {
  background-color: rgba(0,0,0,0.75);
  box-shadow: 0 0 10px 10px rgba(0,0,0,0.75);
  cursor: pointer;
  height: 24px;
  left: 10px;
  opacity: 0;
  position: absolute;
  right: 10px;
  transition: all 0.3s ease;
}
.scrollArea .scrollNav .scrollNavIcon {
  color: var(--active-color);
  display: block;
  width: 18px;
  height: 18px;
  margin: 0 auto;
  transition: color 0.3s ease;
}
.scrollArea .scrollNav:hover {
  background-color: rgba(0,0,0,0.9);
  box-shadow: 0 0 10px 10px rgba(0,0,0,0.9);
}
.scrollArea .scrollNav:hover .scrollNavIcon {
  color: var(--hover-color);
}
.scrollArea .scrollNavUp {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  top: 0;
  transform: translateY(-24px);
}
.scrollArea .scrollNavDown {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  bottom: 0;
  transform: translateY(24px);
}
.scrollArea.canScrollUp .scrollNavUp,
.scrollArea.canScrollDown .scrollNavDown {
  opacity: 1;
  transform: translateY(0);
}

.tableList {
  background-color: var(--primary-background-color);
  height: 100%;
  width: 100%;
}
.tableList .tableListHeader {
  background-color: var(--ui-gray-darker);
  color: var(--text-secondary-color);
  display: flex;
  height: 63px;
  line-height: 63px;
  margin-top: 2px;
  overflow: hidden;
  width: 100%;
}
.tableList .tableListHeader .tableListHeaderTitle {
  color: var(--text-secondary-color);
  font-size: 22px;
  font-weight: 300;
  line-height: 63px;
  padding: 0 10px;
  text-align: left;
  flex: 1;
}
.tableList .tableListHeader .tableListHeaderSelector {
  cursor: pointer;
  max-width: 30px;
  padding-left: 2px;
  align-items: stretch;
  flex: 1;
  justify-content: space-around;
  text-align: center;
}
.tableList .tableListHeader .tableListHeaderSelector svg {
  fill: #c1d8e3;
  height: 63px;
  max-width: 11px;
}
.tableList .tableListHeader .numberOfItems {
  color: var(--ui-sky-blue);
  float: right;
  font-weight: 300;
  font-size: 40px;
  max-width: 54px;
  height: 63px;
  line-height: 66px;
  flex: 1;
}

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 0.65;
}
button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
.table-responsive {
  min-height: 0.01%;
  overflow-x: auto;
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
th {
  text-align: left;
}
.AboutContent .btn {
  border-color: #ccc;
}
.AboutContent .table thead:first-child tr:first-child th,
.AboutContent .table thead:first-child tr:first-child td {
  border-top: 0;
}
.AboutContent .table thead tr th,
.AboutContent .table tbody tr th,
.AboutContent .table tfoot tr th,
.AboutContent .table thead tr td,
.AboutContent .table tbody tr td,
.AboutContent .table tfoot tr td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}

.nav-tabs {
  border-bottom: 0;
  margin-bottom: 3px;
  position: relative;
  z-index: 1;
}
.nav-tabs :hover {
  cursor: pointer;
}
.nav-tabs>li {
  font-size: 14px;
  font-weight: normal;
  height: 40px;
  line-height: 40px;
  margin-bottom: 0;
}
.nav-tabs>li>button {
  display: block;
  width: 100%;
  line-height: inherit;
  margin: 0;
  height: inherit;
  padding: 0 10px 0 10px;
  outline: none;
}
.nav-tabs>li>button:after {
  background-color: transparent;
  bottom: -3px;
  content: ' ';
  display: block;
  height: 3px;
  width: 100%;
}
.nav-tabs>li>button,
.nav-tabs>li.active>button,
.nav-tabs>li>button:hover,
.nav-tabs>li.active>button:hover,
.nav-tabs>li>button:active,
.nav-tabs>li.active>button:active,
.nav-tabs>li>button:focus,
.nav-tabs>li.active>button:focus {
  color: var(--active-color);
  background-color: transparent;
  border: 0;
}
.nav-tabs>li.active>button {
  font-weight: bold;
}
.nav-tabs>li.active>button:after {
  background-color: var(--active-color);
}
.nav {
  padding-left: 0;
  list-style: none;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li {
  float: left;
  margin-bottom: -1px;
}
.TabComponents .TabComponents_tabHeader {
  display: flex;
  flex-direction: column;
}
.TabComponents .TabComponents_tabHeader_selector {
  border-bottom: 3px solid #000;
  padding: 10px 25px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.TabComponents .closeIcon {
  cursor: pointer;
  margin: -10px 0 0 0;
  padding: 0;
  background-color: transparent;
  border: none;
  color: var(--text-secondary-color);
  font-size: 25px;
  font-weight: lighter;
  height: 25px;
}
.TabComponents .dialog-separator-after {
  font-size: 20px;
}
.TabComponents .dialog-separator-after .dialog-separator-title {
  color: var(--text-secondary-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  padding-right: 24px;
  margin-top: 10px;
}
.TabComponents .dialog-separator-after .nav-tabs {
  margin-block-start: 0;
}
.TabComponents .tab-content {
  height: 100%;
}
.TabComponents .tab-content .tab-box {
  width: 150px;
  height: 573px;
  border: solid 3px #000;
}
.TabComponents .tab-content .tab-box .tab-item {
  color: #20a5d6;
  border: solid 1px #20a5d6;
  height: 40px;
  margin: 5px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 700;
}
.TabComponents .tab-content .tab-box .active {
  color: #fff;
  background: #20a5d6;
}
.TabComponents .tab-content .TabComponents_content {
  width: 586px;
  display: none;
  height: 637px;
}
.TabComponents .tab-content .TabComponents_content.active {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-btn {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 13px 20px 14px 20px;
  border-top: 3px solid var(--primary-background-color);
}
.footer-btn .btn {
  width: 5rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  user-select: none;
}
.footer-btn .recover {
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #fefefe;
  background: #ff2637;
  border-radius: 4px;
}
.footer-btn .cancel {
  color: #43afff;
  font-family: Source Han Sans CN;
  font-weight: 400;
  background: #171a1f;
  border: 1px solid #43afff;
  border-radius: 4px;
}
.footer-btn .save {
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #fefefe;
  background: #008af0;
  border-radius: 4px;
}
.footer-btn div button:last-child {
  margin-left: 10px;
}

.language-select {
  color: var(--primary-background-color);
  display: block;
  min-width: 150px;
}

.ohif-check-container{--check-button-dim:15px}.ohif-check-container input{position:absolute;opacity:0;height:inherit;width:inherit;cursor:default}.ohif-check-container{display:block;position:relative;padding-left:35px;margin-bottom:12px;cursor:pointer;-webkit-user-select:none;user-select:none}.ohif-checkbox{width:var(--check-button-dim);height:var(--check-button-dim);position:absolute;top:20%;left:5%;cursor:pointer;background-color:var(--ui-gray-lighter)}.ohif-checkbox:hover{background-color:var(--default-color)}.ohif-checkbox:after{content:"";position:absolute;width:70%;height:70%}.ohif-checkbox.ohif-checked:after{display:block;top:14%;left:14%;background:#fff}.ohif-check-label{font-size:12px;font-weight:500}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.full-width {
  width: 100%;
}
.full-height {
  height: 100%;
}
.flex-h {
  display: flex;
  flex-direction: row;
}
.flex-v {
  display: flex;
  flex-direction: column;
}
.flex-grow {
  flex-grow: 1;
}
.nowrap {
  white-space: nowrap;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
h1 {
  font-size: 36px;
}
h3,
h1 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 20px;
  margin-bottom: 10px;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.pull-left {
  float: left !important;
}
.pull-right {
  float: right !important;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
a {
  color: #337ab7;
  text-decoration: none;
}
.form-themed table {
  color: var(--text-primary-color);
}
.form-themed table th,
.form-themed table td {
  font-size: 15px;
  font-weight: normal;
}
.form-themed table th {
  line-height: 60px;
}
.form-themed table td {
  line-height: 18px;
  padding: 0;
}
.form-themed .p-r-1 {
  padding-right: 1rem !important;
}
.form-themed label {
  margin-bottom: 5px;
}
.form-themed label.wrapperLabel {
  cursor: pointer;
}
.form-themed label.wrapperLabel:not(.checkboxLabel) {
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.form-themed label.wrapperLabel:not(.checkboxLabel) .wrapperText {
  display: block;
  order: -1;
}
.form-themed .btn[disabled],
.form-themed input[type=text][disabled],
.form-themed input[type=password][disabled],
.form-themed input[type=number][disabled],
.form-themed .btn.disabled,
.form-themed input[type=text].disabled,
.form-themed input[type=password].disabled,
.form-themed input[type=number].disabled,
.form-themed .btn[disabled]:hover,
.form-themed input[type=text][disabled]:hover,
.form-themed input[type=password][disabled]:hover,
.form-themed input[type=number][disabled]:hover,
.form-themed .btn.disabled:hover,
.form-themed input[type=text].disabled:hover,
.form-themed input[type=password].disabled:hover,
.form-themed input[type=number].disabled:hover,
.form-themed .btn[disabled]:active,
.form-themed input[type=text][disabled]:active,
.form-themed input[type=password][disabled]:active,
.form-themed input[type=number][disabled]:active,
.form-themed .btn.disabled:active,
.form-themed input[type=text].disabled:active,
.form-themed input[type=password].disabled:active,
.form-themed input[type=number].disabled:active {
  background-color: var(--ui-gray-darker);
  border-color: var(--ui-gray-light);
  color: var(--text-primary-color);
}
.form-themed .btn[disabled] + .wrapperText,
.form-themed input[type=text][disabled] + .wrapperText,
.form-themed input[type=password][disabled] + .wrapperText,
.form-themed input[type=number][disabled] + .wrapperText,
.form-themed .btn.disabled + .wrapperText,
.form-themed input[type=text].disabled + .wrapperText,
.form-themed input[type=password].disabled + .wrapperText,
.form-themed input[type=number].disabled + .wrapperText,
.form-themed .btn[disabled]:hover + .wrapperText,
.form-themed input[type=text][disabled]:hover + .wrapperText,
.form-themed input[type=password][disabled]:hover + .wrapperText,
.form-themed input[type=number][disabled]:hover + .wrapperText,
.form-themed .btn.disabled:hover + .wrapperText,
.form-themed input[type=text].disabled:hover + .wrapperText,
.form-themed input[type=password].disabled:hover + .wrapperText,
.form-themed input[type=number].disabled:hover + .wrapperText,
.form-themed .btn[disabled]:active + .wrapperText,
.form-themed input[type=text][disabled]:active + .wrapperText,
.form-themed input[type=password][disabled]:active + .wrapperText,
.form-themed input[type=number][disabled]:active + .wrapperText,
.form-themed .btn.disabled:active + .wrapperText,
.form-themed input[type=text].disabled:active + .wrapperText,
.form-themed input[type=password].disabled:active + .wrapperText,
.form-themed input[type=number].disabled:active + .wrapperText {
  color: var(--text-primary-color);
  cursor: auto;
}
.form-themed input[type=text],
.form-themed input[type=password],
.form-themed input[type=number] {
  background-color: var(--ui-gray);
  border-color: var(--ui-border-color);
  color: var(--text-primary-color);
  font-weight: normal;
}
.form-themed input[type=text]:active,
.form-themed input[type=password]:active,
.form-themed input[type=number]:active,
.form-themed input[type=text]:focus,
.form-themed input[type=password]:focus,
.form-themed input[type=number]:focus {
  background-color: var(--ui-gray-dark);
  border: 2px solid var(--active-color);
  box-shadow: none;
}
.form-themed input[type=text]:active + .wrapperText,
.form-themed input[type=password]:active + .wrapperText,
.form-themed input[type=number]:active + .wrapperText,
.form-themed input[type=text]:focus + .wrapperText,
.form-themed input[type=password]:focus + .wrapperText,
.form-themed input[type=number]:focus + .wrapperText {
  color: var(--active-color);
}
.form-themed .btn-primary {
  background-color: var(--active-color);
  border-collapse: var(--ui-border-color-active);
  color: var(--ui-text-color-active);
}
.form-themed .btn-primary:hover,
.form-themed .btn-primary:active,
.form-themed .btn-primary:focus,
.form-themed .btn-primary:focus:active {
  background-color: var(--ui-active-color);
  border-collapse: var(--ui-border-color-active);
  color: var(--ui-text-color-active);
}
.form-themed .form-control {
  background-color: #fff;
  border: 0;
  font-size: 14px;
  height: 30px;
  line-height: 16px;
  padding: 8px 9px 6px;
}
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102,175,233,0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102,175,233,0.6);
}
.form-control::-ms-expand {
  border: 0;
  background-color: transparent;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: ;
  opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: ;
}
input[type=range] {
  display: block;
  width: 100%;
}
.CineDialog {
  background: var(--ui-gray-darkest);
  color: var(--text-secondary-color);
  filter: drop-shadow(0 0 3px var(--ui-gray-darkest));
  border: none;
  border-radius: 8px;
  width: inherit;
}
.CineDialog h5 {
  font-size: 20px;
  line-height: 35px;
  margin: 0;
}
.CineDialog h5,
.CineDialog label {
  font-weight: 400;
}
.CineDialog .cine-navigation,
.CineDialog .cine-controls,
.CineDialog .cine-options {
  cursor: default;
}
.CineDialog .fps-section input[type="range"] {
  background-color: transparent;
  border: 0 none;
  outline: 0 none;
}
.CineDialog .fps-section input[type="range"]::-ms-tooltip {
  display: none;
}
.CineDialog .double-row-style {
  box-sizing: border-box;
  width: 290px;
  height: 70px;
  padding: 10px;
  top: 2%;
  left: 35%;
}
.CineDialog .double-row-style .cine-navigation {
  position: absolute;
  right: 16px;
  top: 10px;
}
.CineDialog .double-row-style .cine-navigation .btn {
  padding: 0 4px;
}
.CineDialog .double-row-style .cine-navigation .btn i {
  font-size: 32px;
  line-height: 32px;
}
.CineDialog .double-row-style .cine-controls {
  left: 0px;
}
.CineDialog .double-row-style .cine-options {
  padding: 0px 0;
}
.CineDialog .double-row-style .cine-options .fps-section {
  width: 175px;
  float: left;
}
.CineDialog .double-row-style .cine-options .fps {
  float: right;
}
.CineDialog .single-row-style {
  box-sizing: content-box;
  width: 425px;
  height: 45px;
  padding: 4px 8px;
  top: 2%;
  left: 35%;
}
.CineDialog .single-row-style .cine-navigation {
  float: right;
  overflow: hidden;
  padding-right: 12px;
  position: relative;
}
.CineDialog .single-row-style .cine-navigation .btn {
  padding: 0 2px;
  margin: 0 0 0 2px;
  border: 0 none;
}
.CineDialog .single-row-style .cine-navigation .btn:first-of-type {
  margin-left: 0;
}
.CineDialog .single-row-style .cine-navigation .btn i {
  font-size: 32px;
  line-height: 45px;
}
.CineDialog .single-row-style .cine-controls {
  position: relative;
  float: left;
  overflow: hidden;
}
.CineDialog .single-row-style .cine-controls .btn {
  font-size: 22px;
  line-height: 45px;
  min-width: 28px;
  padding: 0 0px;
  margin: 0 4px;
  border: 0 none;
}
.CineDialog .single-row-style .cine-options {
  display: block;
  position: relative;
  width: 150px;
  float: left;
  overflow: hidden;
  padding: 0;
  margin: 0 0 0 10px;
}
.CineDialog .single-row-style .cine-options .fps-section {
  display: block;
  float: left;
  width: 80px;
}
.CineDialog .single-row-style .cine-options .fps-section input[type="range"] {
  line-height: 45px;
  height: 45px;
}
.CineDialog .single-row-style .cine-options .fps {
  display: block;
  width: 68px;
  float: left;
  padding: 0;
  margin: 0 0 0 2px;
  text-align: center;
  line-height: 45px;
  font-size: 14px;
  line-height: 1.42857143;
}
.CineDialog .btn {
  color: var(--text-secondary-color);
  background-color: transparent;
  border: 0;
  border-radius: 4px;
  font-size: 15px;
  width: 45px;
  font-weight: normal;
  height: 37px;
  line-height: 37px;
  padding: 0 12px;
}
.CineDialog .btn:hover,
.CineDialog .btn:active,
.CineDialog .btn.active {
  color: var(--hover-color);
}
.CineDialog .btn[disabled]:hover {
  color: inherit;
}
.CineDialog .btn[disabled]:active {
  color: var(--text-secondary-color);
}
.CineDialog .btn.btn-primary,
.CineDialog .btn.btn-secondary,
.CineDialog .btn.btn-danger {
  transition: background-color 0.3s ease;
}
.CineDialog .btn.btn-primary:hover,
.CineDialog .btn.btn-secondary:hover,
.CineDialog .btn.btn-danger:hover,
.CineDialog .btn.btn-primary:active,
.CineDialog .btn.btn-secondary:active,
.CineDialog .btn.btn-danger:active,
.CineDialog .btn.btn-primary:focus,
.CineDialog .btn.btn-secondary:focus,
.CineDialog .btn.btn-danger:focus {
  opacity: 0.8;
}
.CineDialog .btn.btn-primary {
  background-color: var(--active-color);
  color: var(--primary-background-color);
}
.CineDialog .btn.btn-secondary {
  background-color: var(--text-secondary-color);
  color: var(--primary-background-color);
}
.CineDialog .btn.btn-danger {
  background-color: var(--text-destructive-color);
  color: var(--text-primary-color);
}
.CineDialog .btn.active {
  box-shadow: inset 1px 1px 2px var(--ui-gray-darkest);
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.full-width {
  width: 100%;
}
.full-height {
  height: 100%;
}
.flex-h {
  display: flex;
  flex-direction: row;
}
.flex-v {
  display: flex;
  flex-direction: column;
}
.flex-grow {
  flex-grow: 1;
}
.nowrap {
  white-space: nowrap;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
h1 {
  font-size: 36px;
}
h3,
h1 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 20px;
  margin-bottom: 10px;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.pull-left {
  float: left !important;
}
.pull-right {
  float: right !important;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
a {
  color: #337ab7;
  text-decoration: none;
}
.form-themed table {
  color: var(--text-primary-color);
}
.form-themed table th,
.form-themed table td {
  font-size: 15px;
  font-weight: normal;
}
.form-themed table th {
  line-height: 60px;
}
.form-themed table td {
  line-height: 18px;
  padding: 0;
}
.form-themed .p-r-1 {
  padding-right: 1rem !important;
}
.form-themed label {
  margin-bottom: 5px;
}
.form-themed label.wrapperLabel {
  cursor: pointer;
}
.form-themed label.wrapperLabel:not(.checkboxLabel) {
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.form-themed label.wrapperLabel:not(.checkboxLabel) .wrapperText {
  display: block;
  order: -1;
}
.form-themed .btn[disabled],
.form-themed input[type=text][disabled],
.form-themed input[type=password][disabled],
.form-themed input[type=number][disabled],
.form-themed .btn.disabled,
.form-themed input[type=text].disabled,
.form-themed input[type=password].disabled,
.form-themed input[type=number].disabled,
.form-themed .btn[disabled]:hover,
.form-themed input[type=text][disabled]:hover,
.form-themed input[type=password][disabled]:hover,
.form-themed input[type=number][disabled]:hover,
.form-themed .btn.disabled:hover,
.form-themed input[type=text].disabled:hover,
.form-themed input[type=password].disabled:hover,
.form-themed input[type=number].disabled:hover,
.form-themed .btn[disabled]:active,
.form-themed input[type=text][disabled]:active,
.form-themed input[type=password][disabled]:active,
.form-themed input[type=number][disabled]:active,
.form-themed .btn.disabled:active,
.form-themed input[type=text].disabled:active,
.form-themed input[type=password].disabled:active,
.form-themed input[type=number].disabled:active {
  background-color: var(--ui-gray-darker);
  border-color: var(--ui-gray-light);
  color: var(--text-primary-color);
}
.form-themed .btn[disabled] + .wrapperText,
.form-themed input[type=text][disabled] + .wrapperText,
.form-themed input[type=password][disabled] + .wrapperText,
.form-themed input[type=number][disabled] + .wrapperText,
.form-themed .btn.disabled + .wrapperText,
.form-themed input[type=text].disabled + .wrapperText,
.form-themed input[type=password].disabled + .wrapperText,
.form-themed input[type=number].disabled + .wrapperText,
.form-themed .btn[disabled]:hover + .wrapperText,
.form-themed input[type=text][disabled]:hover + .wrapperText,
.form-themed input[type=password][disabled]:hover + .wrapperText,
.form-themed input[type=number][disabled]:hover + .wrapperText,
.form-themed .btn.disabled:hover + .wrapperText,
.form-themed input[type=text].disabled:hover + .wrapperText,
.form-themed input[type=password].disabled:hover + .wrapperText,
.form-themed input[type=number].disabled:hover + .wrapperText,
.form-themed .btn[disabled]:active + .wrapperText,
.form-themed input[type=text][disabled]:active + .wrapperText,
.form-themed input[type=password][disabled]:active + .wrapperText,
.form-themed input[type=number][disabled]:active + .wrapperText,
.form-themed .btn.disabled:active + .wrapperText,
.form-themed input[type=text].disabled:active + .wrapperText,
.form-themed input[type=password].disabled:active + .wrapperText,
.form-themed input[type=number].disabled:active + .wrapperText {
  color: var(--text-primary-color);
  cursor: auto;
}
.form-themed input[type=text],
.form-themed input[type=password],
.form-themed input[type=number] {
  background-color: var(--ui-gray);
  border-color: var(--ui-border-color);
  color: var(--text-primary-color);
  font-weight: normal;
}
.form-themed input[type=text]:active,
.form-themed input[type=password]:active,
.form-themed input[type=number]:active,
.form-themed input[type=text]:focus,
.form-themed input[type=password]:focus,
.form-themed input[type=number]:focus {
  background-color: var(--ui-gray-dark);
  border: 2px solid var(--active-color);
  box-shadow: none;
}
.form-themed input[type=text]:active + .wrapperText,
.form-themed input[type=password]:active + .wrapperText,
.form-themed input[type=number]:active + .wrapperText,
.form-themed input[type=text]:focus + .wrapperText,
.form-themed input[type=password]:focus + .wrapperText,
.form-themed input[type=number]:focus + .wrapperText {
  color: var(--active-color);
}
.form-themed .btn-primary {
  background-color: var(--active-color);
  border-collapse: var(--ui-border-color-active);
  color: var(--ui-text-color-active);
}
.form-themed .btn-primary:hover,
.form-themed .btn-primary:active,
.form-themed .btn-primary:focus,
.form-themed .btn-primary:focus:active {
  background-color: var(--ui-active-color);
  border-collapse: var(--ui-border-color-active);
  color: var(--ui-text-color-active);
}
.form-themed .form-control {
  background-color: #fff;
  border: 0;
  font-size: 14px;
  height: 30px;
  line-height: 16px;
  padding: 8px 9px 6px;
}
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102,175,233,0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102,175,233,0.6);
}
.form-control::-ms-expand {
  border: 0;
  background-color: transparent;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: ;
  opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: ;
}
input[type=range] {
  display: block;
  width: 100%;
}
.CineToolbar {
  color: var(--text-secondary-color);
  border: none;
  border-radius: 8px;
  width: inherit;
}
.CineToolbar .cine-controls {
  display: flex;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}
.CineToolbar .cine-controls .toolbar-col {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.CineToolbar .cine-controls .toolbar-col .icon-button {
  font-weight: 500;
  font-size: 22px;
  min-width: 28px;
}
.CineToolbar .cine-controls .toolbar-col .icon-button.active,
.CineToolbar .cine-controls .toolbar-col .icon-button:active {
  color: #43afff !important;
}
.CineToolbar .cine-controls .toolbar-col .icon-button:hover {
  color: #fff;
}
.CineToolbar .cine-controls .btn {
  font-size: 22px;
  line-height: 45px;
  min-width: 28px;
  padding: 0 0px;
  margin: 0 4px;
  border: 0 none;
}
.CineToolbar .CineToolbar-options {
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  margin: 0 0 10px 0;
}
.CineToolbar .CineToolbar-options .fps-section {
  display: block;
}
.CineToolbar .CineToolbar-options .fps {
  flex: 0 0 45px;
  padding: 0;
  margin: 0 0 0 2px;
  text-align: center;
  font-size: 12px;
}
.CineToolbar .btn {
  color: var(--text-secondary-color);
  background-color: transparent;
  border: 0;
  border-radius: 4px;
  font-size: 15px;
  width: 45px;
  font-weight: normal;
  height: 37px;
  line-height: 37px;
  padding: 0 12px;
}
.CineToolbar .btn:hover,
.CineToolbar .btn:active,
.CineToolbar .btn.active {
  color: var(--hover-color);
}
.CineToolbar .btn[disabled]:hover {
  color: inherit;
}
.CineToolbar .btn[disabled]:active {
  color: var(--text-secondary-color);
}
.CineToolbar .btn.btn-primary,
.CineToolbar .btn.btn-secondary,
.CineToolbar .btn.btn-danger {
  transition: background-color 0.3s ease;
}
.CineToolbar .btn.btn-primary:hover,
.CineToolbar .btn.btn-secondary:hover,
.CineToolbar .btn.btn-danger:hover,
.CineToolbar .btn.btn-primary:active,
.CineToolbar .btn.btn-secondary:active,
.CineToolbar .btn.btn-danger:active,
.CineToolbar .btn.btn-primary:focus,
.CineToolbar .btn.btn-secondary:focus,
.CineToolbar .btn.btn-danger:focus {
  opacity: 0.8;
}
.CineToolbar .btn.btn-primary {
  background-color: var(--active-color);
  color: var(--primary-background-color);
}
.CineToolbar .btn.btn-secondary {
  background-color: var(--text-secondary-color);
  color: var(--primary-background-color);
}
.CineToolbar .btn.btn-danger {
  background-color: var(--text-destructive-color);
  color: var(--text-primary-color);
}
.CineToolbar .btn.active {
  box-shadow: inset 1px 1px 2px var(--ui-gray-darkest);
}

@media only screen and (min-width:768px) and (max-width:1199px){.toolbar-col-lg{display:none!important}}@media only screen and (min-width:1200px){.toolbar-col-lg{display:block!important}.toolbar-col-sm{display:none!important}}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.full-width {
  width: 100%;
}
.full-height {
  height: 100%;
}
.flex-h {
  display: flex;
  flex-direction: row;
}
.flex-v {
  display: flex;
  flex-direction: column;
}
.flex-grow {
  flex-grow: 1;
}
.nowrap {
  white-space: nowrap;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
h1 {
  font-size: 36px;
}
h3,
h1 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 20px;
  margin-bottom: 10px;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.pull-left {
  float: left !important;
}
.pull-right {
  float: right !important;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
a {
  color: #337ab7;
  text-decoration: none;
}
.form-themed table {
  color: var(--text-primary-color);
}
.form-themed table th,
.form-themed table td {
  font-size: 15px;
  font-weight: normal;
}
.form-themed table th {
  line-height: 60px;
}
.form-themed table td {
  line-height: 18px;
  padding: 0;
}
.form-themed .p-r-1 {
  padding-right: 1rem !important;
}
.form-themed label {
  margin-bottom: 5px;
}
.form-themed label.wrapperLabel {
  cursor: pointer;
}
.form-themed label.wrapperLabel:not(.checkboxLabel) {
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.form-themed label.wrapperLabel:not(.checkboxLabel) .wrapperText {
  display: block;
  order: -1;
}
.form-themed .btn[disabled],
.form-themed input[type=text][disabled],
.form-themed input[type=password][disabled],
.form-themed input[type=number][disabled],
.form-themed .btn.disabled,
.form-themed input[type=text].disabled,
.form-themed input[type=password].disabled,
.form-themed input[type=number].disabled,
.form-themed .btn[disabled]:hover,
.form-themed input[type=text][disabled]:hover,
.form-themed input[type=password][disabled]:hover,
.form-themed input[type=number][disabled]:hover,
.form-themed .btn.disabled:hover,
.form-themed input[type=text].disabled:hover,
.form-themed input[type=password].disabled:hover,
.form-themed input[type=number].disabled:hover,
.form-themed .btn[disabled]:active,
.form-themed input[type=text][disabled]:active,
.form-themed input[type=password][disabled]:active,
.form-themed input[type=number][disabled]:active,
.form-themed .btn.disabled:active,
.form-themed input[type=text].disabled:active,
.form-themed input[type=password].disabled:active,
.form-themed input[type=number].disabled:active {
  background-color: var(--ui-gray-darker);
  border-color: var(--ui-gray-light);
  color: var(--text-primary-color);
}
.form-themed .btn[disabled] + .wrapperText,
.form-themed input[type=text][disabled] + .wrapperText,
.form-themed input[type=password][disabled] + .wrapperText,
.form-themed input[type=number][disabled] + .wrapperText,
.form-themed .btn.disabled + .wrapperText,
.form-themed input[type=text].disabled + .wrapperText,
.form-themed input[type=password].disabled + .wrapperText,
.form-themed input[type=number].disabled + .wrapperText,
.form-themed .btn[disabled]:hover + .wrapperText,
.form-themed input[type=text][disabled]:hover + .wrapperText,
.form-themed input[type=password][disabled]:hover + .wrapperText,
.form-themed input[type=number][disabled]:hover + .wrapperText,
.form-themed .btn.disabled:hover + .wrapperText,
.form-themed input[type=text].disabled:hover + .wrapperText,
.form-themed input[type=password].disabled:hover + .wrapperText,
.form-themed input[type=number].disabled:hover + .wrapperText,
.form-themed .btn[disabled]:active + .wrapperText,
.form-themed input[type=text][disabled]:active + .wrapperText,
.form-themed input[type=password][disabled]:active + .wrapperText,
.form-themed input[type=number][disabled]:active + .wrapperText,
.form-themed .btn.disabled:active + .wrapperText,
.form-themed input[type=text].disabled:active + .wrapperText,
.form-themed input[type=password].disabled:active + .wrapperText,
.form-themed input[type=number].disabled:active + .wrapperText {
  color: var(--text-primary-color);
  cursor: auto;
}
.form-themed input[type=text],
.form-themed input[type=password],
.form-themed input[type=number] {
  background-color: var(--ui-gray);
  border-color: var(--ui-border-color);
  color: var(--text-primary-color);
  font-weight: normal;
}
.form-themed input[type=text]:active,
.form-themed input[type=password]:active,
.form-themed input[type=number]:active,
.form-themed input[type=text]:focus,
.form-themed input[type=password]:focus,
.form-themed input[type=number]:focus {
  background-color: var(--ui-gray-dark);
  border: 2px solid var(--active-color);
  box-shadow: none;
}
.form-themed input[type=text]:active + .wrapperText,
.form-themed input[type=password]:active + .wrapperText,
.form-themed input[type=number]:active + .wrapperText,
.form-themed input[type=text]:focus + .wrapperText,
.form-themed input[type=password]:focus + .wrapperText,
.form-themed input[type=number]:focus + .wrapperText {
  color: var(--active-color);
}
.form-themed .btn-primary {
  background-color: var(--active-color);
  border-collapse: var(--ui-border-color-active);
  color: var(--ui-text-color-active);
}
.form-themed .btn-primary:hover,
.form-themed .btn-primary:active,
.form-themed .btn-primary:focus,
.form-themed .btn-primary:focus:active {
  background-color: var(--ui-active-color);
  border-collapse: var(--ui-border-color-active);
  color: var(--ui-text-color-active);
}
.form-themed .form-control {
  background-color: #fff;
  border: 0;
  font-size: 14px;
  height: 30px;
  line-height: 16px;
  padding: 8px 9px 6px;
}
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102,175,233,0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102,175,233,0.6);
}
.form-control::-ms-expand {
  border: 0;
  background-color: transparent;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: ;
  opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: ;
}
input[type=range] {
  display: block;
  width: 100%;
}
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 0.65;
}
button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
.ViewportDownloadForm {
  display: flex;
  flex-direction: column;
  z-index: 1080 !important;
}
.ViewportDownloadForm input,
.ViewportDownloadForm select {
  max-height: 30px;
}
.ViewportDownloadForm #keep-aspect svg {
  margin-top: 3px;
}
.ViewportDownloadForm .title {
  margin: 0;
  font-weight: bold;
}
.ViewportDownloadForm .file-box {
  height: 174px;
  margin: 10px 0;
  border-radius: 5px;
  padding: 20px 10px;
  background-color: var(--ui-gray-dark);
}
.ViewportDownloadForm .file-box .file-innerbox {
  display: flex;
  flex-direction: row;
  margin: 10px 0;
}
.ViewportDownloadForm .file-box .label {
  margin-left: 10px;
  width: 70px;
}
.ViewportDownloadForm .file-box .check-box {
  display: flex;
}
.ViewportDownloadForm .file-box .check-box .form-check-label {
  width: 100px;
  cursor: pointer;
}
.ViewportDownloadForm .file-info-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin: 10px 0;
  border-radius: 5px;
  padding: 20px 10px;
  background-color: var(--ui-gray-dark);
}
@media screen and (max-width: 1023px) {
  .ViewportDownloadForm .file-info-container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.ViewportDownloadForm .file-info-container .width,
.ViewportDownloadForm .file-info-container .height,
.ViewportDownloadForm .file-info-container .file-name,
.ViewportDownloadForm .file-info-container .file-type {
  height: 56px;
}
.ViewportDownloadForm .file-info-container .input-ohif {
  margin: 0 5px;
}
.ViewportDownloadForm .file-info-container .file-name .select-ohif,
.ViewportDownloadForm .file-info-container .file-type .select-ohif,
.ViewportDownloadForm .file-info-container .file-name .input-ohif,
.ViewportDownloadForm .file-info-container .file-type .input-ohif {
  width: 170px;
}
.ViewportDownloadForm .file-info-container .file-name .input-ohif-label,
.ViewportDownloadForm .file-info-container .file-type .input-ohif-label,
.ViewportDownloadForm .file-info-container .file-name .select-ohif-label,
.ViewportDownloadForm .file-info-container .file-type .select-ohif-label {
  width: 90px;
  display: inline-block;
}
@media screen and (max-width: 1023px) {
  .ViewportDownloadForm .file-info-container .file-name .input-ohif-label,
  .ViewportDownloadForm .file-info-container .file-type .input-ohif-label,
  .ViewportDownloadForm .file-info-container .file-name .select-ohif-label,
  .ViewportDownloadForm .file-info-container .file-type .select-ohif-label {
    width: 120px;
  }
}
.ViewportDownloadForm .file-info-container .dimension-wrapper {
  display: flex;
  flex-direction: row;
}
.ViewportDownloadForm .file-info-container .dimension-wrapper .dimensions {
  display: flex;
  flex-direction: column;
}
.ViewportDownloadForm .file-info-container .dimension-wrapper .dimensions .input-ohif-label {
  width: 120px;
  display: inline-block;
}
@media screen and (max-width: 1023px) {
  .ViewportDownloadForm .file-info-container .dimension-wrapper .dimensions .input-ohif {
    width: 170px;
  }
}
.ViewportDownloadForm .file-info-container .dimension-wrapper .keep-aspect-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  height: 86px;
}
.ViewportDownloadForm .file-info-container .show-annotations {
  font-weight: bold;
  line-height: 30px;
}
.ViewportDownloadForm .file-info-container .show-annotations input {
  margin-right: 7px;
  vertical-align: middle;
}
.ViewportDownloadForm .file-info-container .show-annotations label {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ViewportDownloadForm .loading-image {
  height: 580px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--active-color);
  font-size: 20px;
}
.ViewportDownloadForm .loading-image .icon-spin {
  margin-right: 15px;
}
.ViewportDownloadForm .preview {
  display: flex;
  flex-direction: column;
  background-color: var(--ui-gray-dark);
  padding: 10px;
  border-radius: 5px;
  justify-content: flex-start;
  align-items: center;
  height: 580px;
}
.ViewportDownloadForm .preview .viewport-preview {
  max-height: 512px;
  max-width: 512px;
}
.ViewportDownloadForm .preview .preview-header {
  width: 100%;
  text-align: center;
  font-size: 1.3em;
  margin: 0 0 10px;
}
.ViewportDownloadForm .actions {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  margin-top: 10px;
}
.ViewportDownloadForm .actions .btn {
  margin: 0 0 0 10px;
}
.ViewportDownloadForm .input-error {
  font-size: 12px;
  color: #f00;
  text-align: center;
  margin: 3px 0;
}
.modal-dialog {
  height: 100%;
}
.modal-dialog .modal-body {
  display: flex;
  flex-direction: column;
}
.dialog-buttom-1 {
  width: 5rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  user-select: none;
}

.studyBrowseItem {
  margin-bottom: 10px;
  position: relative;
  transform: scale(1);
}
.studyBrowseItem.active .studyItemBox {
  border-color: var(--active-color);
}
.studyBrowseItem.active .studyItemBox .studyModality {
  color: var(--primary-background-color);
}
.studyBrowseItem.active .studyItemBox .studyModality,
.studyBrowseItem.active .studyItemBox .studyModality:before,
.studyBrowseItem.active .studyItemBox .studyModality:after {
  background-color: var(--active-color);
  border-color: #131d29;
}
.studyBrowseItem:not(.active) .studyBrowserSeries {
  max-height: 0 !important;
}
.studyBrowseItem:not(.active) .studyBrowserSeries .studySeriesContainer {
  opacity: 0;
  transform: translateY(-100%);
}
.studyBrowseItem .studyBrowserSeries {
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.studyBrowseItem .studyBrowserSeries .studySeriesContainer {
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(0);
  transform-origin: 50% 0%;
}
.studyItemBox {
  border: 3px solid var(--ui-border-color-dark);
  border-radius: 12px;
  cursor: pointer;
  padding: 12px 7px 11px;
  position: relative;
  transition: $sidebarTransition;
  background-color: #14191e;
  z-index: 0;
}
.studyItemBox:hover {
  border-color: var(--active-color);
}
.studyItemBox:hover.additional {
  color: var(--text-secondary-color);
}
.studyItemBox:hover .studyModality {
  color: var(--primary-background-color);
}
.studyItemBox:hover .studyModality,
.studyItemBox:hover .studyModality:before,
.studyItemBox:hover .studyModality:after {
  background-color: var(--active-color);
}
.studyItemBox.additional {
  color: var(--text-primary-color);
  font-size: 16px;
  font-weight: normal;
  height: 91px;
  line-height: 91px;
  padding: 0;
  text-align: center;
}
.studyItemBox .studyText {
  font-size: 13px;
  left: 89px;
  line-height: 14px;
  position: absolute;
  right: 7px;
  top: 12px;
}
.studyItemBox .studyText .studyDate {
  margin-top: 8px;
  color: var(--text-secondary-color);
}
.studyItemBox .studyText .studyDescription {
  margin-top: 8px;
  color: var(--text-primary-color);
}
.studyItemBox .studyText .studyAvailability {
  margin-top: 24px;
  color: var(--text-primary-color);
}
.studyItemBox .studyModality {
  color: var(--text-secondary-color);
  font-size: 20px;
  line-height: 50px;
  margin-left: 12px;
  margin-top: 12px;
  position: relative;
}
.studyItemBox .studyModality .studyModalityText {
  height: 100%;
  overflow: hidden;
  text-align: center;
  text-transform: uppercase;
}
.studyItemBox .studyModality,
.studyItemBox .studyModality:before,
.studyItemBox .studyModality:after {
  border: 2px solid var(--primary-background-color);
  background-color: var(--box-background-color);
  border-radius: 8px;
  height: 54px;
  width: 54px;
}
.studyItemBox .studyModality:before,
.studyItemBox .studyModality:after {
  display: block;
  content: '';
  position: absolute;
}
.studyItemBox .studyModality:before {
  top: -8px;
  left: -8px;
  z-index: -1;
}
.studyItemBox .studyModality:after {
  top: -14px;
  left: -14px;
  z-index: -2;
}



.series-quick-switch {
  position: relative;
}
.series-quick-switch:before {
  box-shadow: 0 0 0 5000px rgba(0,0,0,0.8);
  transition: opacity 0.3s ease;
  opacity: 0;
  content: '';
}
.series-quick-switch:hover {
  z-index: 50;
}
.series-quick-switch:hover:before {
  display: table;
  opacity: 1;
  content: '';
}
.series-quick-switch:not(.left):not(.right) {
  left: 50%;
  transform: translateX(-50%);
}
.series-quick-switch.left {
  border-right: 1px solid var(--ui-border-color);
  right: 0;
}
.series-quick-switch.right {
  left: 0;
}
.series-quick-switch.right .series-switch {
  float: right;
}
.series-quick-switch.right .study-switch {
  float: left;
}
.series-quick-switch.right .study-browser {
  left: auto;
  right: 0;
  transform-origin: calc(100% - 1em) calc(1em + 17px);
}
.series-quick-switch.right .series-browser {
  left: 0;
  right: auto;
  transform-origin: 1em calc(1em + 15px);
}
.series-quick-switch.right .series-browser .thumbnails-wrapper {
  transform-origin: 0% 0%;
}
.series-quick-switch.right .series-browser .thumbnail {
  float: left;
}
.series-quick-switch.right .series-item {
  float: left;
}
.series-quick-switch .title-label {
  color: var(--text-secondary-color);
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
  opacity: 1;
  padding-bottom: 3px;
  text-align: center;
  transition: opacity 0.3s ease;
}
.series-quick-switch .series-switch {
  padding-right: 10px;
}
.series-quick-switch .series-switch,
.series-quick-switch .study-switch {
  float: left;
  position: relative;
}
.series-quick-switch .study-switch:hover:after {
  content: '';
  display: block;
  height: 100px;
  left: 0;
  position: absolute;
  top: 0;
  width: 300px;
}
.series-quick-switch .study-browser {
  left: 0;
  padding-top: 60px;
  max-height: calc(100vh - 60px);
  transform-origin: 1em calc(1em + 17px);
  width: 300px;
}
.series-quick-switch .study-browser .study-browser-list {
  padding: 0 10px;
}
.series-quick-switch .series-browser {
  max-height: 100vh;
  max-width: 720px;
  right: 0;
  transform-origin: calc(100% - 1em) calc(1em + 15px);
}
.series-quick-switch .series-browser .thumbnails-wrapper {
  transition: transform 0.3s ease;
  transform-origin: 100% 0%;
}
.series-quick-switch .series-browser .thumbnail {
  float: right;
}
.series-quick-switch .series-browser .thumbnail .series-details {
  opacity: 0;
  transform: translateY(-100%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.series-quick-switch .series-browser .scrollable {
  padding-top: 15px;
  transition: padding-bottom 0.3s ease;
}
.series-quick-switch .series-browser .study-browser-series {
  overflow: hidden;
}
.series-quick-switch .series-browser,
.series-quick-switch .study-browser {
  min-height: 120px;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: scale(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 3;
}
.series-quick-switch .series-box,
.series-quick-switch .study-box {
  height: 57px;
  width: 57px;
}
.series-quick-switch .study-box {
  background-color: var(--ui-gray-dark);
  border: solid 2px var(--ui-border-color-dark);
  border-radius: 11px;
}
.series-quick-switch .series-item {
  background-color: var(--box-background-color);
  border-radius: 3px;
  float: right;
  height: 15px;
  margin: 2px;
  transition: opacity 0.3s ease;
  width: 15px;
}
.series-quick-switch .series-item.count {
  color: var(--text-primary-color);
  background-color: transparent;
  font-size: 12px;
  font-weight: 500;
  line-height: 17px;
  text-align: center;
}
.series-quick-switch .series-item.active {
  background-color: var(--active-color);
}
.series-quick-switch.series-triggered .series-browser,
.series-quick-switch .series-switch:hover .series-browser,
.series-quick-switch .study-switch:hover .study-browser {
  opacity: 1;
  transform: scale(1);
}
.series-quick-switch.series-triggered .series-item,
.series-quick-switch .series-switch:hover .title-label {
  opacity: 0;
}
.series-quick-switch.series-triggered .thumbnails-wrapper {
  transform: scale(0.9) translateY(80px);
}
.series-quick-switch.series-triggered .series-browser:not(:hover)>.scrollable {
  padding-bottom: 80px;
}
.series-quick-switch.series-triggered .series-browser:not(:hover)>.scrollNav {
  opacity: 0;
}
.series-quick-switch .series-switch:hover .series-browser .thumbnails-wrapper {
  transform: scale(1) translateY(0);
}
.series-quick-switch .series-switch:hover .series-browser .thumbnail .series-details {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
.series-quick-switch .study-browser-item.active .study-item-box {
  box-shadow: inset 0 0 0 3px var(--active-color);
}
@media screen and (max-width: 1599px) {
  .series-quick-switch .series-box,
  .series-quick-switch .study-box {
    width: 36px;
    height: 36px;
  }
  .series-quick-switch .study-box {
    border-radius: 7px;
  }
  .series-quick-switch .series-item {
    height: 10px;
    margin: 1px;
    width: 10px;
  }
  .series-quick-switch .series-item.count {
    font-size: 10px;
    font-weight: 300;
    line-height: 10px;
  }
}

.RoundedButtonGroup{--height:25px;position:relative;z-index:0}.RoundedButtonGroup .badgeNumber-container{background-color:var(--ui-border-color-dark);width:21px;height:21px;justify-content:center;align-items:center;display:flex;border-radius:50%;font-size:12px;font-weight:700;bottom:10px;left:5px;color:#fff;position:absolute}.RoundedButtonGroup .badgeNumber{font-size:10px;font-weight:700;display:block;width:25px}.roundedButtonWrapper{cursor:pointer;display:inline-block;float:left;margin-left:-2px;text-decoration:none;text-align:center}.roundedButtonWrapper.disabled{opacity:.5;cursor:not-allowed}.RoundedButtonGroup .roundedButtonWrapper .roundedButton{align-items:center;background-color:var(--ui-gray-dark);border:2px solid var(--ui-border-color-dark);color:var(--text-secondary-color);display:flex;font-size:15px;font-weight:500;justify-content:center;height:var(--height);line-height:var(--height);padding:0 22px;position:relative;text-transform:uppercase;transition:var(--sidebar-transition);z-index:1}.roundedButtonWrapper .roundedButton svg .roundedButtonWrapper .roundedButton span{margin:0 2px}.roundedButtonWrapper .roundedButton i{line-height:15px;font-size:15px}.roundedButtonWrapper .bottomLabel{padding:0 10px}.bottomLabel{color:var(--text-secondary-color);font-size:12px;font-weight:500;line-height:12px;margin-top:8px}.roundedButtonWrapper:first-child{margin-left:0}.RoundedButtonGroup .roundedButtonWrapper:first-child .roundedButton{border-bottom-left-radius:var(--height);border-top-left-radius:var(--height)}.RoundedButtonGroup .roundedButtonWrapper:last-child .roundedButton{border-bottom-right-radius:var(--height);border-top-right-radius:var(--height)}.roundedButtonWrapper:hover .roundedButton{background-color:var(--box-background-color);color:var(--ui-gray-dark)}.roundedButtonWrapper.active .roundedButton{background-color:var(--active-color);border-color:var(--ui-border-color-active);color:var(--ui-gray-dark);z-index:2}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.full-width {
  width: 100%;
}
.full-height {
  height: 100%;
}
.flex-h {
  display: flex;
  flex-direction: row;
}
.flex-v {
  display: flex;
  flex-direction: column;
}
.flex-grow {
  flex-grow: 1;
}
.nowrap {
  white-space: nowrap;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
h1 {
  font-size: 36px;
}
h3,
h1 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 20px;
  margin-bottom: 10px;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.pull-left {
  float: left !important;
}
.pull-right {
  float: right !important;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
a {
  color: #337ab7;
  text-decoration: none;
}
.selectTreeRoot {
  text-align: initial;
  width: 320px;
  max-height: inherit;
  font-size: 14px;
  line-height: 26px;
}
.selectTreeRoot .treeContent {
  max-height: inherit;
  overflow: hidden;
  border: 1px solid #c4c4c4;
  border-radius: 5px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}
.selectTreeRoot .treeHeader {
  background-color: #c0c0c0;
  border-bottom: 1px solid #c4c4c4;
  color: #303030;
  padding: 5px;
  text-align: center;
}
.selectTreeRoot .treeHeader .wrapperText {
  font-weight: bold;
  padding-bottom: 2px;
}
.selectTreeRoot .treeHeader .wrapperSearch {
  width: 100%;
}
.selectTreeRoot .treeHeader .searchIcon {
  position: absolute;
  width: 18px;
  height: 15px;
  margin: 7px 10px 13px 10px;
  color: #a3a3a3;
}
.selectTreeRoot .treeHeader .searchInput {
  width: 100%;
  padding: 6px 12px 6px 35px;
  background-color: #fff;
  background-image: none;
  border: 1px solid #9b9b9b;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.selectTreeRoot .treeHeader .searchInput:focus {
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102,175,233,0.6);
}
.selectTreeRoot .wrapperText {
  white-space: nowrap;
  cursor: pointer;
}
.selectTreeRoot .selectTreeBreadcrumb .wrapperLabel {
  cursor: pointer;
  padding: 0 12px;
  height: 41px;
  width: 100%;
  line-height: 41px;
}
.selectTreeRoot .selectTreeBreadcrumb .backIcon {
  padding-right: 10px;
}
.selectTreeRoot .selectTreeBreadcrumb .backIcon svg {
  width: 14px;
  height: 14px;
  position: relative;
  top: 2px;
  color: #457fb0;
}
.selectTreeRoot .treeOptions {
  overflow: auto;
  height: 100%;
}
.selectTreeRoot .treeOptions .selectTreeBreadcrumb + .treeInputsWrapper .treeInputs .treeLeaf {
  border: none;
  height: initial;
  line-height: 26px;
}
.selectTreeRoot .treeOptions > .treeInputsWrapper > .treeInputs .treeLeaf {
  border-bottom: 1px solid #ccc;
  height: 41px;
  line-height: 41px;
}
.selectTreeRoot .treeNode,
.selectTreeRoot .treeLeaf {
  cursor: pointer;
  display: block;
  overflow: hidden;
  font-weight: normal;
  box-shadow: 0 0 0 200px transparent;
  padding: 0 12px;
}
.selectTreeRoot .treeNode {
  border-bottom: 1px solid #ccc;
  height: 41px;
  line-height: 41px;
}
.selectTreeRoot .radioLabel .radioInput {
  display: none;
}

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 0.65;
}
button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.full-width {
  width: 100%;
}
.full-height {
  height: 100%;
}
.flex-h {
  display: flex;
  flex-direction: row;
}
.flex-v {
  display: flex;
  flex-direction: column;
}
.flex-grow {
  flex-grow: 1;
}
.nowrap {
  white-space: nowrap;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
h1 {
  font-size: 36px;
}
h3,
h1 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 20px;
  margin-bottom: 10px;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.pull-left {
  float: left !important;
}
.pull-right {
  float: right !important;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
a {
  color: #337ab7;
  text-decoration: none;
}
.InputDialog .simpleDialog {
  position: relative;
}
.simpleDialog {
  position: relative;
  z-index: 1000;
  border: 0;
  border-radius: 6px;
  background-color: var(--ui-gray-darker);
}
.simpleDialog .header {
  border-bottom: 3px solid var(--primary-background-color);
  padding: 19px 22px 17px;
  position: relative;
}
.simpleDialog .header .title {
  font-size: 20px;
  line-height: 24px;
  padding-right: 40px;
  color: var(--text-secondary-color);
  margin: 0;
}
.simpleDialog .header .closeBtn {
  -webkit-transform: translateY(-50%);
  color: var(--text-secondary-color);
  height: 20px;
  opacity: 1;
  overflow: hidden;
  padding: 2px;
  position: absolute;
  right: 21px;
  text-align: center;
  text-shadow: none;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.3s ease;
  width: 20px;
}
.simpleDialog .header .closeIcon {
  color: transparent;
  display: block;
  font-size: 0;
  height: 100%;
  line-height: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.simpleDialog .header .closeIcon:after,
.simpleDialog .header .closeIcon:before {
  content: ' ';
  display: block;
  height: 2px;
  transition: background-color 0.3s ease;
  width: 19px;
  background-color: var(--text-secondary-color);
}
.simpleDialog .header .closeIcon:before {
  left: 1px;
  position: absolute;
  top: 1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 1px 50%;
  transform-origin: 1px 50%;
}
.simpleDialog .header .closeIcon:after {
  right: 1px;
  position: absolute;
  top: 1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: calc(100% - 1px) 50%;
  transform-origin: calc(100% - 1px) 50%;
}
.simpleDialog .content {
  padding: 16px 22px 25px;
  position: relative;
  color: var(--text-primary-color);
}
.simpleDialog .content .simpleDialogSelect,
.simpleDialog .content .simpleDialogInput {
  background-color: var(--input-background-color);
  color: var(--text-primary-color);
  border: 0;
  border-radius: 2px;
  font-size: 14px;
  height: 30px;
  width: 100%;
  line-height: 16px;
  padding: 8px 9px 6px;
  margin-top: 10px;
  display: block;
}
.simpleDialog .content .simpleDialogLabelFor {
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  margin: 10px 0 0 0;
  color: var(--text-primary-color);
}
.simpleDialog .footer {
  padding: 15px;
  text-align: right;
  margin: 0;
  justify-content: flex-end;
}
.simpleDialog .footer .btn {
  margin-left: 5px;
}

.OHIFModal {
  background-color: var(--ui-gray-darker);
  border-color: var(--ui-border-color);
  color: var(--text-secondary-color);
  border-radius: 6px;
  border: 0;
  color: var(--text-primary-color);
  position: relative;
  -webkit-box-shadow: 0 3px 9px rgba(0,0,0,0.5);
  box-shadow: 0 3px 9px rgba(0,0,0,0.5);
  background-clip: padding-box;
  outline: 0;
}
@media (min-width: 320px) {
  .OHIFModal {
    width: 78%;
    min-width: 300px;
  }
}
@media (min-width: 768px) {
  .OHIFModal {
    width: 600px;
  }
  .OHIFModal.OHIFModal-fullscreen {
    width: 95%;
  }
}
@media (min-width: 992px) {
  .OHIFModal {
    width: 700px;
  }
  .OHIFModal.OHIFModal-fullscreen {
    width: 850px;
  }
}
.OHIFModal__content {
  padding: 20px;
  max-height: 90vh;
  overflow-y: auto;
}
.OHIFModal.noScroll .OHIFModal__content {
  overflow: hidden;
}
.OHIFModal:not(.visibleScrollbar) .OHIFModal__content {
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.OHIFModal:not(.visibleScrollbar) .OHIFModal__content::-webkit-scrollbar {
  display: none;
}
.OHIFModal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: #000;
  padding: 20px;
  position: relative;
}
.OHIFModal__header h4 {
  color: var(--text-secondary-color);
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  padding-right: 24px;
  margin: 0;
}
.OHIFModal__header button {
  cursor: pointer;
  margin: -10px 0 0 0;
  padding: 0;
  background-color: transparent;
  border: none;
  color: var(--text-secondary-color);
  font-size: 25px;
  font-weight: lighter;
}
.OHIFModal__header button:active,
.OHIFModal__header button:focus,
.OHIFModal__header button:focus:active {
  background-image: none;
  outline: 0;
  box-shadow: none;
}

.ContextMenu{position:relative;background-color:#fff;border-radius:5px;z-index:1000;display:block}.ContextMenu>ul{list-style-type:none;padding-left:0;margin:0}.ContextMenu>ul>li{padding:5px 15px;font-size:14px;border:none;color:#516873;border-radius:3px;outline:none;cursor:pointer;background:none}.ContextMenu>ul>li:active,.ContextMenu>ul>li:hover{color:#fff;background-color:#005cc8}
.ErrorPage{height:100%;width:100%;display:flex;justify-content:center;align-items:center;flex-direction:column;color:var(--active-color)}.ErrorPage .error-container{margin:10px;width:50%;height:25%;overflow:scroll;border-radius:15px;border:1px solid;padding:5px}.ErrorPage .retry-icon{cursor:pointer}
.form-themed table {
  color: var(--text-primary-color);
}
.form-themed table th,
.form-themed table td {
  font-size: 15px;
  font-weight: normal;
}
.form-themed table th {
  line-height: 60px;
}
.form-themed table td {
  line-height: 18px;
  padding: 0;
}
.form-themed .p-r-1 {
  padding-right: 1rem !important;
}
.form-themed label {
  margin-bottom: 5px;
}
.form-themed label.wrapperLabel {
  cursor: pointer;
}
.form-themed label.wrapperLabel:not(.checkboxLabel) {
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.form-themed label.wrapperLabel:not(.checkboxLabel) .wrapperText {
  display: block;
  order: -1;
}
.form-themed .btn[disabled],
.form-themed input[type=text][disabled],
.form-themed input[type=password][disabled],
.form-themed input[type=number][disabled],
.form-themed .btn.disabled,
.form-themed input[type=text].disabled,
.form-themed input[type=password].disabled,
.form-themed input[type=number].disabled,
.form-themed .btn[disabled]:hover,
.form-themed input[type=text][disabled]:hover,
.form-themed input[type=password][disabled]:hover,
.form-themed input[type=number][disabled]:hover,
.form-themed .btn.disabled:hover,
.form-themed input[type=text].disabled:hover,
.form-themed input[type=password].disabled:hover,
.form-themed input[type=number].disabled:hover,
.form-themed .btn[disabled]:active,
.form-themed input[type=text][disabled]:active,
.form-themed input[type=password][disabled]:active,
.form-themed input[type=number][disabled]:active,
.form-themed .btn.disabled:active,
.form-themed input[type=text].disabled:active,
.form-themed input[type=password].disabled:active,
.form-themed input[type=number].disabled:active {
  background-color: var(--ui-gray-darker);
  border-color: var(--ui-gray-light);
  color: var(--text-primary-color);
}
.form-themed .btn[disabled] + .wrapperText,
.form-themed input[type=text][disabled] + .wrapperText,
.form-themed input[type=password][disabled] + .wrapperText,
.form-themed input[type=number][disabled] + .wrapperText,
.form-themed .btn.disabled + .wrapperText,
.form-themed input[type=text].disabled + .wrapperText,
.form-themed input[type=password].disabled + .wrapperText,
.form-themed input[type=number].disabled + .wrapperText,
.form-themed .btn[disabled]:hover + .wrapperText,
.form-themed input[type=text][disabled]:hover + .wrapperText,
.form-themed input[type=password][disabled]:hover + .wrapperText,
.form-themed input[type=number][disabled]:hover + .wrapperText,
.form-themed .btn.disabled:hover + .wrapperText,
.form-themed input[type=text].disabled:hover + .wrapperText,
.form-themed input[type=password].disabled:hover + .wrapperText,
.form-themed input[type=number].disabled:hover + .wrapperText,
.form-themed .btn[disabled]:active + .wrapperText,
.form-themed input[type=text][disabled]:active + .wrapperText,
.form-themed input[type=password][disabled]:active + .wrapperText,
.form-themed input[type=number][disabled]:active + .wrapperText,
.form-themed .btn.disabled:active + .wrapperText,
.form-themed input[type=text].disabled:active + .wrapperText,
.form-themed input[type=password].disabled:active + .wrapperText,
.form-themed input[type=number].disabled:active + .wrapperText {
  color: var(--text-primary-color);
  cursor: auto;
}
.form-themed input[type=text],
.form-themed input[type=password],
.form-themed input[type=number] {
  background-color: var(--ui-gray);
  border-color: var(--ui-border-color);
  color: var(--text-primary-color);
  font-weight: normal;
}
.form-themed input[type=text]:active,
.form-themed input[type=password]:active,
.form-themed input[type=number]:active,
.form-themed input[type=text]:focus,
.form-themed input[type=password]:focus,
.form-themed input[type=number]:focus {
  background-color: var(--ui-gray-dark);
  border: 2px solid var(--active-color);
  box-shadow: none;
}
.form-themed input[type=text]:active + .wrapperText,
.form-themed input[type=password]:active + .wrapperText,
.form-themed input[type=number]:active + .wrapperText,
.form-themed input[type=text]:focus + .wrapperText,
.form-themed input[type=password]:focus + .wrapperText,
.form-themed input[type=number]:focus + .wrapperText {
  color: var(--active-color);
}
.form-themed .btn-primary {
  background-color: var(--active-color);
  border-collapse: var(--ui-border-color-active);
  color: var(--ui-text-color-active);
}
.form-themed .btn-primary:hover,
.form-themed .btn-primary:active,
.form-themed .btn-primary:focus,
.form-themed .btn-primary:focus:active {
  background-color: var(--ui-active-color);
  border-collapse: var(--ui-border-color-active);
  color: var(--ui-text-color-active);
}
.form-themed .form-control {
  background-color: #fff;
  border: 0;
  font-size: 14px;
  height: 30px;
  line-height: 16px;
  padding: 8px 9px 6px;
}
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102,175,233,0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102,175,233,0.6);
}
.form-control::-ms-expand {
  border: 0;
  background-color: transparent;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: ;
  opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: ;
}
input[type=range] {
  display: block;
  width: 100%;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.full-width {
  width: 100%;
}
.full-height {
  height: 100%;
}
.flex-h {
  display: flex;
  flex-direction: row;
}
.flex-v {
  display: flex;
  flex-direction: column;
}
.flex-grow {
  flex-grow: 1;
}
.nowrap {
  white-space: nowrap;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
h1 {
  font-size: 36px;
}
h3,
h1 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 20px;
  margin-bottom: 10px;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.pull-left {
  float: left !important;
}
.pull-right {
  float: right !important;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
a {
  color: #337ab7;
  text-decoration: none;
}
.study-list-header .addNewStudy {
  margin: 0 10px;
  color: var(--text-secondary-color);
}
.study-list-header .addNewStudy label {
  font-weight: 400;
  cursor: pointer;
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
}
.study-list-header .addNewStudy input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.study-list-header .addNewStudy:hover {
  color: var(--hover-color);
}
.study-list-header .addNewStudy:active {
  color: var(--active-color);
}
.study-list-header {
  display: flex;
  justify-content: space-between;
  background-color: var(--ui-gray-darker);
  height: 75px;
  margin-bottom: 2px;
  padding: 0 8%;
  line-height: 75px;
}
.study-list-header .header {
  font-size: 22px;
  font-weight: 300;
  color: var(--table-text-secondary-color);
  line-height: 75px;
}
.study-list-header .actions {
  display: flex;
}
.study-list-header .study-count {
  color: var(--large-numbers-color);
  font-size: 40px;
  font-weight: 100;
  line-height: 75px;
}
/*
 * Dark gray background with blue border
 * Spans width of page to create a distinct area for table filters
 */
.table-head-background {
  height: 121px;
  position: absolute;
  width: 100%;
}
.table-head-background:before,
.table-head-background:after {
  content: '';
  display: block;
  left: 0;
  position: absolute;
  width: 100%;
}
.table-head-background:before {
  background-color: var(--ui-gray-darker);
  height: 100%;
  top: 0;
  z-index: 1;
}
.table-head-background:after {
  background-color: var(--ui-border-color-active);
  bottom: -1px;
  height: 1px;
  z-index: 2;
}
.study-list-container {
  width: 100%;
  padding: 0 8%;
  position: absolute;
  z-index: 2;
}
table.table {
  width: 100%;
  margin-bottom: 20px;
  border-spacing: 0;
  border-collapse: collapse;
  table-layout: fixed;
  color: var(--table-text-primary-color);
  font-weight: 300;
/* Striped Variant */
/* Hover Variant */
}
table.table > tbody tr {
  padding: 5px;
  background-color: #000;
}
table.table > tbody td {
  padding: 16px 8px;
  height: 40px;
  word-wrap: break-word;
}
table.table.table--striped > tbody tr:nth-child(even) {
  background-color: var(--ui-gray-darker);
}
table.table.table--hoverable > tbody tr:hover,
table.table.table--hoverable > tbody tr:active,
table.table.table--hoverable > tbody tr.active {
  background-color: var(--table-hover-color);
}
table.table.table--hoverable > tbody tr.no-hover:hover,
table.table.table--hoverable > tbody tr.no-hover:active,
table.table.table--hoverable > tbody tr.no-hover.active {
  background-color: var(--ui-gray-darker);
}
table.table .empty-value {
  color: var(--ui-gray-light);
}
.study-list-container > table.table > tr {
  height: 20px;
}
.study-list-container > table.table > thead ::-webkit-datetime-edit-year-field:not([aria-valuenow]),
.study-list-container > table.table > thead ::-webkit-datetime-edit-month-field:not([aria-valuenow]),
.study-list-container > table.table > thead ::-webkit-datetime-edit-day-field:not([aria-valuenow]) {
  color: transparent;
}
.study-list-container > table.table > thead > tr > th {
  padding: 0;
  border-bottom: 1px solid var(--ui-border-color-active);
  width: 100%;
  text-align: left;
  border-top: 0;
}
.study-list-container > table.table > thead > tr > th.StudyDate {
  min-width: 230px;
}
.study-list-container > table.table .modalities {
  font-weight: 500;
  min-height: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.study-list-container .filters label {
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 100%;
  min-width: 95px;
  margin: 0 auto;
  color: var(--table-text-primary-color);
  font-weight: 400;
  padding: 20px 8px;
  user-select: none;
  font-size: 15px;
}
.study-list-container .filters label:hover {
  color: var(--active-color);
}
.study-list-container .filters label.active,
.study-list-container .filters label:active {
  color: var(--active-color);
}
.study-list-container .filters i {
  margin: 0 5px;
}
.study-list-container input {
  height: 40px;
  margin: 0 5px 20px 5px;
  padding: 0 20px;
  cursor: pointer;
  border: none;
  background-color: var(--input-background-color);
  color: var(--input-placeholder-color);
  font-size: 10pt;
  font-weight: normal;
  border-radius: 4px;
  width: calc(100% - 10px); /* Just use padding? */
}
.study-list-container input::-webkit-input-placeholder {
  color: var(--input-placeholder-color);
}
.study-list-container input:-moz-placeholder {
  color: var(--input-placeholder-color);
}
.study-list-container input::-moz-placeholder {
  color: var(--input-placeholder-color);
}
.study-list-container input:-ms-input-placeholder {
  color: var(--input-placeholder-color);
}
.study-list-container input:active,
.study-list-container input:hover {
  background-color: var(--input-background-color);
}
.study-list-container .loading-text {
  color: var(--table-text-secondary-color);
  text-align: center;
  font-size: 30px;
}
.study-list-container .notFound {
  color: var(--table-text-secondary-color);
  font-size: 30px;
  font-weight: 200;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .study-list-header {
    padding: 0 16px;
  }
  .study-list-container {
    padding: 0;
  }
  .study-list-container > table.table > thead > tr > th {
    padding: 0 13px;
  }
  .study-list-container > table.table > tbody > tr > td {
    padding: 8px;
  }
  .study-list-container .filters label {
    padding: 8px;
  }
}
@media only screen and (max-width: 500px) {
  .hide-xs {
    display: none;
  }
}

.CalendarDay__default:hover,.CalendarDay__hovered_span,.CalendarDay__hovered_span:hover,.CalendarDay__selected,.CalendarDay__selected:hover,.CalendarDay__selected_span{background:var(--datePicker-picker-background);color:var(--datePicker-picker-text);border-color:#e4e7e7}.DateRangePicker{height:40px;margin:0 5px 20px;cursor:pointer;border:none;width:100%}.DateRangePickerInput{width:calc(100% - 10px);background-color:var(--datePicker-input-background);border-color:var(--datePicker-input-background);color:var(--datePicker-picker-text-input);height:40px}.DateInput,.DateRangePickerInput.DateRangePickerInput__withBorder{border-radius:4px;background-color:var(--datePicker-input-background)}.DateInput{width:97px;height:38px}.DateInput>.DateInput_input{border-color:transparent;background-color:initial;color:var(--datePicker-picker-text-input);height:38px;font-size:10pt;padding:0}.PresetDateRangePicker_panel{display:flex;justify-content:space-between}.PresetDateRangePicker_button{margin:0;padding:4px 8px;color:#00a699;background:var(--datePicker-picker-text-input)}.PresetDateRangePicker_button:hover{background:#00a699;color:var(--datePicker-picker-text-input)}.CalendarDay__blocked_out_of_range:hover{background:#fff;cursor:not-allowed;color:var(--datePicker-picker-text-disabled)}.DateRangePicker_select{background-color:#fff;color:var(--datePicker-picker-text);border:1px solid #e4e7e7;border-radius:4px;display:inline-block;padding:3px 20px 3px 10px;font-size:14px;cursor:pointer;appearance:none;background-image:linear-gradient(45deg,transparent 50%,grey 0),linear-gradient(135deg,grey 50%,transparent 0);background-position:calc(100% - 11px) 11px,calc(100% - 6px) 11px;background-size:5px 5px,5px 5px;background-repeat:no-repeat}.DateRangePicker_select:hover{border-color:#c4c4c4}
.pagination-area {
  display: flex;
  color: var(--text-secondary-color);
  font-size: 13px;
  font-weight: normal !important;
}
.pagination-area label {
  font-weight: normal;
}
.pagination-area select {
  margin: 5px;
  background-color: var(--primary-background-color);
  color: #fff;
}
.pagination-area .rows-dropdown {
  width: 25%;
  padding-right: 15px;
  padding-left: 15px;
}
.pagination-area .pagination-buttons {
  width: 75%;
  padding-right: 15px;
  padding-left: 15px;
}
.pagination-area .form-group {
  margin-bottom: 15px;
}
.rows-per-page label.wrapperLabel {
  display: inline-table !important;
  margin: 0 4px;
}
.rows-per-page label.wrapperLabel select {
  margin: 0px 4px 0px 4px;
  width: 42px;
}
.page-buttons {
  margin: 0;
  text-align: right;
  font-weight: normal;
}
.page-buttons ul.pagination-control {
  margin: 0;
}
.page-buttons ul.pagination-control li {
  display: table-cell;
  padding: 5px 2px;
}
.page-buttons ul.pagination-control li button {
  padding: 4px 8px;
  background-color: var(--primary-background-color);
  border-color: var(--ui-gray);
  color: var(--ui-gray-darkest);
  color: #fff;
  text-decoration: none;
}
.page-buttons ul.pagination-control li button:hover:enabled {
  color: var(--active-color);
}
.page-buttons ul.pagination-control li .active button {
  background-color: var(--ui-gray);
  border-color: #ddd;
  color: #fff;
}

.ToolbarSection {
  float: left;
  background-color: var(--primary-background-color);
  border-radius: 8px;
}

.toolbarOverlay {
  border: 2px solid var(--ui-border-color-dark);
  padding: 5px;
}
.tooltip-toolbar-overlay {
  margin-top: 40px;
  background-color: var(--primary-background-color);
  border: 1px solid var(--default-color);
  border-radius: 8px;
}
.tooltip-toolbar-overlay .tooltip-arrow {
  display: none;
}
.tooltip-toolbar-overlay .tooltip-inner {
  max-width: unset;
  background: none;
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 12px;
  opacity: 0;
}
.tooltip.in {
  opacity: 0.9;
}
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
.box {
  height: 70px;
}

.ErrorFallback{padding:10px;color:var(--active-color)}
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 0.65;
}
button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.full-width {
  width: 100%;
}
.full-height {
  height: 100%;
}
.flex-h {
  display: flex;
  flex-direction: row;
}
.flex-v {
  display: flex;
  flex-direction: column;
}
.flex-grow {
  flex-grow: 1;
}
.nowrap {
  white-space: nowrap;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
h1 {
  font-size: 36px;
}
h3,
h1 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 20px;
  margin-bottom: 10px;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.pull-left {
  float: left !important;
}
.pull-right {
  float: right !important;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
a {
  color: #337ab7;
  text-decoration: none;
}
.simpleDialog {
  position: relative;
  z-index: 1000;
  border-radius: 6px;
  background-color: var(--ui-gray-darker);
}
.simpleDialog .header {
  border-bottom: 3px solid var(--primary-background-color);
  padding: 10px 20px 8px;
  position: relative;
}
.simpleDialog .header .title {
  font-size: 16px;
  line-height: 24px;
  padding-right: 40px;
  color: var(--text-secondary-color);
  margin: 0;
}
.simpleDialog .header .closeBtn {
  -webkit-transform: translateY(-50%);
  color: var(--text-secondary-color);
  height: 20px;
  opacity: 1;
  overflow: hidden;
  padding: 2px;
  position: absolute;
  right: 21px;
  text-align: center;
  text-shadow: none;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.3s ease;
  width: 20px;
}
.simpleDialog .header .closeIcon {
  color: transparent;
  display: block;
  font-size: 0;
  height: 100%;
  line-height: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.simpleDialog .header .closeIcon:after,
.simpleDialog .header .closeIcon:before {
  content: ' ';
  display: block;
  height: 2px;
  transition: background-color 0.3s ease;
  width: 19px;
  background-color: var(--text-secondary-color);
}
.simpleDialog .header .closeIcon:before {
  left: 1px;
  position: absolute;
  top: 1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 1px 50%;
  transform-origin: 1px 50%;
}
.simpleDialog .header .closeIcon:after {
  right: 1px;
  position: absolute;
  top: 1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: calc(100% - 1px) 50%;
  transform-origin: calc(100% - 1px) 50%;
}
.simpleDialog .content {
  padding: 16px 20px 22px;
  color: var(--text-primary-color);
}
.simpleDialog .content .simpleDialogSelect,
.simpleDialog .content .simpleDialogInput {
  background-color: var(--input-background-color);
  color: var(--text-primary-color);
  border: 0;
  border-radius: 2px;
  font-size: 14px;
  height: 30px;
  width: 100%;
  line-height: 16px;
  padding: 8px 9px 6px;
  margin-top: 10px;
  display: block;
}
.simpleDialog .content .simpleDialogLabelFor {
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  margin: 10px 0 0 0;
  color: var(--text-primary-color);
}
.simpleDialog .content .input-ohif-container {
  font-size: 1em;
  color: var(--text-primary-color);
  font-weight: 400;
  display: flex;
}
.simpleDialog .content .input-ohif-container .input-ohif-label {
  height: 42px;
  line-height: 33px;
}
.simpleDialog .content .input-ohif-container .input-ohif {
  height: 36px;
  margin: 0 5px 5px;
  padding: 0 10px;
  cursor: pointer;
  background-color: var(--input-background-color);
  color: var(--input-placeholder-color);
  font-size: 10pt;
  font-weight: normal;
  width: auto;
  border-radius: 4px;
  transition: all 0.15s ease;
}
.simpleDialog .content .input-ohif-container .input-ohif-container .input-ohif:active,
.simpleDialog .content .input-ohif-container .input-ohif-container .input-ohif:focus {
  background-color: var(--input-background-color);
}
.simpleDialog .content .input-ohif-container .input-ohif-container .input-ohif.invisible {
  visibility: hidden;
}
.footer {
  padding: 15px;
  text-align: right;
  margin: 0;
  justify-content: flex-end;
}
.footer .btn {
  margin-left: 5px;
}
.simple {
  border: 0;
  border-radius: 6px;
  background-color: #151a1f;
}
.simple .header {
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: #000;
  padding: 10px 20px 8px;
  position: relative;
}
.simple .header .title {
  font-size: 16px;
  line-height: 24px;
  padding-right: 40px;
  color: #91b9cd;
  margin: 0;
}
.simple .header .closeBtn {
  height: 20px;
  opacity: 1;
  overflow: hidden;
  padding: 2px;
  text-align: center;
  text-shadow: none;
  width: 20px;
  color: #91b9cd;
  cursor: pointer;
  position: absolute;
  right: 21px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: color 0.3s ease;
}
.simple .header .closeIcon {
  color: transparent;
  display: block;
  font-size: 0;
  height: 100%;
  line-height: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.simple .header .closeIcon:after,
.simple .header .closeIcon:before {
  content: ' ';
  display: block;
  height: 2px;
  transition: background-color 0.3s ease;
  width: 19px;
  background-color: #91b9cd;
}
.simple .header .closeIcon:before {
  left: 1px;
  position: absolute;
  top: 1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 1px 50%;
  transform-origin: 1px 50%;
}
.simple .header .closeIcon:after {
  right: 1px;
  position: absolute;
  top: 1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: calc(100% - 1px) 50%;
  transform-origin: calc(100% - 1px) 50%;
}
.simple .content {
  padding: 16px 22px 0px;
  position: relative;
  color: #fff;
}
.simple .content .simpleDialogSelect,
.simple .content .simpleDialogInput {
  background-color: #fff;
  color: #000;
  border: 0;
  border-radius: 2px;
  font-size: 14px;
  height: 30px;
  width: 100%;
  line-height: 16px;
  padding: 8px 9px 6px;
  margin-top: 10px;
  display: block;
}
.simple .content .simpleDialogInputLabel {
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  color: #fff;
}
.simple .footer {
  padding: 10px;
  text-align: right;
}
.simple .footer .btn {
  transition: background-color 0.3s ease;
  color: #000;
  border: 0;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;
  height: 24px;
  line-height: 26px;
  padding: 0 12px;
  margin-bottom: 0;
  margin-left: 5px;
}
.simple .footer .btn-confirm {
  color: #fff;
  background-color: #20a5d6;
}

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 0.65;
}
button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.full-width {
  width: 100%;
}
.full-height {
  height: 100%;
}
.flex-h {
  display: flex;
  flex-direction: row;
}
.flex-v {
  display: flex;
  flex-direction: column;
}
.flex-grow {
  flex-grow: 1;
}
.nowrap {
  white-space: nowrap;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
h1 {
  font-size: 36px;
}
h3,
h1 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 20px;
  margin-bottom: 10px;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.pull-left {
  float: left !important;
}
.pull-right {
  float: right !important;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
a {
  color: #337ab7;
  text-decoration: none;
}
.simpleDialog {
  position: relative;
  z-index: 1000;
  border-radius: 6px;
  background-color: var(--ui-gray-darker);
}
.simpleDialog .header {
  border-bottom: 3px solid var(--primary-background-color);
  padding: 10px 20px 8px;
  position: relative;
}
.simpleDialog .header .title {
  font-size: 16px;
  line-height: 24px;
  padding-right: 40px;
  color: var(--text-secondary-color);
  margin: 0;
}
.simpleDialog .header .closeBtn {
  -webkit-transform: translateY(-50%);
  color: var(--text-secondary-color);
  height: 20px;
  opacity: 1;
  overflow: hidden;
  padding: 2px;
  position: absolute;
  right: 21px;
  text-align: center;
  text-shadow: none;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.3s ease;
  width: 20px;
}
.simpleDialog .header .closeIcon {
  color: transparent;
  display: block;
  font-size: 0;
  height: 100%;
  line-height: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.simpleDialog .header .closeIcon:after,
.simpleDialog .header .closeIcon:before {
  content: ' ';
  display: block;
  height: 2px;
  transition: background-color 0.3s ease;
  width: 19px;
  background-color: var(--text-secondary-color);
}
.simpleDialog .header .closeIcon:before {
  left: 1px;
  position: absolute;
  top: 1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 1px 50%;
  transform-origin: 1px 50%;
}
.simpleDialog .header .closeIcon:after {
  right: 1px;
  position: absolute;
  top: 1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: calc(100% - 1px) 50%;
  transform-origin: calc(100% - 1px) 50%;
}
.simpleDialog .content {
  padding: 16px 20px 22px;
  color: var(--text-primary-color);
}
.simpleDialog .content .simpleDialogSelect,
.simpleDialog .content .simpleDialogInput {
  background-color: var(--input-background-color);
  color: var(--text-primary-color);
  border: 0;
  border-radius: 2px;
  font-size: 14px;
  height: 30px;
  width: 100%;
  line-height: 16px;
  padding: 8px 9px 6px;
  margin-top: 10px;
  display: block;
}
.simpleDialog .content .simpleDialogLabelFor {
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  margin: 10px 0 0 0;
  color: var(--text-primary-color);
}
.simpleDialog .content .input-ohif-container {
  font-size: 1em;
  color: var(--text-primary-color);
  font-weight: 400;
  display: flex;
}
.simpleDialog .content .input-ohif-container .input-ohif-label {
  width: 70px;
  height: 42px;
  line-height: 33px;
}
.simpleDialog .content .input-ohif-container .input-ohif {
  height: 36px;
  margin: 0 5px 5px;
  padding: 0 10px;
  cursor: pointer;
  background-color: var(--input-background-color);
  color: var(--input-placeholder-color);
  font-size: 10pt;
  font-weight: normal;
  width: auto;
  border-radius: 4px;
  transition: all 0.15s ease;
}
.simpleDialog .content .input-ohif-container .input-ohif-container .input-ohif:active,
.simpleDialog .content .input-ohif-container .input-ohif-container .input-ohif:focus {
  background-color: var(--input-background-color);
}
.simpleDialog .content .input-ohif-container .input-ohif-container .input-ohif.invisible {
  visibility: hidden;
}
.footer {
  padding: 15px;
  text-align: right;
  margin: 0;
  justify-content: flex-end;
}
.footer .btn {
  margin-left: 5px;
}
.simple {
  border: 0;
  border-radius: 6px;
  background-color: #151a1f;
}
.simple .header {
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: #000;
  padding: 10px 20px 8px;
  position: relative;
}
.simple .header .title {
  font-size: 16px;
  line-height: 24px;
  padding-right: 40px;
  color: #91b9cd;
  margin: 0;
}
.simple .header .closeBtn {
  height: 20px;
  opacity: 1;
  overflow: hidden;
  padding: 2px;
  text-align: center;
  text-shadow: none;
  width: 20px;
  color: #91b9cd;
  cursor: pointer;
  position: absolute;
  right: 21px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: color 0.3s ease;
}
.simple .header .closeIcon {
  color: transparent;
  display: block;
  font-size: 0;
  height: 100%;
  line-height: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.simple .header .closeIcon:after,
.simple .header .closeIcon:before {
  content: ' ';
  display: block;
  height: 2px;
  transition: background-color 0.3s ease;
  width: 19px;
  background-color: #91b9cd;
}
.simple .header .closeIcon:before {
  left: 1px;
  position: absolute;
  top: 1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 1px 50%;
  transform-origin: 1px 50%;
}
.simple .header .closeIcon:after {
  right: 1px;
  position: absolute;
  top: 1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: calc(100% - 1px) 50%;
  transform-origin: calc(100% - 1px) 50%;
}
.simple .content {
  padding: 16px 22px 0px;
  position: relative;
  color: #fff;
}
.simple .content .simpleDialogSelect,
.simple .content .simpleDialogInput {
  background-color: #fff;
  color: #000;
  border: 0;
  border-radius: 2px;
  font-size: 14px;
  height: 30px;
  width: 100%;
  line-height: 16px;
  padding: 8px 9px 6px;
  margin-top: 10px;
  display: block;
}
.simple .content .simpleDialogInputLabel {
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  color: #fff;
}
.simple .footer {
  padding: 10px;
  text-align: right;
}
.simple .footer .btn {
  transition: background-color 0.3s ease;
  color: #000;
  border: 0;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;
  height: 24px;
  line-height: 26px;
  padding: 0 12px;
  margin-bottom: 0;
  margin-left: 5px;
}
.simple .footer .btn-confirm {
  color: #fff;
  background-color: #20a5d6;
}

.scroll{height:100%;padding:5px;position:absolute;right:0;top:0}.scroll .scroll-holder{height:calc(100% - 20px);margin-top:5px;position:relative;width:12px}.scroll .scroll-holder .mark{position:absolute;width:100%;height:3px;background-color:rgba(139,195,74,.8)}.scroll .scroll-holder .imageSlider{height:12px;left:12px;padding:0;position:absolute;top:0;transform:rotate(90deg);transform-origin:top left;-webkit-appearance:none;background-color:transparent}.scroll .scroll-holder .imageSlider:focus{outline:none}.scroll .scroll-holder .imageSlider::-moz-focus-outer{border:none}.scroll .scroll-holder .imageSlider::-webkit-slider-runnable-track{background-color:transparent;border:none;cursor:pointer;height:5px;z-index:6}.scroll .scroll-holder .imageSlider::-moz-range-track{background-color:transparent;border:none;cursor:pointer;height:2px;z-index:6}.scroll .scroll-holder .imageSlider::-ms-track{animate:.2s;background:transparent;border:none;border-width:15px 0;color:transparent;cursor:pointer;height:12px;width:100%}.scroll .scroll-holder .imageSlider::-ms-fill-lower,.scroll .scroll-holder .imageSlider::-ms-fill-upper{background:transparent}.scroll .scroll-holder .imageSlider::-webkit-slider-thumb{-webkit-appearance:none!important;background-color:#163239;border:none;border-radius:57px;cursor:grab;height:12px;margin-top:-4px;width:39px}.scroll .scroll-holder .imageSlider::-webkit-slider-thumb:active{background-color:#20a5d6;cursor:-webkit-grabbing}.scroll .scroll-holder .imageSlider::-moz-range-thumb{background-color:#163239;border:none;border-radius:57px;cursor:grab;height:12px;width:39px;z-index:7}.scroll .scroll-holder .imageSlider::-moz-range-thumb:active{background-color:#20a5d6;cursor:-moz-grabbing}.scroll .scroll-holder .imageSlider::-ms-thumb{background-color:#163239;border:none;border-radius:57px;cursor:ns-resize;height:12px;width:39px}.scroll .scroll-holder .imageSlider::-ms-thumb:active{background-color:#20a5d6}.scroll .scroll-holder .imageSlider::-ms-tooltip{display:none}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.imageSlider{left:50px}}@media only screen and (max-width:768px){.scroll-m{width:100%;height:2.833rem;padding:5px;z-index:1000;color:#fff}}
.imageViewerViewport.empty~.ViewportOverlay{display:none}.ViewportOverlay{color:#9ccef9}.ViewportOverlay .overlay-element{position:absolute;font-weight:400;text-shadow:1px 1px #000;pointer-events:none}.ViewportOverlay .top-left{top:20px;left:20px}.ViewportOverlay .top-center{top:20px;padding-top:20px;width:100%;text-align:center}.ViewportOverlay .top-right{top:20px;right:20px;text-align:right}.ViewportOverlay .bottom-left{bottom:20px;left:20px}.ViewportOverlay .bottom-right{bottom:20px;right:20px;text-align:right}.ViewportOverlay.controlsVisible .bottomright,.ViewportOverlay.controlsVisible .topright{right:39px}.ViewportOverlay svg{color:#9ccef9;fill:#9ccef9;stroke:#9ccef9;background-color:initial;margin:2px;width:18px;height:18px}
.imageViewerLoadingIndicator{color:#91b9cd}.faded{opacity:.5}.imageViewerErrorLoadingIndicator{color:#e29e4a}.imageViewerErrorLoadingIndicator h4,.imageViewerErrorLoadingIndicator p{padding:4px 0;text-align:center;word-wrap:break-word}.imageViewerErrorLoadingIndicator p{font-size:11pt}.loadingIndicator{background-color:rgba(0,0,0,.75);font-size:18px;height:100%;overflow:hidden;pointer-events:none;position:absolute;top:0;width:100%;z-index:1}.loadingIndicator .indicatorContents{font-weight:300;position:absolute;text-align:center;top:50%;transform:translateY(-50%);width:100%}
.ViewportOrientationMarkers{--marker-width:100px;--marker-height:100px;--scrollbar-width:20px;pointer-events:none;font-size:15px;color:#ccc;line-height:18px}.ViewportOrientationMarkers .orientation-marker{position:absolute}.ViewportOrientationMarkers .top-mid{top:5px;left:50%}.ViewportOrientationMarkers .left-mid{top:47%;left:5px}.ViewportOrientationMarkers .right-mid{top:47%;left:calc(100% - var(--marker-width) - var(--scrollbar-width))}.ViewportOrientationMarkers .bottom-mid{top:calc(100% - var(--marker-height) - 5px);left:47%}.ViewportOrientationMarkers .right-mid .orientation-marker-value{display:flex;justify-content:flex-end;min-width:var(--marker-width)}.ViewportOrientationMarkers .bottom-mid .orientation-marker-value{display:flex;justify-content:flex-start;min-height:var(--marker-height);flex-direction:column-reverse}
.viewport-element,.viewport-wrapper{width:100%;height:100%;position:relative}.viewport-element{background-color:#000;outline:0!important;overflow:hidden}.print-mask{width:100%;height:100%;position:absolute;display:block;top:0;left:0;background:#000;z-index:2000}@media only screen and (max-width:768px){.viewport-element{width:100%;height:100%;position:relative;background-color:#000;outline:0!important;overflow:hidden}}
.imageViewerViewport.empty~.OHIFCornerstoneViewportOverlay{display:none}.OHIFCornerstoneViewportOverlay{color:#9ccef9}.OHIFCornerstoneViewportOverlay .overlay-element{position:absolute;font-weight:400;text-shadow:1px 1px #000;pointer-events:none}.OHIFCornerstoneViewportOverlay .top-left{top:5px;left:5px;font-size:12px;transform-origin:left top}.OHIFCornerstoneViewportOverlay .top-center{top:20px;padding-top:20px;width:100%;text-align:center}.OHIFCornerstoneViewportOverlay .top-right{top:5px;right:5px!important;text-align:right;font-size:12px;transform-origin:right top}.OHIFCornerstoneViewportOverlay .top-right .loading{display:flex;flex-direction:row-reverse}.OHIFCornerstoneViewportOverlay .top-right .loading .icon-jiazaizhong{font-size:30px;display:block;animation:rotation 1.5s linear infinite}@keyframes rotation{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.OHIFCornerstoneViewportOverlay .bottom-left{bottom:5px;left:5px;font-size:12px;transform-origin:left bottom}.OHIFCornerstoneViewportOverlay .bottom-left2{bottom:140px;left:20px;font-size:12px}.OHIFCornerstoneViewportOverlay .bottom-right{bottom:5px;right:5px!important;text-align:right;font-size:12px;transform-origin:right bottom}.OHIFCornerstoneViewportOverlay.controlsVisible .bottomright,.OHIFCornerstoneViewportOverlay.controlsVisible .topright{right:39px}.OHIFCornerstoneViewportOverlay .warning{position:absolute;font-weight:400;text-shadow:1px 1px #000;pointer-events:inherit}.OHIFCornerstoneViewportOverlay .warning svg{opacity:1;color:#e29e4a;fill:#e29e4a;stroke:#e29e4a;width:32px;height:28px}.OHIFCornerstoneViewportOverlay svg{color:#9ccef9;fill:#9ccef9;stroke:#9ccef9;background-color:initial;margin:2px;width:18px;height:18px}@media only screen and (max-width:768px){.OHIFCornerstoneViewportOverlay .top-right{top:5px;right:5px;text-align:right;font-size:12px}.OHIFCornerstoneViewportOverlay .bottom-right{bottom:5px;right:5px;text-align:right;font-size:12px}}
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 0.65;
}
button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.full-width {
  width: 100%;
}
.full-height {
  height: 100%;
}
.flex-h {
  display: flex;
  flex-direction: row;
}
.flex-v {
  display: flex;
  flex-direction: column;
}
.flex-grow {
  flex-grow: 1;
}
.nowrap {
  white-space: nowrap;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
h1 {
  font-size: 36px;
}
h3,
h1 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 20px;
  margin-bottom: 10px;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.pull-left {
  float: left !important;
}
.pull-right {
  float: right !important;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
a {
  color: #337ab7;
  text-decoration: none;
}
.simple {
  border-radius: 6px;
  background-color: #151a1f;
}
.simple .header {
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: #000;
  padding: 10px 20px 8px;
  position: relative;
  background-color: #2d3643;
}
.simple .header .title {
  font-size: 16px;
  line-height: 24px;
  padding-right: 40px;
  color: #91b9cd;
  margin: 0;
}
.simple .header .closeBtn {
  height: 20px;
  opacity: 1;
  overflow: hidden;
  padding: 2px;
  text-align: center;
  text-shadow: none;
  width: 20px;
  color: #91b9cd;
  cursor: pointer;
  position: absolute;
  right: 21px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: color 0.3s ease;
}
.simple .header .closeIcon {
  color: transparent;
  display: block;
  font-size: 0;
  height: 100%;
  line-height: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.simple .header .closeIcon:after,
.simple .header .closeIcon:before {
  content: ' ';
  display: block;
  height: 2px;
  transition: background-color 0.3s ease;
  width: 19px;
  background-color: #91b9cd;
}
.simple .header .closeIcon:before {
  left: 1px;
  position: absolute;
  top: 1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 1px 50%;
  transform-origin: 1px 50%;
}
.simple .header .closeIcon:after {
  right: 1px;
  position: absolute;
  top: 1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: calc(100% - 1px) 50%;
  transform-origin: calc(100% - 1px) 50%;
}
.simple .content {
  padding: 10px;
  position: relative;
  color: #fff;
  background-color: #171a1f;
}
.simple .content .layout-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 10px;
}
.simple .content .layout-box .btn-l {
  width: 50px;
  height: 50px;
  padding: 5px;
  color: #fff;
  cursor: pointer !important;
  margin-bottom: 5px;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.simple .content .layout-box .btn {
  width: 50px;
  height: 50px;
  padding: 5px;
  color: #fff;
  font-size: 20px;
  cursor: pointer !important;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.active {
  color: #005cc8 !important;
}
.simple .content-form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.simple .content-form .content-form-box {
  border-radius: 0px 0px 0px 0px;
  border: 1px solid #fff;
  padding: 10px 10px 0;
  margin-right: 10px;
  position: relative;
  margin-top: 10px;
}
.simple .content-form .content-form-box .content-form-box-title {
  font-family: Source Han Sans SC, Source Han Sans SC;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  line-height: 0px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  position: absolute;
  background-color: #171a1f;
  padding: 3px;
  top: -6px;
}
.simple .content-form-item {
  display: flex;
  height: 28px;
  align-items: center;
  margin-right: 10px;
  margin-bottom: 10px;
}
.simple .content-form-item .input-box {
  width: 80px;
  height: 28px;
  background: #2a3340;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #425063;
  color: #fff;
  padding: 0 5px;
}
.simple .content-form-item .label {
  margin-right: 10px;
  flex-shrink: 0;
}
.simple .content-form-item .iconfont {
  cursor: pointer;
}
.simple .content-btn {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
}
.simple .content-form-item .btn {
  border: solid 1px #fff;
  padding: 5px 8px;
  color: #fff;
  cursor: pointer !important;
  margin-right: 5px;
}
.simple .content-grid-box {
  display: flex;
  width: 1200px;
  height: 600px;
  align-items: center;
  justify-content: center;
  background-color: #000;
  position: relative;
}
.simple .content-grid-box .contextmenu-box {
  position: absolute;
  z-index: 9999;
  user-select: none;
}
.simple .content-grid {
  display: grid;
  height: 551px;
  position: relative;
}
.simple .content-grid .item {
  border: solid 1px #2e2b33;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.simple .content-grid .item img {
  max-width: 100%;
  max-height: 100%;
}
.simple .content-grid .ViewportOrientationMarkers {
  display: none;
}
.cornerstone-layoutItem {
  border: solid 1px #2e2b33;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.simple .content-grid .item::after {
  width: 10px;
  height: 10px;
  position: absolute;
  right: 0;
  bottom: 0;
  content: '';
}
.simple .content-grid .active {
  border: dashed 1px #008000;
  position: relative;
}
.simple .content-grid .cornerstone-layoutItem .cancel-box {
  width: 10px;
  height: 10px;
  position: absolute;
  right: 0;
  bottom: 0;
  border: 1px solid #808080;
  z-index: 100;
}
.simple .content-grid .active .cancel-box {
  width: 10px;
  height: 10px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: #008000;
  border: 1px solid #008000;
  z-index: 100;
}
.simple .footer {
  padding: 10px;
  text-align: right;
}
.simple .footer .btn {
  transition: background-color 0.3s ease;
  color: #000;
  border: 0;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;
  height: 24px;
  line-height: 26px;
  padding: 0 12px;
  margin-bottom: 0;
  margin-left: 5px;
}
.simple .footer .btn-confirm {
  color: #fff;
  background-color: #20a5d6;
}
.display-box {
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow-x: auto;
  overflow-y: auto;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1000;
}
.display-box #imagePrintBox1 {
  width: fit-content;
  height: fit-content;
}
.display-box .print-info {
  height: 50px;
  display: flex;
  align-items: center;
  background: #000;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
.ml10 {
  margin-left: 10px;
}
.loading {
  display: flex;
  font-size: 20px;
  align-items: center;
}
.icon-jiazaizhong {
  font-size: 30px;
  display: block;
  color: #fff;
  -webkit-animation: rotation 1.5s linear infinite;
  animation: rotation 1.5s linear infinite;
}
.previewNum {
  margin-left: 10px;
  width: 100px;
}
.content-form-item .icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  cursor: pointer;
}
.font-25 {
  font-size: 25px;
}
.font-40 {
  font-size: 40px;
}
.processBox {
  width: 360px;
  height: 11px;
  border-radius: 6px;
  border: 2px solid #fff;
}
.process {
  min-width: 4%;
  max-width: 100%;
  height: 7px;
  border-radius: 6px;
  color: #000;
  background: #3cc1ff;
  display: flex;
  align-items: center;
  padding-left: 10px;
/* transition: width .2s linear; */
}
.processOutterBox .processNum {
  width: 300px;
  color: #3cc6ff;
  font-size: 20px;
  margin-left: 10px;
  line-height: 29px;
}
@-moz-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.zkselect{position:relative;min-width:100px;height:28px;box-sizing:border-box;padding:0 5px;-webkit-user-select:none;user-select:none;cursor:pointer!important;background:#2a3340;border-radius:4px 4px 4px 4px;border:1px solid #425063}.zkselect .zkselect-label{font:1rem sans-serif;min-width:3rem;display:flex;justify-content:flex-end;align-items:center}.zkselect .zkselect-options{position:absolute;min-width:5rem;z-index:1000;background-color:#000;border:1px solid #9eb8cc;border-radius:4px;right:0;top:25px}.zkselect .zkselect-options .select-option{padding:5px 10px;width:100%;border-bottom:1px solid #9eb8cc;font:1rem sans-serif;cursor:pointer}.zkselect .zkselect-options div:last-child{border-bottom:0 solid;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.zkselect .zkselect-options div:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.zkselect .zkselect-options .active{background-color:#43aeff;color:#fff}.arrow-up{transform:rotate(-90deg);display:flex;align-items:center;justify-content:center}.icon-select{font-size:12px}.arrow-down{transform:rotate(90deg);display:flex;align-items:center;justify-content:center}.mr5{margin-right:5px}
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 0.65;
}
button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.full-width {
  width: 100%;
}
.full-height {
  height: 100%;
}
.flex-h {
  display: flex;
  flex-direction: row;
}
.flex-v {
  display: flex;
  flex-direction: column;
}
.flex-grow {
  flex-grow: 1;
}
.nowrap {
  white-space: nowrap;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
h1 {
  font-size: 36px;
}
h3,
h1 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 20px;
  margin-bottom: 10px;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.pull-left {
  float: left !important;
}
.pull-right {
  float: right !important;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
a {
  color: #337ab7;
  text-decoration: none;
}
.simpleColor {
  position: relative;
  border: 0;
  border-radius: 6px;
  background-color: #151a1f;
}
.simpleColor .header {
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: #000;
  padding: 10px 20px 8px;
  position: relative;
}
.simpleColor .header .title {
  font-size: 16px;
  line-height: 24px;
  padding-right: 40px;
  color: #91b9cd;
  margin: 0;
}
.simpleColor .header .closeBtn {
  height: 20px;
  opacity: 1;
  overflow: hidden;
  padding: 2px;
  text-align: center;
  text-shadow: none;
  width: 20px;
  color: #91b9cd;
  cursor: pointer;
  position: absolute;
  right: 21px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: color 0.3s ease;
}
.simpleColor .header .closeIcon {
  color: transparent;
  display: block;
  font-size: 0;
  height: 100%;
  line-height: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.simpleColor .header .closeIcon:after,
.simpleColor .header .closeIcon:before {
  content: ' ';
  display: block;
  height: 2px;
  transition: background-color 0.3s ease;
  width: 19px;
  background-color: #91b9cd;
}
.simpleColor .header .closeIcon:before {
  left: 1px;
  position: absolute;
  top: 1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 1px 50%;
  transform-origin: 1px 50%;
}
.simpleColor .header .closeIcon:after {
  right: 1px;
  position: absolute;
  top: 1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: calc(100% - 1px) 50%;
  transform-origin: calc(100% - 1px) 50%;
}
.simpleColor .content {
  padding: 10px 22px 6px;
  position: relative;
  color: #fff;
}
.simpleColor .content .ohif-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.simpleColor .content .ohif-container .btn {
  width: 132px;
  transition: background-color 0.3s ease;
  background: #151a1f;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 400;
  height: 25px;
  line-height: 25px;
  padding: 0px 18px;
  margin-bottom: 0;
  margin-left: 5px;
}
.simpleColor .content .simpleColorDialogSelect,
.simpleColor .content .simpleColorDialogInput {
  background-color: #fff;
  color: #000;
  border: 0;
  border-radius: 2px;
  font-size: 14px;
  height: 30px;
  width: 100%;
  line-height: 16px;
  padding: 8px 9px 6px;
  margin-top: 10px;
  display: block;
}
.simpleColor .content .simpleColorDialogInputLabel {
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  color: #fff;
}
.simpleColor .footer {
  padding: 10px;
  text-align: right;
}
.simpleColor .footer .btn {
  transition: background-color 0.3s ease;
  color: #000;
  border: 0;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;
  height: 24px;
  line-height: 26px;
  padding: 0 12px;
  margin-bottom: 0;
  margin-left: 5px;
}
.simpleColor .footer .btn-confirm {
  color: #fff;
  background-color: #20a5d6;
}

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 0.65;
}
button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.full-width {
  width: 100%;
}
.full-height {
  height: 100%;
}
.flex-h {
  display: flex;
  flex-direction: row;
}
.flex-v {
  display: flex;
  flex-direction: column;
}
.flex-grow {
  flex-grow: 1;
}
.nowrap {
  white-space: nowrap;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
h1 {
  font-size: 36px;
}
h3,
h1 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 20px;
  margin-bottom: 10px;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.pull-left {
  float: left !important;
}
.pull-right {
  float: right !important;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
a {
  color: #337ab7;
  text-decoration: none;
}
.imageProcessingDialog {
  position: relative;
  z-index: 1000;
  border-radius: 6px;
  background-color: var(--ui-gray-darker);
}
.imageProcessing {
  border: 0;
  border-radius: 6px;
  background-color: #151a1f;
}
.imageProcessing .header {
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: #000;
  padding: 10px 20px 8px;
  position: relative;
}
.imageProcessing .header .title {
  font-size: 16px;
  line-height: 24px;
  padding-right: 40px;
  color: #91b9cd;
  margin: 0;
}
.imageProcessing .header .closeBtn {
  height: 20px;
  opacity: 1;
  overflow: hidden;
  padding: 2px;
  text-align: center;
  text-shadow: none;
  width: 20px;
  color: #91b9cd;
  position: absolute;
  right: 21px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: color 0.3s ease;
}
.imageProcessing .header .closeIcon {
  cursor: default;
  color: transparent;
  display: block;
  font-size: 0;
  height: 100%;
  line-height: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.imageProcessing .header .closeIcon:after,
.imageProcessing .header .closeIcon:before {
  content: ' ';
  display: block;
  height: 2px;
  transition: background-color 0.3s ease;
  width: 19px;
  background-color: #91b9cd;
}
.imageProcessing .header .closeIcon:before {
  left: 1px;
  position: absolute;
  top: 1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 1px 50%;
  transform-origin: 1px 50%;
}
.imageProcessing .header .closeIcon:after {
  right: 1px;
  position: absolute;
  top: 1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: calc(100% - 1px) 50%;
  transform-origin: calc(100% - 1px) 50%;
}
.imageProcessing .content {
  padding: 10px 24px 2px 16px;
  position: relative;
  color: #fff;
}
.imageProcessing .content .reset {
  cursor: default !important;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  width: 200px;
  text-align: center;
  background-color: #207e7e;
  color: #fff;
}
.imageProcessing .content .reset-false {
  cursor: not-allowed;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  width: 200px;
  text-align: center;
  background-color: #151a1f !important;
}
.imageProcessing .content .reset .icon {
  position: relative;
  padding-right: 5px;
  top: 2px;
}
.imageProcessing .content .reset:hover {
  background-color: #279a9a;
}
.imageProcessing .content .list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 10px 0px;
}
.imageProcessing .content .list .mode {
  cursor: default !important;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  width: 95px;
  background-color: #151a1f !important;
  text-align: center;
  border: 1px solid #adacac;
  color: #fff;
}
.imageProcessing .content .list .mode-false {
  cursor: not-allowed;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  width: 95px;
  background-color: #151a1f !important;
  text-align: center;
}
.imageProcessing .content .list .mode-false:hover {
  background-color: #151a1f !important;
}
.imageProcessing .content .list .mode:hover {
  background-color: #279a9a !important;
}

.select-ohif-container .select-ohif{display:inline-block;font-size:10pt;box-sizing:border-box;width:auto;transition:all .15s ease;background-color:var(--input-background-color);line-height:16px;color:var(--input-placeholder-color);height:40px;margin:0 5px 20px;padding:0 20px;placeholder-color:var(--input-placeholder-color);cursor:pointer;border:none;font-weight:400;border-radius:4px;background-image:none}.select-ohif-container .select-ohif::-ms-expand{display:none}.select-ohif-container .select-ohif-label{padding:5px}.select-ohif:focus{outline:none}.select-ohif-container .select-ohif option{font-weight:400}.select-ohif{display:block;font-family:Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;font-size:.8em;font-weight:600;color:#444;line-height:1.3;padding:.6em 1.4em .5em .8em;width:100%;max-width:100%;margin:0;border:1px solid #aaa;box-shadow:0 1px 0 1px rgba(0,0,0,.04);border-radius:.5em;appearance:none;background-color:#fff;background-image:url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"),linear-gradient(180deg,#fff 0,#e5e5e5);background-repeat:no-repeat,repeat;background-position:right .7em top 50%,0 0;background-size:.65em auto,100%}
.label-ohif{font-size:1em;color:#fff}.label-example{background-color:var(--ui-gray-darker)}
.range{margin:0;width:100%;-webkit-appearance:none;background-color:initial}.range:focus{outline:none}.range::-webkit-slider-runnable-track{width:100%;height:2px;cursor:pointer;box-shadow:none;background-color:var(--ui-border-color-dark);border-radius:0;border:0 solid var(--ui-border-color-dark)}.range::-moz-range-track{width:100%;height:2px;cursor:pointer;box-shadow:none;background-color:var(--ui-border-color-dark);border-radius:0;border:0 solid var(--ui-border-color-dark)}.range::-webkit-slider-thumb{box-shadow:none;border:0 solid var(--active-color);box-shadow:0 10px 10px rgba(0,0,0,.25);height:21px;width:11px;border-radius:11px;background:var(--active-color);cursor:pointer;-webkit-appearance:none;margin-top:-10px}.range::-moz-range-thumb{box-shadow:none;border:0 solid var(--active-color);box-shadow:0 10px 10px rgba(0,0,0,.25);height:21px;width:11px;border-radius:11px;background:var(--active-color);cursor:pointer;-webkit-appearance:none;margin-top:-10px}.range::-moz-focus-outer{border:0}.range-example{background:#000;height:2em}
.textarea-ohif{background-color:#b6b6b6;border-color:#b6b6b6;font-family:Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;font-size:1em}
.input-ohif-container{font-size:1em;color:var(--text-primary-color);font-weight:400}.input-ohif-container .input-ohif{display:inline-block;height:40px;margin:0 10px 20px;padding:0 10px;cursor:pointer;border:none;background-color:var(--input-background-color);color:var(--input-placeholder-color);font-size:10pt;font-weight:400;width:auto;border-radius:4px;transition:all .15s ease}.input-ohif-container .input-ohif-label{padding:5px}.input-ohif-container .input-ohif:active,.input-ohif-container .input-ohif:focus{background-color:var(--input-background-color)}.input-ohif-container .input-ohif.invisible{visibility:hidden}
.dd-menu{float:left;margin-right:10px;cursor:pointer;position:relative}.dd-title{font-size:13px}.dd-caret-down,.dd-menu-toggle{display:inline-block}.dd-caret-down{width:0;height:0;margin-top:.5rem;margin-left:.5rem;border-top:5px solid;border-right:5px solid transparent;border-left:5px solid transparent}.dd-menu-list{position:absolute;top:100%;margin-top:10px;background:#fff;z-index:999;border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;overflow:hidden;transition:all .3s ease;-webkit-transition:all .3s ease;-moz-transition:all .3s ease;-ms-transition:all .3s ease;-o-transition:all .3s ease}.dd-menu-list.open{display:inline-block}.dd-menu-list.left{left:0}.dd-menu-list.right{right:0}.dd-menu-list.center{left:50%;transform:translateX(-50%);-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-o-transform:translateX(-50%)}.dd-item{display:flex;color:var(--text-color-active);padding:10px 15px;border-bottom:1px solid #ccc}.dd-item:hover{text-decoration:none;background:#eee}.dd-item:last-child{border-bottom:none}.dd-item-icon{margin-right:10px;margin-top:2px}
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 0.65;
}
button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.full-width {
  width: 100%;
}
.full-height {
  height: 100%;
}
.flex-h {
  display: flex;
  flex-direction: row;
}
.flex-v {
  display: flex;
  flex-direction: column;
}
.flex-grow {
  flex-grow: 1;
}
.nowrap {
  white-space: nowrap;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
h1 {
  font-size: 36px;
}
h3,
h1 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 20px;
  margin-bottom: 10px;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.pull-left {
  float: left !important;
}
.pull-right {
  float: right !important;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
a {
  color: #337ab7;
  text-decoration: none;
}
.InputDialog .commentDialog {
  position: relative;
}
.commentDialog {
  position: relative;
  z-index: 1000;
  border: 0;
  border-radius: 6px;
  background-color: var(--ui-gray-darker);
}
.commentDialog .header {
  border-bottom: 3px solid var(--primary-background-color);
  padding: 10px 20px 8px;
  position: relative;
}
.commentDialog .header .title {
  font-size: 16px;
  line-height: 24px;
  padding-right: 40px;
  color: var(--text-secondary-color);
  margin: 0;
}
.commentDialog .header .closeBtn {
  -webkit-transform: translateY(-50%);
  color: var(--text-secondary-color);
  height: 20px;
  opacity: 1;
  overflow: hidden;
  padding: 2px;
  position: absolute;
  right: 21px;
  text-align: center;
  text-shadow: none;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.3s ease;
  width: 20px;
}
.commentDialog .header .closeIcon {
  color: transparent;
  display: block;
  font-size: 0;
  height: 100%;
  line-height: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.commentDialog .header .closeIcon:after,
.commentDialog .header .closeIcon:before {
  content: ' ';
  display: block;
  height: 2px;
  transition: background-color 0.3s ease;
  width: 19px;
  background-color: var(--text-secondary-color);
}
.commentDialog .header .closeIcon:before {
  left: 1px;
  position: absolute;
  top: 1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 1px 50%;
  transform-origin: 1px 50%;
}
.commentDialog .header .closeIcon:after {
  right: 1px;
  position: absolute;
  top: 1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: calc(100% - 1px) 50%;
  transform-origin: calc(100% - 1px) 50%;
}
.commentDialog .content {
  padding: 16px 20px;
  position: relative;
  color: var(--text-primary-color);
}
.commentDialog .content .commentDialogDialogSelect,
.commentDialog .content .commentDialogDialogInput {
  background-color: var(--input-background-color);
  color: var(--text-primary-color);
  border: 0;
  border-radius: 2px;
  font-size: 14px;
  height: 30px;
  width: 100%;
  line-height: 16px;
  padding: 8px 9px 6px;
  margin-top: 10px;
  display: block;
}
.commentDialog .content .commentDialogDialogLabelFor {
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  margin: 10px 0 0 0;
  color: var(--text-primary-color);
}
.commentDialog .footer {
  padding: 15px;
  text-align: right;
  margin: 0;
  justify-content: flex-end;
}
.commentDialog .footer .btn {
  margin-left: 5px;
}
.commentDialog {
  border: 0;
  border-radius: 6px;
  background-color: #151a1f;
}
.commentDialog .header {
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: #000;
  padding: 10px 20px 8px;
  position: relative;
}
.commentDialog .header .title {
  font-size: 16px;
  line-height: 16px;
  padding-right: 40px;
  color: #91b9cd;
  margin: 0;
}
.commentDialog .header .closeBtn {
  height: 20px;
  opacity: 1;
  overflow: hidden;
  padding: 2px;
  text-align: center;
  text-shadow: none;
  width: 20px;
  color: #91b9cd;
  cursor: pointer;
  position: absolute;
  right: 21px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: color 0.3s ease;
}
.commentDialog .header .closeIcon {
  color: transparent;
  display: block;
  font-size: 0;
  height: 100%;
  line-height: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.commentDialog .header .closeIcon:after,
.commentDialog .header .closeIcon:before {
  content: ' ';
  display: block;
  height: 2px;
  transition: background-color 0.3s ease;
  width: 19px;
  background-color: #91b9cd;
}
.commentDialog .header .closeIcon:before {
  left: 1px;
  position: absolute;
  top: 1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 1px 50%;
  transform-origin: 1px 50%;
}
.commentDialog .header .closeIcon:after {
  right: 1px;
  position: absolute;
  top: 1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: calc(100% - 1px) 50%;
  transform-origin: calc(100% - 1px) 50%;
}
.commentDialog .content {
  padding: 16px 22px 0px;
  position: relative;
  color: #fff;
}
.commentDialog .content .commentDialogDialogSelect,
.commentDialog .content .commentDialogDialogInput {
  background-color: #fff;
  color: #000;
  border: 0;
  border-radius: 2px;
  font-size: 14px;
  height: 30px;
  width: 100%;
  line-height: 16px;
  padding: 8px 9px 6px;
  margin-top: 10px;
  display: block;
}
.commentDialog .content .commentDialogDialogInputLabel {
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  color: #fff;
}
.commentDialog .footer {
  padding: 10px;
  text-align: right;
}
.commentDialog .footer .btn {
  transition: background-color 0.3s ease;
  color: #000;
  border: 0;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;
  height: 24px;
  line-height: 26px;
  padding: 0 12px;
  margin-bottom: 0;
  margin-left: 5px;
}
.commentDialog .footer .btn-confirm {
  color: #fff;
  background-color: #20a5d6;
}

.toast{z-index:999;flex-direction:column}.toast,.toast_bg{position:fixed;left:0;top:0;display:flex}.toast_bg{width:100%;height:100%;align-items:center;justify-content:center}.toast_box1{position:absolute;display:flex;align-items:center;top:30%;padding:.5rem;background:#000;border-radius:.3rem;color:#fff}.toast_text{color:#fff}.toast_red,.toast_text{margin-left:10px;font-size:20px;text-align:center;white-space:nowrap}.toast_red{color:red}.toast_blue{color:#67c23a;margin-left:10px;font-size:20px;text-align:center;white-space:nowrap}.toast_icon{margin-right:.4rem;width:.8rem;height:.8rem}.toast_loading{animation:loading 1s steps(12) infinite;background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAM1BMVEUAAAD///////////////////////////////////////////////////////////////+3leKCAAAAEHRSTlMAENCA8KAgsGDgQMCQUDBwhylaLQAAAL1JREFUOMu9U0kSwyAMK9jsS/T/1zZt2pgEZzq9RBeMZYRGDI/70bO5JptjrOAQVTonIJVK5bW2ma9A7VvpK8OdeQfbZectrDnyU+Oo0b68wGK0muDPdxpOciaizq5pkAgiIPAoew2rBVNYZoM2YHbZDNKz/2Ogam3ff5gMEL8wisfh3KKZiFiGWFkk1B7NSbhNQFy4M2+PghbODNsg7y8THM2njiy8gBgcaEUA9GgNJbxh7fJv+NxiFvYmPAFtCQZNK1qZIAAAAABJRU5ErkJggg==") no-repeat;background-size:100%}.toast_success{background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAM1BMVEUAAAD///////////////////////////////////////////////////////////////+3leKCAAAAEHRSTlMA8DAQ0GBP4LCggMBwIJBAIttdjAAAAINJREFUOMvdkUsOwyAMBbH5hUCauf9pK1SlohF438x2LPn52f09+8vUfiNb/gighj8FouEjYCUoQDXiBSD7pdcMiK7XC9wCFmlDO3T20Scgx287ne13pwDU89NOJ3g3maCmJDANqIGRtLj8oi1ed1GMdmcB7wXIYX8QdQZJiM5Em3smbyVICDCOrCqSAAAAAElFTkSuQmCC") no-repeat;background-size:100%}.toast_error{background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgBAMAAACBVGfHAAAAMFBMVEUAAAD///////////////////////////////////////////////////////////87TQQwAAAAD3RSTlMA0BDAMODwUKBgsCCAQJClzVPvAAAA0UlEQVQoz2MgErAclv9o44Dgc8b/B4KvBTA+t/3XdgeWivjPG6ACbl8ngNXlp0AN+L8IwtD6DzFm2w+Y3v5sMGW/ACbA9Rms9ZsCTIApH2QR608GhoUKQJ4xA8P8AKCAP5CwF2JgUPwIlPwCFDj/AMRRYJIHCnL8AZkJ1AfkAcUYGNhBpso7MICUgBQw8H4EEv/B5ssDFYA4mAKYWjANfd+Aai3CYZ9BDoM63RDkdEGQ0zE9h+l9zADCDEIGt2/wQEZEwwVepGhgYEdEFGZUEgYAW05XI3jSsVwAAAAASUVORK5CYII=") no-repeat;background-size:100%}.toast_info{background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgBAMAAACBVGfHAAAALVBMVEUAAAD///////////////////////////////////////////////////////+hSKubAAAADnRSTlMA4CCAwKBAMJBg8NAQUNhWlbcAAAC+SURBVCjPYyASsLfse+1cgOBzyr0DgocXYHwmv4dtCkwZck8UoAJZDydA1C2H8NnexUAYR99BjNF6CtMbtwhM+QUACUUhIMH6BKz14QEgafcYSPDIgSxifMkAE2CYJwAk6gQQAozPgURfA0KAA0T6JSAE2ECm7lNACDC9BhLvGGACIA6GAFyLohBEC9xQqLeeQKwFA4i1EIfBAeNzuNMVhSBOx/AcpvcxAwgzCDEDGTMaGHhhEYWIShN4VBIGAPvRT5YzufhUAAAAAElFTkSuQmCC") no-repeat;background-size:100%}@keyframes loading{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}
.imageViewerViewport.empty~.OHIFCornerstoneViewportOverlay{display:none}.OHIFCornerstoneViewportOverlay{color:#9ccef9}.OHIFCornerstoneViewportOverlay .overlay-element{position:absolute;font-weight:400;text-shadow:1px 1px #000;pointer-events:none}.OHIFCornerstoneViewportOverlay .top-left{top:5px;left:5px;font-size:12px}.OHIFCornerstoneViewportOverlay .top-center{top:20px;padding-top:20px;width:100%;text-align:center}.OHIFCornerstoneViewportOverlay .top-right{top:5px;right:20px;text-align:right;font-size:12px}.OHIFCornerstoneViewportOverlay .top-right .loading{display:flex;flex-direction:row-reverse}.OHIFCornerstoneViewportOverlay .top-right .loading .icon-jiazaizhong{font-size:30px;display:block;animation:rotation 1.5s linear infinite}@keyframes rotation{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.OHIFCornerstoneViewportOverlay .bottom-left{bottom:5px;left:5px;font-size:12px}.OHIFCornerstoneViewportOverlay .bottom-left2{bottom:140px;left:20px;font-size:12px}.OHIFCornerstoneViewportOverlay .bottom-right{bottom:5px;right:20px;text-align:right;font-size:12px}.OHIFCornerstoneViewportOverlay.controlsVisible .bottomright,.OHIFCornerstoneViewportOverlay.controlsVisible .topright{right:39px}.OHIFCornerstoneViewportOverlay .warning{position:absolute;font-weight:400;text-shadow:1px 1px #000;pointer-events:inherit}.OHIFCornerstoneViewportOverlay .warning svg{opacity:1;color:#e29e4a;fill:#e29e4a;stroke:#e29e4a;width:32px;height:28px}.OHIFCornerstoneViewportOverlay svg{color:#9ccef9;fill:#9ccef9;stroke:#9ccef9;background-color:initial;margin:2px;width:18px;height:18px}@media only screen and (max-width:768px){.OHIFCornerstoneViewportOverlay .top-right{top:5px;right:5px;text-align:right;font-size:12px}.OHIFCornerstoneViewportOverlay .bottom-right{bottom:5px;right:5px;text-align:right;font-size:12px}}
.labelling-appear{opacity:0}.labelling-appear.labelling-appear-active{opacity:1;transition:opacity .5s linear}.labelling-exit{opacity:1}.labelling-exit.labelling-exit-active{opacity:0;transition:opacity .5s linear}.labelling-exit-done{opacity:0}
.simpleDialog{position:fixed;border:0;border-radius:6px;background-color:#151a1f}.simpleDialog .header{border-bottom:3px solid #000;padding:19px 22px 17px;position:relative}.simpleDialog .header .title{font-size:20px;line-height:24px;padding-right:40px;color:#91b9cd;margin:0}.simpleDialog .header .closeBtn{height:20px;opacity:1;overflow:hidden;padding:2px;text-align:center;text-shadow:none;width:20px;color:#91b9cd;cursor:pointer;position:absolute;right:21px;top:50%;transform:translateY(-50%);transition:color .3s ease}.simpleDialog .header .closeIcon{color:transparent;display:block;font-size:0;height:100%;line-height:0;overflow:hidden;position:relative;width:100%}.simpleDialog .header .closeIcon:after,.simpleDialog .header .closeIcon:before{content:" ";display:block;height:2px;transition:background-color .3s ease;width:19px;background-color:#91b9cd}.simpleDialog .header .closeIcon:before{left:1px;position:absolute;top:1px;transform:rotate(45deg);transform-origin:1px 50%}.simpleDialog .header .closeIcon:after{right:1px;position:absolute;top:1px;transform:rotate(-45deg);transform-origin:calc(100% - 1px) 50%}.simpleDialog .content{padding:16px 22px 25px;position:relative;color:#fff}.simpleDialog .content .simpleDialogInput,.simpleDialog .content .simpleDialogSelect{background-color:#fff;color:#000;border:0;border-radius:2px;font-size:14px;height:30px;width:100%;line-height:16px;padding:8px 9px 6px;margin-top:10px;display:block}.simpleDialog .content .simpleDialogInputLabel{font-size:14px;font-weight:700;line-height:16px;color:#fff}.simpleDialog .footer{padding:15px;text-align:right}.simpleDialog .footer .btn{transition:background-color .3s ease;color:#000;border:0;border-radius:4px;font-size:15px;font-weight:400;height:37px;line-height:37px;padding:0 12px;margin-bottom:0;margin-left:5px}.simpleDialog .footer .btn-confirm{color:#fff;background-color:#337ab7}
.editDescriptionDialog{position:relative;z-index:300;width:320px;transition:all .3s linear}
.labellingComponent{position:relative;text-align:center;z-index:999;transition:all .2s linear;max-height:500px}.labellingComponent .selectedDescription,.labellingComponent .selectedLabel{padding:5px;background-color:#fff;width:150px}.labellingComponent .addLabelButton{color:#000;background-color:#20a5d6;border:2px solid #44626f;border-radius:14px;font-weight:700;font-size:13px;line-height:24px;opacity:1;padding:0 14px;transition:opacity .3s ease;outline:none;cursor:pointer}.labellingComponent .commonButton{border:1px solid #44626f;color:#fff;background-color:#000;border-radius:16px;font-weight:700;font-size:13px;line-height:26px;padding:0 12px;margin:10px 5px 0 0;outline:none;cursor:pointer}.labellingComponent .locationDescriptionWrapper{background-color:#fff;line-height:46px;height:46px;font-size:13px;position:relative;width:290px;min-width:260px;padding:0 12px;margin:0 auto;display:inline-block}.labellingComponent .locationDescriptionWrapper .location{transition:all .3s linear;position:absolute;white-space:nowrap;bottom:0}.labellingComponent.editDescription .locationDescriptionWrapper .location{bottom:38px}.labellingComponent .locationDescriptionWrapper #descriptionInput{transition-delay:all .3s linear;visibility:hidden;outline:none;height:46px;width:100%;line-height:20px;font-size:13px;border:none}.labellingComponent.editDescription .locationDescriptionWrapper #descriptionInput{visibility:visible}.labellingComponent.editDescription .location{color:#337ab7}.labellingComponent .commonButtons,.labellingComponent.editDescription .editDescriptionButtons{display:block;margin-left:55px}.labellingComponent.editDescription .commonButtons,.labellingComponent .editDescriptionButtons{display:none}.labellingComponent .commonButtons{text-align:center;margin-left:55px}.labellingComponent .commonButton.left{float:left}.labellingComponent .commonButton.right{float:right}.labellingComponent .checkIconWrapper{display:inline-block;background-color:#337ab7;border-radius:46px;width:46px;height:46px;margin-right:10px;vertical-align:bottom;cursor:pointer}.labellingComponent .checkIcon{width:20px;height:20px;margin:13px;fill:#000}
.ToolContextMenu{display:none}
.not-found{width:100%;height:100%;display:flex;justify-content:center;align-items:center;color:#fff}.not-found .error,.not-found .loading{display:flex;font-size:20px;align-items:center}.not-found .error{color:#f71d1d}.not-found .loading .icon-jiazaizhong{font-size:30px;display:block;animation:rotation 1.5s linear infinite}@keyframes rotation{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}
#root,body,html{display:flex;flex-direction:column;background-color:#171a1f;height:100%;width:100%;margin:0;padding:0;box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:Roboto,OpenSans,HelveticaNeue-Light,Helvetica Neue Light,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}html{font-size:15px!important}body{font-size:14px;line-height:1.42857143}#root .fade-enter{opacity:0}#root .fade-enter-active{opacity:1;transition:opacity .2s}#root .fade-exit{opacity:1}#root .fade-exit-active{opacity:0;transition:opacity .2s}.red{border:1px solid red}.blue{border:1px solid #00f}
:root{--top-bar-height:40px;--top-bar-expanded-height:160px;--toolbar-height:78px;--toolbar-drawer-height:62px;--left-sidepanel-menu-width:247px;--right-sidepanel-menu-width:323px;--study-list-padding:8%;--study-list-padding-medium-screen:10px;--snackbar-size:344px;--transition-duration:0.3s;--transition-effect:ease;--sidepanel-transition:all 0.3s ease;--viewport-border-thickness:1px;--ui-border-thickness:1px;--snackbar-success:rgba(94,164,0,0.9);--snackbar-error:rgba(236,61,61,0.9);--snackbar-warning:rgba(235,173,23,0.9);--snackbar-info:rgba(54,156,199,0.9);--snackbar-zIndex:9999;--datePicker-input-background:#2c363f;--datePicker-picker-background:#9ccef9;--datePicker-picker-disabled:#d3d3d3;--datePicker-picker-text:#484848;--datePicker-picker-text-disabled:#aaa;--datePicker-picker-text-input:#fff}
:root{--default-color:#9ccef9;--hover-color:#fff;--active-color:#20a5d6;--ui-border-color:#44626f;--ui-border-color-dark:#3c5d80;--ui-border-color-active:#00a4d9;--primary-background-color:#000;--box-background-color:#3e5975;--ui-yellow:#e29e4a;--ui-sky-blue:#6fbde2;--ui-state-error:#fcc;--ui-state-error-border:#933;--ui-state-error-text:#611;--ui-gray-light:#516873;--ui-gray:#263340;--ui-gray-dark:#16202b;--ui-gray-darker:#151a1f;--ui-gray-darkest:#14202a;--text-color-active:#000;--text-primary-color:#fff;--text-secondary-color:#91b9cd;--text-disabled-color:#878787;--input-background-color:#2c363f;--input-placeholder-color--hover:#4d5a63;--input-placeholder-color:#d3d3d3;--table-hover-color:#2c363f;--table-text-primary-color:#fff;--table-text-secondary-color:#91b9cd;--large-numbers-color:#6fbde2;--state-error:#fcc;--state-error-border:#fcc;--state-error-text:#fcc}
.header-brand{height:30px;text-decoration:none;-webkit-text-decoration-color:none;text-decoration-color:none;color:var(--text-primary-color);-webkit-user-drag:none;-webkit-user-select:none;user-select:none;position:relative}.viewerName1{text-align:left;width:80px;position:absolute;top:24px;left:50px;color:#fff;font-size:14px}.header-band:visited,.header-brand:active,.header-brand:hover{color:var(--text-primary-color);text-decoration:none}.header-logo-text{width:224px;height:auto;margin-left:8px}.header-logo-image1{font-size:33px}@media only screen and (max-width:768px){.header-logo-text{display:none}}
.cornerTooltip{-webkit-user-select:none;user-select:none;pointer-events:none}.top-left{left:5px}.top-center,.top-left{position:absolute;top:5px;font-size:12px;color:#fff;z-index:20;pointer-events:none;-webkit-user-select:none;user-select:none}.top-center{left:calc(50% - 4px)}.top-right{position:absolute;top:5px;right:5px;font-size:12px;color:#fff;z-index:20;text-align:right;pointer-events:none;-webkit-user-select:none;user-select:none}.top-right .link{position:relative;text-decoration:underline;pointer-events:auto;cursor:pointer;color:#8bc34a}.top-right .link .contextmenu-box{top:20px;right:0;width:120px;position:absolute;z-index:9999;-webkit-user-select:none;user-select:none}.left-center{top:calc(50% - 8px)}.bottom-left,.left-center{position:absolute;left:5px;font-size:12px;color:#fff;z-index:20;pointer-events:none;-webkit-user-select:none;user-select:none}.bottom-left{bottom:5px}.bottom-right{position:absolute;bottom:5px;right:5px;font-size:12px;color:#fff;z-index:20;pointer-events:none;-webkit-user-select:none;user-select:none}.top-right .link .zkselect-options{position:absolute;width:100px;z-index:1000;color:#000;background-color:#fff;border:1px solid #fff;border-radius:4px;right:0;top:25px;font-size:13px}.top-right .link .zkselect-options .select-option{padding:5px;width:100%;border-bottom:1px solid #9eb8cc;font:13px sans-serif;cursor:pointer}.top-right .link .zkselect-options div:last-child{border-bottom:0 solid;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.top-right .link .zkselect-options div:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.top-right .link .zkselect-options .active{background-color:#43aeff;color:#fff!important}.text-scale-left{transform:scale(.9);top:0;left:0}.text-scale-right{transform:scale(.9);top:0;right:0}
.mask{width:100%;height:100%;position:fixed;top:0;left:0;background:#000;background-color:hsla(0,0%,100%,0);z-index:2000;color:#ff4309;display:flex;align-items:center;justify-content:center}.WsDialog{width:400px;height:200px;background:#171a1f;border-radius:6px;position:relative}.WsDialog .title{padding:10px;display:flex;align-items:center;background:#2d3643;justify-content:space-between;border-top-left-radius:6px;border-top-right-radius:6px}.WsDialog .title .about{display:flex;align-items:center;justify-content:center}.WsDialog .title span{font-size:14px;font-family:Source Han Sans CN;font-weight:500;color:#fefefe;margin-left:5px}.WsDialog .title .close{width:12px;height:12px}.WsDialog .infoBox{padding:20px;font-size:16px;color:#fff}.WsDialog .infoBox .name{margin-top:16px;text-align:center;font-size:16px;color:#fff}.WsDialog .infoBox .ver{font-size:16px;text-align:center;margin-top:12px;color:#fff}.WsDialog .infoBox .com{text-align:center;font-size:14px;margin-top:40px}.btnBox{position:absolute;width:100%;bottom:0;padding:10px;justify-content:space-between}.btnBox,.btnInner{display:flex}.button{display:inline-block;line-height:1;white-space:nowrap;cursor:pointer;background:#171a1f;border:1px solid #43afff;color:#43afff;-webkit-appearance:none;text-align:center;box-sizing:border-box;outline:none;margin:0 5px;transition:.1s;font-weight:500;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;padding:8px 12px;font-size:14px;border-radius:4px}.button:hover{background:#47608b}.button:active,.button:hover{border:1px solid #43afff;color:#43afff}.button:active{background:#223148}

.toast{z-index:999;display:flex;flex-direction:column}.toast,.toast_bg{position:fixed;left:0;top:0}.toast_bg{width:100%;height:100%}.toast_box{position:absolute;display:flex;align-items:center;left:50%;top:30%;padding:.5rem;background:rgba(0,0,0,.65);border-radius:.1rem;color:#fff}.toast_text{color:#fff}.toast_text,.toast_text_error{text-align:center;white-space:nowrap}.toast_text_error{color:red}.toast_icon{color:#fff;margin-right:.4rem;width:.8rem;height:.8rem}toast_icon_error{color:red}.toast_loading{animation:loading 1s steps(12) infinite;background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAM1BMVEUAAAD///////////////////////////////////////////////////////////////+3leKCAAAAEHRSTlMAENCA8KAgsGDgQMCQUDBwhylaLQAAAL1JREFUOMu9U0kSwyAMK9jsS/T/1zZt2pgEZzq9RBeMZYRGDI/70bO5JptjrOAQVTonIJVK5bW2ma9A7VvpK8OdeQfbZectrDnyU+Oo0b68wGK0muDPdxpOciaizq5pkAgiIPAoew2rBVNYZoM2YHbZDNKz/2Ogam3ff5gMEL8wisfh3KKZiFiGWFkk1B7NSbhNQFy4M2+PghbODNsg7y8THM2njiy8gBgcaEUA9GgNJbxh7fJv+NxiFvYmPAFtCQZNK1qZIAAAAABJRU5ErkJggg==") no-repeat;background-size:100%}.toast_success{background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAM1BMVEUAAAD///////////////////////////////////////////////////////////////+3leKCAAAAEHRSTlMA8DAQ0GBP4LCggMBwIJBAIttdjAAAAINJREFUOMvdkUsOwyAMBbH5hUCauf9pK1SlohF438x2LPn52f09+8vUfiNb/gighj8FouEjYCUoQDXiBSD7pdcMiK7XC9wCFmlDO3T20Scgx287ne13pwDU89NOJ3g3maCmJDANqIGRtLj8oi1ed1GMdmcB7wXIYX8QdQZJiM5Em3smbyVICDCOrCqSAAAAAElFTkSuQmCC") no-repeat;background-size:100%}.toast_error{background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgBAMAAACBVGfHAAAAMFBMVEUAAAD///////////////////////////////////////////////////////////87TQQwAAAAD3RSTlMA0BDAMODwUKBgsCCAQJClzVPvAAAA0UlEQVQoz2MgErAclv9o44Dgc8b/B4KvBTA+t/3XdgeWivjPG6ACbl8ngNXlp0AN+L8IwtD6DzFm2w+Y3v5sMGW/ACbA9Rms9ZsCTIApH2QR608GhoUKQJ4xA8P8AKCAP5CwF2JgUPwIlPwCFDj/AMRRYJIHCnL8AZkJ1AfkAcUYGNhBpso7MICUgBQw8H4EEv/B5ssDFYA4mAKYWjANfd+Aai3CYZ9BDoM63RDkdEGQ0zE9h+l9zADCDEIGt2/wQEZEwwVepGhgYEdEFGZUEgYAW05XI3jSsVwAAAAASUVORK5CYII=") no-repeat;background-size:100%}.toast_info{background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgBAMAAACBVGfHAAAALVBMVEUAAAD///////////////////////////////////////////////////////+hSKubAAAADnRSTlMA4CCAwKBAMJBg8NAQUNhWlbcAAAC+SURBVCjPYyASsLfse+1cgOBzyr0DgocXYHwmv4dtCkwZck8UoAJZDydA1C2H8NnexUAYR99BjNF6CtMbtwhM+QUACUUhIMH6BKz14QEgafcYSPDIgSxifMkAE2CYJwAk6gQQAozPgURfA0KAA0T6JSAE2ECm7lNACDC9BhLvGGACIA6GAFyLohBEC9xQqLeeQKwFA4i1EIfBAeNzuNMVhSBOx/AcpvcxAwgzCDEDGTMaGHhhEYWIShN4VBIGAPvRT5YzufhUAAAAAElFTkSuQmCC") no-repeat;background-size:100%}@keyframes loading{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}
.image-canvas-boxs,.image-canvas-wrapper{width:100%;height:100%;position:relative}.image-canvas-wrapper{border:1px solid #20a5d6;flex:1}.image-canvas{width:100%;height:100%}.crosshairs,.slice{position:absolute;width:100%;height:100%;top:0;left:0}.crosshairs{pointer-events:none}.direction-outerbox{position:absolute;bottom:10px;display:flex;justify-content:center;align-items:center;width:100%;-webkit-user-select:none;user-select:none}.direction-innerbox{display:flex}.direction-item{color:#fff;cursor:pointer;box-sizing:border-box;width:20px;height:20px;display:flex;justify-content:center;align-items:center;background-color:#2a2a2a;margin-right:10px}.direction-item:hover{background-color:#464646}.slicebuttons{position:absolute;top:80%;left:40%;padding:10px;display:flex;justify-content:space-between;border:1px solid #47608b;border-radius:6px;background-color:#000}.slicebuttons .label-button{background-color:unset;border:1px solid #47608b;color:#43afff;margin-right:10px;padding:3px 10px;cursor:pointer}.slicebuttons .label-button:hover{color:#fff}.slicebuttons .label-button.active,.slicebuttons .label-button:active{background:#43afff;border:1px solid #43afff;color:#fff}.slicebuttons .close{display:flex;align-items:center;color:red;margin-left:10px}
.image-canvas-wrapper{border:1px solid #44626f;width:calc(100% - 2px);height:calc(100% - 2px);position:relative;box-sizing:border-box}.image-canvas-wrapper.active{border:1px solid #20a5d6}.image-canvas{width:calc(100% - 2px);height:calc(100% - 2px)}.crosshairs{width:100%;height:100%;position:absolute;top:0;left:0;pointer-events:none}
.slab-thickness {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  height: 60px;
  margin-top: -12px;
}
.slab-thickness:hover {
  color: var(--default-color);
}
.slab-thickness .container {
  padding-right: 10px;
  height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.slab-thickness .container .toolbar-slider-container {
  width: 80px;
  margin: 0px 2px 2px 2px;
  font-size: 12px;
}
.slab-thickness .container .toolbar-slider-container:hover {
  color: var(--hover-color);
}
.slab-thickness .container .toolbar-slider-container input {
  height: 20px;
  padding-top: 6px;
}
.slab-thickness .container .toolbar-slider-container input::-moz-range-thumb {
  height: 16px;
  margin-top: -7px;
}
.slab-thickness .container .toolbar-slider-container input::-webkit-slider-thumb {
  height: 16px;
  margin-top: -7px;
}
.slab-thickness .controller {
  width: 62px;
}
.slab-thickness .controller .ohif-check-container {
  margin-bottom: 5px;
  padding-left: 18px;
}
.slab-thickness .controller .ohif-check-container .ohif-check-label {
  text-transform: capitalize;
}
.slab-thickness .controller .ohif-check-container .ohif-check-label:hover {
  color: var(--hover-color);
}
.slab-thickness .controller .ohif-check-container .ohif-check-label .ohif-checkbox {
  border-radius: 3px;
  background-color: #fff;
  width: 12px;
  height: 12px;
  top: 22%;
}
.slab-thickness .controller .ohif-check-container .ohif-check-label .ohif-checkbox.ohif-checked:after {
  background-color: var(--active-color);
  top: 17%;
  left: 17%;
}
.slab-thickness .controller .select-ohif {
  color: var(--default-color);
  border-color: var(--default-color);
  background-color: #000;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
}
.slab-thickness .controller .select-ohif:hover {
  color: var(--hover-color);
}

.mprBox,.mprViewBox{width:100%;height:100%}.colViewBox,.mprViewBox{display:flex}.colViewBox{height:100%;flex-direction:column}.row-2-1{width:50%}.row-5-3{width:60%}.row-5-2{width:40%}.row-3-1{width:33.33%}.col-2-1{height:50%}.col-3-1{height:33.33%}.processBox{width:360px;height:11px;border-radius:6px;border:2px solid #fff}.process{min-width:4%;max-width:100%;height:7px;border-radius:6px;color:#000;background:#3cc1ff;display:flex;align-items:center;padding-left:10px}.processNum{width:60px;color:#3cc6ff;font-size:20px;margin-left:10px;line-height:29px}.cprbuttons{position:absolute;top:80%;left:40%;padding:10px;display:flex;justify-content:space-between;border:1px solid #47608b;border-radius:6px}.cprbuttons .label-button{background-color:unset;border:1px solid #47608b;color:#43afff;margin-right:10px;padding:3px 10px;cursor:pointer}.cprbuttons .label-button:hover{color:#fff}.cprbuttons .label-button.active,.cprbuttons .label-button:active{background:#43afff;border:1px solid #43afff;color:#fff}.cprbuttons .close{display:flex;align-items:center;color:red;margin-left:10px}@media only screen and (max-width:768px){.processBox{width:50%;height:8px;border-radius:6px;border:1px solid #fff}.process{min-width:4%;max-width:100%;height:7px;border-radius:6px;color:#000;background:#3cc1ff;display:flex;align-items:center;padding-left:10px;font-size:1rem}.processNum{width:60px;color:#3cc6ff;font-size:1rem;margin-left:10px;line-height:29px}}
.mask{width:100%;height:100%;position:fixed;top:0;left:0;background:#000;background-color:hsla(0,0%,100%,0);z-index:2000;color:#ff4309;display:flex;align-items:center;justify-content:center}.WsDialog{width:400px;height:160px;background:#171a1f;border-radius:6px;position:relative}.WsDialog .title{padding:10px;display:flex;align-items:center;background:#2d3643;justify-content:space-between;border-top-left-radius:6px;border-top-right-radius:6px}.WsDialog .title .about{display:flex;align-items:center;justify-content:center}.WsDialog .title span{font-size:14px;font-family:Source Han Sans CN;font-weight:500;color:#fefefe;margin-left:5px}.WsDialog .title .close{width:12px;height:12px}.WsDialog .infoBox{padding:20px;font-size:16px;color:#fff}.WsDialog .infoBox .name{margin-top:16px;text-align:center;font-size:16px;color:#fff}.WsDialog .infoBox .ver{font-size:16px;text-align:center;margin-top:12px;color:#fff}.WsDialog .infoBox .com{text-align:center;font-size:14px;margin-top:40px}.btnBox{position:absolute;width:100%;bottom:0;padding:10px;justify-content:space-between}.btnBox,.btnInner{display:flex}.button{display:inline-block;line-height:1;white-space:nowrap;cursor:pointer;background:#171a1f;border:1px solid #43afff;color:#43afff;-webkit-appearance:none;text-align:center;box-sizing:border-box;outline:none;margin:0 5px;transition:.1s;font-weight:500;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;padding:8px 12px;font-size:14px;border-radius:4px}.button:hover{background:#47608b}.button:active,.button:hover{border:1px solid #43afff;color:#43afff}.button:active{background:#223148}
.mask-thickness{width:100%;height:100%;position:fixed;top:0;left:0;background:#000;background-color:hsla(0,0%,100%,0);z-index:2000;color:#ff4309;display:flex;align-items:center;justify-content:center}.SlabThicknessDialog{width:340px;background:#171a1f;border-radius:6px;position:relative;-webkit-user-select:none;user-select:none}.SlabThicknessDialog .title{padding:10px;display:flex;align-items:center;background:#2d3643;justify-content:space-between;border-top-left-radius:6px;border-top-right-radius:6px}.SlabThicknessDialog .title .about{display:flex;align-items:center;justify-content:center}.SlabThicknessDialog .title span{font-size:14px;font-family:Source Han Sans CN;font-weight:500;color:#fefefe;margin-left:5px}.SlabThicknessDialog .title .close{width:12px;height:12px}.SlabThicknessDialog .infoBox{padding:20px;font-size:16px;color:#fff;display:flex;flex-wrap:wrap}.label-button{-webkit-user-select:none;user-select:none}.button:hover{background:#47608b}.button:active,.button:hover{border:1px solid #43afff;color:#43afff}.button:active{background:#223148}.icon-houdu{color:#9eb8cc}.icon-guanbi{font-size:12px;cursor:pointer}.SlabThicknessDialog .infoBox .label-button{width:55px;border:1px solid #475c7e;border-radius:2px;font-size:12px;font-family:Source Han Sans CN;font-weight:400;color:#accdf7;line-height:24px;display:flex;align-items:center;justify-content:center;margin:0 5px 5px 0;background-color:unset;cursor:pointer}.SlabThicknessDialog .infoBox .label-button:hover{color:#fff}.SlabThicknessDialog .infoBox .label-button:active{background:#43afff;border:1px solid #43afff;color:#fff}
.vtk-viewport-handler svg{pointer-events:none}
.imageViewerLoadingIndicator{color:#91b9cd}.loadingIndicator{background-color:transparent;font-size:8px;height:20%;overflow:hidden;position:absolute;top:0;width:100%;z-index:1;pointer-events:none}
.dicom-tag-browser-table{margin-right:auto;margin-left:auto}.dicom-tag-browser-table-wrapper{height:500px;overflow-y:scroll}.dicom-tag-browser-table tr{padding-left:10px;padding-right:10px;color:var(--table-text-primary-color);border-top:1px solid #ddd;white-space:nowrap}.dicom-tag-browser-content{overflow:hidden;width:100%;padding-bottom:50px}.dicom-tag-browser-instance-range .range{height:20px}.dicom-tag-browser-instance-range{padding:0 0 20px}.dicom-tag-browser-table td.dicom-tag-browser-table-center{text-align:center}.dicom-tag-browser-table th{padding-left:10px;padding-right:10px;text-align:center;color:var(--active-color)}.dicom-tag-browser-table th.dicom-tag-browser-table-left{text-align:left}
.dcmseg-segmentation-item{display:flex;justify-content:start;margin:0;width:100%}.dcmseg-segmentation-item .segmentation-meta{display:flex;flex-direction:column;flex-grow:1;overflow:hidden}.dcmseg-segmentation-item .segmentation-meta-title{text-overflow:ellipsis;overflow:hidden;white-space:nowrap;color:#fff;max-width:calc(100% - 30px)}.dcmseg-segmentation-item .segmentation-meta-description{font-size:12px;color:var(--text-secondary-color)}

/*# sourceMappingURL=app.fc490725bd36fc0c158c.css.map*/