* {
  box-sizing: border-box;
}

html, body {
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-display: optional;
  color: #4a4a4a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 0px;
  /* remove scrollbar space */
  background: transparent;
  /* optional: just make scrollbar invisible */
}

body {
  scrollbar-width: none;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  background: #fff;
  min-height: 100%;
}

.fix-height {
  min-height: 100%;
}

.footer {
  margin-left: auto;
  margin-right: auto;
  max-width: 980px;
  width: 100%;
  height: 70px;
  color: #fff;
  background: #239a94;
  position: absolute;
  bottom: 0;
  padding: 0;
  will-change: transform;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-transition: -webkit-transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s;
  transition: -webkit-transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s;
  transition: transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s;
  transition: transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s, -webkit-transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s;
  z-index: 1000;
}

.footer > .button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer > .button > .innerbutton {
  position: absolute;
}

.header {
  width: 100%;
  height: 56px;
  color: #fff;
  background: #55a7a0;
  position: fixed;
  font-size: 20px;
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 2px 9px 1px rgba(0, 0, 0, 0.12), 0 4px 2px -2px rgba(0, 0, 0, 0.2);
  padding: 16px 16px 0 16px;
  will-change: transform;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-transition: -webkit-transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s;
  transition: -webkit-transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s;
  transition: transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s;
  transition: transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s, -webkit-transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s;
  z-index: 1000;
}

.header .headerButton {
  width: 24px;
  height: 24px;
  margin-right: 16px;
  text-indent: -30000px;
  overflow: hidden;
  opacity: 0.54;
  -webkit-transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1);
  transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1);
  border: none;
  outline: none;
  cursor: pointer;
}

.header #butRefresh {
  background: url(/images/ic_refresh_white_24px.svg) center center no-repeat;
}

.header #butAdd {
  background: url(/images/ic_add_white_24px.svg) center center no-repeat;
}

.header__title {
  font-weight: 400;
  font-size: 20px;
  margin: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.loader #spinner {
  box-sizing: border-box;
  stroke: #673AB7;
  stroke-width: 3px;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: line 1.6s cubic-bezier(0.4, 0, 0.2, 1) infinite, rotate 1.6s linear infinite;
  animation: line 1.6s cubic-bezier(0.4, 0, 0.2, 1) infinite, rotate 1.6s linear infinite;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(450deg);
    transform: rotate(450deg);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(450deg);
    transform: rotate(450deg);
  }
}

@-webkit-keyframes line {
  0% {
    stroke-dasharray: 2, 85.964;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    stroke-dasharray: 65.973, 21.9911;
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dasharray: 2, 85.964;
    stroke-dashoffset: -65.973;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

@keyframes line {
  0% {
    stroke-dasharray: 2, 85.964;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    stroke-dasharray: 65.973, 21.9911;
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dasharray: 2, 85.964;
    stroke-dashoffset: -65.973;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

.main {
  padding-top: 60px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.dialog-container {
  background: rgba(0, 0, 0, 0.57);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
  -webkit-transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1);
  transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1);
}

.dialog-container--visible {
  opacity: 1;
  pointer-events: auto;
}

.dialog {
  background: #FFF;
  border-radius: 2px;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.24), 0 14px 28px rgba(0, 0, 0, 0.48);
  min-width: 280px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateY(30px);
  transition: transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s;
  transition: transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s;
}

.dialog > div {
  padding-left: 24px;
  padding-right: 24px;
}

.dialog-title {
  padding-top: 20px;
  font-size: 1.25em;
}

.dialog-body {
  padding-top: 20px;
  padding-bottom: 24px;
}

.dialog-body select {
  width: 100%;
  font-size: 2em;
}

.dialog-buttons {
  padding: 8px !important;
  float: right;
}

.card {
  padding: 16px;
  position: relative;
  box-sizing: border-box;
  background: #fff;
  border-radius: 2px;
  margin: 16px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.mdl-button {
  background: transparent;
  border: none;
  border-radius: 2px;
  color: black;
  position: relative;
  height: 36px;
  margin: 0;
  min-width: 64px;
  padding: 0 16px;
  display: inline-block;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0;
  overflow: hidden;
  will-change: box-shadow;
  -webkit-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  line-height: 36px;
  vertical-align: middle;
}

.mdl-button::-moz-focus-inner {
  border: 0;
}

.mdl-button:hover {
  background-color: rgba(158, 158, 158, 0.2);
}

.mdl-button:focus:not(:active) {
  background-color: rgba(0, 0, 0, 0.12);
}

.mdl-button:active {
  background-color: rgba(158, 158, 158, 0.4);
}

.mdl-button.mdl-button--colored {
  color: #55a7a0;
}

.mdl-button.mdl-button--colored:focus:not(:active) {
  background-color: rgba(0, 0, 0, 0.12);
}

.mdl-button--primary.mdl-button--primary {
  color: #55a7a0;
}

.mdl-button--primary.mdl-button--primary .mdl-ripple {
  background: white;
}

.mdl-button--primary.mdl-button--primary.mdl-button--raised, .mdl-button--primary.mdl-button--primary.mdl-button--fab {
  color: white;
  background-color: #55a7a0;
}

.container {
  margin: auto;
  background: #239a94;
  max-width: 980px;
  width: 100%;
  height: 100%;
  max-height: 1080px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}

.view {
  will-change: transform;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: transform 0.3s cubic-bezier(0.465, 0.183, 0.153, 0.946);
  scrollbar-width: none;
}

.list-view {
  height: calc(100% - 70px);
  width: 100%;
  position: relative;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /*	transform: translateX(0);
*/
}

.details-view {
  height: calc(100% - 70px);
  width: 100%;
  transform: translateX(100%);
  box-sizing: border-box;
  background: #82d2cb;
  overflow-y: scroll;
  overflow-x: hidden;
}

.messages-view {
  height: calc(100% - 70px);
  width: 100%;
  transform: translateX(100%);
  box-sizing: border-box;
  padding: 30px;
  background: #239a94;
}

.settings-view {
  height: calc(100% - 70px);
  width: 100%;
  transform: translateX(100%);
  box-sizing: border-box;
  padding: 30px;
  background: #239a94;
}

.account-view {
  height: calc(100% - 70px);
  width: 100%;
  transform: translateX(100%);
  box-sizing: border-box;
  background: #8acfbf;
  overflow-y: scroll;
  overflow-x: hidden;
}

.login-view {
  height: 100%;
  width: 100%;
  transform: translateX(100%);
  box-sizing: border-box;
  padding: 30px;
  background: #239a94;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/*
	.view-item .list-view {
	    transform: translateX(100%);

	}
*/
.view-item .details-view {
  transform: translateX(0);
}

.view-account .account-view {
  transform: translateX(0);
}

.view-settings .settings-view {
  transform: translateX(0);
}

.view-messages .messages-view {
  transform: translateX(0);
}

.view-login .login-view {
  transform: translateX(0);
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list li {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  padding: 0;
  border-bottom: 8px solid #8acfbf;
  background: #FFF;
  margin-bottom: -1px;
}
.list li.list-item {
  display: none;
}
.list li.list-item:first-of-type {
  background-color: #239a94;
  width: 100%;
  margin-bottom: 0;
  color: #fff;
  display: flex;
}

/*.list li:nth-of-type(2) {
	color: #fff;
	background-color: #45aba5;
	width: 100%;	
    }
*/
.list li .right {
  margin-left: auto;
  margin-right: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.5rem;
}

.list li .left {
  font-size: 105px;
  color: #55a7a0;
  position: relative;
}

.upper-navigation {
  margin-right: 10px;
  margin-left: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.settings-button {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: right;
  margin-left: auto;
  width: 40px;
}

.settings-button-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: 10px;
  position: absolute;
  width: 40px;
  height: 40px;
}

.account-button {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: right;
  margin-left: auto;
  margin-right: 5px;
  width: 40px;
}

.account-button-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  position: absolute;
  top: 0;
  width: 40px;
  height: 40px;
}

.help-button {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: right;
  margin-left: auto;
  margin-right: 5px;
  width: 40px;
}

.help-button-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  position: absolute;
  top: 0;
  width: 40px;
  height: 40px;
}

.back-button {
  position: absolute;
  left: 0;
  font-size: 50px;
}

#login {
  background: #fff;
  color: #828282;
  align-items: center;
  margin: 0 10px;
  padding: 0 10px;
}

.icon2 {
  background: url(/images/icon-container.svg);
  background-size: 80px 105px;
  width: 80px;
  height: 105px;
}

.detail-icon-container {
  background: url(/images/icon-container.svg);
  background-size: 160px 210px;
  width: 160px;
  height: 210px;
  position: absolute;
  right: 0;
  top: 0px;
  transform: rotateY(180deg);
}

.detail-container {
  margin-left: 20px;
  margin-top: 40px;
  color: #fff;
  height: 210px;
  clear: both;
}

.detail-date {
  font-size: 15px;
  font-style: italic;
  color: #fff;
  margin-bottom: 20px;
}

.detail-value {
  font-size: 35px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.detail-time {
  font-size: 15px;
  font-style: italic;
  color: #fff;
}

.detail-history {
  padding-top: 20px;
  display: flex;
  flex-direction: row;
  width: 100%;
}

.detail-history-child {
  width: 25%;
  text-align: center;
}

.item-detail {
  position: relative;
}

.item-detail-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: left;
  margin-left: 10px;
}

.item-detail-list li {
  list-style-type: none;
  margin: 10px;
  color: #fff;
  font-size: 20px;
}

.item-detail-list li i {
  margin-right: 15px;
}

.med-detail-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: left;
  margin-left: 10px;
}

.med-detail-list li {
  list-style-type: none;
  margin: 10px;
  color: #fff;
  font-size: 20px;
}

.med-detail-list li i {
  margin-right: 15px;
}
.med-title {
  font-size: 18px;
  margin-bottom: 5px;
}
.mask {
  mask-image: url(/images/icon-container.svg);
  mask-size: 80px 105px;
  mask-mode: alpha;
  mask-position: 0 0;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(/images/icon-container.svg);
  -webkit-mask-size: 80px 105px;
  -webkit-mask-mode: alpha;
  -webkit-mask-position: 0 0;
  -webkit-mask-repeat: no-repeat;
}

.greeting {
  font-size: 25px;
  overflow: hidden;
  margin-bottom: 10px;
}

.patient-update {
  font-size: 15px;
  overflow: hidden;
}

.main-container {
  margin: 10px;
  position: absolute;
  left: 80px;
}

.main-container .title {
  font-size: 20px;
  text-transform: uppercase;
}

.main-container .value {
  margin-top: 5px;
  font-size: 25px;
  font-weight: bold;
  max-height: 29px;
  overflow: hidden;
}

.main-container .date {
  margin-top: 5px;
  font-size: 15px;
  color: #828282;
  font-style: italic;
}

.detail-title {
  height: 50px;
  background-color: #239a94;
  color: #fff;
  text-transform: uppercase;
  font-size: 30px;
  text-align: center;
}

.detail-title-text {
  display: inline-block;
  margin: 8px;
}

.mood-row {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-evenly;
  align-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 100%;
}

.mood-container {
  width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  font-size: 0.7rem;
}

.confused {
  height: 100px;
  width: 100px;
  transform: scale(0.5);
  background: url(/images/mood-confused.svg) no-repeat top left;
  background-origin: padding-box;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: auto auto;
  box-sizing: border-box;
}

.happy {
  height: 100px;
  width: 100px;
  transform: scale(0.5);
  background: url(/images/mood-happy.svg) no-repeat top left;
  background-origin: padding-box;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: auto auto;
  box-sizing: border-box;
}

.normal {
  height: 100px;
  width: 100px;
  transform: scale(0.5);
  background: url(/images/mood-normal.svg) no-repeat top left;
  background-origin: padding-box;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: auto auto;
  box-sizing: border-box;
}

.sad {
  height: 100px;
  width: 100px;
  margin: 10px;
  transform: scale(0.5);
  background: url(/images/mood-sad.svg) no-repeat top left;
  background-origin: padding-box;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: auto auto;
  box-sizing: border-box;
}

.upset {
  height: 100px;
  width: 100px;
  margin: 10px;
  transform: scale(0.5);
  background: url(/images/mood-upset.svg) no-repeat top left;
  background-origin: padding-box;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: auto auto;
  box-sizing: border-box;
}

.activity {
  position: absolute;
  height: 130px;
  width: 110px;
  margin-top: -5px;
  background: url(/images/activity.svg) no-repeat top left;
  background-origin: padding-box;
  background-position: 0% 0%;
  background-repeat: no-repeat;
  background-size: auto auto;
  box-sizing: border-box;
}

.blood-pressure {
  position: absolute;
  height: 100%;
  width: 100%;
  margin-top: 15px;
  background: url(/images/bloodpressure.svg);
  background-size: 80%;
  background-repeat: no-repeat;
}

.oximetry {
  position: absolute;
  top: 0;
  height: 70px;
  width: 70px;
  margin-top: 13px;
  background: url(/images/oximetry.svg);
  background-size: 70px 70px;
  background-repeat: no-repeat;
}

.pain {
  position: absolute;
  top: 0;
  height: 70px;
  width: 70px;
  margin-top: 13px;
  background: url(/images/pain.svg);
  background-size: 70px 70px;
  background-repeat: no-repeat;
}

.meds {
  position: absolute;
  top: 10px;
  left: 5px;
  height: 55px;
  width: 55px;
  margin-top: 13px;
  background: url(/images/medications.svg);
  background-size: 55px 55px;
  background-repeat: no-repeat;
}

.weight {
  position: absolute;
  top: 0;
  left: -15px;
  height: 70px;
  width: 70px;
  margin-top: 13px;
  background: url(/images/weight.svg);
  background-size: 70px 70px;
  background-repeat: no-repeat;
}

.facility {
  position: absolute;
  top: 0;
  left: -15px;
  height: 70px;
  width: 70px;
  margin-top: 13px;
  background: url(/images/facility.svg);
  background-size: 70px 70px;
  background-repeat: no-repeat;
}

.elimination {
  position: absolute;
  height: 80px;
  width: 80px;
  margin-top: -5px;
  background: url(/images/elimination.svg) no-repeat top left;
  background-origin: padding-box;
  background-position: 0% 0%;
  background-repeat: no-repeat;
  background-size: auto auto;
  box-sizing: border-box;
}

.therapy {
  position: absolute;
  height: 80px;
  width: 80px;
  margin-top: -5px;
  background: url(/images/therapy.svg) no-repeat top left;
  background-origin: padding-box;
  background-position: 0% 0%;
  background-repeat: no-repeat;
  background-size: auto auto;
  box-sizing: border-box;
}

.heart-rate {
  position: absolute;
  top: 0;
  left: 0;
  height: 70px;
  width: 70px;
  margin-top: 25px;
  background: url(/images/heart-rate.svg) no-repeat top left;
}

.heart-rate-detail {
  position: absolute;
  top: 0;
  right: 0;
  height: 140px;
  width: 140px;
  margin-top: 50px;
  background: url(/images/heart-rate.svg) no-repeat top left;
  transform: rotateY(180deg);
}

.blood-pressure-detail {
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 25px;
  background: url(/images/bloodpressure.svg) no-repeat;
  transform: rotateY(180deg);
  background-size: contain;
  height: 150px;
  width: 150px;
  padding: 0;
}

.oximetry-detail {
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 25px;
  background: url(/images/oximetry.svg) no-repeat;
  transform: rotateY(180deg);
  background-size: contain;
  height: 150px;
  width: 150px;
  padding: 0;
}

.weight-detail {
  position: absolute;
  top: 0;
  right: -30px;
  margin-top: 25px;
  background: url(/images/weight.svg) no-repeat;
  transform: rotateY(180deg);
  background-size: contain;
  height: 150px;
  width: 150px;
  padding: 0;
}

.facility-detail {
  position: absolute;
  top: 20px;
  right: -30px;
  margin-top: 25px;
  background: url(/images/facility.svg) no-repeat;
  transform: rotateY(180deg);
  background-size: contain;
  height: 150px;
  width: 150px;
  padding: 0;
}

.temperature {
  position: absolute;
  height: 90px;
  width: 80px;
  margin-top: 10px;
  background: url(/images/temperature.svg) no-repeat top left;
  background-size: 50px 90px;
}

.temperature-detail {
  position: absolute;
  height: 180px;
  width: 160px;
  right: 0;
  margin-top: 20px;
  background: url(/images/temperature.svg) no-repeat top left;
  background-size: 100px 180px;
  transform: rotateY(180deg);
}

.pain-detail {
  position: absolute;
  height: 160px;
  width: 160px;
  right: -5px;
  margin-top: 20px;
  background: url(/images/pain.svg) no-repeat top left;
  background-size: 160px 160px;
  transform: rotateY(180deg);
}

.meds-detail {
  position: absolute;
  height: 160px;
  width: 160px;
  right: -5px;
  margin-top: 20px;
  background: url(/images/medications.svg) no-repeat top left;
  background-size: 120px 160px;
  transform: rotateY(180deg);
}

.meds-detail-list ul {
  list-style-type: none;
  padding-left: 10px;
}

.meds-detail-list ul li {
  list-style-type: none;
  padding-left: 10px;
}

.meds-detail-list ul li .med {
  color: #fff;
  display: block;
  margin-right: 10px;
  margin-bottom: 30px;
  background: url(/images/medications2.svg) no-repeat top left;
  background-size: 40px 40px;
}

.meds-detail-list ul li .meds-spacer {
  margin-left: 50px;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
}

.nutrition {
  position: absolute;
  height: 100px;
  width: 100px;
  margin-top: 5px;
  margin-left: -5px;
  background: url(/images/nutrition.svg) no-repeat top left;
  background-origin: padding-box;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: auto auto;
  box-sizing: border-box;
}

.loader {
  text-align: center;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0;
  max-width: 980px;
  width: 100%;
  height: 100%;
  max-height: 1080px;
  z-index: 9999;
  background: rgba(0, 158, 158, 0.7);
  color: #fff;
  left: 50%;
  top: 50%;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.helper {
  text-align: center;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0;
  max-width: 980px;
  width: 100%;
  height: 100%;
  max-height: 1080px;
  z-index: 9999;
  background: rgba(0, 158, 158, 0.7);
  color: #fff;
  left: 50%;
  top: 50%;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  border-top-color: #fff;
  margin: 20px;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
