@import url(https://fonts.googleapis.com/css2?family=Montserrat&display=swap);
.login {
  background: url("/images/bg.jpg") no-repeat center center fixed;
}
.login__form {
  padding-top: 75px;
  border-radius: 5px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  position: fixed;
  top: 49%;
  left: 49%;
  margin-top: -375px;
  margin-left: -225px;
  width: 450px;
  height: 750px;
}
.login__form__header {
  padding-top: 20px;
  padding-bottom: 20px;
}
.login__form__inputs {
  padding: 30px 70px 20px;
}
.login__form__btnLogin {
  background: rgba(255, 255, 255, 0);
  width: 33%;
}
.login__form__btnLogin:hover {
  border: 1px solid red;
  color: red;
}
.login input, .login select {
  padding: 12px 20px;
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: red;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
* {
  font-family: "Montserrat", sans-serif;
}

p {
  font-size: 16px;
}

.error {
  color: red;
  padding-top: 20px;
}

main {
  margin: 10px;
  z-index: -1;
}

.headbar {
  position: fixed;
  background: black;
  height: 50px;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}
.headbar__icon {
  position: relative;
  top: 25%;
  height: 30px;
  padding-left: 10px;
}
.headbar__icon:hover {
  cursor: pointer;
}
.headbar__userfield {
  position: absolute;
  top: 0;
  right: 0;
  padding-right: 20px;
  height: 50px;
  display: flex;
  align-items: center;
}
.headbar__userfield:hover {
  cursor: pointer;
}
.headbar__userfield__userIcon {
  height: 40px;
  width: 50px;
  padding-right: 10px;
}
.headbar__userfield__username {
  padding-top: 15px;
  display: inline;
  color: white;
}
.headbar__userinfo {
  border-radius: 0 0 5px 5px;
  margin-top: 50px;
  margin-right: 5px;
  float: right;
  text-align: center;
  color: black;
  background: #eeeeee;
  box-shadow: 1px 2px 4px #888888;
}
.headbar__userinfo__userIcon {
  height: 75px;
  width: 75px;
  margin-top: 10px;
}
.headbar__userinfo__username {
  margin: 5px;
  padding-left: 20px;
  padding-right: 20px;
}
.headbar__userinfo__logout {
  background: cornflowerblue;
  float: right;
  width: auto;
  color: black;
  margin: 10px;
  font-size: 75%;
  padding: 5px;
}
.headbar__userinfo__logout:hover {
  border: 1px solid black;
}

.sidebar {
  position: fixed;
  background: black;
  top: 50px;
  left: 0;
  height: 100%;
  width: 50px;
  text-align: center;
}
.sidebar__icon {
  width: 25px;
  height: 25px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.sidebar__icon:hover {
  cursor: pointer;
}

main {
  position: absolute;
  top: 50px;
  left: 50px;
}

.btnDelete {
  background: #fd1f4a;
}
.btnDelete:hover {
  background: #ff4569;
}

.btnAdd {
  background: #7CB342;
}
.btnAdd:hover {
  background: #9CCC65;
}

.btnToCsv {
  background: #9dbaee;
}
.btnToCsv:hover {
  background: #afc2ec;
}

.cclist__modal {
  display: inline-block;
}
.cclist__modal__labels {
  margin: 0;
}
.cclist__modal__pickers {
  padding-left: 0;
}
.cclist__modal__btns {
  padding-top: 20px;
  display: inline-block;
  position: relative;
  right: -185px;
}

#loader_row {
  text-align: center;
  padding: 0;
}

.companyconverter {
  width: 100%;
}
.companyconverter input, .companyconverter select {
  padding: 8px 8px;
}
.companyconverter label {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.companyconverter__row {
  float: right;
  margin-right: 5px;
}

.filter_tabs {
  width: 130%;
  margin-bottom: 0;
}

.ccfilter {
  margin-top: 0;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  padding: 10px;
}
.ccfilter td {
  padding: 4px 4px 0;
  text-align: start;
  margin: 0;
}
.ccfilter input {
  margin: 0;
  padding: 2px 2px 2px 8px;
}

.nav-tabs {
  margin-bottom: 0;
}

.btnSave {
  background: cornflowerblue;
}
.btnSave:hover {
  transition: 0.5s;
  background: #afc2ec;
}

.stickyTableHeader {
  position: sticky;
  top: 50px;
}

#ccTable {
  width: -moz-min-content;
  width: min-content;
}

table {
  border-radius: 4px;
  border-collapse: collapse;
  margin: 25px 0;
  min-width: 400px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.01);
  white-space: nowrap;
}

tr {
  border-bottom: 1px solid #dddddd;
}
tr:hover {
  background-color: #f0f0f0;
  cursor: pointer;
}

td {
  padding: 10px;
}

th {
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: left;
  cursor: initial;
}

tr > th {
  background-color: white;
}

input, select {
  width: 100%;
  font-family: "Nunito", sans-serif;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 18px;
  background: none;
}

input[type=submit]:hover {
  transition: 0.5s;
  cursor: pointer;
}

input:focus, select:focus {
  box-shadow: 0 0 5px red;
  border: 1px solid red;
  outline: none;
}

.btnCircle {
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 20px;
  border: 0;
}
.btnCircle__icon {
  padding: 0;
  width: 15px;
  height: 15px;
}
.btnCircle:hover {
  cursor: pointer;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}

.btnIconText {
  text-align: center;
  border-radius: 20px;
  border: 0;
  padding: 10px;
}
.btnIconText__icon {
  width: 15px;
  height: 15px;
  display: inline-block;
}
.btnIconText:hover {
  cursor: pointer;
}

.btnIconText_disabled {
  text-align: center;
  border-radius: 20px;
  border: 0;
  padding: 10px;
  background: #888888;
}
.btnIconText_disabled__icon {
  width: 15px;
  height: 15px;
  display: inline-block;
}

