@charset "UTF-8";
.button {
  display: inline-block;
  background-color: #3490dc;
  color: white;
  padding: 15px 20px;
  font-size: 0.9rem;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
}
.button:hover {
  background-color: #1166ab;
  cursor: pointer;
  color: white;
  text-decoration: none;
}
.button__onbackground {
  box-shadow: 0px 2px 3px 0px #dfe2e6;
}
.button__upgrade {
  background-color: #f6993f;
}
.button__upgrade:hover {
  background-color: #f47f0e;
}
.button:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.button__cancel {
  box-sizing: border-box;
  text-decoration: none;
  padding: 14px 18px;
  color: gray;
  text-transform: uppercase;
  border: 1px solid #dfe2e6;
  background: none;
}
.button__cancel:hover {
  color: #666666;
  background: none;
  border: 1px solid #666666;
}

.content {
  width: 100%;
  max-width: 1240px;
  margin: auto;
  box-sizing: border-box;
  padding: 0px 20px;
  margin-top: 40px;
}
.content-area {
  display: flex;
  justify-content: space-between;
}
.content h1,
.content h2,
.content h3 {
  margin: 0;
  padding: 0;
  font: inherit;
}
.content--small-header {
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  font-weight: lighter;
  margin-bottom: 40px;
}
.content--row {
  display: flex;
  justify-content: stretch;
}
.content--element {
  flex-grow: 1;
  margin: 0px 10px;
}
.content--element:last-child {
  margin-right: 0;
}
.content--element:first-child {
  margin-left: 0;
}

.content-box {
  /* border: 1px solid $border-color; */
  background: white;
  border-radius: 5px;
  margin-bottom: 3rem;
  box-shadow: 0px 2px 3px 0px #dfe2e6;
  position: relative;
}
.content-box-navigation {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #dfe2e6;
}
.content-box-navigation a {
  color: inherit;
  text-decoration: none;
}
.content-box-navigation a:hover {
  color: inherit;
  text-decoration: none;
}
.content-box-navigation h1,
.content-box-navigation h2,
.content-box-navigation h3 {
  margin: 0;
  padding: 0;
  font: inherit;
  font-weight: bold;
}
.content-box-navigation--title {
  padding: 15px 15px;
}
.content-box-navigation--left {
  padding: 15px 15px;
}
.content-box-navigation--right {
  padding: 15px 15px;
}
.content-box__body--top {
  border-top: 1px solid #dfe2e6;
}
.content-box--body {
  box-sizing: border-box;
}
.content-box--body__padded {
  padding: 15px;
}
.content-box--body__seperated {
  border-bottom: 1px solid #dfe2e6;
}
.content-box--body__top {
  border-top: 1px solid #dfe2e6;
}
.content-box--action-head {
  box-sizing: border-box;
  padding: 15px 15px;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  border-bottom: 1px solid #dfe2e6;
  color: #3f4144;
  display: flex;
  justify-content: space-between;
}
.content-box--action-head h1,
.content-box--action-head h2,
.content-box--action-head h3 {
  margin: 0;
  padding: 0;
  font: inherit;
  font-weight: bold;
}
.content-box--action-head__menu {
  padding-right: 0;
}
.content-box--head {
  box-sizing: border-box;
  padding: 15px 15px;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  border-bottom: 1px solid #dfe2e6;
  color: #3f4144;
}
.content-box--head h1,
.content-box--head h2,
.content-box--head h3 {
  margin: 0;
  padding: 0;
  font: inherit;
  font-weight: bold;
}

.content-table {
  background-color: inherit;
  width: 100%;
  position: relative;
  color: #666666;
}
.content-table__right {
  text-align: right;
}
.content-table__center {
  text-align: center !important;
}
.content-table__context-menu {
  padding-right: 0px !important;
}
.content-table__middle {
  vertical-align: middle !important;
}
.content-table__fit {
  width: 1%;
  white-space: nowrap;
}
.content-table__120 {
  width: 120px;
}
.content-table__100 {
  width: 120px;
}
.content-table__150 {
  width: 150px;
}
.content-table__bold {
  font-weight: bold;
}
.content-table--head th {
  box-sizing: border-box;
  padding: 15px 15px;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: left;
  border-bottom: 1px solid #dfe2e6;
  color: #3f4144;
}
.content-table--body td {
  box-sizing: border-box;
  padding: 10px 15px;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  font-weight: normal;
  border-bottom: 1px solid #dfe2e6;
  vertical-align: top;
}
.content-table--foot td {
  box-sizing: border-box;
  padding: 15px 15px;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  border-bottom: 1px solid #dfe2e6;
  vertical-align: top;
}

.context-menu {
  position: relative;
  display: inline-block;
  text-align: left;
}
.context-menu--trigger {
  display: inline-block;
  cursor: pointer;
  font-weight: bold;
  margin-right: 5px;
  width: 18px;
  height: 1.2em;
  background-image: url("/svg/dots.svg");
  background-size: cover;
}
.context-menu--item {
  display: block;
  border-bottom: 1px solid #dfe2e6;
}
.context-menu--item:last-child {
  border: none;
}
.context-menu--item a {
  display: block;
  padding: 10px 20px;
}
.context-menu--content {
  display: none;
  position: absolute;
  right: 0;
  border: 1px solid #dfe2e6;
  background: white;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.context-menu--content__show {
  display: block;
}

.definition {
  display: flex;
  margin-bottom: 15px;
}
.definition--term {
  flex-grow: 0;
  min-width: 200px;
  text-align: left;
  font-weight: bold;
}
.definition--definition {
  flex-grow: 1;
}

.dot {
  height: 8px;
  width: 8px;
  background-color: black;
  border-radius: 50%;
  margin-right: 5px;
  display: inline-block;
}
.dot-green {
  background-color: #36f011;
}
.dot-red {
  background-color: red;
}
.dot-notActive {
  height: 10px;
  width: 10px;
  border: 1px solid #d50000;
  background-color: red;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}
.dot-active {
  height: 12px;
  width: 12px;
  border: 1px solid #33961f;
  background-color: #36f011;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}
.dot--initial {
  position: absolute !important;
  right: 0;
  margin-right: 1px !important;
}

.footer {
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 0.8rem;
  text-align: center;
  background: #fff;
  padding: 25px;
  border-top: 1px solid #dfe2e6;
}

.form {
  width: 100%;
}
.form--row {
  margin-bottom: 20px;
}
.form--label {
  box-sizing: border-box;
  font-size: 0.9em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.form--input {
  box-sizing: border-box;
  width: 100%;
}
.form--inputNotice {
  margin-top: 5px;
  font-size: 0.75em;
}
.form--group {
  display: flex;
  justify-content: space-between;
}
.form--group-item {
  flex-grow: 1;
  box-sizing: border-box;
  margin-left: 20px;
}
.form--group-item:first-child {
  margin: 0;
}
.form--textinput {
  box-sizing: border-box;
  width: 100%;
  padding: 10px 10px;
  border: 1px solid #dfe2e6;
  font-size: 0.9rem;
  background: #edeff1;
  outline: none;
}
.form--textinput:focus {
  border: 1px solid #3490dc;
  box-shadow: 0px 2px 3px 0px #dfe2e6;
}
.form--textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 10px 10px;
  border: 1px solid #dfe2e6;
  font-size: 0.9rem;
  background: #edeff1;
  outline: none;
}
.form--textarea:focus {
  border: 1px solid #3490dc;
  box-shadow: 0px 2px 3px 0px #dfe2e6;
}
.form--select {
  box-sizing: border-box;
  width: 100%;
  padding: 10px 10px;
  border: 1px solid #dfe2e6;
  font-size: 1em;
  background-color: #edeff1;
  border-radius: 4px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='iso-8859-1'%3F%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 425 425' style='enable-background:new 0 0 425 425;' xml:space='preserve'%3E%3Cg%3E%3Cpolygon fill='%23e8e9ea' points='212.5,0 19.371,192.5 405.629,192.5 '/%3E%3Cpolygon fill='%23e8e9ea' points='212.5,425 405.629,232.5 19.371,232.5 '/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  background-size: 15px;
  outline: none;
}
.form--select:focus {
  border: 1px solid #3490dc;
  box-shadow: 0px 2px 3px 0px #dfe2e6;
}
.form--select--inline {
  width: auto;
}
.form--actions {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.input {
  box-sizing: border-box;
  padding: 10px 10px 10px 30px;
  width: 100%;
  border: 1px solid #dfe2e6;
  font-size: 0.9rem;
  background: #edeff1;
  outline: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.input-with-icon {
  max-width: 300px;
  width: 100%;
  position: relative;
}
.input:focus {
  border: 1px solid #3490dc;
  box-shadow: 0 2px 3px 0 #dfe2e6;
}

.icon {
  color: #757575;
  z-index: 900;
  position: absolute;
  left: 10px;
  font-size: 1rem;
  top: 50%;
  line-height: 1rem;
  transform: translateY(-50%);
}

a {
  color: #3490dc;
  text-decoration: none;
  background-color: transparent;
}

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
  text-align: left;
  background-color: #f0f3f7;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.navbar-laravel {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

/***********************
    STANDARD STUFF
 ***********************/
.main {
  min-height: 100vh;
  width: 100%;
}

main {
  min-height: calc(100vh - 132px);
  display: flex;
}

.container {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 10px;
}

.auth {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-box {
  width: 450px;
}

#app {
  min-height: calc(100vh - 71px);
}

.grid-table {
  position: relative;
  display: grid;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.grid-table td {
  box-sizing: border-box;
  padding: 10px 15px;
  border-bottom: 1px solid #dfe2e6;
  vertical-align: top;
}
.grid-table thead,
.grid-table tbody,
.grid-table tr {
  display: contents;
}
.grid-table td.trigger-menu {
  text-align: right;
  padding-right: 0;
}
.grid-table td.align-right {
  text-align: right;
}
.grid-table td.grid--context_menu {
  text-align: right;
}
.grid-table th {
  padding: 15px 15px;
  box-sizing: border-box;
  border-bottom: 1px solid #dfe2e6;
  color: #3f4144;
}

.grid-table--col__span-2 {
  grid-column-end: span 2;
}
.grid-table--col-1 {
  grid-template-columns: auto;
}
.grid-table--col-2 {
  grid-template-columns: auto auto;
}
.grid-table--col-3 {
  grid-template-columns: auto auto auto;
}
.grid-table--col-4 {
  grid-template-columns: auto auto auto auto;
}
.grid-table--col-5 {
  grid-template-columns: auto auto auto auto auto;
}
.grid-table--col-6 {
  grid-template-columns: auto auto auto auto auto auto;
}

.grid-table--ellipsis table {
  table-layout: fixed;
}
.grid-table--ellipsis td {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

td.grid--context_menu {
  text-align: right;
}

td.grid__content--right {
  text-align: right;
}

td.grid__content--left {
  text-align: left;
}

@media (max-width: 800px) {
  .grid-table {
    padding: 5px 15px;
  }
  .grid-table--col-1 {
    grid-template-columns: auto;
  }
  .grid-table--col-2 {
    grid-template-columns: auto;
  }
  .grid-table--col-3 {
    grid-template-columns: auto;
  }
  .grid-table--col-4 {
    grid-template-columns: auto;
  }
  .grid-table--col-5 {
    grid-template-columns: auto;
  }
  .grid-table--col-6 {
    grid-template-columns: auto;
  }
  .grid-table thead {
    display: none;
  }
  .grid-table tr {
    padding: 15px 0;
    display: grid;
    grid-gap: 5px;
    border-bottom: 1px solid #dfe2e6;
  }
  .grid-table tr:last-child {
    border-bottom: none;
  }
  .grid-table tr:first-child {
    padding-top: 5px;
  }
  .grid-table td {
    padding: 0;
    border-bottom: none;
    vertical-align: top;
  }

  tr.mobile--col-1 {
    grid-template-columns: auto;
  }
  tr.mobile--col-2 {
    grid-template-columns: auto auto;
  }
  tr.mobile--col-3 {
    grid-template-columns: auto auto auto;
  }
  tr.mobile--col-4 {
    grid-template-columns: auto auto auto auto;
  }
  tr.mobile--col-5 {
    grid-template-columns: auto auto auto auto auto;
  }
  tr.mobile--col-6 {
    grid-template-columns: auto auto auto auto auto auto;
  }

  td.mobile--rs-1 {
    grid-row-start: 1;
  }
  td.mobile--re-1 {
    grid-row-end: 1;
  }
  td.mobile--cs-1 {
    grid-column-start: 1;
  }
  td.mobile--span-1 {
    grid-column-end: span 1;
  }
  td.mobile--rs-2 {
    grid-row-start: 2;
  }
  td.mobile--re-2 {
    grid-row-end: 2;
  }
  td.mobile--cs-2 {
    grid-column-start: 2;
  }
  td.mobile--span-2 {
    grid-column-end: span 2;
  }
  td.mobile--rs-3 {
    grid-row-start: 3;
  }
  td.mobile--re-3 {
    grid-row-end: 3;
  }
  td.mobile--cs-3 {
    grid-column-start: 3;
  }
  td.mobile--span-3 {
    grid-column-end: span 3;
  }
  td.mobile--rs-4 {
    grid-row-start: 4;
  }
  td.mobile--re-4 {
    grid-row-end: 4;
  }
  td.mobile--cs-4 {
    grid-column-start: 4;
  }
  td.mobile--span-4 {
    grid-column-end: span 4;
  }
  td.mobile--rs-5 {
    grid-row-start: 5;
  }
  td.mobile--re-5 {
    grid-row-end: 5;
  }
  td.mobile--cs-5 {
    grid-column-start: 5;
  }
  td.mobile--span-5 {
    grid-column-end: span 5;
  }
  td.mobile--rs-6 {
    grid-row-start: 6;
  }
  td.mobile--re-6 {
    grid-row-end: 6;
  }
  td.mobile--cs-6 {
    grid-column-start: 6;
  }
  td.mobile--span-6 {
    grid-column-end: span 6;
  }

  td.grid--context_menu {
    justify-self: end;
    margin-right: -15px;
  }

  td.grid__content--right {
    text-align: right;
  }

  td.grid__content--left {
    text-align: left;
  }
}
.header {
  display: flex;
  background: white;
  justify-content: space-between;
  align-items: stretch;
  border-bottom: 1px solid #dfe2e6;
}
.header--actions {
  display: flex;
}
.header--menu {
  display: flex;
  align-items: stretch;
}
.header--link {
  text-decoration: none;
  color: #464748;
}
.header--link:hover {
  text-decoration: none;
  color: #464748;
}
.header--link__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header--item {
  padding: 20px 30px;
  margin-bottom: -1px;
  border-bottom: 1px solid transparent;
  font-size: 0.8rem;
  font-family: "Roboto", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  text-decoration: none;
}
.header--item__active {
  border-bottom: 1px solid #3490dc;
}
.header--item:hover {
  border-bottom: 1px solid #666666;
}
.header--item__middle {
  padding: 0px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header--item__logo {
  padding: 0px 0px 0px 30px;
}
.header--item__logo:hover {
  border-bottom: 1px solid transparent;
}
.header--item__logo img {
  display: inline-block;
}

@media (min-width: 800px) {
  .header--item__logo {
    padding: 0 15px;
  }
}
.initials {
  width: 2.5rem;
  height: 2.5rem;
  /* border: 1px solid $border-color; */
  border-radius: 50%;
  background: #3490dc;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}
.initials__free {
  background-color: #3490dc;
}
.initials__starter {
  background-color: #f6993f;
}
.initials__unlimited {
  background-color: #e3342f;
}
.initials__mini {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.8rem;
  border-radius: 0;
}

.preview {
  padding: 20px 0 20px;
}

.preview-image {
  display: none;
  border: 1px none #ddd;
  padding: 5px;
  width: 100px;
  height: 100px;
  border-radius: 100%;
}

.user-image {
  border-radius: 50%;
  background-size: cover;
  background-position: 50% 50%;
}
.user-image--small {
  min-width: 2.7rem;
  width: 2.7rem;
  height: 2.7rem;
}
.user-image--big {
  width: 90px;
  height: 90px;
}

.menu {
  position: relative;
  z-index: 2;
}
.menu--header-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.menu--trigger {
  cursor: pointer;
  z-index: 4;
  margin: 0px 30px;
}
.menu--trigger__show {
  background-color: #dfe2e6;
  min-width: 250px;
}
.menu--items {
  border: 1px solid #dfe2e6;
  display: none;
  position: absolute;
  background-color: white;
  right: 0;
  min-width: 250px;
  box-shadow: 0px 2px 3px 0px #dfe2e6;
}
.menu--items__show {
  display: block;
}
.menu--item:last-child {
  border: none;
}
.menu--item__group {
  padding: 15px 15px 5px;
  font-size: 0.8rem;
  font-weight: bold;
}
.menu--item__borderbottom {
  border-bottom: 1px solid #dfe2e6;
}
.menu--item__bordertop {
  border-top: 1px solid #dfe2e6;
}
.menu--item a {
  width: 100%;
  display: block;
  padding: 10px 15px;
}
.menu--item a:hover {
  background: #f2f2f2;
  text-decoration: none;
}

.mini-button {
  display: inline-block;
  background-color: #3490dc;
  color: white;
  padding: 2px 8px;
  font-size: 0.85em;
  text-transform: capitalize;
  text-decoration: none;
  border: none;
  border-radius: 2px;
}
.mini-button:hover {
  background-color: #1166ab;
  cursor: pointer;
  color: white;
  text-decoration: none;
}

.navbar-toggle {
  cursor: pointer;
  color: black;
  font-size: 20px;
  padding: 0 20px;
  display: none;
  justify-content: center;
  align-items: center;
}

.navbar-toggle--item {
  display: inline-block;
}

.navbar-menu {
  display: flex;
}

.navbar-menu__flex {
  display: inline-flex;
}

@media (max-width: 800px) {
  .navbar-toggle--items {
    border: 1px solid #dfe2e6;
    display: none;
    position: absolute;
    background-color: white;
    left: 0;
    min-width: 250px;
    box-shadow: 0px 2px 3px 0px #dfe2e6;
    z-index: 51;
  }

  .navbar-toggle--items__show {
    display: block;
  }

  .navbar-toggle__show {
    background-color: white;
    min-width: 250px;
  }

  .navbar-toggle--item {
    background-color: white;
    display: block;
    border-bottom: 1px solid #dfe2e6;
  }

  .navbar-toggle {
    height: 60px;
    display: flex !important;
    overflow: hidden;
    z-index: 51;
  }

  .navbar-menu__flex {
    display: flex;
  }

  .navbar-menu {
    position: relative;
    display: block;
  }
}
.incident-note {
  width: 100%;
}
.incident-note__header {
  width: 100%;
}
.incident-note__author {
  text-align: left;
  float: left;
}
.incident-note__dropdown {
  float: right;
}

/* declare a 7 column grid on the table */
.calendar-mobile {
  display: none;
}

.date-button {
  color: white;
  height: 60px;
  line-height: 60px;
  width: 20px;
  background: transparent;
  position: absolute;
}
.date-button_left {
  left: 0;
  text-align: right;
}
.date-button_right {
  right: 0;
  text-align: left;
}

#calendar {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

#calendar tr,
#calendar tbody {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
}

#calendar td,
#calendar th {
  box-sizing: border-box;
  border: 1px solid #ccc;
}

#calendar .weekdays {
  height: 60px;
  background: #3490dc;
}

#calendar .weekdays th {
  text-align: center;
  text-transform: uppercase;
  line-height: 20px;
  border: none !important;
  padding: 10px 6px;
  color: #fff;
  font-size: 13px;
}

#calendar td {
  min-height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/* ============================
				Mobile Responsiveness
   ============================*/
@media (max-width: 768px) {
  #calendar .weekdays,
#calendar .other-month {
    display: none;
  }

  #calendar li {
    height: auto !important;
    border: 1px solid #ededed;
    width: 100%;
    padding: 10px;
    margin-bottom: -1px;
  }

  #calendar,
#calendar tr,
#calendar tbody {
    grid-template-columns: 1fr;
  }

  #calendar tr {
    grid-column: 1/2;
  }

  .calendar-desktop {
    display: none;
  }

  .calendar-mobile {
    display: block;
  }

  .date-button {
    z-index: 1;
    color: #3490dc;
  }
}
main {
  position: relative;
}

.notifications {
  position: absolute;
  left: 0;
  right: 0;
  top: 0px;
}
.notifications__inline {
  position: relative;
  top: 0px;
}

.notification {
  box-sizing: border-box;
  padding: 20px;
  color: white;
}
.notification__error {
  background-color: #ff4444;
}
.notification__success {
  background-color: #00c851;
}
.notification__warning {
  background-color: #ffbb33;
}

.payment-badge {
  display: inline-block;
  font-size: 0.7rem;
  background: #38c172;
  color: white;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
}
.payment-badge__open {
  background: #f6993f;
}
.payment-badge__failed {
  background: #e3342f;
}
.payment-badge__paid {
  background: #38c172;
}

.person {
  display: flex;
  align-items: center;
}
.person--avatar {
  margin-right: 10px;
}

.plan {
  display: inline-block;
  font-size: 0.7rem;
  background: #38c172;
  color: white;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
}
.plan__free {
  background-color: #3490dc !important;
}
.plan__starter {
  background-color: #f6993f !important;
}
.plan__unlimited {
  background-color: #e3342f !important;
}

.project-switcher {
  /*
  &:hover{
      background-color: $body-bg;
      border: 1px solid $border-color;
  }
  */
  margin-bottom: 20px;
  background-color: white;
  position: relative;
}
.project-switcher a {
  color: inherit;
}
.project-switcher a:hover {
  text-decoration: inherit;
}
.project-switcher__current {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='iso-8859-1'%3F%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 425 425' style='enable-background:new 0 0 425 425;' xml:space='preserve'%3E%3Cg%3E%3Cpolygon fill='%23e8e9ea' points='212.5,0 19.371,192.5 405.629,192.5 '/%3E%3Cpolygon fill='%23e8e9ea' points='212.5,425 405.629,232.5 19.371,232.5 '/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  background-size: 15px;
}
.project-switcher__project {
  display: flex;
  margin-bottom: 10px;
}
.project-switcher__avatar {
  margin-right: 10px;
}
.project-switcher__head {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.project-switcher__label {
  font-weight: bold;
}
.project-switcher__list {
  background-color: rgba(255, 255, 255, 0.95);
  position: absolute;
  right: 0px;
  left: 0px;
}
.project-switcher__description {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.role {
  display: inline-block;
  font-size: 0.7rem;
  background: #38c172;
  color: white;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
}
.role__admin {
  background: red;
}

.sidebar {
  position: relative;
  width: 250px;
  will-change: width;
  padding: 0px 20px 0px 20px;
  background: white;
  border-right: 1px solid #dfe2e6;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  transition: 0.3s;
}
.sidebar--collapsed {
  padding: 0px;
  width: 20px;
  transition: 0.3s;
}
.sidebar--collapsed .sidebar__toggle-trigger {
  opacity: 1;
}
.sidebar--collapsed .sidebar__toggle-trigger::before {
  content: "";
  left: 1px;
}
.sidebar--collapsed .sidebar__group {
  transition: 0.1s;
  opacity: 0;
}
.sidebar:hover .sidebar__toggle-trigger {
  opacity: 1;
  transition: 0.3s;
}
.sidebar__toggle-trigger {
  position: absolute;
  box-shadow: rgba(9, 30, 66, 0.08) 0px 0px 0px 1px, rgba(9, 30, 66, 0.08) 0px 2px 4px 1px;
  color: #6b778c;
  cursor: pointer;
  height: 24px;
  opacity: 0;
  transform: translate(50%);
  width: 24px;
  background: 0px center white;
  border: 0;
  border-radius: 50%;
  outline: 0;
  top: 40px;
  right: 0;
  padding: 0;
  z-index: 99;
}
.sidebar__toggle-trigger::before {
  position: relative;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  left: -1px;
  color: #212529;
}
.sidebar__toggle-trigger:focus {
  outline: none;
}
.sidebar__content {
  width: 100%;
  overflow: hidden;
  margin-top: 42px;
  transform: translateX(0);
  transition: 0.3s;
  opacity: 1;
}
.sidebar__content--collapsed {
  transform: translateX(-150%);
  opacity: 0;
}
.sidebar__group {
  opacity: 1;
  margin-bottom: 40px;
}
.sidebar__group-label {
  text-transform: uppercase;
  margin: 10px 0px 10px 0px;
  font-size: 0.7rem;
}
.sidebar__group-entry {
  text-decoration: none;
  color: #464748;
  width: 100%;
  display: block;
  padding: 5px 10px 5px 0px;
}
.sidebar__group-entry:hover, .sidebar__group-entry--active {
  font-weight: bold;
  color: #2d2e2e;
  text-decoration: none;
}
.sidebar__group-entry:hover {
  transition: 0.3s;
}
.sidebar__entry-icon {
  width: 20px;
  margin-right: 5px;
  text-align: center;
  display: inline-block;
}
.status-background {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
}
