body{
  background: #e5e7f5;
  padding-top: 80px;
}
header {
  position: fixed;
  top: 0;left: 0;
  height: 80px;
  background: white;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
  z-index: 1000;
}
img{
  max-width: 100%;
  max-height: 100%;
}
figcaption {
  color: #666;
  font-style: italic;
}

#logo-wrapper{
  display: flex;
  align-items: center;
  height: 100%
}
#logo-wrapper img{
  height: 80%;
  margin-right: 10px;
}


[option]{
  cursor: pointer;
}

#content{
  max-width: 900px;
  margin: auto;
  margin-top: 20px;
}

#login-form{
  max-width: 500px;
  margin: auto;
}

.card-header,
.card-footer{
  display: flex;
  align-items: center;
}
.card-buttons{
  flex-shrink: 0;
  margin-left: auto;
}
.card-header h5{
  margin: 0;
}
.card-header .breadcrumb{
  padding: 0;
  margin: 0;
  margin-left: 15px;
  margin-top: 3px;
  background: none;
}

.modal{
  border: 1px solid rgba(0,0,0,.125)
}
.modal .card{
  border: 0;
}


.label-check {
  background: #eee;
  border-radius: 5px;
  padding: 3px 10px;
  border: 1px solid #999;
  cursor: pointer;
}
.label-check input{
  cursor: pointer;
}


.tds{
  width: 1px;
}
.list-options{
  display: flex;
  flex-direction: column;
  /* align-items: flex-start; */
  gap: 2px;
}
.list-option {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}
.list-option:hover{
  color: white;
  text-decoration: none;
  opacity: 0.8;
}
.list-option > i{
  margin-right: 8px;
}

.fa-grip-lines{
  cursor: grab;
}
