/* src/sweeper/components/filetable/FileTable.less */
.container-row {
  display: flex;
  align-items: center;
}
.title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.title-help-circle {
  margin-left: 5px;
  padding-bottom: 8px;
}
.subtitle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logged-in-status {
  display: flex;
  align-items: center;
}
.grouping-example {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 10px;
}
.grouping-example > .rdg {
  flex: 1;
}
.app {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 56px - 3rem - 20px);
}
.totalGrid {
  overflow-y: scroll !important;
  height: 100%;
}
.name-row {
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: space-between;
}
.main-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 22px;
}
.other-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  transform: translateY(-100%);
}
.primary-btn {
  border: none;
  background-color: #4723d9;
  color: white;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: initial;
}
.primary-btn:hover {
  background-color: #6a4de2;
}
.secondary-btn {
  border: none;
  background-color: white;
  color: #4723d9;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: initial;
  border-width: 2px;
  border: solid #4723d9;
}
.secondary-btn:hover {
  background-color: whitesmoke;
}
.analyze-btn-main {
  border: none;
  background-color: #4723d9;
  color: white;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: initial;
  width: 200px;
  height: 40px;
  border-radius: 16px;
  padding: 10px 0px;
  margin-left: 5px;
  align-self: flex-end;
}
.analyze-btn-main:hover {
  background-color: #6a4de2;
}
.analyze-btn-main-icon {
  display: none;
  color: white;
}
.analyze-btn {
  border: none;
  background-color: #4723d9;
  color: white;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: initial;
  border-radius: 8px;
  margin: 5px;
}
.analyze-btn:hover {
  background-color: #6a4de2;
}
.signout-btn {
  border: none;
  background-color: white;
  color: #4723d9;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: initial;
  border-width: 2px;
  border: solid #4723d9;
  width: 200px;
  height: 40px;
  border-radius: 16px;
}
.signout-btn:hover {
  background-color: whitesmoke;
}
.signin-btn {
  border: none;
  background-color: white;
  color: #4723d9;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: initial;
  border-width: 2px;
  border: solid #4723d9;
  width: 200px;
  height: 40px;
  border-radius: 16px;
  width: auto;
  padding: 5px 10px;
  margin: 20px 0px;
}
.signin-btn:hover {
  background-color: whitesmoke;
}
.subscribe-btn {
  border: none;
  background-color: white;
  color: #4723d9;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: initial;
  border-width: 2px;
  border: solid #4723d9;
  padding: 5px 10px;
  border-radius: 20px;
  margin-left: 10px;
  margin-bottom: 8px;
}
.subscribe-btn:hover {
  background-color: whitesmoke;
}
.feedback-btn {
  border: none;
  background-color: #4723d9;
  color: white;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: initial;
  padding: 5px 10px;
  border-radius: 20px;
  margin-left: 10px;
  margin-bottom: 8px;
}
.feedback-btn:hover {
  background-color: #6a4de2;
}
.cancel-btn {
  border: none;
  background-color: white;
  color: #4723d9;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: initial;
  border-width: 2px;
  border: solid #4723d9;
  border-radius: 16px;
}
.cancel-btn:hover {
  background-color: whitesmoke;
}
@media only screen and (max-width: 1030px) {
  .analyze-btn-main {
    width: 100px;
    font-size: 14px;
  }
  .signout-btn {
    width: 100px;
    font-size: 14px;
  }
  .logged-in-status {
    flex-direction: column;
    font-size: 14px;
  }
  .logged-in-status-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .logged-in-status {
    flex-direction: row;
  }
  .logged-in-status-text {
    width: 100%;
    font-size: 16px;
    text-overflow: ellipsis;
  }
  .subscribe-btn {
    display: none;
  }
  .feedback-btn {
    display: none;
  }
  .signout-btn {
    width: auto;
    font-size: 0px;
  }
  .analyze-btn-main {
    font-size: 0px;
  }
  .analyze-btn-main-icon {
    display: inline;
    width: auto;
  }
}
