*, button, input, i, a {
  -webkit-font-smoothing: antialiased;
  font-family: "Roboto", Arial, sans-serif;
  color: #000;
}

body, html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}

*:visited {
  color: inherit;
}

*, *:active, *:hover {
  outline: none !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}

#toolbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: 1;
}

#wrapper {
  width: 100%;
  height: 100%;
  color: #fff;
}

#background {
  background: #0a0a0a;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

#buttons-left {
  margin: 0 0 0 22px;
  padding: 0;
  position: absolute;
  top: 9px;
  left: 0;
}
#buttons-left li {
  width: 32px;
  height: 32px;
  list-style: none;
  margin: 0;
}
#buttons-left li a {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  text-align: center;
}
#buttons-left li a i {
  color: #ffffff;
  font-size: 22px;
  line-height: 32px;
}

#application-name {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #505050;
  margin: 0;
  line-height: 50px;
  position: absolute;
  top: 0;
  left: 30px;
  font-weight: normal;
}
#application-name.navigation {
  left: 76px;
}

@media screen and (max-width: 485px) {
  #application-name {
    display: none !important;
  }
}
#buttons-right {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 9px;
  right: 14px;
}
#buttons-right li {
  float: right;
  width: 32px;
  height: 32px;
  list-style: none;
  margin: 0 0 0 16px;
}
#buttons-right li a {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  text-align: center;
}
#buttons-right li a i {
  color: #ffffff;
  font-size: 24px;
  line-height: 32px;
}
#buttons-right li a#notifications-button i {
  font-size: 25px;
}

.avatar-wrapper {
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  height: 32px;
  border-radius: 16px;
  background: #fff;
  z-index: 2;
}
.avatar-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#application-switch-button {
  left: 20px;
}

#profile-button {
  right: 20px;
}

#notifications-button {
  right: 60px;
}

body.no-toolbar #toolbar {
  display: none;
}

#dialog,
#dialog-inner,
#dialog header,
#dialog footer {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  cursor: default;
}
#dialog #tasks-badge,
#dialog #unread-messages-badge,
#dialog-inner #tasks-badge,
#dialog-inner #unread-messages-badge,
#dialog header #tasks-badge,
#dialog header #unread-messages-badge,
#dialog footer #tasks-badge,
#dialog footer #unread-messages-badge {
  position: absolute;
  top: 10px;
  right: 54px;
}

#dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  border-radius: 5px;
  visibility: hidden;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.24), 0 14px 28px rgba(0, 0, 0, 0.48);
  max-height: 80%;
  -webkit-user-select: none;
  opacity: 0;
  min-width: 200px;
}
#dialog .container {
  position: relative;
}
#dialog header,
#dialog footer {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
}
#dialog header {
  background-color: #f7f7f7;
  height: 60px;
  top: 0;
  padding: 0;
  -webkit-border-radius: 2px 2px 0 0;
  -moz-border-radius: 2px 2px 0 0;
  -ms-border-radius: 2px 2px 0 0;
  border-radius: 2px 2px 0 0;
}
#dialog header h2 {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #212121;
  margin: 0;
  line-height: 60px;
  padding: 0 24px;
  font-weight: 500;
}
#dialog footer {
  bottom: 0;
  padding: 8px;
  height: 52px;
  background: #ffffff;
  z-index: 10;
  -webkit-border-radius: 0 0 2px 2px;
  -moz-border-radius: 0 0 2px 2px;
  -ms-border-radius: 0 0 2px 2px;
  border-radius: 0 0 2px 2px;
}
#dialog #dialog-content {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  background: #fff;
  padding: 0 24px 24px 24px;
  border-top: 60px solid transparent;
  border-bottom: 52px solid transparent;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}
#dialog.scroll #dialog-content, #dialog.has-section-selection-form #dialog-content {
  height: 100%;
  box-sizing: border-box;
}
#dialog[role=default-dialog] {
  width: 80vw !important;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
}
#dialog[role=alert-dialog], #dialog[role=confirm-dialog] {
  width: 500px !important;
  margin-left: -250px;
  line-height: 1.4em;
}
#dialog[role=announcement-dialog] {
  box-shadow: none;
  border: none;
  margin-left: -260px;
}
#dialog[role=announcement-dialog] .custom-notification {
  position: relative;
  border-radius: 2px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
}
#dialog[role=announcement-dialog] .custom-notification.general-notification {
  width: 600px;
  height: 532px;
}
#dialog[role=announcement-dialog] .custom-notification.general-notification > header {
  height: 212px;
  background: #1a1f53 url(../img/notifications/general/background-header.png) 0 0 no-repeat;
}
#dialog[role=announcement-dialog] .custom-notification.general-notification > header .zmdi.close {
  color: #ffffff;
  font-size: 24px;
  position: absolute;
  right: 18px;
  top: 21px;
  cursor: pointer;
}
#dialog[role=announcement-dialog] .custom-notification.general-notification > header .pull-left {
  position: relative;
  float: left;
  left: 25px;
  top: 33px;
}
#dialog[role=announcement-dialog] .custom-notification.general-notification > header .pull-left h2 {
  font-size: 20px;
  color: #ffffff;
  line-height: 20px;
  margin: -10px 0 -10px 0;
  padding: 0;
  text-overflow: ellipsis;
  width: 500px;
  white-space: nowrap;
  overflow: hidden;
}
#dialog[role=announcement-dialog] .custom-notification.general-notification > header .pull-left h3 {
  font-size: 14px;
  color: #c0c0c0;
}
#dialog[role=announcement-dialog] .custom-notification.general-notification > header .pull-left ul {
  position: absolute;
  bottom: -131px;
  list-style: none;
  width: 100%;
  right: 0;
}
#dialog[role=announcement-dialog] .custom-notification.general-notification > header .pull-left ul li {
  padding-top: 10px;
}
#dialog[role=announcement-dialog] .custom-notification.general-notification > header .pull-left ul li small {
  color: #ffffff;
  font-size: 14px;
  padding-left: 10px;
  position: relative;
  bottom: 3px;
}
#dialog[role=announcement-dialog] .custom-notification.general-notification > header .pull-left ul li i {
  font-size: 20px;
  color: #c0c0c0;
}
#dialog[role=announcement-dialog] .custom-notification.general-notification > header .pull-right {
  float: right;
}
#dialog[role=announcement-dialog] .custom-notification.general-notification > header .pull-right .icon-background,
#dialog[role=announcement-dialog] .custom-notification.general-notification > header .pull-right .icon {
  position: absolute;
  left: 83%;
  border-radius: 50%;
}
#dialog[role=announcement-dialog] .custom-notification.general-notification > header .pull-right span.icon-background {
  top: 55px;
  width: 90px;
  height: 90px;
  margin: 0 0 0 -45px;
  opacity: 0.5;
}
#dialog[role=announcement-dialog] .custom-notification.general-notification > header .pull-right i.icon {
  top: 62px;
  width: 76px;
  height: 76px;
  margin: 0 0 0 -38px;
  color: #fff;
  line-height: 76px;
  text-align: center;
  font-size: 40px;
}
#dialog[role=announcement-dialog] .custom-notification.general-notification > header .pull-right i.zmdi-mybrand-ruler:before {
  position: relative;
  top: 3px;
  left: 4px;
}
#dialog[role=announcement-dialog] .custom-notification.general-notification .content {
  min-height: 223px;
  background: #ffffff;
  padding: 22px;
  top: 213px;
  position: relative;
  font-family: roboto;
  line-height: 20px;
}
#dialog[role=announcement-dialog] header#dialog-header {
  display: none;
}
#dialog[role=announcement-dialog] div#dialog-content {
  background: transparent;
  padding: 0;
  border: none;
}
#dialog[role=announcement-dialog] footer#dialog-footer {
  background: #f0f0f0;
}
#dialog[role=announcement-dialog] footer#dialog-footer .btn {
  top: 3px;
}
#dialog[role=sidebar-dialog] {
  margin-left: auto;
  max-width: 400px;
  width: 50vw;
  top: 0;
  right: 0;
  left: auto;
  background: none;
  max-height: 100%;
  min-height: 100%;
  border-radius: 0;
  box-shadow: none;
}
#dialog[role=sidebar-dialog] header {
  background: transparent;
  height: 50px;
}
#dialog[role=sidebar-dialog] header #tasks-badge,
#dialog[role=sidebar-dialog] header #unread-messages-badge {
  top: 4px !important;
  z-index: 1;
}
#dialog[role=sidebar-dialog] header #tasks-badge.overlay {
  display: table-cell !important;
  position: relative !important;
  left: 204px !important;
  bottom: -77px !important;
}
#dialog[role=sidebar-dialog] header #notifications-icon {
  color: #fff;
  font-size: 24px;
  position: absolute;
  top: 9px;
  right: 62px;
  line-height: 32px;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  text-align: center;
  cursor: pointer;
}
#dialog[role=sidebar-dialog] header #tasks-icon {
  color: #fff;
  font-size: 24px;
  position: absolute;
  top: 9px;
  right: 157px;
  line-height: 32px;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  text-align: center;
  cursor: pointer;
}
#dialog[role=sidebar-dialog] header #caret-icon {
  position: absolute;
  bottom: 0;
  right: 58px;
  font-size: 31px;
  height: 17px;
  color: #fff !important;
}
#dialog[role=sidebar-dialog] header #caret-icon.task-icon {
  right: 154px !important;
}
#dialog[role=sidebar-dialog] footer {
  display: none;
}
#dialog[role=sidebar-dialog] #dialog-content {
  padding: 0;
  background: #fff;
  height: calc(100% - 90px);
  overflow-y: auto;
  overflow-x: hidden;
  border-top: 0;
  margin-top: 90px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
#dialog.no-title header {
  height: 24px;
  overflow: hidden;
  background: #fff;
}
#dialog.no-title header h2 {
  display: none;
}
#dialog.no-title #dialog-content {
  border-top: 24px solid transparent;
}
#dialog hr.clear {
  clear: both;
  width: 100%;
  margin: 0;
  padding: 0;
  height: 10px;
  border: none;
}
#dialog #zoom-level {
  position: relative;
  top: 10px;
  clear: both;
  width: 320px;
  position: relative;
  visibility: hidden;
}
#dialog #zoom-level.show {
  visibility: visible;
}
#dialog #zoom-level i {
  position: absolute;
  top: -1px;
  height: 19px;
  line-height: 19px;
  width: 40px;
  font-size: 12px;
  text-align: center;
  color: #212121;
}
#dialog #zoom-level i.small-zoom-icon {
  left: 0;
}
#dialog #zoom-level i.large-zoom-icon {
  font-size: 18px;
  right: 0;
}
#dialog #drag-icon {
  position: absolute;
  top: -9999px;
  left: -9999px;
  cursor: move;
}
#dialog #avatar-options {
  display: flex;
  float: left;
  margin: 40px 0 0 0;
}
#dialog #avatar-options .remove-file .btn {
  background-color: #c80000 !important;
  color: #FFFFFF;
}
#dialog .file-input-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 20px;
}
#dialog .file-input-wrapper:active .btn {
  opacity: 0.8;
}
#dialog .file-input-wrapper .btn {
  float: left;
}
#dialog .file-input-wrapper input {
  opacity: 0;
  font-size: 200px;
  position: absolute;
  top: 0;
  left: 0;
}
#dialog #avatar {
  background: #bbb;
  position: relative;
  width: 320px;
  height: 320px;
  overflow: hidden;
  margin: 40px 0 0 0;
  float: left;
}
#dialog #avatar #avatar-wrapper,
#dialog #avatar #avatar-shadow,
#dialog #avatar #avatar-drag {
  width: 240px;
  height: 240px;
  position: absolute;
  top: 40px;
  left: 40px;
  overflow: visible;
}
#dialog #avatar #avatar-wrapper img {
  max-width: 240px;
  max-height: 240px;
  object-fit: cover;
}
#dialog #avatar #avatar-drag {
  z-index: 11;
  cursor: move;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#dialog #avatar #avatar-shadow {
  z-index: 10;
  box-shadow: inset 0 0 6px 0 #999;
}
#dialog #avatar .avatar-border {
  background: #fff;
  position: absolute;
  opacity: 0.8;
  z-index: 10;
}
#dialog #avatar .avatar-border-top,
#dialog #avatar .avatar-border-bottom {
  width: 320px;
  height: 40px;
}
#dialog #avatar .avatar-border-top,
#dialog #avatar .avatar-border-bottom,
#dialog #avatar .avatar-border-left {
  left: 0;
}
#dialog #avatar .avatar-border-top {
  top: 0;
}
#dialog #avatar .avatar-border-bottom {
  bottom: 0;
}
#dialog #avatar .avatar-border-left,
#dialog #avatar .avatar-border-right {
  top: 40px;
  width: 40px;
  height: 240px;
}
#dialog #avatar .avatar-border-right {
  right: 0;
}
#dialog #avatar img {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
  min-width: 100%;
}
#dialog #avatar img.landscape {
  height: 240px;
  width: auto;
}
#dialog #avatar img.portrait {
  width: 240px;
  height: auto;
}

body.dialog #background {
  opacity: 0.6;
  z-index: 2;
}
body.dialog #dialog.show {
  visibility: visible;
  opacity: 1;
}
body.dialog.no-content #dialog {
  display: none;
}

.section-form {
  position: relative;
  height: auto;
}
.section-form .section-selection {
  position: absolute;
  background-color: #f7f7f7;
  top: -48px;
  left: -24px;
  right: -24px;
  height: 48px;
  margin: 0;
  z-index: 2;
}
.section-form .section-selection li {
  position: relative;
  list-style: none;
  float: left;
  height: 48px;
}
.section-form .section-selection li a {
  font-family: "Roboto", sans-serif;
  line-height: 46px;
  font-size: 15px;
  text-decoration: none;
  display: block;
  padding: 0 22px;
  text-transform: uppercase;
}
.section-form .section-selection li a.section-active {
  font-weight: 500;
  border-bottom: 3px solid #606060;
}
.section-form .sections-container {
  overflow: auto;
  position: relative;
  box-sizing: border-box;
  margin: 48px -24px 0 0;
  padding: 0 24px 0 0;
  z-index: 1;
}
.section-form .sections-container #section-account,
.section-form .sections-container #section-basic {
  padding-top: 20px;
}
.section-form .sections-container #section-account,
.section-form .sections-container #section-basic {
  overflow: hidden;
  height: 380px;
  max-height: 380px;
}
.section-form .sections-container #section-avatar {
  overflow: hidden;
  height: 400px;
  max-height: 400px;
}
.section-form .sections-container #section-notifications {
  height: 100% !important;
  padding-top: 20px;
}
.section-form .sections-container #section-avatar .form-group {
  padding: 0;
}
.section-form .form-section {
  display: none;
  opacity: 0;
}
.section-form .form-section.section-active {
  display: block;
  opacity: 1;
}

.badge {
  font-family: "Roboto", sans-serif;
  font-weight: 500 !important;
  display: inline-block;
  width: 16px;
  height: 16px;
  line-height: 16px;
  font-size: 10px;
  text-align: center;
  float: right;
  margin: 15px -10px 0 10px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
}
.badge.error {
  background: #cc0000;
  color: #fff;
}

#tasks-badge,
#unread-messages-badge {
  position: absolute;
  top: -5px;
  right: 40px;
  background: #dc3c3c;
  color: #fff;
  min-width: 10px;
  padding: 0 5px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}

#tasks-badge {
  right: 138px !important;
}

#header-notification {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  position: absolute;
  top: 50px;
  right: 0;
  padding: 0 0 0 20px;
  box-sizing: border-box;
  width: 100%;
  background: #fff;
  list-style: none;
  display: block;
  color: #202020;
  line-height: 40px;
  height: 40px;
  border-bottom: 1px solid #e0e0e0;
}

#messages-wrapper {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
}
#messages-wrapper .task,
#messages-wrapper .notification {
  position: relative;
  padding: 10px 15px 10px 84px;
  border-bottom: 1px solid #e0e0e0;
  min-height: 56px;
  line-height: 22px;
  color: #606060;
}
#messages-wrapper .task[data-type=DOWNLOAD], #messages-wrapper .task[data-message=true], #messages-wrapper .task[data-href],
#messages-wrapper .notification[data-type=DOWNLOAD],
#messages-wrapper .notification[data-message=true],
#messages-wrapper .notification[data-href] {
  cursor: pointer;
}
#messages-wrapper .task.new time::before,
#messages-wrapper .notification.new time::before {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  background: #dc3c3c;
  border-radius: 4px;
  margin: 0 6px 0 0;
}
#messages-wrapper .task:hover,
#messages-wrapper .notification:hover {
  background: rgba(0, 0, 0, 0.05);
}
#messages-wrapper .task time,
#messages-wrapper .notification time {
  display: block;
  width: 100%;
  font-size: 12px;
  color: #a0a0a0;
}
#messages-wrapper .task h6,
#messages-wrapper .notification h6 {
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #202020;
}
#messages-wrapper .task .zmdi,
#messages-wrapper .notification .zmdi {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #c0c0c0;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  color: #fff;
  font-size: 26px;
  -webkit-border-radius: 28px;
  -moz-border-radius: 28px;
  -ms-border-radius: 28px;
  border-radius: 28px;
}
#messages-wrapper .task div.loader,
#messages-wrapper .notification div.loader {
  position: absolute;
  bottom: 22px;
  height: 4px;
  width: 290px;
  overflow: hidden;
  background-color: #003951;
}
#messages-wrapper .task div.loader:before,
#messages-wrapper .notification div.loader:before {
  display: block;
  position: absolute;
  content: "";
  width: 290px;
  height: 4px;
  animation: loading 1.5s linear infinite;
}
@keyframes loading {
  from {
    left: -80px;
    width: 30%;
  }
  30% {
    width: 30%;
  }
  70% {
    width: 70%;
  }
  80% {
    left: 50%;
  }
  95% {
    left: 120%;
  }
  to {
    left: 100%;
  }
}
#messages-wrapper .task {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 78px;
  padding: 15px 15px 0px 84px !important;
}
#messages-wrapper .task .zmdi {
  top: 18px;
  font-size: 30px !important;
  -webkit-transform: rotate(-30deg);
  -moz-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  -o-transform: rotate(-30deg);
  transform: rotate(-30deg);
}
#messages-wrapper #no-notifications {
  line-height: 140px;
  text-align: center;
  color: #a0a0a0;
  font-size: 16px;
  border: none;
}

@media screen and (max-width: 472px) {
  #dialog ul.section-selection a[data-href="#section-avatar"] {
    display: none;
  }
}
@media screen and (max-width: 310px) {
  #dialog ul.section-selection a[data-href="#section-account"] {
    display: none;
  }
}
input,
select,
textarea {
  color: #202020;
  position: relative;
  z-index: 2;
  line-height: 1.5em;
}
input[disabled],
select[disabled],
textarea[disabled] {
  color: #a0a0a0;
  cursor: not-allowed;
}

input,
textarea {
  background: none;
}

textarea {
  resize: none;
}

.control-label {
  display: block;
  position: relative;
  color: #a0a0a0;
  font-size: 16px;
  height: 18px;
  overflow: visible;
  line-height: 60px;
  z-index: 1;
  transition-property: font-size, line-height, color;
  transition-duration: 0.1s;
  user-select: none;
}

.form-group {
  position: relative;
  box-sizing: border-box;
  margin: 0 30px 15px 0;
}
.form-group.has-color-preview {
  padding: 0 0 0 100px;
}
.form-group.has-color-preview .color-preview {
  left: 60px;
}
.form-group h3 small {
  font-size: 14px;
  color: #a0a0a0;
}

.fg-line {
  border-top: 1px solid #c0c0c0;
  height: 2px;
}
.fg-line::after {
  display: block;
  width: 100%;
  height: 1px;
  background: transparent;
  content: " ";
  transition: background-color 0.3s;
}

.active .fg-line {
  border-color: #009fe0;
}
.active .fg-line::after {
  background: #009fe0;
}
.active.has-error .fg-line {
  border-color: #dc0000;
}
.active.has-error .fg-line::after {
  background: #dc0000;
}

.active .control-label,
.fixed-label .control-label {
  line-height: 1.5em;
  font-size: 12px;
}

.form-control {
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
  border: none;
  outline: 0;
}

.row {
  display: block;
  clear: both;
  overflow: hidden;
  width: calc(100%);
}

.color-preview {
  width: 20px;
  height: 20px;
  border: 1px solid #c0c0c0;
  border-radius: 100%;
  margin: 0 20px 0 0;
  position: absolute;
  top: 20px;
  left: 30px;
}

.help-block {
  display: block;
  width: 100%;
  color: #dc0000;
  font-size: 12px;
  padding: 10px 0 0 0;
}

.has-error .control-label {
  color: #dc0000;
}
.has-error .fg-line {
  border-color: #dc0000;
}
.has-error .fg-line::after {
  background: #dc0000;
}

.fake-input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}

.checkbox {
  position: relative;
  width: 20px;
  height: 20px;
}
.checkbox input[type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  width: 20px;
  height: 20px;
  opacity: 0;
}
.checkbox input[type=checkbox] + i {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  text-align: center;
  border-radius: 2px;
  border: 2px solid #8b8b8b;
}
.checkbox input[type=checkbox] + i i {
  display: none;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  line-height: 18px;
}
.checkbox input[type=checkbox]:checked + i {
  border-color: #8b8b8b;
  background: #8b8b8b;
}
.checkbox input[type=checkbox]:checked + i i {
  display: block;
}
.checkbox.pull-left {
  margin: 0 10px 0 0;
}

.image-upload {
  height: 200px;
  border: 1px solid #e0e0e0;
}
.image-upload figure {
  background: #707070;
  height: 140px;
  width: 100%;
  overflow: hidden;
  text-align: center;
  position: relative;
}
.image-upload figure img {
  width: 100%;
}
.image-upload .btn {
  margin: 10px;
}

.col-6 {
  float: left;
  width: calc(50% - 30px);
}

@media screen and (max-width: 472px) {
  .col-6 {
    width: 100%;
  }
}
.btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  box-sizing: border-box;
  border: none;
  outline: none;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  cursor: pointer;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  border-radius: 2px;
}
.btn.btn-large {
  height: 40px;
  line-height: 40px;
}
.btn input[type=file] {
  position: absolute;
  top: -50%;
  left: -50%;
  font-size: 999px;
}
.btn::before {
  position: absolute;
  background: #fff;
  top: 0;
  left: 0;
  content: " ";
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 2px;
  opacity: 0;
}
.btn:hover::before {
  opacity: 0.1;
}
.btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #000 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(11, 11);
  opacity: 0;
  transition: transform 0.2s, opacity 0.8s;
}
.btn:active::after {
  transform: scale(0, 0);
  opacity: 0.2;
  transition: 0s;
}

.card .btn:not(.btn-float) {
  background: none;
  box-shadow: none;
}

#dialog-footer .btn,
.card .btn,
.btn-link {
  color: #606060;
  background: none !important;
}
#dialog-footer .btn::before,
.card .btn::before,
.btn-link::before {
  background: #606060;
}

div.app-drawer {
  position: absolute;
  display: block;
  left: -9999px;
  top: 1px;
  z-index: -1;
  width: 220px;
  box-sizing: border-box;
  margin-top: 17px;
}
div.app-drawer.active {
  z-index: 2 !important;
  left: 1px;
}
div.app-drawer #caret-icon {
  position: absolute;
  top: -18px;
  right: 63px;
  height: 17px;
  font-size: 32px;
  color: #fff !important;
}
div.app-drawer ul {
  margin: 0;
  padding: 10px;
  background-color: #fff;
  color: #606060;
  transform: scale(1);
  opacity: 1;
  text-align: left;
  list-style: none;
  font-size: 13px;
  background-clip: padding-box;
}
div.app-drawer ul li {
  margin-bottom: 10px;
  border-radius: 2px;
}
div.app-drawer ul li:last-of-type {
  margin-bottom: 0;
}
div.app-drawer ul li div.justify-content {
  position: relative;
}
div.app-drawer ul li div.justify-content a {
  cursor: pointer;
  top: 7px !important;
  all: unset;
  position: absolute;
  right: -10px;
}
div.app-drawer ul li div.justify-content a i.zmdi {
  cursor: pointer;
}
div.app-drawer ul li.portal {
  display: flex;
}
div.app-drawer ul li.portal > a {
  width: 100%;
  text-align: initial !important;
}
div.app-drawer ul li.portal > a .zmdi.zmdi-window-maximize {
  margin-right: 20px !important;
}
div.app-drawer ul li a {
  display: block;
  padding: 12px;
  clear: both;
  font-family: Roboto, Arial;
  font-size: 14px;
  font-weight: normal;
  line-height: 24px;
  text-decoration: none;
  white-space: nowrap;
  color: #606060;
  box-sizing: content-box;
  border: 1px solid transparent;
  border-radius: 2px;
}
div.app-drawer ul li a:hover, div.app-drawer ul li a:focus {
  border: 1px solid #e0e0e0;
  color: #606060;
}
div.app-drawer ul li a .zmdi {
  line-height: 100%;
  vertical-align: top;
  font-size: 24px;
  height: 24px;
  width: 30px;
  margin-right: 20px;
  text-align: center;
  color: #707070;
}
div.app-drawer ul li a span {
  position: relative;
  float: left;
  display: block;
  overflow: visible;
  width: 30px;
  height: 24px;
  margin-right: 20px;
}
div.app-drawer ul li a img {
  width: 40px;
  margin: -8px 0 0 -5px;
  filter: grayscale(100%);
  opacity: 0.9;
}
div.app-drawer ul li a:hover img {
  opacity: 1;
  filter: grayscale(0);
}
div.app-drawer ul li a.home {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 7px 12px;
}
div.app-drawer ul li a.home:hover, div.app-drawer ul li a.home:focus {
  background-color: rgba(0, 0, 0, 0.07);
  outline: none !important;
}

#notifications {
  display: block;
  width: 416px;
  box-sizing: border-box;
  background: transparent;
  overflow-y: auto;
}
#notifications .notification {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  background: #fff;
  color: #606060;
  box-sizing: border-box;
  width: 400px;
  padding: 13px 20px 17px 20px;
  margin: 5px 0 5px 8px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2);
  transition: opacity 0.5s;
  position: relative;
  float: left;
  opacity: 0;
  clear: both;
  min-height: 77px;
  border-radius: 2px;
}
#notifications .notification.callback {
  cursor: pointer;
}
#notifications .notification.show {
  opacity: 1;
}
#notifications .notification .icon-container {
  display: none;
}
#notifications .notification .notification-title {
  font-weight: bold;
  padding: 0;
  line-height: 21px !important;
  color: #202020;
}
#notifications .notification .notification-content {
  line-height: 1.5em;
}
#notifications .notification .notification-title,
#notifications .notification .notification-content {
  display: block;
}
#notifications .notification .notification-message {
  display: none;
}
#notifications .notification .notification-close {
  position: absolute;
  top: 17px;
  right: 20px;
  font-size: 16px;
  height: 12px;
  width: 12px;
  line-height: 12px;
  color: #a0a0a0;
}
#notifications .notification .notification-close span {
  height: 12px;
  width: 12px;
  line-height: 12px;
}
#notifications .notification .notification-close:hover {
  color: #707070;
}
#notifications .notification:first-child {
  margin-top: 10px;
}
#notifications .notification:last-child {
  margin-bottom: 15px;
}

#notification-blueprint {
  display: none;
}

#background-wrapper {
  z-index: 1;
  background: white;
  position: absolute;
  top: 2px;
  left: 0;
  right: 6px;
  bottom: 3px;
  margin-top: 17px;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.2);
}

div.default-dropdown {
  position: absolute;
  display: block;
  left: -9999px;
  top: 1px;
  z-index: -1;
  width: 210px;
  box-sizing: border-box;
  border: 1px solid transparent;
  margin-top: 17px;
}
div.default-dropdown.active {
  z-index: 2 !important;
  left: 1px;
}
div.default-dropdown #caret-icon {
  position: absolute;
  top: -18px;
  right: 8px;
  height: 18px;
  font-size: 32px;
  color: #fff !important;
}
div.default-dropdown ul {
  margin: 0;
  padding: 5px 0;
  background-color: #fff;
  color: #4C4C4C;
  transform: scale(1);
  opacity: 1;
  text-align: left;
  list-style: none;
  font-size: 13px;
  background-clip: padding-box;
}
div.default-dropdown ul li.user {
  text-align: left;
  padding: 15px 17px 13px;
  text-transform: uppercase;
  border-bottom: 1px solid #f0f0f0;
  font-weight: 500;
  color: #4c4c4c;
  margin-bottom: 10px;
}
div.default-dropdown ul li.divider {
  height: 1px;
  margin: 8px 0;
  padding: 0;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.08);
}
div.default-dropdown ul li a {
  display: block;
  padding: 8px 17px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  text-decoration: none;
  white-space: nowrap;
  color: #4c4c4c;
  transition: background-color;
  -webkit-transition: background-color;
  -o-transition: background-color;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
}
div.default-dropdown ul li a:hover, div.default-dropdown ul li a:focus {
  background-color: rgba(0, 0, 0, 0.075);
  color: #000;
}
div.default-dropdown ul li a .zmdi {
  line-height: 100%;
  vertical-align: top;
  font-size: 18px;
  width: 28px;
}

#announcement {
  display: none;
  width: 100vw;
  height: 100vh;
  background: rgba(159, 159, 159, 0.65);
}
#announcement .announcement-container {
  position: relative;
  height: auto;
  width: 45vw;
  margin: auto;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}
#announcement .announcement-container .header {
  position: relative;
  height: 115px;
  overflow: hidden;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
#announcement .announcement-container .header h1 {
  margin: 0;
  padding: 15px;
  font-size: 2vw;
}
#announcement .announcement-container .header .bg-image {
  height: 175px;
  width: 100%;
  object-fit: cover;
}
#announcement .announcement-container .header .img-container {
  position: absolute;
  right: 0;
  height: 100%;
  top: -1px;
}
#announcement .announcement-container .content {
  padding: 15px;
  max-height: 70vh;
  height: auto;
  background: #FFFFFF;
}
#announcement .announcement-container .content #content-data {
  display: block;
  height: auto;
  min-height: 150px;
}
#announcement .announcement-container .footer {
  position: absolute;
  background: #f0f0f0;
  height: 50px;
  width: 100%;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
#announcement .announcement-container .footer button {
  border-radius: 5px;
  margin: 10px;
}

html,
body {
  height: 100%;
  padding: 0;
  margin: 0;
}

body {
  overflow: hidden;
}

ul {
  list-style: none !important;
}

.pull-right {
  float: right;
}

/*# sourceMappingURL=app.css.map */
