:root {
  --cloud-tab-bg: var(--page-bg);
}
#azureContent {
  display: none;
}
.cloud-tab-content {
  position: relative;
  margin-top: 91px;
}
.cloud-tabs {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.cloud-tab-container {
  position: fixed;
  left: 220px;
  top: var(--main-toolbar-height);
  right: 0;
  z-index: 2;
  background-color: var(--page-toolbar-bg);
  border-bottom: 1px solid #d9dee3;
}
.cloud-tab {
  position: relative;
  display: block;
  width: 160px;
  height: 48px;
  background: url(../img/aws.svg) no-repeat center;
  background-size: 38px;
  transition: all 0.2s;
}
.cloud-tab span {
  position: absolute;
  right: 6px;
  top: 2px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  color: #fff;
  background-color: var(--skeldus-black);
  opacity: 0.7;
  border-radius: 50%;
  font-size: 11px;
}
.cloud-tab span.restricted-badge {
  background-color: #9f0010;
}
.cloud-tab span.confidential-badge {
  background-color: #e56810;
}
.cloud-tab:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.cloud-tab.selected {
  background-color: var(--cloud-tab-bg);
  z-index: 1;
}
.cloud-tab.selected:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 4px;
  background-color: var(--cloud-tab-bg);
}
#tabAWS {
  background-position: center bottom 8px;
}
#tabGitHub {
  background-image: url(../img/GitHub-Emblem.png);
  background-size: 70px;
  background-position: center bottom 3px;
}
#tabAzure {
  background-image: url(../img/Microsoft_Azure_Logo.png);
  background-size: 70px;
  background-position: center bottom 14px;
}
.cloud-tab-header {
  position: relative;
  background-color: var(--cloud-tab-bg);
  padding-top: 3px;
}
#accountProp {
  position: absolute;
  bottom: 0;
  height: 44px;
  right: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-30px);
  transition: 0.3s all;
  cursor: pointer;
  display: flex;
  gap: 30px;
  align-items: center;
}
#accountProp .tag__owner,
#accountProp .cloud-classification {
  transition: 0.2s opacity;
  opacity: 0.7;
}
#accountProp.show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
#accountProp:hover #btnEditAccountProp,
#accountProp:hover .tag__owner,
#accountProp:hover .cloud-classification {
  opacity: 1;
}
#btnEditAccountProp {
  position: relative;
  left: -15px;
  opacity: 0;
  transition: 0.2s opacity;
}
#defaultClassImg {
  width: 20px;
  float: left;
  position: relative;
  top: 2.5px;
}
#defaultClassLabel {
  height: 24px;
  line-height: 26px;
  margin-left: 30px;
  font-size: 14px;
}
#btnRemoveResource {
  position: absolute;
  right: 15px;
  top: 15px;
  margin: 0;
}
#btnSelectOwner,
#btnSelectClassification,
#btnSelectClassification2,
#btnSelectDefaultOwner,
#btnSelectDefaultClass {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
#resourceProperties h2,
#resourceProperties2 h2,
#resourceProperties3 h2 {
  position: relative;
  top: -12px;
}
#resourceProperties h2 img,
#resourceProperties2 h2 img,
#resourceProperties3 h2 img {
  position: relative;
  top: 7px;
  width: 32px;
  margin-right: 5px;
  border-radius: 4px;
}
#resourceList td img {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
}
#resourceList td.resource-type img {
  width: 24px;
}
.custom-drop-down {
  position: relative;
  left: 16px;
  width: 250px;
  height: 40px;
  transition: 0.2s all;
  overflow: visible;
  cursor: pointer;
}
.custom-drop-down label {
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0 26px 0 12px;
  color: #333;
  pointer-events: none;
  font-size: 0.875rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.custom-drop-down svg {
  position: absolute;
  width: 12px;
  right: 8px;
  top: 15px;
  color: #999;
  pointer-events: none;
}
.custom-drop-down:hover svg,
.custom-drop-down:hover label {
  color: var(--skeldus-red);
}
.custom-drop-down.open .custom-drop-down-list {
  opacity: 1;
  pointer-events: auto;
  transition-duration: 0.25s;
  transform: scale(1, 1) translateY(0);
}
.custom-drop-down.open svg,
.custom-drop-down.open label {
  color: var(--skeldus-red);
}
.custom-drop-down-list {
  position: absolute;
  min-width: 250px;
  background-color: #fff;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.5);
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-top: 1px solid transparent;
  z-index: 8;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95, 1) translateY(-5px);
  transition: 0.1s all;
  z-index: 100;
}
.custom-drop-down-list a {
  display: block;
  position: relative;
  padding: 12px 16px;
  font-size: 90%;
  color: #333;
}
.custom-drop-down-list a:first-child {
  border-bottom: 1px solid #e6e5e6;
}
.custom-drop-down-list a:first-child:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 1px;
  width: 16px;
  background-color: #fff;
}
.custom-drop-down-list a:hover {
  text-decoration: none;
  background-color: #f9f8f9;
}
.custom-drop-down-list.open {
  opacity: 1;
  border-color: var(--skeldus-red);
  pointer-events: auto;
  transition-duration: 0.3s;
  transform: scale(1, 1) translateY(0);
}
#dlgSelectClassification hr {
  display: none;
  border: 0;
  height: 1px;
  margin-top: 16px;
  background-color: #efefef;
}
#dlgSelectClassification .slider {
  margin-top: 10px;
  margin-bottom: 30px;
}
#dlgSelectClassification.show-controls .slider {
  margin-top: 0;
  margin-bottom: 0;
}
#dlgSelectClassification.show-controls #classificationControls {
  display: block;
}
.controls-list-label {
  margin-bottom: 4px;
  color: #111;
  font-size: 0.875em;
  user-select: none;
}
.controls-list {
  padding-top: 4px;
  list-style: disc inside;
  margin-left: 12px;
}
.controls-list li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.85em;
  color: #666;
  user-select: none;
  transition: 0.2s all;
}
.controls-list li.na {
  color: #ccc;
  text-decoration: line-through;
}
#configureClassControls {
  position: absolute;
  left: 24px;
  top: 8px;
  font-size: 13px;
  color: #666;
  user-select: none;
}
#classificationControls {
  display: none;
  background-color: #f8f9f9;
  margin: 18px -24px -6px -24px;
  padding: 10px 24px;
}
