@charset "UTF-8";
/******************************************
* Cortex Media - Project CSS
******************************************/
h1 {
  font-family: "Roboto", sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 1em;
}

h2 {
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5em;
}

h3 {
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25em;
}

h4 {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25em;
}

a {
  color: #046E8F;
  text-decoration: none;
}
a:hover {
  color: #0090C1;
}
a.nocolor {
  color: inherit;
}

.small-font {
  font-size: 0.75rem;
}

.space {
  margin: 24px 0;
}

.container {
  min-height: 100%;
  position: relative;
  padding-bottom: 48px;
}

.content-wrapper {
  margin-left: 200px;
}

.content {
  margin: 72px 24px 24px;
}

.topbar {
  position: fixed;
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
  z-index: 100;
  width: 100%;
  top: 0;
  left: 0;
  height: 48px;
}
.topbar .topbar-content {
  position: relative;
  float: right;
  z-index: 100;
  background: transparent;
  padding-right: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.topbar .topbar-content .topbar-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 calc(24px / 2);
  height: 48px;
}
.topbar .topbar-content .topbar-box:last-child {
  padding-right: 0;
}

.infomessage-container {
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 50;
  height: 48px;
  padding: 12px 24px;
  margin-left: 200px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.infomessage-container.info {
  color: #00529B;
  background-color: #BDE5F8;
}
.infomessage-container.success {
  color: #4F8A10;
  background-color: #DFF2BF;
}
.infomessage-container.warning {
  color: #9F6000;
  background-color: #FEEFB3;
}
.infomessage-container.error {
  color: #D8000C;
  background-color: #FFBABA;
}

.breadcrumbs {
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 40;
  height: 48px;
  margin-left: 200px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}

.form input[type=text],
.form input[type=search],
.form input[type=email],
.form input[type=date],
.form input[type=number],
.form input[type=password],
.form select,
.form textarea {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  outline: 0;
  background: #f2f2f2;
  border-radius: 6px;
  border: 0;
  padding: 12px 0 12px 8px;
}
.form input[type=text].full-width,
.form input[type=search].full-width,
.form input[type=email].full-width,
.form input[type=date].full-width,
.form input[type=number].full-width,
.form input[type=password].full-width,
.form select.full-width,
.form textarea.full-width {
  width: 100%;
}
.form input[type=text]::placeholder,
.form input[type=search]::placeholder,
.form input[type=email]::placeholder,
.form input[type=date]::placeholder,
.form input[type=number]::placeholder,
.form input[type=password]::placeholder,
.form select::placeholder,
.form textarea::placeholder {
  color: #777777;
}
.form .file-selector {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.form .file-selector + label {
  display: inline-block;
  overflow: hidden;
  max-width: 80%;
  font-size: 1.25em;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #f1e5e6;
  background-color: #0f3b64;
  cursor: pointer;
  padding: 0.625rem 1.25rem;
}
.form .file-selector + label .icon {
  height: 30px;
  color: #0f3b64;
  vertical-align: middle;
}
.form .file-selector + label span {
  vertical-align: middle;
}
.form .file-selector:focus + label, .form .file-selector + label:hover {
  background-color: #10254a;
}
.form .file-selector:focus + label {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px;
}
.form.form-invers input[type=text],
.form.form-invers input[type=email],
.form.form-invers input[type=date],
.form.form-invers input[type=password],
.form.form-invers textarea {
  background: #ffffff;
}
.form select.full-width {
  width: 100%;
}
.form .show-inner-icon {
  position: relative;
}
.form .show-inner-icon i {
  position: absolute;
  right: 0.55em;
  top: 0.55em;
  padding: 1em;
  pointer-events: none;
  background: url("/static/img/checkmark.svg") no-repeat;
}

.btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  background: #3d454d;
  color: #f9f9f9;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1.05rem;
  padding: 12px 48px;
  letter-spacing: 1px;
  outline: none;
}
.btn:hover {
  background: #2a6eb3;
}
.btn:disabled {
  cursor: not-allowed;
  background: #7d7d7d;
  color: white;
}

.btn-red-bg {
  background-color: #10254a;
}

.btn-grey-bg {
  background-color: #b0afb0;
}

/***********
* Checkbox
************/
input[type=checkbox] + label {
  display: block;
  cursor: pointer;
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox] + label:before {
  box-sizing: content-box;
  content: "✓";
  border: 0.1em solid #999;
  border-radius: 0.1em;
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  margin-right: 0.2em;
  line-height: 1.3em;
  text-align: center;
  vertical-align: bottom;
  color: transparent;
  transition: 0.2s;
}

input[type=checkbox]:checked + label:before {
  background-color: #10254a;
  border-color: #10254a;
  color: #fff;
}

input[type=checkbox]:disabled + label:before {
  transform: scale(1);
  border-color: #0f3b64;
}

input[type=checkbox]:checked:disabled + label:before {
  transform: scale(1);
  background-color: #fff;
  border-color: #0f3b64;
}

.headroom {
  will-change: transform;
  transition: transform 200ms linear;
}

.headroom--pinned {
  transform: translateY(0%);
}

.headroom--unpinned {
  transform: translateY(-100%);
}

.list-table {
  width: 100%;
}

.list-table th,
.list-table td {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px #ddd solid;
}

.list-table th.no-border-padding,
.list-table td.no-border-padding {
  padding: 12px 8px 12px 0;
}

.list-table th {
  background-color: #e7e7e7;
  color: #909090;
  vertical-align: middle;
  height: 38px;
}
.list-table th.col-width-5 {
  width: 5%;
}
.list-table th.col-width-10 {
  width: 10%;
}
.list-table th.col-width-15 {
  width: 15%;
}
.list-table th.col-width-20 {
  width: 20%;
}
.list-table th.col-width-25 {
  width: 25%;
}
.list-table th.col-width-30 {
  width: 30%;
}
.list-table th.col-width-35 {
  width: 35%;
}
.list-table th.col-width-40 {
  width: 40%;
}
.list-table th.col-width-45 {
  width: 45%;
}
.list-table th.col-width-50 {
  width: 50%;
}
.list-table th.col-width-55 {
  width: 55%;
}
.list-table th.col-width-60 {
  width: 60%;
}
.list-table th.col-width-65 {
  width: 65%;
}
.list-table th.col-width-70 {
  width: 70%;
}
.list-table th.col-width-75 {
  width: 75%;
}
.list-table th.col-width-80 {
  width: 80%;
}
.list-table th.col-width-85 {
  width: 85%;
}
.list-table th.col-width-90 {
  width: 90%;
}
.list-table th.col-width-95 {
  width: 95%;
}

.list-table-preview-image-cell {
  width: 86px;
}

.list-table td {
  vertical-align: middle;
}

.list-table td.strong {
  font-weight: 700;
}

.list-table > tbody > tr {
  cursor: pointer;
}
.list-table > tbody > tr.no-link, .list-table > tbody > tr.child-row {
  cursor: default;
}

.list-table.not-clickable tr {
  cursor: default;
}

.list-table tr:hover {
  background-color: #f2f2f2;
}
.list-table tr:hover td.custom-link:not(.empty-link):hover {
  background-color: #d1dfff;
}

.list-table tr .editicons {
  display: none;
}

.list-table tr:hover .editicons {
  display: inline;
}

.list-table tr.topOfTOPList {
  background-color: #bae7ba;
}

.list-table tr.topOfTOPList:hover {
  background-color: #aae7aa;
}

table tr.no-td-border td {
  border: 0;
}

.list-reloaded .pagination li {
  display: inline-block;
  background-color: #f8f8f8;
  margin-right: 6px;
}
.list-reloaded .pagination li.active {
  background-color: #0f3b64;
}
.list-reloaded .pagination li.active a.page {
  color: #f9f9f9;
}
.list-reloaded .pagination li.active a.page:hover {
  cursor: pointer;
  background-color: #10254a;
}
.list-reloaded .pagination li a.page {
  padding: 12px;
  display: block;
}
.list-reloaded .pagination li a.page:hover {
  cursor: pointer;
  background-color: #e5e5e5;
}

table.data-table {
  width: 100%;
}
table.data-table tbody tr[role=row]:hover {
  cursor: pointer;
  background-color: #edf2ff;
}
table.data-table tbody tr {
  background-color: transparent;
}
table.data-table tbody tr.child-row > td {
  padding: 0;
}

.block {
  width: 100%;
  padding: 20px;
  border-radius: 6px;
  background-color: #f8f8f8;
  box-shadow: 0 0.5px 0 0 #ffffff inset, 0 1px 1px 0 #B3B3B3;
}

.user-edit-email {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.user-edit-email input {
  padding-right: 42px !important;
}
.user-edit-email img {
  display: none;
  position: absolute;
  right: 15px;
}

.dashboard-email {
  padding: 20px 10px;
  font-size: 1.25rem;
  border: #ccc dashed 2px;
  text-align: center;
}

.dashboard-stat-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.dashboard-stat-container .dashboard-stat {
  margin: 4px 12px;
}
.dashboard-stat-container .dashboard-stat .dashboard-stat-number {
  font-size: 3rem;
  font-weight: 700;
}
.dashboard-stat-container .dashboard-stat .dashboard-stat-title {
  color: #6d6d6d;
  font-size: 1.1rem;
  font-weight: 700;
}

.upload-container .upload-area {
  width: 50%;
  margin: 0 auto;
  height: 10rem;
  text-align: center;
  background-color: #ddd;
  border: 2px dashed #999;
}
.upload-container .upload-area .upload-area-hint {
  width: 100%;
  height: 100%;
  font-size: 2rem;
  color: #999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.upload-container .upload-file-form {
  margin: 2rem auto 2rem;
  text-align: center;
}
.upload-container .upload-file-form .upload-file-form-hint {
  color: #999;
}
.upload-container .analysis-companies {
  text-align: left;
}
.upload-container .analysis-companies ul {
  display: block;
  width: 50%;
  margin: 0 auto;
}
.upload-container .analysis-companies ul li {
  margin-bottom: 5px;
}
.upload-container .analysis-companies ul li.select-all {
  padding-bottom: 5px;
  border-bottom: 1px solid black;
}
.upload-container div.please-wait {
  display: none;
  color: grey;
}

.analysis-table-container .align-header-left {
  text-align: left;
  padding: 8px 10px;
}

.upload-progress {
  width: 50%;
  margin: 0 auto;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.upload-progress .upload-file-form-hint {
  color: #3d454d;
}
.upload-progress .upload-progress-container {
  position: relative;
  width: 100%;
  background-color: #ddd;
}
.upload-progress .upload-progress-container .text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  color: #3d454d;
  height: 25px;
  z-index: 10;
  line-height: 25px;
}
.upload-progress .upload-progress-container .bar {
  position: relative;
  width: 75%;
  height: 25px;
  background-color: #999;
  z-index: 5;
}

.child-template {
  display: flex;
  justify-content: center;
  align-items: stretch;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.1);
  background: #f5f5f5;
}
.child-template .files {
  width: 70%;
  padding: 16px 8px;
  display: flex;
  justify-content: left;
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid #ddd;
}
.child-template .files table {
  width: 100%;
  background: #f5f5f5;
}
.child-template .details {
  width: 29%;
  padding: 16px 8px;
  display: flex;
  justify-content: left;
  align-items: flex-start;
}
.child-template .details table tr td:first-child {
  font-weight: bold;
}

.form .search-wrapper {
  position: relative;
}
.form .search-wrapper .search-input {
  width: 500px;
}
.form .search-wrapper .search-suggestions {
  position: absolute;
  left: 0;
  top: 44px;
  width: 500px;
  height: 200px;
  padding: 12px 2.2em 12px 8px;
  background-color: #f8f8f8;
  border: 2px solid #b0afb0;
  border-top-width: 1px;
}
.form .search-wrapper #category {
  width: 250px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  outline: 0;
  background: #f2f2f2;
  border: 0;
  margin: 0 0 16px;
  padding: 12px 2.2em 12px 8px;
  cursor: pointer;
}
.form input[type=submit] {
  margin: 0 0 16px;
}
.form .icon {
  height: 50px;
}
.form .icon.success-icon {
  display: none;
}

.data-table tr td {
  height: 35px;
  vertical-align: middle;
}
.data-table tr td.disabled {
  cursor: not-allowed;
}
.data-table tr td a.disabled {
  pointer-events: none;
  cursor: not-allowed;
}
.data-table tr .icon {
  height: 20px;
  cursor: pointer;
  vertical-align: middle;
  opacity: 1;
}
.data-table tr .icon .icon-hover {
  opacity: 0;
}
.data-table tr:hover .icon-hover {
  opacity: 1;
}
.data-table tr:hover .icon-hover:hover {
  opacity: 0.5;
}
.data-table span.edit-controls {
  display: none;
}
.data-table tr.ajax-success {
  animation: ajax-success 1s linear;
}

@keyframes ajax-success {
  50% {
    background-color: #4F8A10;
  }
}
.dataTables_wrapper {
  margin-top: 20px;
}
.dataTables_wrapper .dataTables_filter {
  float: left !important;
}

.keywords-table th.column1, .category-table th.column1 {
  width: 40%;
}
.keywords-table th.column2, .category-table th.column2 {
  width: 20%;
}
.keywords-table th.column3, .category-table th.column3 {
  width: 20%;
}
.keywords-table th.column4, .category-table th.column4 {
  width: 15%;
}
.keywords-table th.column5, .category-table th.column5 {
  width: 5%;
}
.keywords-table tr:hover, .category-table tr:hover {
  background: transparent;
}
.keywords-table td, .category-table td {
  cursor: default;
}
.keywords-table input.keyword-input, .keywords-table input.category-input, .category-table input.keyword-input, .category-table input.category-input {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 100%;
  width: 100%;
  outline: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid black;
  padding: 5px 0 0 5px;
}
.keywords-table input.keyword-input.full-width, .keywords-table input.category-input.full-width, .category-table input.keyword-input.full-width, .category-table input.category-input.full-width {
  width: 100%;
}
.keywords-table input.keyword-input::placeholder, .keywords-table input.category-input::placeholder, .category-table input.keyword-input::placeholder, .category-table input.category-input::placeholder {
  color: #777777;
}
.keywords-table .icon:hover, .category-table .icon:hover {
  -webkit-filter: invert(0.5);
  filter: invert(0.5);
}
.keywords-table select.keyword-category-select, .category-table select.keyword-category-select {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 100%;
  outline: 0;
  background: #f2f2f2;
  border: 0;
  padding: 4px 0 4px 0;
  margin-left: -2px;
  cursor: pointer;
}

.keywords-syntax {
  padding: 0 40px 0 40px;
}
.keywords-syntax table.list-table {
  margin-top: 16px;
  font-size: 10pt;
}
.keywords-syntax table.list-table th {
  background-color: white;
  color: black;
}
.keywords-syntax table.list-table tr:hover {
  background-color: transparent;
}

table.dataTable thead {
  /*
  .sorting_asc_disabled{
    background-image:url("/img/icons/sort_asc_disabled.png")
  }

  .sorting_desc_disabled{
    background-image:url("/img/icons/sort_desc_disabled.png")
  }
  */
}
table.dataTable thead .sorting, table.dataTable thead .sorting_asc, table.dataTable thead .sorting_desc {
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center right;
}
table.dataTable thead .sorting {
  background-image: url("/static/img/icons/sort_both.png");
}
table.dataTable thead .sorting_asc {
  background-image: url("/static/img/icons/sort_asc.png");
}
table.dataTable thead .sorting_desc {
  background-image: url("/static/img/icons/sort_desc.png");
}

#jobs-list_filter {
  float: left !important;
  text-align: inherit !important;
}

div.company {
  border-bottom: 1px solid #dddddd;
}
div.company.no-files {
  color: grey;
}
div.company span.filename {
  font-weight: 700;
}

div.sources-edit-container .field-icon {
  float: right;
  margin-left: -25px;
  margin-top: -25px;
  position: relative;
  z-index: 2;
}
div.sources-edit-container .container {
  padding-top: 50px;
  margin: auto;
}

img.branding {
  width: 40px;
  height: 40px;
}

img.brandingPreview {
  width: 50px;
  height: 50px;
}

p.help {
  width: 1.3em;
  margin-left: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-indent: 40px;
  vertical-align: bottom;
  display: inline-block;
  line-height: 1.3;
}

p.help::before {
  content: "";
  background: url("/static/img/icons/help.svg") no-repeat;
  background-size: cover;
  width: 1.3em;
  height: 1.3em;
  float: left;
  cursor: pointer;
}

.help-theme {
  border: 1px solid #ccc;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  border-radius: 5px;
  background-color: white;
  color: black;
}

.help-theme[data-placement^=top] > .tippy-arrow {
  margin-left: -1px;
  bottom: -11px;
  border-top: 10px solid #888;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}

/* includes */
.menu-button {
  width: 40px;
  margin: 4px;
  left: 10;
  z-index: 40;
  height: 48px;
  display: block;
  visibility: visible;
}
.menu-button label.hamburg {
  display: block;
  background: rgba(85, 85, 85, 0);
  width: 50px;
  height: 40px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  border-radius: 4px;
}
.menu-button .line {
  position: absolute;
  height: calc(40px / 10);
  width: 100%;
  background: #000;
  border-radius: 2px;
  display: block;
  transition: 0.5s;
  transform-origin: center;
}
.menu-button .line:nth-child(1) {
  top: calc((40px - 5 * calc(40px / 10)) / 2);
}
.menu-button .line:nth-child(2) {
  top: calc(calc((40px - 5 * calc(40px / 10)) / 2) + 2 * calc(40px / 10));
}
.menu-button .line:nth-child(3) {
  top: calc(calc((40px - 5 * calc(40px / 10)) / 2) + 4 * calc(40px / 10));
}
.menu-button .line:nth-child(1).open {
  transform: translateY(calc(48px / 6)) rotate(-45deg);
}
.menu-button .line:nth-child(2).open {
  opacity: 0;
}
.menu-button .line:nth-child(3).open {
  transform: translateY(calc((48px / 6) * -1)) rotate(45deg);
}

.sidemenu {
  display: flex;
  flex-direction: column;
  width: 200px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #f5f5f5;
  color: #b9bbbe;
  border-right: 1px solid #e5e5e5;
  z-index: 200;
}
.sidemenu .not-live-server-label {
  position: absolute;
  top: 80px;
  left: 0;
  width: 200px;
  text-align: center;
  text-transform: uppercase;
  padding: 4px 0;
  margin: 14px 0;
  color: #fff;
}
.sidemenu .not-live-server-label .text {
  font-family: monospace;
  font-size: 0.65rem;
}
.sidemenu .not-live-server-label .gitinfo {
  font-size: 0.5rem;
  font-family: monospace;
}
.sidemenu .not-live-server-label.development {
  background-color: #cd4f39;
}
.sidemenu.transition {
  transition: 0.5s;
}
.sidemenu .logo {
  width: 100%;
  margin: 8% auto 5% auto;
  text-align: center;
}
.sidemenu .logo img {
  width: 50%;
}
.sidemenu .title {
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  margin: 0 auto;
  text-align: center;
}
.sidemenu .entries {
  margin-top: 24px;
}
.sidemenu .entries .entry {
  height: 48px;
  border-bottom: 1px solid #e5e5e5;
}
.sidemenu .entries .entry:first-child {
  border-top: 1px solid #e5e5e5;
}
.sidemenu .entries .entry .icon {
  width: 24px;
  margin-right: 12px;
}
.sidemenu .entries .entry a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding-left: 12px;
  color: #3d454d;
}
.sidemenu .entries .entry a:hover {
  color: #10254a;
}
.sidemenu .entries .entry a .icon.indent1 {
  margin-left: 1rem;
}
.sidemenu .entries .entry a .icon.indent2 {
  margin-left: 2rem;
}
.sidemenu .entries .entry a .icon.indent3 {
  margin-left: 3rem;
}
.sidemenu .entries .entry:hover {
  background-color: #d7d7d7;
}
.sidemenu .entries .entry.empty:hover {
  background-color: transparent;
}
.sidemenu .entries .entry.active {
  background-color: #e0e0e0;
}
.sidemenu .footer {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 32px;
  color: #999;
  font-size: 0.9rem;
  padding-left: 6px;
  border-top: 1px solid #e5e5e5;
}
.sidemenu .footer:hover {
  cursor: pointer;
  background-color: #d7d7d7;
}
.sidemenu .footer span.collapse-text {
  color: #333;
}

@media (min-width: 769px) {
  .menu-button {
    display: none;
  }

  .topbar-content .responsive-action {
    display: none !important;
  }

  .sidemenu {
    display: flex !important;
  }
  .sidemenu .responsive-topbar-actions {
    display: none;
  }

  body.collapsed .sidemenu {
    width: 48px;
  }
  body.collapsed .sidemenu .title {
    display: none;
  }
  body.collapsed .sidemenu .entries {
    margin-top: 0;
  }
  body.collapsed .sidemenu .entries .entry a {
    justify-content: center;
    padding: 0;
  }
  body.collapsed .sidemenu .entries .entry a .icon {
    margin: 0;
  }
  body.collapsed .sidemenu .entries .entry a .entry-text {
    display: none;
  }
  body.collapsed .sidemenu .logo {
    height: 37px;
    margin: 23% auto 1% auto;
  }
  body.collapsed .sidemenu .footer {
    margin-top: auto;
    display: flex;
  }
  body.collapsed .sidemenu .footer .collapse-text {
    display: none;
  }
  body.collapsed .content-wrapper {
    margin-left: 48px;
  }
  body.collapsed .breadcrumbs {
    left: 0;
    margin-left: 48px;
  }
  body.collapsed .infomessage-container {
    margin-left: 48px;
  }
}
@media (max-width: 768px) {
  .menu-button {
    display: block;
  }

  .topbar-content .desktop-action {
    display: none !important;
  }

  .sidemenu {
    display: none;
    right: 0;
    left: auto;
    margin-top: 48px;
    width: 200px;
    border-right: 1px solid #e5e5e5;
  }
  .sidemenu .logo {
    display: none;
  }
  .sidemenu .title {
    display: none;
  }
  .sidemenu .responsive-topbar-actions {
    display: flex;
    justify-content: space-evenly;
  }
  .sidemenu .responsive-topbar-actions .responsive-action img {
    height: 35px;
  }
  .sidemenu .footer {
    display: none;
  }

  .content-wrapper {
    margin-left: 0;
  }

  .content-wrapper {
    margin-left: 0;
  }

  .breadcrumbs {
    left: 0;
  }
}

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