html,
body {
  height: 100%;
}
.wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  .wrapper {
    height: unset;
    min-height: 100%;
  }
}
.wrapper .dashboard {
  flex: 1;
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 576px) {
  .wrapper .dashboard {
    flex-direction: column;
  }
}
.wrapper .dashboard .sidebar {
  width: 264px;
  background: #0199b0;
  padding: 28px 37px;
}
@media only screen and (max-width: 768px) {
  .wrapper .dashboard .sidebar {
    width: 80px;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 0;
    position: relative;
  }
}
@media only screen and (max-width: 576px) {
  .wrapper .dashboard .sidebar {
    width: 100%;
    height: 80px;
    flex-direction: row;
    justify-content: center;
  }
}
.wrapper .dashboard .sidebar .user-bar {
  margin-bottom: 40px;
}
@media only screen and (max-width: 576px) {
  .wrapper .dashboard .sidebar .user-bar {
    margin-bottom: 0 !important;
    position: absolute;
    left: 20px;
  }
}
.wrapper .dashboard .sidebar .user-bar img {
  width: 44px;
  height: 44px;
  margin-bottom: 17px;
}
@media only screen and (max-width: 576px) {
  .wrapper .dashboard .sidebar .user-bar img {
    margin-bottom: 0;
  }
}
.wrapper .dashboard .sidebar .user-bar .username {
  color: white;
  font-weight: bold;
  font-size: 14px;
}
.wrapper .dashboard .sidebar .user-bar a {
  color: white !important;
  text-decoration: underline;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .wrapper .dashboard .sidebar .user-bar {
    margin-bottom: 90px;
  }
  .wrapper .dashboard .sidebar .user-bar .username,
  .wrapper .dashboard .sidebar .user-bar a {
    display: none;
  }
}
.wrapper .dashboard .sidebar .menu {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 576px) {
  .wrapper .dashboard .sidebar .menu {
    flex-direction: row;
    width: calc(100% - 168px);
    margin: 0 84px;
    max-width: 250px;
  }
}
.wrapper .dashboard .sidebar .menu a {
  color: white !important;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 30px;
  position: relative;
  padding-left: 38px;
  cursor: pointer;
}
@media only screen and (max-width: 576px) {
  .wrapper .dashboard .sidebar .menu a {
    width: 20px;
    height: 20px;
    padding: 0 15%;
  }
}
.wrapper .dashboard .sidebar .menu a > img {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.7;
  transition: opacity 0.1s;
}
@media only screen and (max-width: 576px) {
  .wrapper .dashboard .sidebar .menu a > img {
    left: 50%;
  }
}
.wrapper .dashboard .sidebar .menu a > span.counter {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  padding: 0 5px;
  height: 15px;
  line-height: 15px;
  background: #ee1144;
  border-radius: 8px;
  font-size: 9px;
  font-weight: bold;
  margin-top: 8px;
  margin-left: 8px;
}
@media only screen and (max-width: 576px) {
  .wrapper .dashboard .sidebar .menu a > span.counter {
    left: 50%;
  }
}
.wrapper .dashboard .sidebar .menu a > span:not(.counter) {
  opacity: 0.7;
  transition: opacity 0.1s;
}
.wrapper .dashboard .sidebar .menu a.active {
  font-weight: bold;
  opacity: 1;
}
.wrapper .dashboard .sidebar .menu a:hover > img {
  opacity: 1;
}
.wrapper .dashboard .sidebar .menu a:hover > span:not(.counter) {
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  .wrapper .dashboard .sidebar .menu a {
    height: 36px;
    padding-left: 14px;
  }
  .wrapper .dashboard .sidebar .menu a > span:not(.counter) {
    display: none;
  }
}
.wrapper .dashboard .content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.wrapper .dashboard .content > header {
  height: 91px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 30px;
  border-bottom: 1px solid #d5d5dd;
}
@media only screen and (max-width: 576px) {
  .wrapper .dashboard .content > header {
    display: none;
  }
}
.wrapper .dashboard .content > header > img {
  width: 44px;
  margin-right: 26px;
}
.wrapper .dashboard .content .dashboard-content {
  flex: 1;
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 768px) {
  .wrapper .dashboard .content .dashboard-content {
    display: block;
  }
}
.wrapper .dashboard .content .dashboard-content .column {
  width: 50%;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  .wrapper .dashboard .content .dashboard-content .column {
    width: 100%;
  }
}
.wrapper .dashboard .content .dashboard-content .column + .column {
  border-left: 1px solid #d5d5dd;
}
@media only screen and (max-width: 768px) {
  .wrapper .dashboard .content .dashboard-content .column + .column {
    border-left: none;
  }
}
.wrapper .dashboard .content .dashboard-content .column .dashboard-section {
  display: flex;
  flex-direction: column;
}
.wrapper .dashboard .content .dashboard-content .column .dashboard-section.grey {
  background: #f2f2f9;
}
.wrapper .dashboard .content .dashboard-content .column .dashboard-section:last-child {
  flex: 1;
}
.wrapper .dashboard .content .dashboard-content .column .dashboard-section .section-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 30px;
  padding-top: 30px;
  padding-bottom: 15px;
}
@media only screen and (max-width: 576px) {
  .wrapper .dashboard .content .dashboard-content .column .dashboard-section .section-header {
    flex-direction: column;
  }
}
.wrapper .dashboard .content .dashboard-content .column .dashboard-section .section-header .header {
  font-weight: bold;
  font-size: 30px;
  color: #222222;
}
.wrapper .dashboard .content .dashboard-content .column .dashboard-section .section-content {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 20px;
}
.wrapper footer {
  background: #008d9f;
}
table.dashboard-table {
  width: 100%;
  letter-spacing: 0;
}
table.dashboard-table thead {
  height: 48px;
  line-height: 48px;
  background: white;
  font-weight: bold;
  font-size: 12px;
  color: #bbbbbb;
}
table.dashboard-table thead tr th {
  padding-right: 15px;
  transition: 0.2s;
  cursor: pointer;
}
table.dashboard-table thead tr th.switch-col {
  width: 72px;
}
table.dashboard-table thead tr th:first-child {
  padding-left: 15px;
}
table.dashboard-table thead tr th.sort {
  color: #0199b0;
}
table.dashboard-table thead tr th.sort.asc::after,
table.dashboard-table thead tr th.sort.desc::after {
  content: '';
  width: 8px;
  height: 12px;
  background: url(../../assets/svg/sort-arrow.svg) no-repeat center center;
  display: inline-block;
  margin-left: 10px;
  transform: translateY(2px);
}
table.dashboard-table thead tr th.sort.asc.asc::after,
table.dashboard-table thead tr th.sort.desc.asc::after {
  transform: translateY(2px) rotate(180deg);
}
table.dashboard-table thead tr th:hover {
  color: #222222;
}
table.dashboard-table tbody {
  color: #4a4a4a;
  font-size: 14px;
}
table.dashboard-table tbody tr {
  height: 48px;
  line-height: 48px;
  transition: 0.3s;
}
table.dashboard-table tbody tr:hover {
  background: rgba(0, 141, 159, 0.05) !important;
}
table.dashboard-table tbody tr td {
  padding-right: 15px;
  white-space: nowrap;
}
table.dashboard-table tbody tr td:first-child {
  padding-left: 15px;
}
table.dashboard-table tbody tr td input[type=checkbox].switch {
  transform: translateY(3px);
}
table.dashboard-table tbody tr td button.menu-btn {
  float: right;
}
table.dashboard-table tbody tr td img.avatar {
  width: 24px;
}
table.dashboard-table.stripped tbody tr:nth-child(odd) {
  background: #f2f2f9;
}
table.dashboard-table.calls-history button.menu-btn {
  transform: none;
}
table.dashboard-table.registrations tbody tr {
  line-height: 18px;
}
table.dashboard-table.registrations tbody tr td {
  padding: 8px 0;
}
table.dashboard-table.registrations tbody tr td:nth-child(3) {
  font-size: 12px;
}
table.dashboard-table.registrations img.avatar {
  width: 44px;
  margin-right: 14px;
  margin-left: 32px;
}
table.dashboard-table.registrations button.menu-btn {
  transform: none;
  margin-left: 25px;
  margin-right: 40px;
}
table.dashboard-table.registrations span.name {
  font-weight: bold;
  line-height: 14px;
}
table.dashboard-table.registrations span.status {
  color: #bbbbbb;
  font-size: 12px;
}
table.dashboard-table.registrations span.status.active::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #a9cc55;
  border-radius: 50%;
  margin-right: 6px;
}
/*# sourceMappingURL=styles.css.map */