.no_border {
  border:none !important;
}
.fieldWithErrors {
  padding: 2px;
  background-color: red;
  display: table;
}
.W { /*wrap possible overflow text in data tables*/
  position:relative;
  display:block;
  width:auto;
  margin-right:11px;
  overflow:hidden;
  background:transparent;
  white-space:nowrap;
  text-overflow:ellipsis;
  -o-text-overflow: ellipsis;
}

.W a{
  text-decoration: none;

}
.fixed {
  table-layout:fixed;
}
.center {
  text-align:center;
}

.designer {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.drop_shadow {
  -webkit-box-shadow: 0 3px 5px rgba(70, 70, 70, 0.8);
  -moz-box-shadow: 0 3px 5px rgba(70, 70, 70, 0.8);
  box-shadow: 0 3px 5px rgba(70, 70, 70, 0.8);
  /* There are ways to do this in IE. It doesn't look good enough, so leaving it out. */
}
.user {
  font-weight:bold;
}

.workflows_list,
.processes_list {
  width:100%;
}


.workflows_list th,
.workflows_list td,
.processes_list th,
.processes_list td {
  padding:5px;
}
.workflows_list th
.processes_list th {
  background: #808080 ; /* Grey */
  color: #ffffff; /* White */
  line-height:2;
  font-family: IBM Plex Sans, sans-serif;
  text-align:left;
  white-space:nowrap;
}

.button_toolbar {
  padding:20px 0px 15px 12px;
}

.center_button_toolbar {
  margin-top:20px;
  margin-bottom:12px;
  padding-left:30%;
}

.button_toolbar > * ,
.center_button_toolbar > * {
  margin-left:5px;
}

.button_toolbar a:focus,
.center_button_toolbar a:focus {
  outline: none;
}

.button_toolbar a:focus-visible,
.center_button_toolbar a:focus-visible {
  outline: 2px solid #0f62fe;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(15, 98, 254, 0.3);
  border-radius: 4px;
}

.button_toolbar button:focus,
.center_button_toolbar button:focus,
button.button:focus {
  outline: none;
}

.button_toolbar button:focus-visible,
.center_button_toolbar button:focus-visible,
button.button:focus-visible,
a.button:focus-visible,
input.button:focus-visible {
  outline: 2px solid #0f62fe !important;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(15, 98, 254, 0.3);
  border-radius: 4px;
}

select:focus {
  outline: none;
}

select:focus-visible {
  outline: 2px solid #0f62fe;
  outline-offset: 2px;
}

.current {
  margin:0 12px 0 0;
  color:#eee;
  display:inline-block;
  border:1px solid #C3C3C3;
  border-bottom-color:#C8C8C8;
  width:auto;
  background-image: -moz-linear-gradient(top, #fcfcfc, #898989);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fcfcfc), to(#898989));
  border-radius:2px;
  -webkit-border-radius:2px;
  -moz-border-radius:2px;
  padding:3px 8px;
  text-decoration:none;
  font: normal 93% IBM Plex Sans, sans-serif;
  letter-spacing:1px;
  /*kill text selection*/
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.button_group {
  margin-right:12px;
  display:inline-block;
}

input[type="text"] {
  border: 1px solid #adbfc4;
  border-radius: 2px;
  color: #605f5c;
}
input[type="password"] {
  border: 1px solid #adbfc4;
  border-radius: 2px;
  color: #605f5c;
}
input[type="textarea"] {
  border: 1px solid #adbfc4;
  border-radius: 2px;
  color: #605f5c;
}

textarea {
  border: 1px solid #adbfc4;
  border-radius: 2px;
  color: #605f5c;
  resize: both !important;
  overflow: auto !important;
}

button.button, input.button, a.button {
  margin:0 12px 0 0;
  color:#605f5c;
  cursor:pointer;
  display:inline-block;
  border:1px solid #adbfc4;
  width:auto;
  background-color: transparent;
  min-width: 60px;
  -webkit-border-radius:4px;
  -moz-border-radius:4px;
  border-radius:4px;
  padding-bottom: 3px;
  padding-top: 3px;
  padding-right: 8px;
  padding-left: 8px;
  text-align: center;
  text-decoration:none;
  font: normal 93% IBM Plex Sans, sans-serif;
  letter-spacing:1px;
  /*kill text selection*/
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

input.button:hover, a.button:hover, button.button:hover,
a.button_selected {
  color:#000000;
  background-color: #d9d9d9;/* this is light grey*/
}
.button_group .button {
  margin-right:0;
}
.button_group .button_selected {
  cursor: default;
  color: #f2f2f2;
  background-image: -moz-linear-gradient(top, #797979, #acacac);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#797979), to(#acacac));
}
.button_group a.button_selected:hover {
  color: #f2f2f2;
  background-image: -moz-linear-gradient(top, #797979, #acacac);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#797979), to(#acacac));
}
a.disabled {
  border:1px solid #d3d3d3;
  border-bottom-color:#d8d8d8;
  cursor:default;
  color:#888;
  background-image: -moz-linear-gradient(top, #f5f5f5, #e5e5e5);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e5e5e5));
}
a.disabled:hover {
  color:#888;
}


.initial { background-color: #DDDDDD; color:#000000 }
.normal { background-color: #f7f7f7 }
.highlight { background-color: #fff; cursor: default; }

.selected_list_item {
  background-color: #f1f6f7;
  font-family: IBM Plex Sans;
  font-weight: bold;
  color: #004056;
}
/*Statuses*/
.created,
.in_progress,
.running,
.paused,
.failed,
.error,
.complete,
.not_running {
  color:#333;
  padding:2px 6px;
  margin-right:12px;
}
.created {
  background:#3d70b2;
  color:#ffffff;
}
.in_progress {
  background:#3d70b2;
  color:#ffffff;
}
.running {
  background:#3d70b2;
  color:#ffffff;
}
.complete {
  background:#0f7a33;
  color:#ffffff;
}
.not_running {
  background:#efefef;
}
.paused {
  background: #777777;
  color:#ffffff;
}
.failed {
  background:#ffcf01;
}
.error {
  background:#d32f2f;
  color:#ffffff;
}
.green,
.red,
.yellow,
.grey,
.white {
  width:8.5em;
  /*padding:0 1em*/
}
.green {
  background:#d2f1d2;
  border:1px solid #81E281;
  background-position:6px 10px;
  background-repeat:no-repeat;
}
.red {
  background:#f6d2d2;
  border:1px solid #d57070;
  background-position:6px 10px;
  background-repeat:no-repeat;
}
.yellow {
  background:#faf9c2;
  border:1px solid #8e8242;
  background-position:6px 10px;
  background-repeat:no-repeat;
}
.grey {
  background:#efefef;
  border:1px solid #aeaeae;
  background-position:6px 10px;
  background-repeat:no-repeat;
}
.white {
  /*background:#ffffff;*/
  border:1px solid #efefef;
  background-position:6px 10px;
  background-repeat:no-repeat;
}


/*Work order browser*/

.cursor_resize {
  cursor:ns-resize;
}
.border {
  border:1px solid #ccc;
}
.wrap_all {
  position:relative;
  width:100%;
  height:600px;
}
.wrap_packages {
  position:relative;
  height:100%;
}
.wrap_packages *:focus {
  outline:none;
  outline-offset: -1px;
}
.work_order_list {
  position:absolute;
  top:0;
  width:34.5%;
  height:100%;/*container must have a height for this to work*/
  overflow:auto;
  background:#fff;
}
.work_order_list:focus,
.work_order_viewer:focus {
  outline:1px dotted gray;
}

.work_step_inputs {
  width:95%;
  padding:10px;
}

.work_step_outputs {
  width:95%;
  padding:10px;
}


.workflows_list .step_status_in_progress td{
  background: none repeat scroll 0 0 #D9F7D7;
}

.workflows_list .step_status_complete td{
  background: none repeat scroll 0 0 #fafafa;
}

.workflows_list .step_status_error td{
  background: none repeat scroll 0 0 #FF6B6B;
}

.workflows_list .step_status_failed td{
  background: none repeat scroll 0 0 #F7D7D7;
}

.wrap_widget_container {
  padding:0;
}
.list_preview_divider {
  position:absolute;
  background-image: url(/aspera/orchestrator/assets/split_gripper_h-f20676c2980c0ee4f0383f9536dfe736124388c42fe4fc265c4958705809df17.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: #ffffff;
  left: 34.5%;
  height: 100%;
  width: 6px;
  z-index: 2000;
  border-left: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
}
.list_preview_divider:hover {
  background-color: #e5e7eb;
  -moz-transition: background-color .5s linear;
  -webkit-transition: background-color .5s linear;
  transition: background-color .5s linear .1;

  cursor:col-resize;
  cursor:ew-resize;
}
.work_order_viewer {
  position:absolute;
  height:100%;
  right:0;
  left:calc(34.5% + 8px);
  width:calc(65.5% - 8px);
  overflow:auto;
  padding:0;
  background:#fff;
}
.work_order_viewer h1 {
  padding:0 16px 8px 16px;
}
.work_order_viewer .workflows_list th,
.work_order_viewer .workflows_list td {
  padding-left:16px;
  vertical-align:middle;
}

.wrap_preview img ,
.work_order_viewer .workflows_list td img {
  width: 25px;
  heigth: 25px;
  vertical-align:middle;
}
.work_order_viewer .workflows_list th th,
.work_order_viewer .workflows_list td td {
  padding-left:0;
}

/*Item list*/
.widget_container {
  height:100%;
  padding-bottom:5px;
  overflow-y:auto;
  overflow-x:hidden;
}
.widget {
  width:100%;
  position:relative;
  height:64px;
  overflow:hidden;
  border-top:1px solid #fafafa;
  border-bottom:1px solid #eaeaea;
  color:#444;
  background: #f1f6f7 url(/aspera/orchestrator/assets/drill-4f0d7ab1f58bdf1d8698cca8abbbfedfe2fea6a47aeb3e80127de683f6446b56.png) 100% 50% no-repeat;
  
  /* text-shadow: #fdfdfd 0 1px; */
}
.widget:hover {
  cursor:pointer;
  background-color:rgba(61, 112, 178, 0.15);
  /*  background-color:#fff;
     -moz-transition: background-color .5s linear;
     -webkit-transition: background-color .5s linear;
     transition: background-color .5s linear;*/
  
  box-shadow: 0 0 5px #aaa; /*h-offset, v-offset, blur, color*/
  -moz-box-shadow: 0 0 5px #aaa;
  -webkit-box-shadow: 0 0 5px #aaa;
  -moz-transition: -moz-box-shadow .5s linear;
  -webkit-transition: -webkit-box-shadow .5s linear;
  transition: box-shadow .5s linear;
  z-index:900;
}
.selected_widget,
.selected_widget:hover {
  background-color:rgba(61, 112, 178, 0.15);
}
.widget ul,
.widget li {
  line-height:1;
  font-size:11px;
  display:block;
  white-space:nowrap;
}
.widget ul {
  height:100%;
  background-image: url(/aspera/orchestrator/assets/widget_gradient_top-687908577fafe45533123a22f003d1310b1016c8aafa25bb1fdf5aa01f01cd8e.png);
  background-position:0 0;
  background-repeat: repeat-x;

}
.widget li {
  padding:0 0 0 16px;
  margin-right:24px;
  overflow: hidden;
  position: relative;
  text-overflow: ellipsis;
}
.widget .workorder {
  line-height:2.7em;
  font-size:14px;
  font-family: IBM Plex Sans, sans-serif;
}
.repeating .status img {
  display:block;
  float:left;
  padding-right:10px;
}
.repeating .status span {
  float:left;
  line-height:12px;
}
.widget .workorder span {
  color:#333;
  margin-left:.8em;
  font-size:92%;
  font-weight:normal;
}
.widget .status {
  font-size:92%;
  line-height:2;
}
.widget .tools {
  line-height:1.6;
}

.tools a {
  margin-right:.5em;
  font-size:11px;
  color:#555;
}

/*Preview Pane*/
.link_active {
  cursor: pointer;
}

.link_inactive {
  cursor: not-allowed;
}

/* hasher styling */
.hasher_row {
  padding-left: 75px;
  margin-top: 5px;
}

.arrayer_row {
  margin-top: 5px;
  padding-left: 150px;
}

/*Custom form styles. Try to limit to custom wrapper width and label width.  Place the custom class where .wrap_form exists. */
.new_workflow_definition {
  width:740px;
  margin:0 auto;
}
.new_workflow_definition label {
  width:230px;
}
.work_order_headers {
  margin:14px 0 0 0;
  background:#f7f7f7;
  border-bottom:1px solid #ccc;
}
.work_order_header {
  font-size:11px;
  line-height:1.8;
  margin:4px;
  margin-left:0;
}
.work_order_header strong {
  color:#555;
}
.preview_toolbar {
  position:relative;
  border-top:1px solid #fafafa;
  border-bottom:1px solid #ccc;
  padding:8px 16px;
  /* background:#f1f6f7; */
}

.processes_list tr:nth-child(even) > td {
  padding:0.7em 5px;
  border-bottom:1px solid #ddd;
  border-top:1px solid #fff;
  background: white
}

.processes_list tr:nth-child(odd) > td {
  padding:0.7em 5px;
  border-bottom:1px solid #ddd;
  border-top:1px solid #fff;
  background: #f2f2f2
}

.reset_icon{
  width:18px !important;
  float: right;
  opacity:0.70;
}
.active_trigger {
  background-color:transparent;
}


.hasher input[type="text"] {
  width:230px;
}
.arrayer input[type="text"] {
  width:230px;
}

.work_order_header_list li {
  display:block;
  width:49%;
  float:left;
  position:relative;
}
.work_order_header_list li+li {
  width:50%;
}
.help_file {
  padding:16px;
}
.help_file h1 {
  line-height:1.6;
  font-size:22px;
}
.help_file h2 {
  font-size:18px;
  padding-top:12px;
  line-height:2;
}
.help_file h3 {
  padding-top:8px;
  line-height:2;
  text-decoration:underline;
}

.help_file li {
  padding:8px 0 0 12px;
  line-height:1.4;
}

.help_file p {
  line-height:1.4;
}

#login_credentials .fieldWithErrors {
  display: inline;
}

#login_credentials .fieldWithErrors {
  background: none !important;
}

#login_credentials .fieldWithErrors input {
  border: 2px solid #ff0000;
}

.display_menu {
  display: block !important;
}

tr.normal:hover {
  background-color: #fff;
  cursor: pointer;
}

.remote_node_list li {
  background:#e7e7e7;
  height:48px;
}

.designer_title_bar {
  color: black !important;
  background: #808080 !important;
}

/* menu_image start */
.menu_image {
  height: 25px;
  width: 25px;
}

a:focus .menu_image,
a:has(.menu_image):focus {
  outline: none;
}

a:focus-visible .menu_image,
a:has(.menu_image):focus-visible {
  outline: 2px solid #0f62fe;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(15, 98, 254, 0.3);
  border-radius: 4px;
}

/* menu_image end */

/* Grid Menu - Start */

.grid_menu ul li a {
  padding-right: 20px !important;
}

.grid_menu {
  font-size: 10px;
  position: absolute;
  height: auto!important;
  width: 135px;
  background: rgba(35, 31, 32, 0.75) none repeat scroll 0 0;
  color: #ffffff;
  z-index: 2000;
}

.grid_menu ul {
  margin: 0px;
  padding: 0px;
}

.grid_menu ul li a {
  padding: 0px;
  padding-left: 10px;
  padding-top: 3px;
  padding-bottom: 3px;
  margin: 0 0 0 0;
  font-size: 12px;
  display: block;
  text-align: left;
  text-decoration:none;
  color: #fff;
}

.grid_menu ul li a:hover {
  background: #3d70b2;
}

.grid_menu ul li a:focus {
  outline: none;
}

.grid_menu ul li a:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: -2px;
  background: #3d70b2;
}

/* Grid Menu - End */

.hidden {
  display: none;
}

.search_div {
  position: relative;
}

.search_input {
  width: 230px;
  border-radius: 25px !important;
  box-shadow: none;
  border: 1px solid #adbfc4;
  padding: 5px 45px 5px 15px;
  color: #605f5c;
  background-color: transparent;
}

.search_div::after {
  background-image: url(/aspera/orchestrator/assets/svg/search-67ed63a8d07d1b0c1cac16f75d2e542ffcaac4fef61a47c444d50838d0d7eb3d.svg);
  content: "";
  position: absolute;
  right: 10px;
  top: 7px;
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  display: inline-block;
  background-size: contain;
}

/* batch actions panel start */

.batch_action {
  background-color: #3d70b2;
  height:40px;
  margin:10px 0px 0 5px;
  display:none;
  width: 100%;
}

/* batch actions panel end */

/* Page title start */
.page_title {
  font-size: 170%;
  font-family: IBM Plex Sans, sans-serif;
  line-height: 1.4;
  padding: 2px;
  color: #605f5c;
  background-color: white;
  border-bottom: solid 1px;
}
/* Page title end */


.text_ellipsis {
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 175px;
  display: block;
  overflow: hidden;
}

/****/

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 2px 20px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.btn.focus {
  color: #333333;
  text-decoration: none;
}
.btn:active,
.btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}
a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}
.btn-default {
  color: #333333;
  background-color: #ffffff;
  border-color: #3d70b2;
}
.btn-default:focus,
.btn-default.focus {
  color: #333333;
  background-color: #e6e6e6;
  border-color: #005370;
}
.btn-default:hover {
  color: #333333;
  background-color: #e6e6e6;
  border-color: #0084b2;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333333;
  background-color: #e6e6e6;
  border-color: #0084b2;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #333333;
  background-color: #d4d4d4;
  border-color: #005370;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus {
  background-color: #ffffff;
  border-color: #3d70b2;
}
.btn-default .badge {
  color: #ffffff;
  background-color: #333333;
}
.btn-primary {
  color: rgb(61, 112, 178);
  background-color: #ffffff;
  border-color: #009fd6;
}
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff;
  background-color: rgb(61, 112, 178);
  border-color: #004056;
}
.btn-primary:hover {
  color: #ffffff;
  background-color: rgb(61, 112, 178);
  border-color: #007198;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #ffffff;
  background-color: rgb(61, 112, 178);
  border-color: #007198;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #ffffff;
  background-color: rgb(61, 112, 178);
  border-color: #004056;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none;
  color: #ffffff;
}
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
  background-color: white;
  color: rgb(61, 112, 178);
  border-color: #2e6da4;
}
.btn-primary .badge {
  color: #337ab7;
  background-color: #3d70b2;
}
.btn-success {
  color: #ffffff !important;
  background-color: #5cb85c !important;
  border-color: #4cae4c !important;
}
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #449d44 !important;
  border-color: #255625 !important;
}
.btn-success:hover {
  color: #ffffff !important;
  background-color: #449d44 !important;
  border-color: #398439 !important;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #ffffff !important;
  background-color: #449d44 !important;
  border-color: #398439 !important;
}
.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
  color: #ffffff !important;
  background-color: #398439 !important;
  border-color: #255625 !important;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  background-image: none;
}
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus {
  background-color: #5cb85c !important;
  border-color: #4cae4c !important;
}
.btn-success .badge {
  color: #5cb85c !important;
  background-color: #ffffff !important;
}
.btn-info {
  color: #ffffff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info:focus,
.btn-info.focus {
  color: #ffffff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}
.btn-info:hover {
  color: #ffffff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #ffffff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
  color: #ffffff;
  background-color: #269abc;
  border-color: #1b6d85;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  background-image: none;
}
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info .badge {
  color: #5bc0de;
  background-color: #ffffff;
}
.btn-warning {
  color: #ffffff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff;
  background-color: #ec971f;
  border-color: #985f0d;
}
.btn-warning:hover {
  color: #ffffff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #ffffff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
  color: #ffffff;
  background-color: #d58512;
  border-color: #985f0d;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  background-image: none;
}
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #ffffff;
}
.btn-danger {
  color: #ffffff !important;
  background-color: #d9534f !important;
  border-color: #d43f3a !important;
}
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff;
  background-color: #c9302c;
  border-color: #761c19;
}
.btn-danger:hover {
  color: #ffffff !important;
  background-color: #c9302c !important;
  border-color: #ac2925 !important;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #ffffff !important;
  background-color: #c9302c !important;
  border-color: #ac2925 !important;
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
  color: #ffffff;
  background-color: #ac2925;
  border-color: #761c19;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  background-image: none;
}
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #ffffff;
}
.btn-link {
  color: #337ab7;
  font-weight: normal;
  border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-xs,
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  /* vertical-align: middle; */
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
.btn-toolbar {
  margin-left: -5px;
}
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group > .btn-group {
  float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}
.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn .caret {
  margin-left: 0;
}
.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}
[data-bs-toggle="buttons"] > .btn input[type="radio"],
[data-bs-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-bs-toggle="buttons"] > .btn input[type="checkbox"],
[data-bs-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  background-color: #777777;
  border-radius: 10px;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-xs .badge,
.btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
.list-group-item.active > .badge {
  color: #337ab7;
  background-color: #ffffff;
}
.list-group-item > .badge {
  float: right;
}
.list-group-item > .badge + .badge {
  margin-right: 5px;
}

.basic_container{
  margin-top:25px;
  padding-left: 15px;
  padding-right: 15px;
}


/* Grid system start */
.container {
  margin-right: auto;
  margin-left: auto;
  margin-top:25px;
  padding-left: 15px;
  padding-right: 15px;
}


@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.fluid-margin {
  margin-top:10px;
}
.no-margin {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

/* Grid system end*/
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after {
  content: " ";
  display: table;
}
.container:after,
.container-fluid:after,
.row:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.hide {
  display: none !important;
}
.dropdown-menu.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}

.clear_me {
  clear: both;
}

/* Label badges start */
.btlabel {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}
a.btlabel:hover,
a.btlabel:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
.btlabel:empty {
  display: none;
}
.btn .btlabel {
  position: relative;
  top: -1px;
}
.label-default {
  background-color: #595959;
}
.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #5e5e5e;
}
.label-success {
  background-color: #0f7a33;
}
.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #117e37;
}
.label-warning {
  background-color: #ffcf01;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #cda600;
}
.label-danger {
  background-color: #d32f2f;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #ea2212;
}

/* Label badges end */

.strike {
  display: block;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
}

.strike > span {
  position: relative;
  display: inline-block;
}

.strike > span:before,
.strike > span:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 9999px;
  height: 1px;
  background: black;
}

.strike > span:before {
  right: 100%;
  margin-right: 15px;
}

.strike > span:after {
  left: 100%;
  margin-left: 15px;
}

.display_inline {
  display: inline !important;
}

.float_bottom {
  bottom: 0;
  vertical-align: bottom;
  display: inline-block !important;
}

/* Card  - Start */

.card_display {
  border: 1px solid #adbfc4;
  border-radius: 10px;
  background-color: #f1f6f7;
  padding: 20px 20px;
  text-overflow: contain;
  white-space: normal;
  color: #605f5c;
  font-size: 14px;
  width: 90%;
}


/* Card - End */

span.row_label {
  margin-left: 10px;
  border-left: 2px solid #004056;
  padding-left: 15px;
}

span.row_title {
  color: #004056;
  line-height: 1.5;
  /* text-align: left; */
  /* white-space: nowrap; */
  font-size: 16px;
}

span.green_background {
  background: #17ab4b;
  color: #ffffff;
  border-radius: 4px;
}

span.red_background {
  background: #f04c3f;
  color: #ffffff;
  border-radius: 4px;
}

.new_pre {
  background-color: rgba(35, 31, 32, 0.8) !important;
  color: #ffffff !important;
}

input.button_size_text {
  line-height: 24px;
  border-radius: 4px;
}

.note {
  height: 130px;
  transition: height 300ms;
}

.note .collapsed {
  height: 18px;
}


ul.remote_node_list > li {
  border-style: ridge
}

ul.remote_node_list > li > div {
  cursor: pointer
}

ul.remote_node_list > li > div:focus {
  font-weight: bold;
}

button:disabled, input.button:disabled {
  background-color: #e0e0e0;
}

.loading::before {
  margin-left: 50%;
  display: block;
  margin-top: 5%;
  height: 50px;
  background-repeat: no-repeat;
  content: url(/aspera/orchestrator/assets/pane_loading_blue-ff6651dd8f05727f6b52f4b4cf0a10da9e80b3f0a471bf2d223c05551ba77213.gif);
}

.category_name {
  background-color: #f1f6f7;
  border: 1px solid #adbfc4;
  border-radius: 2px;
  color: #605f5c;
  margin-top: 10px;
  padding: 6px 0 6px 12px;
}
