/*
    MyHome demo theme
        - This file is required for the MyHome generic UI.
        - It is not required, but can be used as a base for other MyHome powered sites.
*/
html {
  font-family: var(--font-default);
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
html body {
  --primary: 10, 90, 159;
  --accent: 249, 213, 64;
  --save: 38, 194, 128;
  --delete: 194, 38, 28;
  --done: 13, 185, 61;
  --incomplete: 255, 209, 26;
  --ch-bg: 255, 255, 255;
  --ch-bg-1: 244, 246, 251;
  --ch-bg-2: 238, 240, 245;
  --ch-bg-3: 227, 230, 236;
  --ch-bg-4: 197, 200, 206;
  --ch-fg: 0, 0, 0;
  --ch-fg-1: 75, 75, 75;
  --ch-fg-2: 120, 130, 140;
  --ch-fg-3: 160, 170, 180;
  --font-headers: arial, sans-serif;
  --font-default: arial, sans-serif;
  --splash-url: "";
  --logo-url: "";
  --primary-highlight: 12, 108, 192;
  /* Miscellaneous Variables */
  --border-radius: 4px;
  /* How rounded buttons, lists, divs etc. should typically be. 0px = hard square */
  --shadow: 1px 1px 10px rgba(0, 0, 0, .1);
  /* Shadow style, you can set this to none for no shadow at all */
}
html body {
  color: rgba(var(--ch-fg), 1);
}
html * {
  font-family: var(--font-default);
}
html h1, html h2, html h3, html h4, html h5, html h6, html mat-panel-title {
  font-family: var(--font-headers);
  color: inherit;
}
html base-modal > h2 {
  font-family: var(--font-headers) !important;
}
html ::-webkit-scrollbar {
  z-index: 10;
  width: 15px;
  height: 15px;
  background-color: rgba(var(--ch-fg), 0.02);
}
html ::-webkit-scrollbar-thumb {
  height: 6px;
  width: 6px;
  border: 4px solid rgba(var(--ch-fg), 0);
  background-clip: padding-box;
  background-color: rgba(var(--ch-fg-2), 0.3);
}
html ::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}
html ::-webkit-scrollbar-corner {
  background-color: transparent;
}
html a:link,
html a:visited,
html a:hover,
html a:active {
  text-decoration: none;
  font-family: inherit;
  color: inherit;
}
html a:link:hover,
html a:visited:hover,
html a:hover:hover,
html a:active:hover {
  color: rgba(var(--primary), 1);
  cursor: pointer;
}
html a:link:hover *,
html a:visited:hover *,
html a:hover:hover *,
html a:active:hover * {
  cursor: inherit;
}
html .floating-panel {
  background-color: rgba(var(--ch-bg), 1);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 0 1em;
}
html body.myhome {
  height: 100%;
  width: 100%;
  margin: 0px;
  display: flex;
  flex-direction: column;
  background-color: rgba(var(--ch-bg-4), 1);
}
html body.myhome .logo > img {
  max-height: 64px;
  content: var(--logo-url);
}
html body.myhome .loading-overlay {
  position: absolute;
  height: 100vh;
  width: 100vw;
  backdrop-filter: blur(5px);
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
}
html body.myhome .loading-overlay .loading-spinner {
  border-color: rgba(var(--primary), 1);
  border-style: solid;
  border-top-color: transparent;
  border-width: 4px;
  width: 80px;
  height: 80px;
  border-radius: 80px;
  animation: loadingspin 1s ease-out infinite;
}
@keyframes loadingspin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
html body.myhome.myhome-loaded .loading-overlay {
  display: none !important;
}
html body.myhome:not(.myhome-contract-loaded):not(.mh-logged-out):not(.myhome-always-visible) > main > div {
  visibility: hidden;
}
html body.myhome > .header {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin: 0px;
  z-index: 100;
  background-color: rgba(var(--ch-bg), 1);
  box-shadow: var(--shadow);
}
html body.myhome > .header .logo {
  padding: 1.5em;
  border-right-style: solid;
  border-right-width: 1px;
  border-color: rgba(var(--ch-bg-2));
  max-height: 64px;
}
html body.myhome > .header > h1 {
  padding: 0px 1em;
}
html body.myhome > .header > div.contractDetails {
  flex-grow: 1;
  text-align: right;
  margin-right: 2%;
}
@media screen and (max-width: 800px) {
  html body.myhome > .header > h1 {
    padding: 0.5rem;
    flex-grow: 1;
    text-align: center;
    font-size: 1.5em;
    margin: 0px;
  }
  html body.myhome > .header .logo {
    align-self: flex-start;
    border-style: none;
  }
}
html body.myhome > main {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  overflow: hidden;
  position: relative;
}
html body.myhome > main.login, html body.myhome > main.resetpassword {
  justify-content: center;
  align-items: center;
  background-color: rgba(var(--primary), 1);
  background-image: var(--splash-url);
  background-size: cover;
}
html body.myhome > main.login .content, html body.myhome > main.resetpassword .content {
  margin: 10vw;
  max-width: 500px;
  background-color: rgba(var(--ch-bg), 1);
  box-shadow: var(--shadow);
  padding-left: 2%;
}
html body.myhome > main.login .content .logo, html body.myhome > main.resetpassword .content .logo {
  display: flex;
  justify-content: center;
}
html body.myhome > main.login .content .logo img, html body.myhome > main.resetpassword .content .logo img {
  margin: 1em;
  max-height: 64px;
}
html body.myhome > main > myhome-nav {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 100;
  border-top-style: solid;
  border-top-width: 1px;
  border-color: rgba(var(--ch-bg-2));
  width: 0;
  flex-shrink: 0;
  background-color: rgba(var(--ch-bg), 1);
  transition: width 0.2s;
  box-shadow: var(--shadow);
}
@media screen and (max-width: 800px) {
  html body.myhome > main > myhome-nav {
    width: 0;
  }
  html body.myhome > main > myhome-nav > .toggle {
    position: absolute;
    top: 1em;
    right: -50px;
    z-index: 2;
    transition: right 0.2s;
  }
  html body.myhome > main > myhome-nav.open {
    width: 215px;
    max-width: 90vw;
  }
  html body.myhome > main > myhome-nav.open > .toggle {
    right: -20px;
  }
}
@media screen and (min-width: 801px) {
  html body.myhome > main > myhome-nav {
    width: 70px;
  }
  html body.myhome > main > myhome-nav > .toggle {
    display: none;
  }
}
html body.myhome > main > myhome-nav > ul {
  display: flex !important;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
html body.myhome > main > myhome-nav > ul li {
  display: block !important;
  margin-bottom: 0px !important;
}
html body.myhome > main > myhome-nav > ul li.active {
  background-color: rgba(var(--ch-bg-1), 1);
}
html body.myhome > main > myhome-nav > ul li.active .mat-button-wrapper {
  color: rgba(var(--primary), 1) !important;
}
html body.myhome > main > myhome-nav > ul li.flex {
  flex: 1;
}
html body.myhome > main > myhome-nav > ul li .mat-flat-button {
  display: block;
  text-align: left;
  line-height: 1em;
  font-size: 1em;
  padding: 0.5em 1em;
  width: 100%;
}
html body.myhome > main > myhome-nav > ul li .mat-flat-button > .mat-button-wrapper {
  display: flex;
  flex-direction: column;
  font-size: 10px;
  color: rgba(var(--ch-fg-1), 1);
}
html body.myhome > main > myhome-nav > ul li .mat-flat-button > .mat-button-wrapper .icon {
  display: inline;
  color: rgba(var(--primary), 1);
}
html body.myhome > main > myhome-nav > ul li myhome-logout > button > .mat-button-wrapper:before {
  content: "logout";
  font-family: "Material Icons";
  font-size: 24px;
  color: rgba(var(--primary), 1);
}
html body.myhome > main > myhome-nav > ul li > ul {
  display: block;
  background-color: rgba(var(--ch-fg), 0.03);
}
html body.myhome > main > myhome-nav .toggle {
  background-color: rgba(var(--primary), 1);
}
html body.myhome > main > .tender-nav {
  flex-shrink: 0;
  max-width: 20vw;
  width: 20vw;
  padding: 0;
  background-color: rgba(var(--ch-bg), 1);
}
html body.myhome > main > .tender-nav h4 {
  padding: 0.5em 1em;
}
html body.myhome > main > .tender-nav ul {
  display: flex !important;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
html body.myhome > main > .tender-nav ul li {
  display: block !important;
  margin-bottom: 0px !important;
  font-size: 12px;
}
html body.myhome > main > .tender-nav ul li.active {
  background-color: rgba(var(--ch-bg-1), 1);
}
html body.myhome > main > .tender-nav ul li.active .mat-button-wrapper {
  color: rgba(var(--primary), 1) !important;
}
html body.myhome > main > .tender-nav ul li.flex {
  flex: 1;
}
html body.myhome > main > .tender-nav ul li .mat-flat-button {
  display: block;
  text-align: left;
  border-radius: var(--border-radius);
  border-bottom: 1px solid rgba(var(--ch-bg-1));
  line-height: 1em;
  font-size: 1em;
  padding: 0.5em 1em;
  width: 100%;
}
html body.myhome > main > .tender-nav ul li .mat-flat-button > .mat-button-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: rgba(var(--ch-fg-1), 1);
}
html body.myhome > main > .tender-nav ul li .mat-flat-button > .mat-button-wrapper *:nth-child(2) {
  text-align: right;
  flex-grow: 1;
}
html body.myhome > main > .tender-nav ul li .mat-flat-button > .mat-button-wrapper label {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
html body.myhome > main > .tender-nav ul li .mat-flat-button > .mat-button-wrapper .badge {
  margin-left: 0.5em;
  color: rgba(var(--primary), 1);
}
html body.myhome > main > div {
  overflow-x: hidden;
  overflow-y: auto;
  flex-grow: 1;
  padding: 2%;
}
@media screen and (max-width: 800px) {
  html body.myhome > main > div {
    padding-left: calc(2% + 40px);
  }
}
html body.myhome > main > div > h1 {
  margin-top: 0px;
}
html body.myhome > main > div.dashboard {
  padding: 1%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
html body.myhome > main > div.dashboard > .dashboard-grid {
  display: grid;
  flex-grow: 1;
  overflow-x: hidden;
  max-width: min(100vw, 1500px);
}
@media screen and (min-width: 1301px) {
  html body.myhome > main > div.dashboard > .dashboard-grid {
    grid: "progress progress progress photos photos photos" 2fr "contact contact docs docs notes notes" 2fr/1fr 1fr 1fr 1fr 1fr 1fr;
  }
}
@media screen and (min-width: 1301px) and (max-height: 800px) {
  html body.myhome > main > div.dashboard > .dashboard-grid {
    grid-template-rows: auto auto auto;
  }
}
@media screen and (max-width: 1300px) {
  html body.myhome > main > div.dashboard > .dashboard-grid {
    grid: "progress progress" auto "contact contact" auto "photos notes" 1fr "docs notes" auto/1fr 1fr;
  }
  html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile {
    min-height: 33vh;
  }
}
@media screen and (max-width: 800px) {
  html body.myhome > main > div.dashboard > .dashboard-grid {
    max-width: 100vw;
    grid: "progress" auto "contact" auto "housetype" 1fr "photos" auto "photostat" auto "docs" auto "notes" auto "surveystat" auto/1fr;
  }
  html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile > .heading > h3 {
    padding-left: 50px !important;
  }
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: rgba(var(--ch-bg), 1);
  box-shadow: var(--shadow);
  margin: 0.5vw;
  border-radius: var(--border-radius);
}
@media screen and (max-width: 1300px), screen and (max-height: 800px) {
  html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile {
    overflow: visible;
  }
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile > .heading > h3 {
  background-color: rgba(var(--ch-bg-2), 1);
  padding: 0.5em;
  margin: 0;
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile > .heading > h3 > a {
  display: block;
  width: 100%;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile > .heading > h3 > a:hover {
  color: rgba(var(--primary), 1);
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile > .content {
  flex-grow: 1;
  overflow-y: auto;
  overflow-x: hidden;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile > .content *:not(h1, h2, h3, h4, h5, h6, myhome-prop, myhome-prop > span, .material-icons) {
  font-size: 12px;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.progress {
  grid-area: progress;
  height: max-content;
  min-height: -webkit-fill-available;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.progress .content {
  padding: 2%;
  overflow: hidden;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.progress .content .stagestories {
  display: flex;
  flex-direction: row;
  height: 100%;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.progress .content .stagestories > .stage {
  display: flex;
  flex-direction: column;
  margin-right: 2%;
  padding-right: 2%;
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: rgba(var(--ch-bg-2), 1);
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.progress .content .stagestories > .stage > a {
  display: flex;
  flex-direction: column;
  margin: 20% 0%;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.progress .content .stagestories > .stage > a h5 {
  text-align: center;
  white-space: nowrap;
  margin: 0px;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.progress .content .stagestories > .stage > a myhome-icon {
  padding: 10%;
  height: 20vh;
  max-height: 6em;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.progress .content .stagestories > .stories {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  flex-grow: 1;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.progress .content .stagestories > .stories .story {
  padding: 0% 2% 2%;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.progress .content .stagestories > .stories .story myhome-stories ul > li > div {
  padding: 0.8em;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.progress .content .stagestories > .stories .story myhome-stories ul > li > div > div > label {
  margin: 0px;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.progress li > div {
  margin: 0px;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.activity {
  grid-area: activity;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.photos {
  grid-area: photos;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.photos myhome-photos {
  height: 100%;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.photos myhome-photos ul {
  height: 100%;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.photos myhome-photos ul > li {
  height: 100%;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.photos myhome-photos ul > li > div {
  margin: 0px;
}
@media screen and (max-width: 800px) {
  html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.photos myhome-photos ul > li > div {
    height: 80vw;
  }
}
@media screen and (min-width: 801px) {
  html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.photos myhome-photos ul > li > div {
    height: 100%;
  }
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.docs {
  grid-area: docs;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.docs ul > li > div > div {
  padding: 10px 5px;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.contact {
  grid-area: contact;
  max-width: 100vw;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.contact > .content {
  overflow-x: auto;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.contact > .content > myhome-roles > ul {
  margin: 0px;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.contact > .content > myhome-roles > ul .material-icons {
  font-size: 1.5em;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.contact > .content > myhome-roles > ul > li > div.info {
  display: flex;
  flex-direction: column;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.contact > .content > myhome-roles > ul > li > div.info > div > div {
  overflow: hidden;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.contact > .content > myhome-roles > ul > li > div.info > label, html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.contact > .content > myhome-roles > ul > li > div.info > div > div > div:not(.contactDetails) {
  color: rgba(var(--ch-fg), 1);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.contact > .content > myhome-roles > ul > li > div.info profile-pic {
  width: 50px;
  height: 50px;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.contact > .content > myhome-roles > ul > li > div.info profile-pic > div {
  height: 50px;
  width: 50px;
  margin: 0px;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.notes {
  grid-area: notes;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.notes > .content {
  padding: 2%;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.housetype {
  display: none;
  grid-area: housetype;
  overflow: hidden;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.housetype .content {
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.housetype .content .houseTypeImg {
  overflow: hidden;
  flex-grow: 1;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.housetype .content .houseTypeImg full-swiper image > img {
  width: 100%;
  height: 100%;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.housetype .content .houseTypeData {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 2%;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.housetype .content .houseTypeData > h2 {
  margin: 0px;
  flex: 100%;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.housetype .content .houseTypeData > div {
  margin-top: 0.5em;
  flex: 50%;
  display: flex;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.housetype .content .houseTypeData > div > span {
  margin-left: 5px;
}
html body.myhome > main > div.dashboard > .dashboard-grid .dashboard-tile.housetype .content .houseTypeData > div > span + span {
  margin-top: 5px;
}
html body.myhome > main > div.timeline {
  display: flex;
  justify-content: center;
  overflow-y: hidden;
}
html body.myhome > main > div.timeline > div {
  background-color: rgba(var(--ch-bg), 1);
  box-shadow: var(--shadow);
  max-width: 1200px;
  width: 1200px;
  display: flex;
  flex-direction: column;
  overflow-y: hidden;
}
html body.myhome > main > div.timeline > div div.progress-timeline {
  max-height: 100%;
}
html body.myhome > main > div.timeline > div div.progress-timeline myhome-timeline {
  max-height: 100%;
}
html body.myhome > main > div.timeline > div div.progress-timeline myhome-timeline .timeline {
  margin: 0 !important;
}
html body.myhome > main > div.timeline > div div.progress-timeline myhome-timeline formcontrol[name=jobType] .form-control-wrapper > div {
  flex-basis: 100%;
  border-radius: 0px;
}
html body.myhome > main > div.timeline > div div.progress-timeline myhome-timeline formcontrol[name=jobType] .form-control-wrapper > div mat-button-toggle-group {
  border-radius: 0px;
  width: 100%;
}
html body.myhome > main > div.timeline > div div.progress-timeline myhome-timeline formcontrol[name=jobType] .form-control-wrapper > div mat-button-toggle-group mat-button-toggle {
  flex-grow: 1;
  width: 100%;
}
html body.myhome > main > div.timeline > div div.progress-timeline myhome-timeline formcontrol[name=jobType] .form-control-wrapper > div mat-button-toggle-group mat-button-toggle.mat-button-toggle-checked {
  background-color: rgba(var(--ch-bg-1), 1);
  color: rgba(var(--primary), 1);
}
@media screen and (max-width: 800px) {
  html body.myhome > main > div.timeline > div div.progress-timeline myhome-timeline mat-button-toggle-group {
    flex-direction: column;
  }
  html body.myhome > main > div.timeline > div div.progress-timeline myhome-timeline mat-button-toggle-group mat-button-toggle myhome-icon {
    width: 2em !important;
    height: 2em !important;
    margin-bottom: 0.7em;
  }
  html body.myhome > main > div.timeline > div div.progress-timeline myhome-timeline mat-button-toggle-group mat-button-toggle h4 {
    margin: 0;
  }
}
html body.myhome > main > div.issues, html body.myhome > main > div.notes {
  display: flex;
  justify-content: center;
  overflow-y: auto;
}
html body.myhome > main > div.issues myhome-issues, html body.myhome > main > div.issues myhome-notes, html body.myhome > main > div.notes myhome-issues, html body.myhome > main > div.notes myhome-notes {
  flex: 1;
  max-width: 1400px;
}
html body.myhome > main > div.documents {
  display: flex;
  justify-content: center;
}
html body.myhome > main > div.documents myhome-documents {
  width: 1000px;
  max-width: 100%;
}
html body.myhome > main > div.contact {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
}
html body.myhome > main > div.contact > .contact-info {
  max-width: 1300px;
  flex-grow: 1;
}
html body.myhome > main > div.maintenance-detail-layout {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
}
html body.myhome > main > div.maintenance-detail-layout > .maintenance-sidebar {
  display: flex;
  flex-direction: column;
  max-width: 300px;
}
html body.myhome > main > div.maintenance-detail-layout > .maintenance-sidebar > * {
  margin: 1vw;
}
html body.myhome > main > div.maintenance-detail-layout > .maintenance-sidebar myhome-maintenance-overview {
  background-color: rgba(var(--ch-bg), 1);
  box-shadow: var(--box-shadow);
}
html body.myhome > main > div.maintenance-detail-layout > .maintenance-sidebar .myhome-nav {
  box-shadow: var(--box-shadow);
}
html body.myhome > main > div.maintenance-detail-layout > .maintenance-sidebar .myhome-nav > ul {
  display: flex;
  flex-direction: column;
}
html body.myhome > main > div.maintenance-detail-layout > .maintenance-sidebar .myhome-nav > ul > li {
  margin: 0px;
  color: rgba(var(--primary-contrast));
  background-color: rgba(var(--primary));
}
html body.myhome > main > div.maintenance-detail-layout > .maintenance-sidebar .myhome-nav > ul > li.active > a {
  background-color: rgba(var(--primary-contrast), 0.1);
}
html body.myhome > main > div.maintenance-detail-layout > .maintenance-sidebar .myhome-nav > ul > li > a {
  display: flex;
  flex-direction: row;
  color: inherit;
  border-radius: 0px;
  padding: 2% 5%;
}
html body.myhome > main > div.maintenance-detail-layout > .maintenance-sidebar .myhome-nav > ul > li > a .icon {
  margin-right: 12px;
  height: 24px;
}
html body.myhome > main > div.maintenance-detail-layout > .maintenance-sidebar .myhome-nav > ul > li:last-of-type.active > a {
  background-color: transparent;
}
html body.myhome > main > div.maintenance-detail-layout > .maintenance-content {
  margin: 1vw;
  background-color: rgba(var(--ch-bg), 1);
  box-shadow: var(--box-shadow);
  flex-grow: 1;
  max-width: 1000px;
}
html body.myhome > main > div > .tender-toolbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
html body.myhome > main > div > .tender-toolbar > h2 {
  flex-grow: 1;
}
html body.myhome > main > div.tender-overview .swiper-wrapper {
  height: 20vh;
  max-height: 20vh;
}
html body.myhome > main > div.tender-overview myhome-tender-overview {
  position: relative;
  background-color: rgba(var(--ch-bg), 1);
  padding: 1em;
}

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