﻿.nova-web-tab-container {
  height: 25px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  background-color: #cfd6e5;
  background-color: var(--bgColorContent);
  min-width: 200px;
  color: #000;
  justify-content: space-between;
  max-width: 40%;
}
.nova-web-tab-container .nova-web-tab-loading-spinner-container {
  width: 30px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nova-web-tab-container .nova-web-tab-loading-spinner-container .nova-web-tab-loading-spinner {
  display: block;
  padding: 1px;
  border: 3px solid var(--fcHeaderFooter);
  border-radius: 50%;
  border-top: 3px solid var(--borderColorHeaderFooter);
  width: 7px;
  height: 7px;
  animation: spin 1s linear infinite;
  float: left;
}
.nova-web-tab-container .nova-web-tab-text-container {
  overflow: hidden;
}
.nova-web-tab-container .nova-web-tab-text-container .nova-web-tab-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nova-web-tab-container .nova-web-tab-change-indicator-container {
  width: 30px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}