* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 13px;
}

body {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
}

body > div.container-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 768px) {
  body > div.container-wrapper {
    -webkit-transition: left 0.2s ease-in-out;
    transition: left 0.2s ease-in-out;
    will-change: auto;
    left: 0;
  }
  body > div.container-wrapper.push-left {
    left: calc(100% - 65px);
  }
}

@media (min-width: 576px) {
  div.container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  div.container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  div.container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  div.container {
    max-width: 1140px;
  }
}

@media (min-width: 1500px) {
  div.container {
    max-width: 1420px;
  }
}

body > div.container-wrapper > div.content-wrapper {
  overflow: auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

body > div.container-wrapper > div.content-wrapper > div.scroll-wrapper {
  overflow-x: visible;
  overflow-y: visible;
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

body > div.container-wrapper > div.content-wrapper > div.scroll-wrapper > div.container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 0;
  min-height: 100%;
  padding-right: 0;
  padding-left: 0;
}

/* body.page-examination > div.container-wrapper > div.content-wrapper > div.scroll-wrapper > div.container {
  width: 1130px;
} */
body > div.container-wrapper > div.content-wrapper > div.scroll-wrapper > div.container > main {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 15px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

body > div.container-wrapper > div.content-wrapper > div.scroll-wrapper > div.container > main > div.content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.bg-light-gray {
  background-color: #F0F1F3;
}

.bg-medium-gray {
  background-color: #E2E3E5;
}

/* ! Utility classes */
.w-0 {
  width: 0;
}

.w-auto {
  width: auto;
}

.h-100vh {
  height: 100vh;
}

.flex-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.no-wrap {
  white-space: nowrap;
}

.small {
  font-size: 0.9em;
}

/* ! Buttons */
.btn:focus, .btn:active:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.btn.btn-primary {
  border-color: #428062;
  background: #428062;
  color: white;
}

.btn.btn-primary:hover {
  border-color: #1C9397;
  background: #1C9397;
}

.btn.btn-primary:active {
  border-color: #087A7D !important;
  background: #087A7D !important;
}

.btn.btn-empty {
  text-transform: uppercase;
  text-align: left;
  color: #000;
}

.btn.btn-empty.active {
  text-decoration: underline;
  background: transparent;
  font-weight: bolder;
}

.btn.btn-save {
  background-color: #428062;
  text-transform: uppercase;
  color: white;
}

input[type=text], input[type=password], input[type=email], input[type=number], input[type=time], input[type=date], textarea {
  -webkit-touch-callout: auto;
  -webkit-user-select: auto;
}

* {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}

body.page-menu {
  background-color: #51978C;
}

body.page-wordpress main > header {
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  margin-bottom: 1rem;
  margin-top: 2rem;
  text-align: center;
  font-weight: 300;
  font-size: 32px;
}

body.page-appointments main > header {
  font-family: 'Roboto', sans-serif;
  border-bottom: 1px dotted #323232;
  border-top: 1px dotted #323232;
  margin-bottom: 40px;
  font-weight: 500;
  padding: 10px 0;
  font-size: 36px;
  color: #383838;
}

body.page-wordpress main > div.content > section {
  background-color: #FFF;
}

@media (min-width: 576px) and (max-width: 768px) {
  div.container {
    max-width: unset;
  }
}

body > div.container-wrapper > div.container {
  overflow-y: auto;
  overflow-x: hidden;
}

/* Single examination */
#examinations > div {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: none;
  height: 100%;
  width: 100%;
}

#examinations > div[data-examination] {
  /* padding: 10px; */
  /* background: #F8F8F8; */
  /* border-top-left-radius: 10px; */
  /* border-top-right-radius: 10px; */
}

#examinations > div.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#examinations > div.active [data-section] {
  transition: opacity 0.2s ease-in-out;
  opacity: 1;
}

#examinations > div.active [data-section]:not(.active) {
  position: absolute;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  /* height: 0; */
}

/* Camera controls */
div.camera-control-panel {
  /* background: #229D9B; */
  /* border-radius: 5px; */
  /* color: white; */
  /* padding: 6px; */
}

div.camera-control-panel a {
  display: block;
}

/* div.camera-control-panel > div.btn-group {
  border-left: 1px solid #E8EEED;
  padding-left: 5px;
  margin-left: 5px;
} */
div.camera-control-panel a, div.camera-control-panel button {
  font-family: Roboto;
  border: 1px solid #CCC;
  background: #E8E8E8;
  display: inline-block;
  padding: .5rem 1rem;
  border-radius: 3px;
  font-weight: 500;
  font-size: 13px;
  color: #222;
}

div.camera-control-panel a > i,
div.camera-control-panel button > i {
  /* display: none; */
  /* position: relative; */
  /* font-size: 16px; */
  /* bottom: -1px; */
}

div.camera-control-panel a:hover,
div.camera-control-panel button:hover {
  /* transition: background 0.2s ease-in-out; */
  /* text-decoration: none; */
  /* background: #19807E; */
  /* outline: none; */
  /* border: none; */
  /* color: white; */
}

div.camera-control-panel button:focus {
  outline: none;
}

/* Camera preview screen */
div.examination {
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  padding: 1.5rem;
}

div.examination div.viewports {
  /* background: #999999; */
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

div.examination div.viewports > div {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

div.examination div.viewports > div > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (min-width: 576px) {
  div.examination div.viewports > div > div + div {
    margin-left: 12px;
  }
}

@media (min-width: 992px) {
  div.examination div.viewports > div > div + div {
    margin-left: 30px;
  }
}

div.examination div.viewports div.video-viewport {
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
  position: relative;
  max-height: 450px;
  background-color: #FFFFFF;
  /* background-color: #f9fcfb; */
  /* border: 1px solid #b3baba; */
  border-radius: 7px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* max-height: 292px; */
  /* height: 584px; */
  cursor: pointer;
}

div.examination.trychologia div.viewports div.video-viewport {
  border: 1px solid #DDDDDD;
}

div.examination div.viewports div.video-viewport div.examination-name {
  /* background: rgba(0, 0, 0, 0.75); */
  border-bottom-right-radius: 5px;
  position: absolute;
  padding: 12px 20px;
  font-weight: 300;
  font-size: 18px;
  /* color: white; */
  left: 0;
  right: 0;
  top: 0;
  text-align: center;
  /* text-transform: uppercase; */
  /* letter-spacing: 6px; */
}

@media (max-width: 450px) {
  div.examination div.viewports div.video-viewport {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
}

div.examination div.viewports div.video-viewport.active {
  background-color: #333333 !important;
}

div.examination div.viewports div.video-viewport.captured {
  background-color: #999999;
}

div.examination div.viewports div.video-viewport.active div.pinch-zoom-container {
  /* width: 100%; */
}

div.examination div.viewports div.video-viewport div.placeholder {
  height: 100%;
  width: 100%;
  overflow: hidden;
  text-align: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  /* border: 1px solid #b3baba; */
  border: 1px solid #DDDDDD;
  border-radius: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 3rem;
  padding-bottom: 1rem;
}

div.examination.trychologia div.viewports div.video-viewport div.placeholder {
  border: none;
}

/* div.examination div.viewports div.video-viewport.fullscreen {
  display: flex;
}

div.examination div.viewports div.video-viewport.fullscreen div.placeholder {
  flex: 1;
}

div.examination div.viewports div.video-viewport div.fullscreen-controls {
  display: none;
}

div.examination div.viewports div.video-viewport.fullscreen div.fullscreen-controls {
  display: block;
}

div.fullscreen-controls a {
  font-family: Roboto;
  border: 1px solid #CCC;
  background: #E8E8E8;
  border-radius: 3px;
  font-weight: 500;
  padding: 8px 16px;
  font-size: 13px;
  margin: 0 5px;
  color: #222;
} */
div.examination div.viewports div.video-viewport div.placeholder > div.placeholder-text {
  font-weight: 600;
  font-size: 0.75rem;
  margin-top: -1rem;
  color: #4c8685;
}

@media (min-width: 992px) {
  div.examination div.viewports div.video-viewport div.placeholder > div.placeholder-text {
    margin: 1rem;
    font-size: 1rem;
  }
}

div.examination div.viewports div.video-viewport div.placeholder > img {
  width: auto !important;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  /* height: 100% !important; */
}

div.examination div.viewports div.video-viewport div.video-container {
  /* display: flex; */
  /* flex-direction: column; */
  /* justify-content: center; */
  /* align-items: center; */
  overflow: hidden;
}

div.examination div.viewports div.video-viewport video {
  height: auto;
  width: 100%;
  /* min-width: 540px; */
  display: block;
}

div.examination div.viewports div.video-viewport img,
div.examination div.viewports div.video-viewport canvas {
  display: block;
  max-height: 100%;
  max-width: 100%;
  margin: 0 auto;
  height: auto;
  width: auto;
}

div.examination div.viewports div.video-viewport > div.viewport-capture-text {
  color: #FFF;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  padding: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

div.examination div.viewports div.video-viewport > div.viewport-capture-text > i {
  font-size: 32px;
}

div.examination div.viewports div.video-viewport.fullscreen > div.viewport-capture-text {
  left: 25px;
  right: unset;
  bottom: 15px;
}

div.examination div.viewports div.video-viewport > div.viewport-controls {
  /* background: rgba(0, 0, 0, 0.15); */
  /* border-top-left-radius: 8px; */
  position: absolute;
  /* padding: 10px; */
  bottom: 10px;
  right: 10px;
  display: none;
}

div.examination div.viewports div.video-viewport.fullscreen > div.viewport-controls {
  display: block;
}

div.examination div.viewports div.video-viewport > div.viewport-controls > .btn {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid #FFFFFF;
  padding: .75rem 1.5rem;
  color: white;
}

@media (min-width: 992px) {
  div.examination div.viewports div.video-viewport > div.viewport-controls {
    display: none;
  }
  div.examination div.viewports div.video-viewport > div.viewport-controls div.toggle-torch {
    display: none;
  }
}

div.viewport-info {
  color: white;
  padding: 2px 18px;
  border-radius: 3px;
  background-color: #404040;
  font-size: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 8px;
  font-weight: 500;
  height: 25px;
}

@media (max-width: 450px) {
  div.viewport-info {
    font-size: 12px;
  }
}

div.viewport-info div.small {
  text-align: center;
  font-size: 0.8em;
  font-weight: 500;
}

@media (max-width: 992px) {
  div.viewport-info div.small {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

div.examination div.controls {
  margin-top: 10px;
}

div.examination div.controls a.analysis {
  font-family: Roboto;
  border: 1px solid #CCC;
  background: #E8E8E8;
  display: inline-block;
  padding: .5rem 1rem;
  border-radius: 3px;
  font-weight: 500;
  font-size: 13px;
  color: #222;
}

/* div.examination div.controls a.analysis {
  text-transform: uppercase;
  font-family: Roboto;
  font-weight: 700;
  font-size: 18px;
  padding: .5rem 1rem;
  border-radius: 3px !important;
  background-color: #229D9B;
  display: inline-block;
  color: white;
  border: none;
} */
@media (max-width: 992px) {
  div.examination div.controls a.analysis {
    font-size: 16px;
  }
}

div.examination div.controls a.analysis:hover {
  text-decoration: none;
}

div.examination div.controls a.analysis.disabled {
  /* background-color: #5BC2BF; */
  pointer-events: none;
}

/* Analysis modal window */
/* @media (max-width: 1200px) {
  div.analysis.modal > div.modal-dialog {
    min-height: calc(100% - 3.5rem);
    margin: 1.75rem 1.75rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: unset;
  }
  div.analysis.modal > div.modal-dialog::before {
    height: calc(100% - 3.5rem);
  }
} */

/* @media (max-width: 992px) {
  div.analysis.modal > div.modal-dialog {
    min-height: calc(100% - 1.7rem);
    margin: 0.85rem 0.85rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: unset;
  }
  div.analysis.modal > div.modal-dialog::before {
    height: calc(100% - 1.7rem);
  }
} */

/* @media (min-width: 768px) {
  .modal-dialog {

  }
} */

div.modal-backdrop {
  background: rgba(74, 101, 95, 0.75);
}

div.modal-backdrop.show {
  opacity: 1;
}

div.analysis.modal div.photos {
  overflow: hidden;
  margin: 0 -1rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

div.analysis.modal div.photos div.photo {
  position: relative;
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  /* justify-content: center; */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 7px;
  /* max-height: 292px; */
}

div.analysis.modal div.photos div.photo[data-viewport-for='hair-loss-front'],
div.analysis.modal div.photos div.photo[data-viewport-for='hair-loss-side'] {
  max-height: unset;
}

@media (max-width: 992px) {
  div.analysis.modal div.photos div.photo {
    border-radius: 3px;
  }
}

div.analysis.modal div.photos div.photo > * {
  width: 100%;
  display: block;
  height: auto;
}

div.analysis.modal div.photos div.photo canvas.overlay-canvas,
div.analysis.modal div.photos div.photo div.overlay-events {
  position: absolute;
  left: 0;
  top: 0;
}

div.analysis.modal div.photos div.photo div.overlay-events {
  bottom: 0;
  right: 0;
}

div.analysis.modal div.samples {
  padding: 1rem 0;
  margin: 0.5rem 0 0;
}

@media (min-width: 576px) {
  div.analysis.modal div.samples {
    margin: 1rem 0 0;
  }
}

div.analysis.modal div.actions {
  padding: 1rem 0;
  margin: 0 0 1rem;
}

div.analysis.modal div.results {
  padding: 0.5rem;
}

div.analysis.modal div.samples > div.categories {
  padding: 0 0 0.75rem;
  margin: -8px 0 0;
}

@media (min-width: 576px) {
  div.analysis.modal div.samples > div.categories {
    margin: -8px 0 0.75rem;
  }
}

div.analysis.modal div.samples > div.categories a {
  background-color: #f0f1f3;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  font-family: Poppins;
  text-align: center;
  font-weight: 500;
  color: #4c4c4c;
  font-size: 12px;
  margin: 3px 0;
}

@media (min-width: 576px) {
  div.analysis.modal div.samples > div.categories a {
    padding: 0.25rem 1rem;
    margin: 8px 5px;
    font-size: 14px;
  }
}

div.analysis.modal div.samples > div.categories a.active {
  background-color: #F9F6E4;
}

section.examination-screen div.analysis.modal div.samples > div.categories a.active {
  background-color: #428062;
  color: white;
}

div.analysis.modal div.samples > div.images {
  /* background: #D4D4D4; */
  padding: 0.5rem;
}

div.analysis.modal div.samples > div.images a.sample-image {
  border: 7px solid transparent;
  display: block;
}

div.analysis.modal div.samples > div.images a.sample-image.active {
  border-color: #428062;
}

div.analysis.modal div.samples > div.images a.sample-image > img {
  max-height: 140px;
  max-width: 100%;
  height: auto;
}

div.analysis.modal div.modal-footer {
  background: #D6E0DE;
  /* border-top: none; */
  padding: 1rem 2rem;
}

@media (max-width: 992px) {
  div.analysis.modal div.modal-footer {
    padding: 0.8rem 1rem;
  }
}

div.analysis.modal div.modal-footer .btn {
  font-family: Poppins;
  min-width: 150px;
  max-width: 250px;
}

@media (max-width: 992px) {
  div.analysis.modal div.modal-footer .btn {
    min-width: 125px;
    line-height: 16px;
    font-size: 16px;
    padding-bottom: 0.8rem;
    padding-top: 0.8rem;
  }
}

div.analysis.modal div.modal-footer .btn.btn-save {
  font-weight: 700;
  color: white;
}

/* Camera results screen */
div.camera-results {
  background: #999999;
  height: 100%;
}

div.camera-results > div {
  overflow: hidden;
  max-height: 100%;
}

div.camera-results div.camera-capture > *,
div.camera-results div.comparsion-image > * {
  display: block;
  max-width: 100%;
  height: 100%;
}

/* Camera results comparsion & editing panels */
div.results-comparsion, div.results-comparsion-categories, div.results-actions {
  background: #ADADAD;
}

div.results-comparsion a.nav-link.active {
  -webkit-box-shadow: 0 0 2px 2px #999999;
          box-shadow: 0 0 2px 2px #999999;
  background-color: white;
}

div.results-comparsion-images {
  margin-bottom: 1rem;
  margin-top: 1rem;
}

div.results-comparsion-images a.comparsion-image {
  max-width: 100%;
  display: block;
}

div.results-comparsion-images a.comparsion-image.active > img {
  -webkit-box-shadow: 0 0 2px 4px #007bff;
          box-shadow: 0 0 2px 4px #007bff;
}

div.results-comparsion-images a.comparsion-image > img {
  max-width: 100%;
  height: auto;
}

div.analysis.modal div.samples div.classes div.class-left,
div.analysis.modal div.samples div.classes div.class-right {
  border: 1px solid #9A9A9A;
  max-height: 250px;
  width: 250px;
}

div.analysis.modal div.samples div.class-text {
  text-transform: uppercase;
  margin: 1.6rem auto 0;
  font-family: Poppins;
  border-radius: 100%;
  background: #229D9B;
  text-align: center;
  margin: 0 2.5rem;
  font-size: 28px;
  max-height: 180px;
  max-width: 180px;
  height: 15vw;
  width: 15vw;
  color: white;
  min-width: 90px;
  min-height: 90px;
}

div.analysis.modal div.samples div.class-text div.class-value {
  line-height: 1em;
  font-weight: 800;
  font-size: 84px;
}

/* @media (max-width: 991px) { div.analysis.modal div.samples div.class-text div.class-value { font-size: 20px; } } */
/* @media (max-width: 767px) { div.analysis.modal div.samples div.class-text div.class-value { font-size: 20px; } } */
@media (max-width: 1000px) {
  div.analysis.modal div.samples div.class-text {
    font-size: 16px;
  }
}

@media (max-width: 1000px) {
  div.analysis.modal div.samples div.class-text div.class-value {
    font-size: 58px;
  }
}

@media (max-width: 675px) {
  div.analysis.modal div.samples div.class-text {
    font-size: 12px;
    margin: 0 1.75rem;
  }
}

@media (max-width: 675px) {
  div.analysis.modal div.samples div.class-text div.class-value {
    font-size: 48px;
  }
}

#examinations {
  height: 100%;
  /* padding: 10px;
  background: #F8F8F8;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px; */
}

.row.rows-no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.rows-no-gutters .row {
  margin-right: 0;
  margin-left: 0;
}

.font-weight-semibold {
  font-weight: 500;
}

.font-weight-bold {
  font-weight: 600;
}

.table-striped tr.odd-row {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-striped tr.even-row {
  background-color: transparent;
}

.bg-secondary-lighter {
  background-color: #b0b5b9 !important;
}

.text-bigger {
  font-size: 1.1em;
}

.text-smaller {
  font-size: 0.9em;
}

.w-20 {
  width: 20%;
}

.w-30 {
  width: 30%;
}

.w-40 {
  width: 40%;
}

.w-1px {
  width: 1px;
}

.w-10px {
  width: 10px;
}

.w-120px {
  width: 120px;
}

.h-20 {
  height: 20%;
}

.h-30 {
  height: 30%;
}

.h-40 {
  height: 40%;
}

.h-1px {
  height: 1px;
}

.h-10px {
  height: 10px;
}

.h-120px {
  height: 120px;
}

.cookiealert {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0 !important;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all 500ms ease-out;
  transition: all 500ms ease-out;
  color: #ecf0f1;
  background: #212327 url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAEECAIAAAAd4J55AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OUIyQzg0Q0RDQ0ExMTFFNjkyMDJGQkMzNjQ3OUEyMTQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OUIyQzg0Q0VDQ0ExMTFFNjkyMDJGQkMzNjQ3OUEyMTQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo5QjJDODRDQkNDQTExMUU2OTIwMkZCQzM2NDc5QTIxNCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo5QjJDODRDQ0NDQTExMUU2OTIwMkZCQzM2NDc5QTIxNCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PnMLhJsAAB3qSURBVHja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");
}

.cookiealert.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  -webkit-transition-delay: 1000ms;
          transition-delay: 1000ms;
}

.cookiealert a {
  text-decoration: underline;
}

.cookiealert .acceptcookies {
  margin-left: 10px;
  vertical-align: baseline;
}

div[data-examination="hair-density"] div.analysis.modal div.photos div.photo,
div[data-examination="hair-thickness"] div.analysis.modal div.photos div.photo {
  max-height: 100%;
}

@media (max-width: 575px) {
  div[data-examination="hair-loss"] div.analysis.modal div.samples > div.categories a {
    margin: 10px 3px !important;
    width: 18vw !important;
  }
}

div.ql-editor {
  background: white;
}

.lds-ellipsis {
  display: none;
  position: relative;
  width: 80px;
  height: 50px;
}

a.save-button.save-in-progress > div {
  display: none !important;
}

a.save-button.save-in-progress > div.lds-ellipsis {
  display: inline-block !important;
}

.lds-ellipsis div {
  position: absolute;
  top: 20px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #41dad7;
  -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
          animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 8px;
  -webkit-animation: lds-ellipsis1 0.6s infinite;
          animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 8px;
  -webkit-animation: lds-ellipsis2 0.6s infinite;
          animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 32px;
  -webkit-animation: lds-ellipsis2 0.6s infinite;
          animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 56px;
  -webkit-animation: lds-ellipsis3 0.6s infinite;
          animation: lds-ellipsis3 0.6s infinite;
}

@-webkit-keyframes lds-ellipsis1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes lds-ellipsis1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes lds-ellipsis3 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@keyframes lds-ellipsis3 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@-webkit-keyframes lds-ellipsis2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(24px, 0);
            transform: translate(24px, 0);
  }
}

@keyframes lds-ellipsis2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(24px, 0);
            transform: translate(24px, 0);
  }
}

#resolution-overlay {
  display: none;
  font-weight: 300;
  font-size: 1.75rem;
  font-family: 'Poppins';
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: white;
  text-align: center;
  position: fixed;
  z-index: 9999;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
}

#resolution-overlay div.header {
  color: #DC3545;
  font-size: 3.25rem;
}

@media (min-width: 1280px) {
  #resolution-overlay {
    visibility: hidden;
    display: none;
    opacity: 0;
  }
}

#site-header-nav-menu {
  background: white;
  border-radius: 5px;
}

#site-header-nav-menu div.site-header-nav-menu-toggle {
  cursor: pointer;
}

#site-header-main-menu {
  background: #428062;
  border-radius: 5px;
}

div.service-card, div.product-card {
  font-size: 14px;
  color: #313131;
  position: relative;
  border: 1px solid #DDD;
  padding: 25px 20px;
  border-radius: 0;
  max-width: 800px;
  min-height: 200px !important;
}

@media (min-width: 1500px) {
  div.service-card, div.product-card {
    padding: 50px 35px;
  }
}

div.service-card.collapsed div.service-application, div.service-card.collapsed div.service-effects, div.service-card.collapsed div.service-description,
div.service-card.collapsed div.product-application, div.service-card.collapsed div.product-effects, div.service-card.collapsed div.product-description, div.product-card.collapsed div.service-application, div.product-card.collapsed div.service-effects, div.product-card.collapsed div.service-description,
div.product-card.collapsed div.product-application, div.product-card.collapsed div.product-effects, div.product-card.collapsed div.product-description {
  display: none;
}

div.service-card.collapsed div.toggle-collapse > div.is-collapsed, div.product-card.collapsed div.toggle-collapse > div.is-collapsed {
  display: block;
}

div.service-card.collapsed div.toggle-collapse > div.not-collapsed, div.product-card.collapsed div.toggle-collapse > div.not-collapsed {
  display: none;
}

div.service-card:not(.collapsed) div.toggle-collapse > div.is-collapsed, div.product-card:not(.collapsed) div.toggle-collapse > div.is-collapsed {
  display: none;
}

div.service-card:not(.collapsed) div.toggle-collapse > div.not-collapsed, div.product-card:not(.collapsed) div.toggle-collapse > div.not-collapsed {
  display: block;
}

div.service-card div.col.left-column, div.product-card div.col.left-column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

@media (min-width: 576px) {
  div.service-card div.col.left-column, div.product-card div.col.left-column {
    max-width: 220px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 220px;
            flex: 0 0 220px;
  }
}

@media (min-width: 1500px) {
  div.service-card div.col.left-column, div.product-card div.col.left-column {
    max-width: 290px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 290px;
            flex: 0 0 290px;
  }
}

div.service-card div.service-name, div.service-card div.product-name, div.product-card div.service-name, div.product-card div.product-name {
  font-size: 1.25rem;
  font-weight: 500;
}

div.service-card div.service-name > span, div.service-card div.product-name > span, div.product-card div.service-name > span, div.product-card div.product-name > span {
  margin-top: 0.25rem;
  font-weight: 500;
  font-size: 2rem;
  display: block;
}

@media (min-width: 576px) {
  div.service-card div.service-name, div.service-card div.product-name, div.product-card div.service-name, div.product-card div.product-name {
    font-size: 1.1rem;
    font-weight: 500;
  }
  div.service-card div.service-name > span, div.service-card div.product-name > span, div.product-card div.service-name > span, div.product-card div.product-name > span {
    font-weight: 500;
    font-size: 1.15rem;
    display: block;
  }
}

@media (min-width: 1500px) {
  div.service-card div.service-name, div.service-card div.product-name, div.product-card div.service-name, div.product-card div.product-name {
    font-size: 1.1rem;
  }
  div.service-card div.service-name > span, div.service-card div.product-name > span, div.product-card div.service-name > span, div.product-card div.product-name > span {
    font-size: 2rem;
  }
}

div.service-card div.service-instructions, div.service-card div.product-instructions, div.product-card div.service-instructions, div.product-card div.product-instructions {
  margin: 20px 0 15px;
}

@media (min-width: 576px) {
  div.service-card div.service-instructions, div.service-card div.product-instructions, div.product-card div.service-instructions, div.product-card div.product-instructions {
    margin: 30px 0 30px;
  }
}

div.service-card div.service-instructions > a, div.service-card div.product-instructions > a, div.product-card div.service-instructions > a, div.product-card div.product-instructions > a {
  border-top: 1px solid #E4E6E5;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.15rem;
  padding: 0.75rem 0;
  color: #333333;
  width: 100%;
}

@media (min-width: 576px) {
  div.service-card div.service-instructions > a, div.service-card div.product-instructions > a, div.product-card div.service-instructions > a, div.product-card div.product-instructions > a {
    width: auto;
  }
}

div.service-card div.service-instructions > a:hover, div.service-card div.product-instructions > a:hover, div.product-card div.service-instructions > a:hover, div.product-card div.product-instructions > a:hover {
  text-decoration: none;
}

div.service-card div.service-instructions > a > i, div.service-card div.product-instructions > a > i, div.product-card div.service-instructions > a > i, div.product-card div.product-instructions > a > i {
  margin-right: 1rem;
  font-size: 2.6rem;
}

div.service-card div.service-image, div.service-card div.product-image, div.product-card div.service-image, div.product-card div.product-image {
  text-align: center;
  margin: 2rem 1rem 1rem;
}

div.service-card div.service-image > img, div.service-card div.product-image > img, div.product-card div.service-image > img, div.product-card div.product-image > img {
  max-width: 85%;
  height: auto;
  width: 100%;
}

@media (min-width: 576px) {
  div.service-card div.service-image, div.service-card div.product-image, div.product-card div.service-image, div.product-card div.product-image {
    text-align: left;
    margin: 0;
  }
  div.service-card div.service-image > img, div.service-card div.product-image > img, div.product-card div.service-image > img, div.product-card div.product-image > img {
    height: auto;
    width: 100%;
  }
}

div.service-card div.service-application, div.service-card div.product-application, div.product-card div.service-application, div.product-card div.product-application {
  margin-top: 30px;
}

div.service-card div.service-effects, div.service-card div.product-effects, div.product-card div.service-effects, div.product-card div.product-effects {
  margin-top: 30px;
}

div.service-card > footer, div.product-card > footer {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  -ms-flex-item-align: center;
      align-self: center;
  margin: 0 auto;
  bottom: -15px;
}

div.service-card > footer div.product-price, div.product-card > footer div.product-price {
  background-color: #555c62;
  padding: 4px 0 4px 1.2rem;
  border-radius: 5px;
  font-weight: 500;
  font-size: 1rem;
  color: white;
}

div.service-card > footer div.product-price > span, div.product-card > footer div.product-price > span {
  vertical-align: middle;
}

div.service-card > footer div.product-price > button, div.product-card > footer div.product-price > button {
  -webkit-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
  border-radius: 0 5px 5px 0;
  margin: -4px 0 -4px 0.6rem;
  vertical-align: middle;
  padding: 4px 1.2rem;
  cursor: pointer;
  color: white;
  border: none;
  height: 30px;
  font-weight: 500;
}

div.service-card > footer div.toggle-collapse, div.product-card > footer div.toggle-collapse {
  -webkit-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
  background-color: #428062;
  padding: 4px 6px;
  border-radius: 5px;
  margin: 0 1rem;
  cursor: pointer;
  color: white;
  border: none;
  height: 30px;
  width: 80px;
}

div.service-card > footer div.toggle-collapse i, div.product-card > footer div.toggle-collapse i {
  margin-right: 0.6rem;
}

div.service-card > footer div.toggle-collapse:hover, div.product-card > footer div.toggle-collapse:hover {
  background-color: #1C9397;
}

@media (min-width: 576px) {
  div.service-card > footer div.toggle-collapse, div.product-card > footer div.toggle-collapse {
    padding: 4px 1.2rem;
    width: auto;
  }
}

#site-header {
  background-color: #1A6062;
  /* min-height: 60px; */
  height: 70px;
  position: relative;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  #site-header {
    border-bottom: 1px solid #CDCDCD;
    background-color: transparent;
  }
}

#site-header div.page-title {
  font-family: 'Poppins';
  font-size: 1.4rem;
  font-weight: 300;
  padding: 0 15px;
  color: white;
}

@media (min-width: 768px) {
  #site-header div.page-title {
    font-size: 1.6rem;
    font-weight: 400;
    color: #212529;
  }
}

#site-header a, #site-header a:active {
  font-family: "Open Sans", "Roboto";
  color: #525252;
}

#site-header a:hover {
  text-decoration: none;
  color: #111;
}

#site-header a > i {
  position: relative;
  margin-right: 5px;
  font-size: 16px;
  bottom: -1px;
}

#site-header button {
  font-size: 1.35rem;
  color: white;
}

body.page-home #toggle-sidebar {
  pointer-events: none;
  color: #4C8384;
}

/* #site-header nav a.nav-link {
  width: 38px; height: 38px;
  text-align: center;
  font-size: 13px;
  padding: 10px;
} */
@media (min-width: 992px) {
  #site-header {
    /* height: 100px; */
  }
  #site-header div.site-logo {
    /* margin-right: 30px; */
    /* margin-left: 55px; */
    /* width: 310px; */
  }
}

#site-header div.examination-name {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 22px;
}

/* @media (max-width: 992px) {

  #site-header {
    position: fixed;
    background: white;
    right: 0;
    left: 0;
    top: 0;
  }

  #site-header div.examination-name {
    font-size: 14px;
    right: 0;
    left: 0;
  }

} */
#site-header nav div.dropdown .dropdown-toggle, #site-header nav > a.nav-link {
  border: 1px solid #CCC;
  background: #E8E8E8;
  border-radius: 3px;
  font-weight: 500;
  padding: 8px 16px;
  font-size: 13px;
  margin: 0 5px;
  color: #222;
}

#site-header nav > a.nav-link.active {
  border: 1px solid #32A4A1;
  background: #27A3A1;
  color: #FFF;
}

#site-header nav div.dropdown .dropdown-toggle:hover,
#site-header nav > a.nav-link:hover {
  border: 1px solid #CACACA;
  background: #D9D9D9;
  cursor: pointer;
}

#site-header nav > a.nav-link.active:hover {
  border: 1px solid #268683;
  background: #23918F;
}

#site-header nav div.dropdown .dropdown-toggle:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

/* TODO */
#site-header nav a.dropdown-item {
  font-size: 15px;
}

#site-header a, #site-header button {
  /* color: #428062; */
}

#site-header button {
  /* font-weight: 600; */
}

#site-header a:hover {
  /* text-decoration: none; */
  /* color: #085e5c; */
}

/* TODO */
body #site-header {
  /* background: white; */
  /* position: fixed; */
  /* left: 155px; */
  /* right: 0; */
  /* top: 0; */
}

body.page-home #site-header {
  border-bottom: none;
}

body.page-home #site-header form {
  display: none;
}

@media (min-width: 768px) {
  body.page-home > div.container-wrapper > div.content-wrapper {
    margin-top: -70px;
  }
}

body > footer {
  /* padding: 22px 2rem; */
  background: #F8F8F8;
  font-family: Roboto;
  font-weight: 500;
  font-size: 13px;
  height: 60px;
  z-index: 100;
  position: relative;
  /* display: none; */
}

body > footer a {
  color: #428062;
  font-weight: 600;
}

body > footer a:hover {
  text-decoration: none;
}

body > footer a.logout {
  text-decoration: underline;
  text-transform: uppercase;
  color: #1C1C1C;
}

/* #my-privacy-policy-text.collapse { */
/* display: block !important; */
/* } */
body.page-examination > div.container-wrapper > footer {
  /* padding: 22px 2rem; */
  background: #F8F8F8;
  font-family: Roboto;
  font-weight: 500;
  font-size: 13px;
  height: 60px;
  z-index: 100;
  position: relative;
  /* display: none; */
}

body.page-examination > div.container-wrapper > footer a {
  color: #428062;
  font-weight: 600;
}

body.page-examination > div.container-wrapper > footer a:hover {
  text-decoration: none;
}

body.page-examination > div.container-wrapper > footer a.logout {
  text-decoration: underline;
  text-transform: uppercase;
  color: #1C1C1C;
}

#nav-menu {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #212121;
  position: relative;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 999;
  width: 35px;
}

#nav-menu:before {
  content: '';
  background: #428062;
  position: fixed;
  display: block;
  z-index: -1;
  width: 35px;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
}

@media (min-width: 360px) {
  #nav-menu {
    width: 45px;
  }
  #nav-menu:before {
    width: 45px;
  }
}

@media (max-width: 768px) {
  #nav-menu {
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    -webkit-box-pack: normal;
        -ms-flex-pack: normal;
            justify-content: normal;
    overflow: scroll;
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: -100%;
    width: calc(100vw - 65px);
    bottom: 0px;
    top: 0;
  }
  #nav-menu.expanded {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    left: 0;
  }
  #nav-menu::before {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    left: -280px;
    top: 0;
  }
  #nav-menu.expanded::before {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    left: 0px;
  }
}

#nav-menu.expanded {
  width: calc(100vw - 65px);
}

@media (min-width: 768px) {
  #nav-menu.expanded {
    width: 280px;
  }
}

#nav-menu div.nav-item {
  white-space: nowrap;
  position: relative;
  margin: 0.3rem 0;
  height: 35px;
}

@media (min-width: 360px) {
  #nav-menu div.nav-item {
    margin: 0.5rem 0;
    height: 45px;
  }
}

#nav-menu div.site-logo {
  height: 70px;
}

#nav-menu div.site-logo > a {
  padding: 0.5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70px;
  width: 100%;
}

#nav-menu div.site-logo > a > img {
  width: 22px;
  height: 22px;
  display: inline-block;
}

@media (min-width: 360px) {
  #nav-menu div.site-logo > a > img {
    width: 30px;
    height: 30px;
  }
}

#nav-menu:not(.expanded) div.site-logo div.logo-text {
  display: none;
}

@media (max-width: 992px) {
  #nav-menu div.site-logo div.logo-text {
    display: inline-block;
  }
}

#nav-menu div.nav-item > .nav-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

#nav-menu div.nav-item.submenu {
  -webkit-transition: height 0.1s ease-in-out;
  transition: height 0.1s ease-in-out;
  position: relative;
}

#nav-menu div.nav-item.submenu span.nav-title {
  padding: 0.75rem 0.75rem 0.75rem 2rem;
  height: 45px;
  display: none;
}

#nav-menu.expanded div.nav-item.submenu > .nav-link {
  padding-right: calc(0.5rem + 38px + 10px);
}

#nav-menu:not(.expanded) div.nav-item.submenu:hover > div.nav-submenu {
  background: #212121;
  position: absolute;
  display: block;
  width: calc(100vw - 65px);
  left: 0px;
  top: 0px;
}

@media (min-width: 768px) {
  #nav-menu:not(.expanded) div.nav-item.submenu:hover > div.nav-submenu {
    width: 280px;
  }
}

#nav-menu:not(.expanded) div.nav-item.submenu:hover > div.nav-submenu .nav-title {
  /* background: #1C9397; */
  text-transform: uppercase;
}

#nav-menu.expanded div.nav-item.submenu:hover > div.nav-submenu {
  left: 205px;
}

#nav-menu div.nav-item.submenu:hover > div.nav-submenu span {
  display: block;
}

#nav-menu.expanded div.nav-item.submenu:hover > div.nav-submenu span.nav-title {
  display: none !important;
}

@media (max-width: 768px) {
  #nav-menu div.nav-item.submenu .nav-title {
    display: none !important;
  }
}

#nav-menu.expanded div.nav-item.submenu .nav-title {
  display: none;
}

/*
#nav-menu div.nav-item.submenu:hover {
  width: 350px;
}

#nav-menu div.nav-item.submenu:hover > div.expand {
  display: block;
}

#nav-menu div.nav-item.submenu:hover > a.nav-link > span {
  display: inline;
} */
#nav-menu div.nav-item.submenu > div.expand {
  width: 36px;
  height: 36px;
  font-size: 1.35rem;
  padding: 0.5rem;
  color: #666;
  display: none;
  position: absolute;
  text-align: center;
  cursor: pointer;
  right: 4px;
  top: 0px;
}

@media (min-width: 576px) {
  #nav-menu div.nav-item.submenu > div.expand {
    top: 4px;
  }
}

#nav-menu.expanded div.nav-item.submenu > div.expand {
  display: block;
}

#nav-menu.expanded div.nav-item.submenu > div.expand > i.is-expanded {
  display: none;
}

#nav-menu.expanded div.nav-item.submenu > div.expand > i.not-expanded {
  display: inline;
}

#nav-menu.expanded div.nav-item.submenu.expanded > div.expand > i.is-expanded {
  display: inline;
}

#nav-menu.expanded div.nav-item.submenu.expanded > div.expand > i.not-expanded {
  display: none;
}

#nav-menu .nav-link {
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  /* border-radius: 5px; */
  line-height: 2rem;
  color: #212121;
  padding: 0.5rem;
  /* position: relative; */
  display: block;
}

#nav-menu .nav-link:hover {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  /* background: #5ca783; */
  background: rgba(255, 255, 255, 0.1);
  /* border-color: #B0F0F2; */
}

#nav-menu div.nav-item::after {
  display: none;
  position: absolute;
  left: 35px;
  top: 10px;
  /* margin-top: -8px; */
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 6px;
  border-color: transparent transparent transparent #5ca783;
  content: '';
}

@media (min-width: 576px) {
  #nav-menu div.nav-item::after {
    left: 45px;
    top: 15px;
  }
}

#nav-menu div.nav-item.active::after {
  display: block;
}

#nav-menu div.nav-item.active {
  /* background:#5ca783; */
  background: rgba(255, 255, 255, 0.05);
}

#nav-menu div.nav-item::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 35px;
  z-index: -1;
  background: transparent;
  content: '';
}

@media (min-width: 576px) {
  #nav-menu div.nav-item::before {
    width: 45px;
  }
}

#nav-menu div.nav-item.active::before {
  background: #5ca783;
}

#nav-menu div.nav-item.active:hover::before {
  background: #5ca783;
}

#nav-menu .nav-link.active {
  /* border-color: #5dcdd2; */
  /* background: #32bbc1; */
}

#nav-menu .nav-link > img {
  width: 24px;
  height: 24px;
}

#nav-menu .nav-link > i {
  width: 24px;
  height: 24px;
  display: block;
  text-align: center;
  font-size: 1.25rem;
  padding-top: 4px;
}

@media (min-width: 360px) {
  #nav-menu .nav-link > img {
    width: 32px;
    height: 32px;
  }
  #nav-menu .nav-link > i {
    width: 32px;
    height: 32px;
    display: block;
    text-align: center;
    font-size: 1.5rem;
    padding-top: 6px;
  }
}

/* TODO */
#nav-menu.expanded div.nav-item.expanded {
  background-color: rgba(255, 255, 255, 0.05);
}

#nav-menu.expanded div.nav-item.expanded > div.nav-submenu {
  width: calc(100% - 35px);
  /* height: auto; */
  /* display: block; */
}

@media (min-width: 576px) {
  #nav-menu.expanded div.nav-item.expanded > div.nav-submenu {
    width: calc(100% - 45px);
  }
}

#nav-menu.expanded .nav-link > span {
  display: inline;
}

#nav-menu .nav-link > span {
  margin-left: 2rem;
  margin-right: 1rem;
  font-size: 1rem;
  display: none;
  color: white;
}

#nav-menu div.nav-item > div.nav-submenu {
  /* height: 0; */
  /* display: none; */
  /* padding-bottom: 1rem; */
  /* padding-top: 0.5rem; */
  margin-left: 35px;
  width: 0;
  overflow: hidden;
}

@media (min-width: 576px) {
  #nav-menu div.nav-item > div.nav-submenu {
    margin-left: 45px;
  }
}

#nav-menu div.nav-item > div.nav-submenu > .nav-link {
  padding: 6px 0.75rem 6px 2rem;
  /* margin: 0.25rem 0rem; */
  margin: 0;
}

@media (min-width: 576px) {
  #nav-menu div.nav-item > div.nav-submenu > .nav-link {
    padding: 0.75rem 0.75rem 0.75rem 2rem;
  }
}

#nav-menu div.nav-item > div.nav-submenu > .nav-link > span {
  margin: 0;
  color: white;
}

/* TODO */
/* secondary-nav-menu */
#secondary-nav-menu {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-shadow: 1px 0px 4px rgba(0, 0, 0, 0.15);
          box-shadow: 1px 0px 4px rgba(0, 0, 0, 0.15);
  -webkit-transition: margin-left 0.2s ease-in-out;
  transition: margin-left 0.2s ease-in-out;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #212121;
  position: relative;
  z-index: 8;
  padding: 15px;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 270px;
}

#secondary-nav-menu.collapsed {
  -webkit-transition: margin-left 0.2s ease-in-out;
  transition: margin-left 0.2s ease-in-out;
  margin-left: -270px;
}

#secondary-nav-menu .nav-link {
  /* height: 52px; */
  /* margin: 0.25rem 0; */
  font-size: 14px;
  font-family: Roboto;
  font-weight: 500;
  color: white;
  padding: 16px;
}

#secondary-nav-menu div.nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#toggle-expand:active,
#toggle-expand:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

#left-sidebar:not(.visible) {
  display: none !important;
}

/* Primary NavMenu */
#primary-nav {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: white;
  position: relative;
  z-index: 100;
}

#primary-nav .nav-link {
  margin-bottom: 5px;
  font-size: 1.35rem;
  padding: 8px 16px;
  color: #666666;
}

@media (max-width: 992px) {
  #primary-nav .nav-link {
    font-size: 14px;
  }
  #primary-nav .nav-link > img {
    height: 14px !important;
  }
}

#primary-nav .nav-link.active {
  color: #229D9B;
}

#primary-nav .nav-link:hover {
  opacity: 0.7;
}

#primary-nav .dropdown > .dropdown-menu {
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

#primary-nav .dropdown:hover > .dropdown-menu {
  display: block;
  left: 100%;
  top: 0;
}

#primary-nav .dropdown > .dropdown-toggle:active {
  pointer-events: none;
}

@media (max-width: 992px) {
  #left-sidebar::after {
    background: rgba(74, 101, 95, 0.75);
    position: fixed;
    display: none;
    content: '';
    top: 75px;
    bottom: 0;
    right: 0;
    left: 0;
  }
  #left-sidebar.visible {
    display: block !important;
    background: white;
    position: fixed;
    z-index: 99;
    top: 75px;
    width: auto;
    bottom: 0;
    left: 0;
  }
  #left-sidebar.visible::after {
    display: block;
  }
}

/* #nav-menu {
  justify-content: center;
  flex-direction: column;
  background: #428062;
  padding: 2rem 1rem;
  color: white;
  display: flex;
  position: fixed;
  width: 155px;
  left: 0;
  bottom: 0;
  top: 0;
}

#nav-menu a.nav-link {
  transition: border-color 0.15s ease-in-out;
  border: 1px solid #72CCCF;
  border-radius: 5px;
  margin: 0.5rem 0;
  padding: 0;
}

#nav-menu a.nav-link:hover {
  transition: border-color 0.2s ease-in-out;
  border-color: #B0F0F2;
}

#nav-menu a.nav-link > img { width: 120px; } */
#page-nav-menu {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #428062;
  position: relative;
  padding: 1rem 0;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 10;
}

#sidebar {
  border-right: 1px solid #EBEBEB;
  background-color: #F0F1F3;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  padding: 15px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 280px;
}

@media (min-width: 992px) {
  #sidebar + div.scroll-wrapper > div.container {
    max-width: 680px;
  }
}

@media (min-width: 1200px) {
  #sidebar + div.scroll-wrapper > div.container {
    max-width: 860px;
  }
}

@media (min-width: 1500px) {
  #sidebar + div.scroll-wrapper > div.container {
    max-width: 1140px;
  }
}

@media (max-width: 768px) {
  #sidebar {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    right: -280px;
    z-index: 99;
    bottom: 0px;
    top: 70px;
  }
  #sidebar.visible {
    right: 0px;
  }
}

div.assesments {
  /* justify-content: flex-end; */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

div.assesments > header, div.assesments > div.content > header {
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-align: center;
  margin-top: 2rem;
  font-weight: 300;
  font-size: 32px;
}

div.assesments > div.content > header {
  margin-top: 8rem;
}

@media (min-width: 992px) {
  div.assesments > header {
    /* margin-top: -20px; */
  }
}

@media (max-width: 992px) {
  div.assesments > header, div.assesments > div.content > header {
    font-size: 26px;
  }
}

@media (max-width: 450px) {
  div.assesments > header, div.assesments > div.content > header {
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    font-size: 22px;
  }
}

div.assesments > strong {
  font-weight: 600;
}

div[data-examination] > div.content {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

div[data-examination] > div.content, div.assesments > div.content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 992px) {
  div[data-examination] > div.content, div.assesments > div.content {
    padding: 1rem;
  }
}

div.recommendations-panel {
  margin-top: 30px;
}

div.recommendations-panel > header {
  font-family: 'Roboto', sans-serif;
  /* border-bottom: 1px dotted #323232; */
  /* border-top: 1px dotted #323232; */
  /* background-color: #e7f1ef; */
  /* margin-bottom: 20px; */
  font-weight: 500;
  padding: 15px 0;
  font-size: 15px;
  /* max-width: 1055px; */
  text-align: center;
}

/* div.recommendations-panel > header {
  text-align: left;
  font-weight: 600;
  padding: 0;
  font-size: 14px;
  margin-bottom: 4px;
  color: #428062;
} */
div.recommendations-panel > div.table {
  margin: -10px 0;
}

div.recommendations-panel > div.table > div.tr {
  border-bottom: 1px solid #bfbfbf;
  background: transparent;
  cursor: default;
  /* display: block; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 30px 0px;
  margin: 10px 0;
}

div.recommendations-panel > div.table > div.tr > div.td.product-select,
div.recommendations-panel > div.table > div.tr > div.td.service-select {
  /* display: none !important; */
}

div.recommendations-panel > div.table > div.tr > div.td.product-description,
div.recommendations-panel > div.table > div.tr > div.td.service-description {
  padding-left: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

div.recommendations-panel > div.table > div.tr > div.td.product-description > div.description,
div.recommendations-panel > div.table > div.tr > div.td.service-description > div.description,
div.recommendations-panel > div.table > div.tr > div.td.product-description > div.application,
div.recommendations-panel > div.table > div.tr > div.td.service-description > div.application,
div.recommendations-panel > div.table > div.tr > div.td.product-description > div.effects,
div.recommendations-panel > div.table > div.tr > div.td.service-description > div.effects {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

div.recommendations-panel > div.table > div.tr > div.td.product-description > div.description > div.product-name,
div.recommendations-panel > div.table > div.tr > div.td.service-description > div.description > div.service-name {
  border-bottom: 1px solid #e2e6e4;
  padding-bottom: 13px;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 22px;
}

div.recommendations-panel > div.table > div.tr > div.td.product-description > div.description > div.recommendation,
div.recommendations-panel > div.table > div.tr > div.td.service-description > div.description > div.recommendation {
  font-weight: 500;
  font-size: 14px;
  color: #313131;
}

div.recommendations-panel > div.table > div.tr > div.td.product-description > div.description > div.product-desc,
div.recommendations-panel > div.table > div.tr > div.td.service-description > div.description > div.service-desc,
div.recommendations-panel > div.table > div.tr > div.td.product-description > div.description > div.product-short-desc,
div.recommendations-panel > div.table > div.tr > div.td.service-description > div.description > div.service-short-desc,
div.recommendations-panel > div.table > div.tr > div.td.product-description > div.application,
div.recommendations-panel > div.table > div.tr > div.td.service-description > div.application,
div.recommendations-panel > div.table > div.tr > div.td.product-description > div.effects,
div.recommendations-panel > div.table > div.tr > div.td.service-description > div.effects {
  margin-left: 0 !important;
  font-size: 14px;
  color: #313131;
}

div.recommendations-panel > div.table > div.tr > div.td.product-description > div.application,
div.recommendations-panel > div.table > div.tr > div.td.service-description > div.application {
  margin-top: 20px;
}

div.recommendations-panel > div.table > div.tr > div.td.product-description > div.effects,
div.recommendations-panel > div.table > div.tr > div.td.service-description > div.effects {
  margin-top: 20px;
}

div.recommendations-panel > div.table > div.tr > div.td.product-description > div.description > div.desc-toggle > button,
div.recommendations-panel > div.table > div.tr > div.td.service-description > div.description > div.desc-toggle > button {
  background-color: #428062 !important;
  font-size: 1rem !important;
  border: none !important;
  color: white !important;
  padding: 4px 18px !important;
}

div.recommendations-panel > div.table > div.tr > div.td.product-description > div.description > div.desc-toggle > button:hover,
div.recommendations-panel > div.table > div.tr > div.td.service-description > div.description > div.desc-toggle > button:hover {
  background-color: #1C9397;
}

/* div.recommendations-panel {
  margin-top: 30px;
}

div.recommendations-panel > header {
  font-family: 'Roboto', sans-serif;
  /* border-bottom: 1px dotted #323232; *
  /* border-top: 1px dotted #323232; *
  /* background-color: #e7f1ef; *
  /* margin-bottom: 20px; *
  font-weight: 500;
  padding: 15px 0;
  font-size: 15px;
  /* max-width: 1055px; *
  text-align: center;
}

div.recommendations-panel > div.table {
  font-family: 'Roboto', sans-serif;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 12px;
}

div.recommendations-panel > div.table div.tr {
  display: flex;
  cursor: pointer;
  background: #ebebeb;
  align-items: center;
  padding: 1rem 1rem;
  margin: 5px 0;
}

div.recommendations-panel > div.table div.td {
  vertical-align: middle;
}

*/
div.recommendations-panel > div.table div.td.service-select,
div.recommendations-panel > div.table div.td.product-select {
  padding: 10px 25px 10px 0;
}

/*

div.recommendations-panel > div.table div.td.service-select > input[type="checkbox"],
div.recommendations-panel > div.table div.td.product-select > input[type="checkbox"] {
  pointer-events: none;
}

div.recommendations-panel > div.table div.td.service-image,
div.recommendations-panel > div.table div.td.product-image {
  padding: 0;
}

*/
div.recommendations-panel > div.table div.td.service-image > div,
div.recommendations-panel > div.table div.td.product-image > div {
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid #323232;
  background-size: cover;
  height: 100px;
  width: 100px;
}

@media (min-width: 1200px) {
  div.recommendations-panel > div.table div.td.service-image > div,
  div.recommendations-panel > div.table div.td.product-image > div {
    height: 140px;
    width: 140px;
  }
}

/*

div.recommendations-panel > div.table div.td.service-description,
div.recommendations-panel > div.table div.td.product-description {
  display: flex;
  padding-left: 25px;
  flex-direction: column;
}

@media (min-width: 1600px) {
  div.recommendations-panel > div.table div.td.service-description,
  div.recommendations-panel > div.table div.td.product-description {
    padding-left: 40px;
    flex-direction: row;
    align-items: center;
    flex: 1;
  }
}


div.recommendations-panel > div.table div.td.service-description div.service-name,
div.recommendations-panel > div.table div.td.product-description div.product-name {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 16px;
}

div.recommendations-panel > div.table div.td.service-description div.description,
div.recommendations-panel > div.table div.td.product-description div.description {
  flex: 1;
}

div.recommendations-panel > div.table div.td.service-description div.application,
div.recommendations-panel > div.table div.td.product-description div.application {
  flex: 0 1 auto;
  margin-top: 20px;
}

div.recommendations-panel > div.table div.td.service-description div.effects,
div.recommendations-panel > div.table div.td.product-description div.effects {
  flex: 0 1 auto;
  margin-top: 20px;
}

@media (min-width: 1600px) {

  div.recommendations-panel > div.table div.td.service-description div.description,
  div.recommendations-panel > div.table div.td.product-description div.description {
    flex: 1 1 400px;
  }

  div.recommendations-panel > div.table div.td.service-description div.application,
  div.recommendations-panel > div.table div.td.product-description div.application {
    flex: 0 1 550px;
    margin-left: 20px;
    margin-top: 0;
  }

  div.recommendations-panel > div.table div.td.service-description div.effects,
  div.recommendations-panel > div.table div.td.product-description div.effects {
    flex: 0 1 200px;
    margin-left: 20px;
    margin-top: 0;
  }

} */
#examination-recommendations > div.content {
  font-family: Roboto;
  padding: 2rem 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#examination-recommendations > div.content > div.appointment header {
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  text-align: center;
  font-weight: 300;
  font-size: 32px;
}

#examination-recommendations > div.content > div.assesments {
  background: #f8f8f8;
}

#examination-recommendations > div.content > div.examination:last-child div.assesments > div.content {
  padding-bottom: 0;
  border-bottom: 0;
}

div.assesments div.assesment-panel {
  /* height: 100%; */
}

div.assesments div.assesment-table {
  background: #F5F5F5;
  min-height: 80px;
  height: 100%;
}

div.assesments div.assesment-table div.description div.examination-title {
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 22px;
}

div.assesments div.assesment-table div.description div.examination-desc {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 12px;
  margin-top: 5px;
}

@media (max-width: 450px) {
  div.assesments div.assesment-table div.description div.examination-title {
    font-weight: 500;
    font-size: 16px;
  }
}

div.assesments div.assesment-table div.assesment-rating div[data-assesment-rating] {
  color: #428062;
  font-size: 18px;
  padding: 3px;
}

div.assesments div.assesment-table div.assesment-rating div[data-assesment-rating].disabled {
  color: #A1A1A1;
}

div.assesments div.assesment-table div.assesment-rating div.rating-header {
  font-family: 'Roboto Condensed';
  font-size: 38px;
}

div.assesments div.assesment-table div.assesment-rating div.rating-header span.maximum-value {
  font-size: 22px;
}

@media (max-width: 450px) {
  div.assesments div.assesment-table div.assesment-rating div[data-assesment-rating] {
    font-size: 14px;
  }
  div.assesments div.assesment-table div.assesment-rating div.rating-header {
    font-family: 'Roboto Condensed';
    font-size: 28px;
  }
  div.assesments div.assesment-table div.assesment-rating div.rating-header span.maximum-value {
    font-size: 20px;
  }
}

div.assesments table td {
  border: none;
}

div.assesments table.assesment {
  margin-bottom: 0;
  background: #E7F1EF;
  min-height: 80px;
}

div.assesments table.assesment td.description {
  padding: 10px 35px 10px 35px;
}

div.assesments table.assesment td.description div.examination-title {
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 22px;
}

div.assesments table.assesment td.description div.examination-desc {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 12px;
}

div.assesments table.assesment td.assesment-rating div[data-assesment-rating] {
  color: #428062;
  padding: 3px;
}

div.assesments table.assesment td.assesment-rating div[data-assesment-rating].disabled {
  color: #A1A1A1;
}

div.assesments table.assesment td.assesment-rating div.rating-header {
  font-family: 'Roboto Condensed';
  font-size: 38px;
}

div.assesments table.assesment td.assesment-rating div.rating-header span.maximum-value {
  font-size: 22px;
}

/* Section aside */
aside#sections {
  height: unset;
  min-height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 280px;
  margin: 0 -15px;
  background-color: #F0F1F3;
}

aside#sections > * {
  padding-top: 25px;
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 25px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

aside#sections > div {
  /* background-image: url('/templates/trichoexpert/assets/images/aside-client-background.png'); */
  background-size: contain;
  border-top-right-radius: 10px;
  position: relative;
  margin-right: 30px;
  overflow: visible;
  height: 340px;
}

aside#sections > div.nav-top-border {
  /* background: url('/templates/trichoexpert/assets/images/aside-nav-top-border.png'); */
  background-size: cover;
  border-right: 30px solid white;
  margin-right: 0;
  padding: 0;
  height: 3px;
}

aside#sections > nav {
  /* background-image: url('/templates/trichoexpert/assets/images/aside-nav-background.png'); */
  background-position: left bottom;
  background-repeat: no-repeat;
  padding-right: 30px;
  padding-top: 15px;
  /* height: 600px; */
}

aside#sections > nav a {
  color: #346258;
  padding: 4px 10px;
  /* font-family: 'Open Sans'; */
  font-weight: 300;
  font-size: 14px;
  position: relative;
}

aside#sections > nav a.active {
  font-weight: 600;
}

aside#sections > nav a:hover {
  text-decoration: none;
  color: #152824;
}

aside#sections > nav a:focus {
  outline: none;
}

aside#sections > nav a::-moz-focus-inner {
  border: 0;
}

/*aside#sections > nav a.active {
  background-color: #17a2b8;
  border-color: #17a2b8;
  font-weight: bold;
}*/
aside#sections > nav div.examinations-list a.recommendations-link::before,
aside#sections > nav div.examinations-list a.summary-link::before,
aside#sections > nav div.examinations-list a::before {
  font-family: "Font Awesome 5 Free";
  position: absolute;
  content: '\f054';
  font-weight: 900;
  display: block;
  color: #afafaf;
  left: 8px;
  top: 50%;
  font-size: 12px;
  margin-top: -10px;
}

aside#sections > nav a.is-completed::after {
  font-family: "Font Awesome 5 Free";
  position: absolute;
  content: '\f00c';
  font-weight: 900;
  display: block;
  color: #28a745;
  /* right: 8px; */
  right: 50px;
  top: 50%;
  font-size: 12px;
  margin-top: -6px;
}

/*
aside#sections > nav a.is-completed:nth-child(1)::after { right: 13px; }
aside#sections > nav a.is-completed:nth-child(2)::after { right: 15px; }
aside#sections > nav a.is-completed:nth-child(3)::after { right: 16px; }
aside#sections > nav a.is-completed:nth-child(4)::after { right: 20px; }
aside#sections > nav a.is-completed:nth-child(5)::after { right: 24px; }
aside#sections > nav a.is-completed:nth-child(6)::after { right: 28px; }
aside#sections > nav a.is-completed:nth-child(7)::after { right: 33px; }
aside#sections > nav a.is-completed:nth-child(8)::after { right: 38px; }
aside#sections > nav a.is-completed:nth-child(9)::after { right: 45px; } */
aside#sections > nav a.is-completed.active::after {
  /*color: #FFF;*/
}

aside#sections .examinations-list {
  /* background-image: url('/templates/trichoexpert/assets/images/aside-nav-links-background.png'); */
  background-position: left top;
  background-repeat: no-repeat;
  padding: 10px 0;
  min-height: 260px;
  width: 260px;
}

aside#sections .examinations-list > a {
  padding-bottom: 3px;
  padding-left: 30px;
}

@media (max-width: 992px) {
  /* @media (max-width: 768px) { */
  aside#sections .examinations-list > a {
    padding-bottom: 10px;
    padding-top: 10px;
  }
}

aside#sections a.summary-link, aside#sections a.recommendations-link {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 13px 3px 13px;
}

aside#sections a.summary-link div.link-icon,
aside#sections a.recommendations-link div.link-icon {
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  margin-top: -10px;
  height: 18px;
  width: 18px;
  left: 1rem;
  top: 50%;
}

aside#sections a.summary-link div.link-icon {
  background-image: url("/templates/trichoexpert/assets/images/aside-nav-link-icon-1.png");
}

aside#sections a.recommendations-link div.link-icon {
  background-image: url("/templates/trichoexpert/assets/images/aside-nav-link-icon-2.png");
}

aside#sections a.save-button {
  background-image: url("/templates/trichoexpert/assets/icons/save-button-icon.png");
  background-position: 90% center;
  background-repeat: no-repeat;
  /* background-color: transparent; */
  background-color: #428062;
  padding-right: 70px;
  padding-left: 25px;
  padding-bottom: 8px;
  padding-top: 8px;
  text-align: left;
  line-height: 22px;
  font-size: 20px;
  color: white;
  font-weight: 500;
  /* font-family: "Open Sans", "Roboto"; */
  /* height: 68px; */
  width: 185px;
  border-radius: 5px;
  margin: 0 auto;
}

aside#sections a.save-button:hover {
  color: white;
}

aside#sections a.save-button:focus, aside#sections a.save-button:active {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

aside#sections div.patient-photo {
  border: 1px solid #343434;
  padding: 3px;
}

aside#sections div.patient-photo > img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

aside#sections div.patient-name input {
  border: 1px solid #131d1d;
  background: transparent;
  /* font-family: Roboto; */
  font-weight: 600;
  font-size: 14px;
  color: #11191a;
  border-radius: .2rem;
}

aside#sections div.patient-name input:focus {
  outline: 0;
}

aside#sections div.patient-name input::-webkit-input-placeholder {
  color: #383838;
}

aside#sections div.patient-name input:-ms-input-placeholder {
  color: #383838;
}

aside#sections div.patient-name input::-ms-input-placeholder {
  color: #383838;
}

aside#sections div.patient-name input::placeholder {
  color: #383838;
}

aside#sections div.patient-gender .btn,
aside#sections div.patient-beard .btn {
  border-radius: 2px;
  font-size: 12px;
  border: 1px solid #131d1d;
  /* font-family: Roboto; */
  font-weight: 600;
  color: #11191a;
}

aside#sections div.patient-beard .btn.active,
aside#sections div.patient-gender .btn.active {
  background-color: #313131;
  color: white;
}

/* aside#sections div.patient-age label,
aside#sections div.phone-number label {
  font-weight: 700;
  font-size: 12px;
  font-family: Roboto;
  font-weight: 500;
  padding-left: 3rem;
  padding-right: 0;
} */
/* aside#sections div.patient-age input,
aside#sections div.phone-number input {
  border-radius: 2px;
  font-size: 12px;
  text-align: center;
  background: transparent;
  border: 1px solid #131d1d;
  font-family: Roboto;
  font-weight: 600;
  color: #11191a;
} */
aside#sections div.patient-age input,
aside#sections div.phone-number input {
  border: 1px solid #979797;
  background: transparent;
  /* font-family: Roboto; */
  font-weight: 600;
  font-size: 14px;
  color: #11191a;
  border-radius: .2rem;
}

@media (max-width: 768px) {
  #examination-sidebar {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background: white;
    position: absolute;
    bottom: 0;
    overflow-y: auto;
    overflow-x: hidden;
    display: block;
    width: 280px;
    z-index: 99;
    top: 70px;
    right: -280px;
  }
  #examination-sidebar.visible {
    -webkit-box-shadow: 5px 0px 30px 5px rgba(0, 0, 0, 0.2);
            box-shadow: 5px 0px 30px 5px rgba(0, 0, 0, 0.2);
    right: 0px;
  }
  #examination-sidebar.visible::after {
    display: block;
  }
  #examination-sidebar > aside {
    background-image: unset;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  #examination-sidebar > aside > div {
    border-top-right-radius: 0;
    margin-right: 0;
    width: 100%;
    height: auto;
  }
  #examination-sidebar > aside > div.nav-top-border {
    margin-right: 0;
    border-right: 0;
    /*display: none;*/
  }
  #examination-sidebar > aside > nav {
    height: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  #examination-sidebar > aside > nav div.examinations-list {
    height: auto;
    width: auto;
  }
  #examination-sidebar > aside a.save-button {
    background-color: #428062;
    background-image: unset;
    padding: 8px 16px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: unset;
    width: unset;
  }
  #examination-sidebar > aside a.save-button > div {
    margin: 0 4px;
  }
  aside#sections > nav a.is-completed:nth-child(1)::after {
    right: 30px;
  }
  aside#sections > nav a.is-completed:nth-child(2)::after {
    right: 30px;
  }
  aside#sections > nav a.is-completed:nth-child(3)::after {
    right: 30px;
  }
  aside#sections > nav a.is-completed:nth-child(4)::after {
    right: 30px;
  }
  aside#sections > nav a.is-completed:nth-child(5)::after {
    right: 30px;
  }
  aside#sections > nav a.is-completed:nth-child(6)::after {
    right: 30px;
  }
  aside#sections > nav a.is-completed:nth-child(7)::after {
    right: 30px;
  }
}

#examination-sidebar {
  background-color: #F0F1F3;
}

@media (min-width: 992px) {
  #examination-sidebar + div.scroll-wrapper > div.container {
    max-width: 680px;
  }
}

@media (min-width: 1200px) {
  #examination-sidebar + div.scroll-wrapper > div.container {
    max-width: 860px;
  }
}

@media (min-width: 1500px) {
  #examination-sidebar + div.scroll-wrapper > div.container {
    max-width: 1140px;
  }
}

aside#sections > div {
  margin-right: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  height: auto;
}

aside#sections > nav {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

aside#sections div.patient-name input, aside#sections div.patient-photo {
  border-color: #979797;
}

aside#sections div.patient-photo {
  border-radius: 0px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

aside#sections div.patient-gender .btn, aside#sections div.patient-beard .btn {
  border-radius: 2px;
  font-size: 12px;
  border: 1px solid #979797;
  font-family: Roboto;
  font-weight: 600;
  color: #11191a;
  border-radius: 5px;
  min-height: 32px;
  padding: 6px 12px;
}

aside#sections div.patient-beard .btn.active, aside#sections div.patient-gender .btn.active {
  background-color: #7b7b7b;
  color: #FFFFFF;
}

/* #examinations-summary div.modal-header {
  font-family: 'Roboto', sans-serif;
  position: relative;
  text-transform: uppercase;
  border-radius: 0;
  background: #879F9F;
  padding-bottom: 2rem;
  padding-top: 2rem;
  margin: 2rem;
} */
#examinations-summary div.modal-header h5.modal-title {
  font-weight: 400;
  text-align: center;
  font-size: 32px;
  color: white;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#examinations-summary div.modal-header h5.modal-title strong {
  font-weight: 700;
}

@media (max-width: 450px) {
  /* #examinations-summary div.modal-header {
    padding-bottom: 1rem;
    padding-top: 1rem;
    margin: 0.5rem;
  } */
  #examinations-summary div.modal-header h5.modal-title {
    font-size: 18px;
  }
  #examinations-summary div.modal-header h5.modal-title strong {
    font-size: 24px;
    display: block;
  }
}

/* #examinations-summary div.modal-body {
  padding: 0 2rem;
}

@media (max-width: 450px) {

  #examinations-summary div.modal-body {
    padding: 0 0.8rem;
  }

} */
#examinations-summary > div.content {
  padding: 2rem 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#examinations-summary > div.content > div.examination:last-child div.assesments > div.content {
  padding-bottom: 0;
  border-bottom: 0;
}

#examinations-summary div.examination {
  padding: 0;
}

#examinations-summary div.examination div.assesments > div.content {
  background: transparent;
  padding: 0;
}

#examinations-summary div.examination div.assesments > div.content > div.assesment-panel {
  margin: 0.5rem 0;
}

/* #examinations-summary div.examination div.assesments > div.content > div.recommendations-panel { display: none !important; } */
#examinations-summary div.examination div.assesments div.recommendations-panel > div.table dir.tr {
  cursor: initial;
}

#examinations-summary div.examination div.assesments div.recommendations-panel > div.table div.td.service-select,
#examinations-summary div.examination div.assesments div.recommendations-panel > div.table div.td.product-select {
  display: none;
}

#examinations-summary div.examination div.assesments > header {
  margin-bottom: 0.5rem;
  font-size: 26px;
  margin-top: 0;
}

#examinations-summary div.examination div.assesments div.recommendations-panel > header {
  display: none;
}

#examinations-summary a.analysis {
	font-family: Roboto;
	/* border: 1px solid #CCC; */
	display: inline-block;
	padding: .5rem 1rem;
	font-weight: 500;
	font-size: 13px;
  background: #428062;
  border-radius: 3px;
  color: #FFF;
  border: none;
}

/* #examination-recommendations div.modal-header {

  padding-bottom: 2rem;
  padding-top: 2rem;
  margin: 2rem;
} */
@media (max-width: 992px) {
  /* #examination-recommendations div.modal-header {
    flex-direction: column;
  } */
  #examination-recommendations div.modal-header div.examination-details {
    display: none;
  }
}

#examination-recommendations div.modal-header div.modal-title {
  font-weight: 400;
  text-align: center;
  font-size: 32px;
  color: white;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#examination-recommendations div.modal-header div.modal-title strong {
  font-weight: 700;
}

@media (max-width: 450px) {
  /* #examination-recommendations div.modal-header {
    padding-bottom: 1rem;
    padding-top: 1rem;
    margin: 0.5rem;
  } */
  #examination-recommendations div.modal-header div.modal-title {
    font-size: 18px;
  }
  #examination-recommendations div.modal-header div.modal-title strong {
    font-size: 24px;
    display: block;
  }
}

/* #examination-recommendations div.modal-body {
  overflow: hidden;
  display: block;
  padding: 0 2rem;
} */
@media (max-width: 450px) {
  /* #examination-recommendations div.modal-body {
    padding: 0 0.8rem;
  } */
}

#examination-recommendations div.modal-body > div.content > div.content-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#examination-recommendations div.recommendations-panel table td {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 12px;
  padding: 0.75rem;
}

#examination-recommendations div.recommendations-panel table td div.service-name,
#examination-recommendations div.recommendations-panel table td div.product-name {
  margin-bottom: 1rem;
  font-weight: 500;
}

#examination-recommendations div.recommendations-panel table td.service-select,
#examination-recommendations div.recommendations-panel table td.product-select {
  position: relative;
  min-width: 160px;
}

#examination-recommendations div.recommendations-panel table td.service-description,
#examination-recommendations div.recommendations-panel table td.product-description {
  position: relative;
}

#examination-recommendations div.recommendations-panel table td.service-select::after,
#examination-recommendations div.recommendations-panel table td.product-select::after,
#examination-recommendations div.recommendations-panel table td.service-description::after,
#examination-recommendations div.recommendations-panel table td.product-description::after {
  background-color: #516862;
  position: absolute;
  bottom: 15px;
  right: 0;
  top: 15px;
  width: 1px;
  content: "";
}

#examination-recommendations div.recommendations-panel table td.service-image > div,
#examination-recommendations div.recommendations-panel table td.product-image > div {
  border: 1px solid #383838;
  background-size: cover;
  height: 50px;
  width: 50px;
}

#examination-recommendations div.recommendations-panel table td.position-nr {
  vertical-align: bottom;
  font-weight: 700;
  font-size: 36px;
}

#examination-recommendations div.recommendations-panel table.services-table td.position-nr {
  color: #93b3b0;
}

#examination-recommendations div.recommendations-panel table.products-table td.position-nr {
  color: #a7ba78;
}

#page-examination-nav-menu {
  background-color: rgba(64, 64, 64, 0.9);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  bottom: 55px;
  /* height: 80px; */
  width: 960px;
  max-width: calc(100vw - 50px);
}

@media (max-width: 768px) {
  #page-examination-nav-menu {
    border-radius: 0;
    max-width: 100%;
    position: fixed;
    z-index: 10;
    bottom: 0;
    right: 0;
    left: 0;
  }
}

#page-examination-nav-menu > div.nav-link {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 70px;
          flex: 1 0 70px;
  padding: 0;
}

#page-examination-nav-menu > div.nav-link > a {
  padding: 1rem 2rem;
  color: #428062;
  font-size: 28px;
}

#page-examination-nav-menu > div.pages-list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 768px) {
  #page-examination-nav-menu > div.pages-list {
    overflow-x: scroll;
  }
}

#page-examination-nav-menu > div.pages-list > a {
  text-transform: uppercase;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: Roboto;
  white-space: nowrap;
  text-align: center;
  padding: 10px 15px;
  color: #428062;
  font-weight: 500;
  font-size: 14px;
}

@media (min-width: 576px) {
  #page-examination-nav-menu > div.pages-list > a {
    font-size: 17px;
  }
}

#page-examination-nav-menu > div.pages-list > a:hover {
  text-decoration: none;
}

#page-examination-nav-menu div.number {
  border: 4px solid #428062;
  border-radius: 100%;
  width: 33px;
  height: 33px;
  padding: 0px;
  margin-left: 12px;
  font-weight: bold;
  font-size: 16px;
  color: #428062;
}

@media (min-width: 576px) {
  #page-examination-nav-menu div.number {
    margin-left: 20px;
    font-size: 18px;
    padding: 3px;
    height: 41px;
    width: 41px;
  }
}

#page-examination-nav-menu a.active div.number {
  background: #428062;
  color: #404040;
}

/* body.page-home #site-header a {
  font-weight: 400;
  color: #FFF;
} */
#page-home-slider > div.slick-list div.slide::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

#page-home-slider > div.slick-list div.slide.slide-01::after {
  background: rgba(0, 0, 0, 0.35);
}

#page-home-slider {
  background: #219E9C;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
}

#page-home-slider > div.slick-list,
#page-home-slider > div.slick-list div.slick-track {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
}

#page-home-slider > div.slick-list div.slide {
  position: relative;
  background-size: cover;
  background-position: top center;
  height: 100vh;
}

#page-home-slider > div.slick-list div.slide > img {
  max-width: 100%;
  height: auto;
  opacity: 0;
}

#page-home-slider > div.slick-list div.slide > div.slide-wrapper {
  position: absolute;
  right: 0;
  left: 0;
  top: 50vh;
  left: 50%;
  z-index: 10;
}

#page-home-slider > div.slick-list div.slide > div.slide-wrapper > div.slide-content {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  display: inline-block;
  width: 1200px;
  height: 300px;
  margin-left: -600px;
  margin-top: -150px;
  padding: 1rem;
  text-align: center;
  /* background: rgba(13, 150, 148, 0.4); */
  /* background: rgba(0, 0, 0, 0.1); */
  font-size: 3.5rem;
  color: #FFF;
}

#page-home-slider > div.slick-list div.slide > div.slide-wrapper > div.slide-content div.title {
  font-weight: 500;
  line-height: 4rem;
}

#page-home-slider > div.slick-list div.slide > div.slide-wrapper > div.slide-content div.subtitle {
  font-size: 1.5rem;
  margin: 30px auto;
  font-weight: 400;
}

#page-home-slider > div.slick-list div.slide > div.slide-wrapper > div.slide-content strong {
  font-weight: 500;
}

#page-home-slider > div.slick-list div.slide > div.slide-wrapper > div.slide-content a.button {
  background: #FFF;
  /* background: rgba(33, 158, 156, 0.6); */
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 400;
  color: #666;
  padding: 10px 80px;
}

#page-home-slider .slick-prev, #page-home-slider .slick-next {
  z-index: 100;
}

#page-home-slider .slick-prev {
  left: 100px;
}

#page-home-slider .slick-next {
  right: 100px;
}

div.modal div.modal-footer {
  border-top-color: #C4D5D5;
  background: #d6e0de;
}

/* Modal header */
div.modal div.modal-header {
  border-bottom: 1px solid #869f9f;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  background: #879F9F;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 1rem 2rem;
  border-radius: 0;
}

div.modal div.modal-header div.modal-title {
  text-shadow: 1px 1px 2px rgba(70, 98, 98, 0.5);
  text-transform: uppercase;
  font-family: Poppins;
  font-weight: 600;
  font-size: 24px;
  color: #FFFFFF;
}

div.modal div.modal-header div.modal-title > div.subtitle {
  font-weight: 500;
  font-size: 14px;
}

@media (max-width: 992px) {
  div.modal div.modal-header {
    padding: 1rem 1.5rem;
  }
  div.modal div.modal-header div.modal-title {
    font-size: 20px;
  }
  div.modal div.modal-header div.modal-title > div.subtitle {
    font-size: 12px;
  }
}

@media (max-width: 450px) {
  div.modal div.modal-header div.modal-title {
    font-size: 16px;
  }
  div.modal div.modal-header div.modal-title > div.subtitle {
    font-size: 12px;
  }
}

/* Modal close button */
div.modal div.modal-header button.close {
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  border: 1px solid #5D7979;
  background: #618080;
  border-radius: 3px;
  margin: 0 0 0 1rem;
  text-shadow: none;
  font-size: 1.5rem;
  color: #FFF;
  height: 2rem;
  width: 2rem;
  opacity: 1;
  padding: 0;
}

div.modal div.modal-header button.close:hover {
  border-color: #476F6F;
  background: #4D7575;
  opacity: 1;
}

@media (max-width: 992px) {
  div.modal div.modal-header button.close {
    height: 3rem;
    width: 5rem;
  }
}

@media (max-width: 450px) {
  div.modal div.modal-header button.close {
    height: 3rem;
    width: 3rem;
  }
}

div.modal {
  overflow-x: hidden;
  overflow-y: auto;
}

div.modal div.modal-content {
  background: transparent;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #6d8484;
  /* max-height: calc(100vh - 3.5rem); */
}

div.modal div.modal-body {
  background: #D6E0DE;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: auto;
  padding: 1.5rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 992px) {
  div.modal div.modal-body {
    padding: 1rem 1.5rem;
  }
}

#prezentacja-modal #slider-descriptions {
  padding-bottom: 0 !important;
  padding-top: 0.5rem !important;
  margin-bottom: -0.5rem;
}

#prezentacja-modal div.slider-description-container {
  margin-bottom: 0 !important;
}

@media (min-width: 1500px) {
  #prezentacja-modal div.slider-description-container {
    margin-bottom: 1.5rem;
  }
  #prezentacja-modal #slider-descriptions {
    padding-bottom: 1rem !important;
    padding-top: 1rem !important;
    margin-bottom: 0rem;
  }
}

#prezentacja-modal #player-container {
  height: calc( 100vh - 300px - 25px) !important;
  min-height: 500px !important;
  max-height: 700px !important;
}

@media (min-width: 1500px) {
  #prezentacja-modal #player-container {
    height: calc( 100vh - 100px - 25px) !important;
    min-height: 600px !important;
    max-height: 700px !important;
  }
}

#examinations section.examination-screen > header {
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-align: center;
  margin-top: 1rem;
  font-weight: 300;
  font-size: 22px;
}
