* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
}

body {
  overflow-x: hidden;
}

app {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  min-height: 100vh;
}

.top-row {
  height: 3.5rem;
  display: flex;
  align-items: center;
}

main, .main {
  flex: 1;
  padding-top: 56px;
  position: relative;
}

.main .top-row {
  background-color: #f7f7f7;
  border-bottom: 1px solid #d6d5d5;
  justify-content: flex-end;
}

.main .top-row > a, .main .top-row .btn-link {
  white-space: nowrap;
  margin-left: 1.5rem;
}

.main .top-row a:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.content {
  padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
  outline: 1px solid #26b050;
}

.invalid {
  outline: 1px solid red;
}

.validation-message {
  color: red;
  font-size: small;
}

.vld-msg {
  font-size: 0.8rem;
}

.vertical-center {
  min-height: 80%;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
@media (max-width: 575.98px) {
  .vertical-center {
    align-items: start;
  }
}

.selected-row {
  background-color: rgba(108, 117, 125, 0.2);
  color: rgba(0, 0, 0, 0.7);
}

i {
  width: 24px;
  height: 24px;
}

.badge-custom-gray {
  background-color: #dee2e6;
}

.pwd-reset-box {
  position: inherit;
  text-align: center;
  align-content: center;
}

#blazor-error-ui {
  background: lightyellow;
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 2000;
}

#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}

.input-color-picker {
  padding: 1px;
  width: 50px;
  cursor: pointer;
}

@media (max-width: 767.98px) {
  .main .top-row:not(.auth) {
    display: none;
  }
  .main .top-row.auth {
    justify-content: space-between;
  }
  .main .top-row a, .main .top-row .btn-link {
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  app {
    flex-direction: row;
  }
}
.vessel {
  background-color: #fff;
  height: 98%;
  z-index: 20;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  border-radius: 4px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.14), 0px 3px 1px rgba(0, 0, 0, 0.12), 0px 1px 5px rgba(0, 0, 0, 0.2);
  padding: 5px 15px;
}
.vessel button.btn-primary {
  min-height: 36px !important;
  min-width: 90px;
  text-transform: uppercase;
}
.vessel button.btn-outline-primary {
  min-height: 36px !important;
  width: 90px;
  text-transform: uppercase;
}
.vessel .nav-tabs {
  border: 0;
  margin-top: 16px;
}
.vessel .nav-tabs .nav-item {
  border-bottom: 1px solid #dee2e6;
  padding-left: 0px;
  padding-right: 0px;
}
.vessel .nav-tabs .nav-link {
  cursor: pointer;
}
.vessel .nav-tabs .active {
  color: #64A7D0 !important;
  border-color: white white #64A7D0;
  border-bottom-width: medium;
}
.vessel .nav-tabs .nav-link:hover {
  border-bottom-width: medium;
  border-color: white white #dee2e6;
}
.vessel .nav-tabs a {
  color: #6c757d !important;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
.vessel .tab-content {
  overflow: hidden;
}
.vessel .tab-content .tab-pane {
  padding: 5px 0px;
}
.vessel .tab-content .tab-pane .form-container {
  margin-bottom: 5px;
}
@media (max-width: 575.98px) {
  .vessel .tab-content .tab-pane .form-container {
    max-height: 100%;
  }
}
@media (min-width: 768px) {
  .vessel .tab-content .tab-pane .form-container {
    max-height: 68vh;
  }
}
.vessel .tab-content .permissions table {
  table-layout: fixed;
  width: 80%;
}
.vessel .tab-content .permissions table th,
.vessel .tab-content .permissions table td {
  width: 100px;
  overflow: hidden;
}

.google-logo-bg {
  overflow-x: hidden;
  background-image: url("../../images/google-logo.jpg");
  background-repeat: no-repeat;
  background-position-x: center;
  background-size: cover;
}

.microsoft-logo-bg {
  overflow-x: hidden;
  background-image: url("../../images/microsoft-logo.jpg");
  background-repeat: no-repeat;
  background-position-x: center;
  background-size: cover;
}

.local-ad-logo-img {
  content: url("../../images/enstoa_digital.jpg");
}

.google-logo-img {
  content: url("../../images/google-logo.jpg");
}

.microsoft-logo-img {
  content: url("../../images/microsoft-logo.jpg");
}

.alias {
  cursor: alias;
}

.all-scroll {
  cursor: all-scroll;
}

.auto {
  cursor: auto;
}

.cell {
  cursor: cell;
}

.context-menu {
  cursor: context-menu;
}

.col-resize {
  cursor: col-resize;
}

.copy {
  cursor: copy;
}

.crosshair {
  cursor: crosshair;
}

.default {
  cursor: default;
}

.e-resize {
  cursor: e-resize;
}

.ew-resize {
  cursor: ew-resize;
}

.grab {
  cursor: grab;
}

.grabbing {
  cursor: grabbing;
}

.help {
  cursor: help;
}

.move {
  cursor: move;
}

.n-resize {
  cursor: n-resize;
}

.ne-resize {
  cursor: ne-resize;
}

.nesw-resize {
  cursor: nesw-resize;
}

.ns-resize {
  cursor: ns-resize;
}

.nw-resize {
  cursor: nw-resize;
}

.nwse-resize {
  cursor: nwse-resize;
}

.no-drop {
  cursor: no-drop;
}

.none {
  cursor: none;
}

.not-allowed {
  cursor: not-allowed;
}

.pointer {
  cursor: pointer;
}

.progress {
  cursor: progress;
}

.row-resize {
  cursor: row-resize;
}

.s-resize {
  cursor: s-resize;
}

.se-resize {
  cursor: se-resize;
}

.sw-resize {
  cursor: sw-resize;
}

.text {
  cursor: text;
}

.w-resize {
  cursor: w-resize;
}

.wait {
  cursor: wait;
}

.zoom-in {
  cursor: zoom-in;
}

.zoom-out {
  cursor: zoom-out;
}

.form-signin {
  width: 100%;
  max-width: 420px;
  padding: 15px;
  margin: auto;
}

.form-label-group {
  position: relative;
  margin-bottom: 1rem;
}

.form-label-group input,
.form-label-group label {
  height: 3.125rem;
  padding: 0.75rem;
}

.form-label-group label {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  margin-bottom: 0; /* Override default `<label>` margin */
  line-height: 1.5;
  color: #495057;
  pointer-events: none;
  cursor: text; /* Match the input under the label */
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: all 0.1s ease-in-out;
}

.form-label-group input::-webkit-input-placeholder {
  color: transparent;
}

.form-label-group input::-moz-placeholder {
  color: transparent;
}

.form-label-group input:-ms-input-placeholder {
  color: transparent;
}

.form-label-group input::-ms-input-placeholder {
  color: transparent;
}

.form-label-group input::placeholder {
  color: transparent;
}

.form-label-group input:not(:-moz-placeholder-shown) {
  padding-top: 1.25rem;
  padding-bottom: 0.25rem;
}

.form-label-group input:not(:-ms-input-placeholder) {
  padding-top: 1.25rem;
  padding-bottom: 0.25rem;
}

.form-label-group input:not(:placeholder-shown) {
  padding-top: 1.25rem;
  padding-bottom: 0.25rem;
}

.form-label-group input:not(:-moz-placeholder-shown) ~ label {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 12px;
  color: #777;
}

.form-label-group input:not(:-ms-input-placeholder) ~ label {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 12px;
  color: #777;
}

.form-label-group input:not(:placeholder-shown) ~ label {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 12px;
  color: #777;
}

/* Fallback for Edge
-------------------------------------------------- */
@supports (-ms-ime-align: auto) {
  .form-label-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .form-label-group label {
    position: static;
  }
  .form-label-group input::-ms-input-placeholder {
    color: #777;
  }
}
.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #212529;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button.collapsed {
  border-bottom-width: 0;
}
.accordion-button:not(.collapsed) {
  color: #5a96bb;
  background-color: #f0f6fa;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235a96bb'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(180deg);
}
.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  border-color: #b2d3e8;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(100, 167, 208, 0.25);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-width: 1px;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-width: 1px;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.accordion-collapse {
  border: solid rgba(0, 0, 0, 0.125);
  border-width: 0 1px;
}

.accordion-body {
  padding: 1rem 1.25rem;
}

.accordion-flush .accordion-button {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush .accordion-collapse {
  border-width: 0;
}
.accordion-flush .accordion-item:first-of-type .accordion-button {
  border-top-width: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion-flush .accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-width: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  vertical-align: middle;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  appearance: none;
}
.form-select:focus {
  border-color: #b2d3e8;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(100, 167, 208, 0.25);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
.form-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #212529;
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

.visible-scroll, .invisible-scrollbar, .scroll-style-darkgrey {
  overflow-y: auto;
}

.invisible-scrollbar::-webkit-scrollbar {
  display: none;
}

.scroll-style-darkgrey {
  overflow-x: hidden;
}

.scroll-style-darkgrey::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}

.scroll-style-darkgrey::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.scroll-style-darkgrey::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: #C4C4C4;
}

.select-list .title {
  display: inline-flex;
}
.select-list .title span {
  padding: 2px 5px;
}
.select-list .title::after {
  display: inline-block;
  content: ">";
  font-size: 10px;
  transform: rotate(90deg) scale(1, 2);
  margin-right: 2px;
  text-align: center;
  font-weight: bold;
}
.select-list .title:hover {
  background: #eaeaec;
}
.select-list .select-options {
  margin-top: 0px;
  display: none;
  position: absolute;
  width: 99%;
  z-index: 1000;
  border: 1px solid #495057;
  background: #fff;
  padding: 10px 0px 10px 10px;
}
.select-list .select-options .option {
  display: flex;
  padding-bottom: 5px;
}
.select-list .select-options .option span {
  padding: 5px 0 0px 5px;
}
.select-list .select-options .option label {
  display: inline-block;
  padding: 0px 30px 0px 0px;
}
.select-list .select-options .option:hover {
  color: white;
  background: #64A7D0;
}
.select-list .select-options .option input {
  margin: 0px 0 12px 15px;
}
.select-list:focus {
  color: #495057;
  background-color: #fff;
  border-color: #c6dfee;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(100, 167, 208, 0.25);
}

.background {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: absolute;
  overflow-x: hidden;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: 0;
}

.background.b1 {
  background-image: url("../images/background-images/background1.jpeg");
}

.background.b2 {
  background-image: url("../images/background-images/background2.jpeg");
}

.background.b3 {
  background-image: url("../images/background-images/background3.jpeg");
}

.background.b4 {
  background-image: url("../images/background-images/background4.jpeg");
}

.background.b5 {
  background-image: url("../images/background-images/background5.jpeg");
}

.background.b6 {
  background-image: url("../images/background-images/background6.jpeg");
}

.background.b7 {
  background-image: url("../images/background-images/background7.jpeg");
}

.background.b8 {
  background-image: url("../images/background-images/background8.jpeg");
}

.background.b9 {
  background-image: url("../images/background-images/background9.jpeg");
}

.background.b10 {
  background-image: url("../images/background-images/background10.jpeg");
}

.background.b11 {
  background-image: url("../images/background-images/background11.jpeg");
}

.background.b12 {
  background-image: url("../images/background-images/background12.jpeg");
}

.background.b13 {
  background-image: url("../images/background-images/background13.jpeg");
}

.background.b14 {
  background-image: url("../images/background-images/background14.jpeg");
}

.background.b15 {
  background-image: url("../images/background-images/background15.jpeg");
}

.background.b16 {
  background-image: url("../images/background-images/background16.jpeg");
}

.background.b17 {
  background-image: url("../images/background-images/background17.jpeg");
}

.background.b18 {
  background-image: url("../images/background-images/background18.jpeg");
}

.background.b19 {
  background-image: url("../images/background-images/background19.jpeg");
}

.background.b20 {
  background-image: url("../images/background-images/background20.jpeg");
}

.background.b21 {
  background-image: url("../images/background-images/background21.jpeg");
}

.background.b22 {
  background-image: url("../images/background-images/background22.jpeg");
}

.background.b23 {
  background-image: url("../images/background-images/background23.jpeg");
}

.background.b24 {
  background-image: url("../images/background-images/background24.jpeg");
}

.background.b25 {
  background-image: url("../images/background-images/background25.jpeg");
}

.background.b26 {
  background-image: url("../images/background-images/background26.jpeg");
}

#enstoa-topnav {
  height: 56px;
  min-height: 56px;
  max-height: 56px;
  padding-left: 0;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  color: rgba(0, 0, 0, 0.7);
}
#enstoa-topnav button {
  vertical-align: middle !important;
  color: inherit;
}
#enstoa-topnav .btn:focus {
  outline: 0;
  box-shadow: none;
}

.topnav-mm-theme {
  background-color: #6c757d;
  color: #fff !important;
}
.topnav-mm-theme button,
.topnav-mm-theme .nav-link {
  color: #fff !important;
}

.topnav-white-theme {
  background-color: #fff;
  color: #212529;
}
.topnav-white-theme button,
.topnav-white-theme .nav-link {
  color: #6c757d !important;
}

#sidebar {
  position: fixed;
  width: 250px;
  top: 56px;
  left: -250px;
  padding-bottom: 56px;
  background-color: #fff;
  color: #6c757d;
  min-height: 95vh;
  max-height: 95vh;
  z-index: 1035;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  border-radius: 4px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.14), 0px 3px 1px rgba(0, 0, 0, 0.12), 0px 1px 5px rgba(0, 0, 0, 0.2);
}
#sidebar ul lh {
  font-weight: 500;
  font-size: 10px;
  line-height: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
#sidebar ul li {
  list-style: none;
}
#sidebar ul li .material-icons {
  width: 24px;
  height: 24px;
}
#sidebar i {
  width: 2rem;
  vertical-align: middle !important;
  top: -2px;
}
#sidebar .nav-item {
  font-size: 14px;
  padding-bottom: 0.5rem;
}
#sidebar .nav-item .nav-link {
  color: #6c757d;
  height: 3rem;
  display: flex;
  align-items: center;
  line-height: 24px;
}
#sidebar .nav-item .nav-link :hover {
  background: none !important;
}
#sidebar .nav-item :hover {
  background-color: rgba(108, 117, 125, 0.2);
  color: rgba(0, 0, 0, 0.7);
}

.sideIn {
  animation: showNav 0.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.sideOut {
  animation: hideNav 0.4s;
  animation-timing-function: linear;
}

@keyframes showNav {
  from {
    left: -250px;
  }
  to {
    left: 0;
  }
}
@keyframes hideNav {
  from {
    left: 0;
  }
  to {
    left: -250px;
  }
}
#login-component img {
  max-width: 320px;
}

#login-component .botton-section {
  border-top: none;
}

.list-container table {
  width: 100%;
  margin-bottom: 0rem;
}
.list-container thead,
.list-container tbody tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.list-container thead .table-pd,
.list-container tbody tr .table-pd {
  width: 50%;
}
.list-container thead .table-action,
.list-container tbody tr .table-action {
  width: 20%;
}
.list-container tbody {
  display: block;
  max-height: 65vh;
}
@media (max-width: 575.98px) {
  .list-container {
    border-bottom: solid 2px #dee2e6;
    margin-bottom: 15px;
  }
}

#user-preferences p.header {
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0.18px;
}
#user-preferences .pwd-reset-box {
  position: absolute;
  top: 1rem;
  align-content: center;
}
#user-preferences .card img {
  width: 80%;
  padding: 5px;
}

@media (min-width: 1200px) {
  #user-preferences {
    min-width: 600px;
  }
}
@media (max-width: 1199.98px) {
  #user-preferences {
    min-width: 600px;
  }
}
@media (max-width: 991.98px) {
  #user-preferences {
    min-width: 600px;
  }
}
@media (max-width: 767.98px) {
  #user-preferences {
    min-width: 550px;
  }
  #user-preferences .card img {
    width: 50%;
    padding: 0;
  }
}
@media (max-width: 575.98px) {
  #user-preferences {
    min-width: 100%;
    min-height: 100%;
  }
  #user-preferences .card img {
    width: 50%;
    padding: 0;
  }
  #user-preferences .close-button, .update-button {
    display: block;
    width: 100%;
    min-height: 36px !important;
  }
  #user-preferences .pwd-reset-box {
    top: 0px;
  }
}
#application-box i {
  font-size: 24px;
  width: 43px;
  height: 43px;
  line-height: 1.25;
}

#application-box a {
  text-decoration: none;
  text-decoration-line: none;
}

#application-box h6 {
  font-size: 20px;
  font-weight: 600;
  /* identical to box height, or 120% */
  letter-spacing: 0.15px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.user-app-list {
  position: relative;
  max-height: 450px;
}

@media (min-width: 992px) {
  #application-box {
    min-height: 500px;
    min-width: 600px;
  }
}
@media (max-width: 991.98px) {
  #application-box {
    min-height: 500px;
    min-width: 600px;
  }
}
@media (max-width: 767.98px) {
  #application-box {
    min-height: 450px;
    min-width: 500px;
  }
}
@media (max-width: 575.98px) {
  #application-box {
    min-width: 100%;
  }
}
#user-administration .card img {
  width: 200px;
  max-width: 200px;
  padding: 2px;
}
#user-administration .car img::before {
  background-image: url("http://placehold.it/200x200");
}
#user-administration .table-permissions .EditPermission .material-icons {
  font-size: 20px;
}

#company-configuration .ConfigBody {
  display: block;
  max-height: 80vh;
  border-left: solid 1px #dee2e6;
}
#company-configuration #company-table {
  margin-bottom: 0px !important;
}
#company-configuration #company-table .mud-table-container {
  min-height: 55vh;
  max-height: 60vh;
}
#company-configuration #company-table .mud-table-root .columns-panel {
  position: absolute;
  max-width: 450px;
  max-height: 300px;
  overflow: auto;
}
#company-configuration #company-table .mud-table-head {
  border-radius: unset;
}
#company-configuration #company-table .mud-table-head .mud-table-row .mud-table-cell {
  background-color: #f0f6fa;
  font-weight: 400;
}

#multi-checkbox-container {
  padding: 10px 10px 0px 10px;
  margin-bottom: 10px;
}

.disabledText {
  color: var(--mud-palette-text-disabled);
}

.mud-button-root.mud-button.mud-button-text {
  margin-right: 10px;
}

input mmConfigComponent .mud-switch.form-control {
  border: none;
}

.appTabs .EditPermission label {
  margin-bottom: 0px;
}

.appTabs .EditPermission .material-icons {
  font-size: 20px;
}

.appTabs #AppInstanceRolesTable td {
  vertical-align: middle;
}

.appTabs #AppInstanceRolesTable thead tr td {
  font-size: 13px;
  font-weight: 600;
}

.appTabs .grayBackgroundColor {
  background-color: rgba(122, 122, 122, 0.0784313725);
}

.appTabs .grayBackgroundColorDark {
  background-color: #ECECEC;
}

.PbiReportContainer {
  height: 98%;
  width: 100%;
  max-width: 2000px;
}

.topbar-overlay {
  position: fixed;
  top: 9px;
  right: 150px;
  z-index: 1040;
}

.powerBiContainer {
  display: flex;
  height: 98%;
}
.powerBiContainer .pbiReportContainer {
  flex-grow: 1;
  width: 100%;
  height: 98%;
  max-width: 2000px;
}
.powerBiContainer .bookmarksPanel {
  margin: 10px;
  width: 300px;
  overflow: hidden;
  height: 80%;
}
.powerBiContainer .bookmarksPanel .bookmarkScroll {
  overflow-y: auto;
  display: block;
}
.powerBiContainer .mud-card-content {
  margin-top: 0px;
  padding-top: 0px;
  height: 100%;
}
.powerBiContainer .mud-checkbox.mud-ltr {
  margin-bottom: 0px;
}
.powerBiContainer .mud-popover.mud-popover-open {
  max-width: 265px;
  min-width: 190px;
  height: 135px;
}
.powerBiContainer .mud-paper {
  height: 100%;
}
.powerBiContainer .rowSelected {
  background-color: #F0F6FA;
}
.powerBiContainer .table-hover tbody tr:hover {
  background-color: #E6E6E6;
}
.powerBiContainer #bookmarksList table td {
  color: rgba(0, 0, 0, 0.6);
  width: 100%;
}
.powerBiContainer #bookmarksList table tr {
  cursor: pointer;
}
.powerBiContainer #bookmarksList .bookmarkName {
  width: 170px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}
.powerBiContainer #bookmarksList .bookmark-menu-option {
  text-align: right;
}

.powerBiContainerbooklink {
  padding: 0px;
  margin: 0px;
}

.powerBiContainerbooklink:hover {
  text-decoration: none;
}

/*------*/
.powerBiContainer .bookmarksPanel {
  height: auto;
}

.bookmarksPanel .closeBtn {
  min-width: 30PX;
  margin-left: auto;
  margin-right: 0 !important;
}

.bookmarksPanel .closeBtn .mud-button-label .mud-button-icon-start {
  margin-right: 0px !important;
  margin-inline-end: 0px !important;
}

/*Form design*/
#bookmarkActions .filled-Btn {
  padding: 3px 6px;
  font-size: 0.75rem;
}

#bookmarkActions .Outline-Btn {
  padding: 2px 6px;
  font-size: 0.75rem;
}

.Outline-Btn {
  padding: 2px 6px;
  font-size: 0.75rem;
  width: 10%;
  margin-left: auto;
}

#BookmarkForm .filled-Btn {
  padding: 3px 6px;
  font-size: 0.75rem;
}

#BookmarkForm .Outline-Btn {
  padding: 2px 6px;
  font-size: 0.75rem;
}

#BookmarkForm {
  margin: 0.25rem;
}

#BookmarkForm label {
  font-size: 0.85rem;
}

#BookmarkForm .mud-input-helper-text {
  font-size: 0.72rem;
}

#BookmarkForm .mud-icon-size-medium {
  font-size: 0.9rem;
}

#BookmarkForm .mud-typography-body1 {
  font-size: 0.9rem;
}

#BookmarkForm .mud-icon-button {
  padding: 8px !important;
}

/*Media querry for bookmark scrollbar*/
@media screen and (min-width: 576px) {
  .powerBiContainer .bookmarksPanel .bookmarkScroll {
    height: 40vh;
  }
}
@media screen and (min-width: 768px) {
  .powerBiContainer .bookmarksPanel .bookmarkScroll {
    height: 54vh;
  }
}
@media screen and (min-width: 992px) {
  .powerBiContainer .bookmarksPanel .bookmarkScroll {
    height: 60vh;
  }
}
@media screen and (min-width: 1200px) {
  .powerBiContainer .bookmarksPanel .bookmarkScroll {
    height: 62vh;
  }
}
@media screen and (min-width: 1400px) {
  .powerBiContainer .bookmarksPanel .bookmarkScroll {
    height: 75vh;
  }
}
@media print {
  body * {
    margin: 0; /* Remove default body margins */
    visibility: hidden; /* Hide other elements */
  }
  .powerBiContainer * {
    visibility: visible; /* Show elements only inside powerBiContainer */
  }
  .powerBiContainer .bookmarksPanel * {
    visibility: hidden; /* Hide Bookmarks Panel */
  }
  #reportContainer iframe {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    border: none; /* Remove iframe border */
    margin: 0; /* Remove iframe margins */
    padding: 0; /* Remove iframe padding */
    overflow: hidden;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  @page {
    size: landscape;
  }
}
@media (max-width: 575.98px) {
  #footer {
    display: none;
    visibility: hidden;
  }
}

.mud-input {
  color: rgba(0, 0, 0, 0.8666666667);
}

.mud-input.mud-input-filled {
  transition: background-color 200ms cubic-bezier(0, 0, 0.2, 1) 0ms;
  background: rgba(122, 122, 122, 0.0784313725) !important;
  background-color: rgba(122, 122, 122, 0.0784313725) !important;
}

.mud-input.mud-input-outlined:not(.mud-disabled):not(:focus-within):hover .mud-input-outlined-border {
  /*border-color: var(--mud-palette-action-default);*/
  border-color: #64a7d0 !important;
}

#users-table,
#app-table {
  margin-bottom: 0px !important;
}

#users-table .mud-table-container,
#app-table .mud-table-container {
  min-height: 55vh;
  max-height: 60vh;
}

#users-table .mud-table-root .columns-panel,
#app-table .mud-table-root .columns-panel {
  position: absolute;
  max-width: 450px;
  max-height: 300px;
  overflow: auto;
}

#users-table .mud-table-head,
#app-table .mud-table-head {
  border-radius: unset;
}

#users-table .mud-table-head .mud-table-row .mud-table-cell,
#app-table .mud-table-head .mud-table-row .mud-table-cell {
  background-color: #f0f6fa;
  font-weight: 400;
}

#permissions .table-permissions {
  min-height: 55vh;
  max-height: 60vh;
}

.invitationURLMsg {
  overflow: auto;
  white-space: nowrap;
  padding-bottom: 10px;
  padding-top: 10px;
  margin-bottom: 20px;
  background-color: #F0F0F0;
}

.mud-button-root.mud-button.mud-button-outlined.mud-button-outlined-primary.mud-button-outlined-size-medium {
  margin-right: 10px;
}

.unselectable,
.mud-typography-h6 {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#MenuManager-configuration #MenuItem-table .mud-table-head .mud-table-row .mud-table-cell {
  background-color: #f0f6fa;
  font-weight: 400;
}

#MenuManager-configuration #MenuItem-table tbody tr {
  display: table-row !important;
  width: 100%;
  table-layout: fixed;
  max-height: 60vh;
}

.MMFormFullWidth {
  flex: 0 0 50%;
  max-width: 50%;
}

#MenuManager-configuration #MenuItem-table .mud-table-container {
  min-height: 55vh;
  max-height: 60vh;
}